/*
 Theme Name:   Clavenir Advisory - BeTheme Child
 Theme URI:    https://www.clavenir.com
 Description:  Custom child theme for Clavenir Advisory Inc. Built on BeTheme / BeBuilder.
 Author:       Clavenir Advisory Inc.
 Author URI:   https://www.clavenir.com
 Template:     betheme
 Version:      1.0.0
 Text Domain:  clavenir-child
*/

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (Brand Tokens)
   ========================================================================== */

:root {
  /* Brand Colours */
  --clv-navy:        #0F1E35;
  --clv-dark-navy:   #0A1628;
  --clv-darker-navy: #1B2A4A;
  --clv-footer-navy: #070F1C;
  --clv-teal:        #2D8A7C;
  --clv-gold:        #B8963E;
  --clv-cream:       #F8F6F1;
  --clv-white:       #FFFFFF;
  --clv-dark-gray:   #111827;
  --clv-medium-gray: #6B7280;

  /* Typography */
  --clv-font-heading: Georgia, 'Times New Roman', serif;
  --clv-font-body:    Calibri, 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --clv-section-padding: 100px 0;
  --clv-section-padding-mobile: 60px 0;
  --clv-container-max: 1200px;
  --clv-container-padding: 0 24px;
}


/* ==========================================================================
   2. GLOBAL RESETS & BASE STYLES
   ========================================================================== */

body {
  font-family: var(--clv-font-body);
  font-size: 16px;
  color: var(--clv-dark-gray);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--clv-font-heading);
  line-height: 1.2;
}

.clv-container {
  max-width: var(--clv-container-max);
  margin: 0 auto;
  padding: var(--clv-container-padding);
}


/* ==========================================================================
   3. TYPOGRAPHY CLASSES
   ========================================================================== */

.clv-headline {
  font-family: var(--clv-font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
}

.clv-section-title {
  font-family: var(--clv-font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}

.clv-subheading {
  font-family: var(--clv-font-body);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
}

.clv-eyebrow {
  font-family: var(--clv-font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.clv-eyebrow--teal  { color: var(--clv-teal); }
.clv-eyebrow--gold  { color: var(--clv-gold); }
.clv-eyebrow--white { color: rgba(255,255,255,0.6); }

.clv-body-text {
  font-family: var(--clv-font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--clv-dark-gray);
}

.clv-label {
  font-family: var(--clv-font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


/* ==========================================================================
   4. NAVIGATION (Section 1)
   ========================================================================== */

#Top_bar,
.clv-navbar {
  background: var(--clv-white) !important;
  height: 70px !important;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

#Top_bar.is-sticky,
.clv-navbar.is-sticky {
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

/* Logo */
#Top_bar .logo img,
.clv-navbar .clv-logo img {
  width: 160px !important;
  height: auto !important;
}

/* Nav Links */
#Top_bar #menu > ul > li > a,
.clv-navbar .clv-nav-link {
  font-family: var(--clv-font-body) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #374151 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: color 0.25s ease;
}

#Top_bar #menu > ul > li > a:hover,
.clv-navbar .clv-nav-link:hover {
  color: var(--clv-teal) !important;
}

/* CTA Button in Nav */
.clv-nav-cta,
#Top_bar .action_button {
  background: var(--clv-navy) !important;
  color: var(--clv-white) !important;
  font-family: var(--clv-font-body) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: 6px !important;
  border: none !important;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none !important;
}

.clv-nav-cta:hover,
#Top_bar .action_button:hover {
  background: var(--clv-teal) !important;
  transform: translateY(-1px);
}


/* ==========================================================================
   5. HERO SECTION (Section 2)
   ========================================================================== */

.clv-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.clv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0A1628;
  opacity: 0.65;
  z-index: 1;
}

.clv-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 40px;
}

/* Pulsing Badge */
.clv-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--clv-gold);
  border-radius: 100px;
  background: rgba(184, 150, 62, 0.08);
  margin-bottom: 28px;
  animation: clv-badge-fade-in 0.8s ease-out;
}

.clv-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clv-gold);
  animation: clv-pulse 2s ease-in-out infinite;
}

@keyframes clv-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

@keyframes clv-badge-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.clv-badge-text {
  font-family: var(--clv-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--clv-gold);
}

/* Hero Headline */
.clv-hero-headline {
  font-family: var(--clv-font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--clv-white);
  line-height: 1.08;
  margin-bottom: 20px;
}

.clv-hero-headline .clv-teal {
  color: var(--clv-teal);
}

/* Hero Taglines */
.clv-hero-tagline-1 {
  font-family: var(--clv-font-heading);
  font-style: italic;
  font-size: 20px;
  color: var(--clv-teal);
  margin-bottom: 6px;
}

.clv-hero-tagline-2 {
  font-family: var(--clv-font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.clv-hero-tagline-3 {
  font-family: var(--clv-font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.clv-hero-subtext {
  font-size: 17px;
  color: rgba(255,255,255,0.62);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* Hero Buttons */
.clv-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.clv-btn {
  font-family: var(--clv-font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.clv-btn--teal {
  background: var(--clv-teal);
  color: var(--clv-white);
  border: 2px solid var(--clv-teal);
}

.clv-btn--teal:hover {
  background: #24776b;
  border-color: #24776b;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(45,138,124,0.3);
}

.clv-btn--outline {
  background: transparent;
  color: var(--clv-white);
  border: 2px solid rgba(255,255,255,0.5);
}

.clv-btn--outline:hover {
  border-color: var(--clv-white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.clv-btn--navy {
  background: var(--clv-navy);
  color: var(--clv-white);
  border: 2px solid var(--clv-navy);
}

.clv-btn--navy:hover {
  background: var(--clv-teal);
  border-color: var(--clv-teal);
  transform: translateY(-2px);
}


/* ==========================================================================
   6. PROOF STRIP (Section 3)
   ========================================================================== */

.clv-proof-strip {
  background: var(--clv-white);
  padding: 60px 0;
}

.clv-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.clv-proof-item {
  position: relative;
  padding-bottom: 20px;
}

.clv-proof-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 3px;
  background: var(--clv-teal);
  transition: transform 0.4s ease;
}

.clv-proof-item:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.clv-proof-number {
  font-family: var(--clv-font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--clv-navy);
  line-height: 1;
  margin-bottom: 8px;
}

.clv-proof-label {
  font-size: 14px;
  color: var(--clv-medium-gray);
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}


/* ==========================================================================
   7. WE CONNECT THE DOTS (Section 4)
   ========================================================================== */

.clv-dots-section {
  background: var(--clv-navy);
  padding: var(--clv-section-padding);
}

.clv-dots-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 50px 0 30px;
  gap: 12px;
}

/* Connecting line */
.clv-dots-timeline::before {
  content: '';
  position: absolute;
  top: 86px;
  left: 36px;
  right: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--clv-teal), var(--clv-gold));
  z-index: 0;
}

.clv-dot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.clv-dot-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--clv-teal);
  background: var(--clv-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.35s ease;
  cursor: default;
  margin-bottom: 16px;
}

.clv-dot-circle:hover {
  background: var(--clv-teal);
  box-shadow: 0 0 20px rgba(45,138,124,0.4);
}

.clv-dot-circle i {
  font-size: 24px;
  color: var(--clv-teal);
  transition: color 0.35s ease;
}

.clv-dot-circle:hover i {
  color: var(--clv-white);
}

/* Gold number badge */
.clv-dot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  background: var(--clv-gold);
  border-radius: 50%;
  font-family: var(--clv-font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--clv-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.clv-dot-title {
  font-family: var(--clv-font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--clv-white);
  margin-bottom: 4px;
}

.clv-dot-subtitle {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  max-width: 130px;
  line-height: 1.4;
}


/* ==========================================================================
   8. SERVICES CARDS (Section 5)
   ========================================================================== */

.clv-services-section {
  background: var(--clv-cream);
  padding: var(--clv-section-padding);
}

.clv-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.clv-service-card {
  background: var(--clv-white);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.clv-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--clv-teal);
  transition: width 0.4s ease;
}

.clv-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.clv-service-card:hover::before {
  width: 100%;
}

.clv-service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(45,138,124,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.clv-service-card-icon i {
  font-size: 22px;
  color: var(--clv-teal);
}

.clv-service-card h3 {
  font-family: var(--clv-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--clv-navy);
  margin-bottom: 12px;
}

.clv-service-card p {
  font-size: 14px;
  color: var(--clv-medium-gray);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Tag pills */
.clv-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--clv-teal);
  background: rgba(45,138,124,0.06);
  border: 1px solid rgba(45,138,124,0.15);
  padding: 4px 12px;
  border-radius: 100px;
  margin: 3px 4px 3px 0;
}

/* Special deliverables box inside AI Governance card */
.clv-deliverables-box {
  border: 1px solid var(--clv-teal);
  border-radius: 8px;
  padding: 20px;
  margin-top: 16px;
  background: rgba(45,138,124,0.02);
}

.clv-deliverables-box h4 {
  font-family: var(--clv-font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--clv-teal);
  margin-bottom: 12px;
}

.clv-deliverables-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clv-deliverables-box li {
  font-size: 13px;
  color: var(--clv-dark-gray);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.clv-deliverables-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  background: var(--clv-teal);
  border-radius: 50%;
}

/* Coming Soon badge */
.clv-coming-soon {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--clv-gold);
  background: rgba(184,150,62,0.08);
  border: 1px solid rgba(184,150,62,0.2);
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ==========================================================================
   9. SECTORS (Section 6)
   ========================================================================== */

.clv-sectors-section {
  background: var(--clv-white);
  padding: var(--clv-section-padding);
}

.clv-sector-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.clv-sector-tile {
  background: var(--clv-navy);
  border-radius: 12px;
  padding: 32px 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.clv-sector-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(15,30,53,0.25);
}

.clv-sector-tile h3 {
  font-family: var(--clv-font-heading);
  font-size: 18px;
  color: var(--clv-white);
  margin-bottom: 12px;
}

.clv-sector-tile .clv-tag {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 10px;
}

/* Adjacent sector pills */
.clv-adjacent-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.clv-adjacent-label {
  font-size: 13px;
  color: var(--clv-medium-gray);
  font-style: italic;
  margin-right: 4px;
}

.clv-adjacent-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--clv-medium-gray);
  background: #F3F4F6;
  padding: 6px 16px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.clv-adjacent-pill:hover {
  color: var(--clv-teal);
  background: rgba(45,138,124,0.06);
}


/* ==========================================================================
   10. GOVERNANCE-READY CHECKLIST (Section 7)
   ========================================================================== */

.clv-checklist-section {
  background: var(--clv-dark-navy);
  padding: var(--clv-section-padding);
}

.clv-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.clv-checklist-col h3 {
  font-family: var(--clv-font-heading);
  font-size: 20px;
  color: var(--clv-white);
  margin-bottom: 24px;
}

.clv-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.clv-check-box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--clv-gold);
  border-radius: 4px;
  margin-top: 2px;
}

.clv-check-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}


/* ==========================================================================
   11. WHY CLAVENIR PUZZLE BOX (Section 8)
   ========================================================================== */

.clv-why-section {
  background: var(--clv-cream);
  padding: var(--clv-section-padding);
}

.clv-puzzle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
}

.clv-puzzle-image {
  background-size: cover;
  background-position: center;
  min-height: 280px;
}

.clv-puzzle-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clv-puzzle-card--navy    { background: var(--clv-navy); }
.clv-puzzle-card--dark    { background: var(--clv-darker-navy); }
.clv-puzzle-card--teal    { background: var(--clv-teal); }

.clv-puzzle-card h3 {
  font-family: var(--clv-font-heading);
  font-size: 20px;
  color: var(--clv-gold);
  margin-bottom: 14px;
}

.clv-puzzle-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

.clv-why-quote {
  font-family: var(--clv-font-heading);
  font-style: italic;
  font-size: 17px;
  color: var(--clv-medium-gray);
  text-align: center;
  max-width: 800px;
  margin: 48px auto 0;
  line-height: 1.7;
}


/* ==========================================================================
   12. FLEXIBLE ENGAGEMENT (Section 9)
   ========================================================================== */

.clv-engagement-section {
  background: var(--clv-white);
  padding: var(--clv-section-padding);
}

.clv-engagement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.clv-engagement-card {
  background: var(--clv-white);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clv-engagement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.clv-engagement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.clv-engagement-card:nth-child(1)::before { background: var(--clv-teal); }
.clv-engagement-card:nth-child(2)::before { background: var(--clv-gold); }
.clv-engagement-card:nth-child(3)::before { background: #7C3AED; }
.clv-engagement-card:nth-child(4)::before { background: var(--clv-navy); }

.clv-engagement-number {
  font-family: var(--clv-font-heading);
  font-size: 36px;
  font-weight: 700;
  color: rgba(15,30,53,0.08);
  margin-bottom: 8px;
}

.clv-engagement-card h3 {
  font-family: var(--clv-font-heading);
  font-size: 18px;
  color: var(--clv-navy);
  margin-bottom: 8px;
}

.clv-engagement-timeline {
  font-size: 12px;
  font-weight: 700;
  color: var(--clv-teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.clv-engagement-card p {
  font-size: 14px;
  color: var(--clv-medium-gray);
  line-height: 1.6;
}

.clv-engagement-closing {
  font-family: var(--clv-font-heading);
  font-style: italic;
  font-size: 15px;
  color: var(--clv-medium-gray);
  text-align: center;
  margin-top: 40px;
}


/* ==========================================================================
   13. STANDARDS & FRAMEWORKS STRIP (Section 10)
   ========================================================================== */

.clv-frameworks-strip {
  background: var(--clv-cream);
  padding: 48px 0;
  overflow-x: auto;
}

.clv-frameworks-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clv-medium-gray);
  text-align: center;
  margin-bottom: 24px;
}

.clv-frameworks-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.clv-framework-item {
  font-family: var(--clv-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--clv-navy);
  padding: 12px 24px;
  border-right: 1px solid #E5E7EB;
  white-space: nowrap;
  transition: color 0.25s ease;
  cursor: default;
}

.clv-framework-item:last-child {
  border-right: none;
}

.clv-framework-item:hover {
  color: var(--clv-teal);
}


/* ==========================================================================
   14. REGULATORY INTELLIGENCE CARDS (Section 11)
   ========================================================================== */

.clv-rss-section {
  background: var(--clv-white);
  padding: var(--clv-section-padding);
}

.clv-rss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.clv-rss-card {
  background: var(--clv-white);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clv-rss-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.clv-rss-source {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.clv-rss-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.clv-rss-dot--red  { background: #DC2626; }
.clv-rss-dot--blue { background: #1E3A5F; }

.clv-rss-source-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--clv-navy);
}

.clv-rss-auto-label {
  font-size: 10px;
  color: var(--clv-medium-gray);
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.clv-rss-card h3 {
  font-family: var(--clv-font-heading);
  font-size: 17px;
  color: var(--clv-navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.clv-rss-card p {
  font-size: 14px;
  color: var(--clv-medium-gray);
  line-height: 1.6;
}


/* ==========================================================================
   15. CONTACT & MAP (Section 12)
   ========================================================================== */

.clv-contact-section {
  background: var(--clv-cream);
  padding: var(--clv-section-padding);
}

.clv-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.clv-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.clv-contact-info-item i {
  color: var(--clv-teal);
  font-size: 18px;
  margin-top: 3px;
}

.clv-contact-info-label {
  font-size: 12px;
  color: var(--clv-medium-gray);
}

.clv-contact-info-value {
  font-size: 15px;
  color: var(--clv-dark-gray);
  font-weight: 600;
}

/* Form Styling */
.clv-form-title {
  font-family: var(--clv-font-heading);
  font-size: 22px;
  color: var(--clv-navy);
  margin-bottom: 6px;
}

.clv-form-note {
  font-size: 14px;
  color: var(--clv-medium-gray);
  margin-bottom: 24px;
}

/* WPForms / CF7 overrides */
.clv-contact-section .wpforms-field input,
.clv-contact-section .wpforms-field textarea,
.clv-contact-section .wpforms-field select,
.clv-contact-section .wpcf7-form-control {
  font-family: var(--clv-font-body) !important;
  font-size: 15px !important;
  border: 1px solid #D1D5DB !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  background: var(--clv-white) !important;
}

.clv-contact-section .wpforms-field input:focus,
.clv-contact-section .wpforms-field textarea:focus,
.clv-contact-section .wpforms-field select:focus,
.clv-contact-section .wpcf7-form-control:focus {
  border-color: var(--clv-teal) !important;
  box-shadow: 0 0 0 3px rgba(45,138,124,0.1) !important;
  outline: none !important;
}

.clv-contact-section .wpforms-submit,
.clv-contact-section .wpcf7-submit {
  width: 100% !important;
  background: var(--clv-navy) !important;
  color: var(--clv-white) !important;
  font-family: var(--clv-font-body) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 14px !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition: background 0.3s ease;
}

.clv-contact-section .wpforms-submit:hover,
.clv-contact-section .wpcf7-submit:hover {
  background: var(--clv-teal) !important;
}

/* Google Maps Embed */
.clv-map-embed {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}


/* ==========================================================================
   16. CTA BAND (Section 13)
   ========================================================================== */

.clv-cta-band {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.clv-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clv-navy);
  opacity: 0.88;
  z-index: 1;
}

.clv-cta-band-content {
  position: relative;
  z-index: 2;
}

.clv-cta-band h2 {
  font-family: var(--clv-font-heading);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--clv-white);
  margin-bottom: 20px;
}

.clv-cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.clv-cta-band .clv-subinfo {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 20px;
}


/* ==========================================================================
   17. FOOTER (Section 14)
   ========================================================================== */

.clv-footer {
  background: var(--clv-footer-navy);
  padding: 72px 0 0;
}

.clv-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.clv-footer-brand-name {
  font-family: var(--clv-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--clv-white);
  margin-bottom: 8px;
}

.clv-footer-taglines {
  font-family: var(--clv-font-heading);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
  line-height: 1.6;
}

.clv-footer-contact {
  font-size: 13px;
  color: var(--clv-teal);
  line-height: 1.8;
}

.clv-footer-contact a {
  color: var(--clv-teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

.clv-footer-contact a:hover {
  color: var(--clv-gold);
}

.clv-footer-col h4 {
  font-family: var(--clv-font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.clv-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clv-footer-col li {
  margin-bottom: 10px;
}

.clv-footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.25s ease;
}

.clv-footer-col a:hover {
  color: var(--clv-teal);
}

/* Footer bottom bar */
.clv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.clv-footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.clv-footer-bottom a:hover {
  color: var(--clv-teal);
}


/* ==========================================================================
   18. ANIMATIONS
   ========================================================================== */

/* Fade in up for scroll-triggered elements */
.clv-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.clv-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.clv-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.clv-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.clv-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.clv-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.clv-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.clv-stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
.clv-stagger.is-visible > *:nth-child(6) { transition-delay: 0.3s; }
.clv-stagger.is-visible > *:nth-child(7) { transition-delay: 0.35s; }
.clv-stagger.is-visible > *:nth-child(8) { transition-delay: 0.4s; }

.clv-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
   19. RESPONSIVE — TABLET
   ========================================================================== */

@media (max-width: 1024px) {
  .clv-services-grid,
  .clv-rss-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clv-engagement-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clv-sector-tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .clv-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .clv-dots-timeline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .clv-dots-timeline::before {
    display: none;
  }

  .clv-dot-item {
    flex: 0 0 calc(25% - 24px);
  }
}


/* ==========================================================================
   20. RESPONSIVE — MOBILE
   ========================================================================== */

@media (max-width: 768px) {
  :root {
    --clv-section-padding: 60px 0;
  }

  .clv-proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .clv-services-grid,
  .clv-rss-grid,
  .clv-engagement-grid {
    grid-template-columns: 1fr;
  }

  .clv-sector-tiles {
    grid-template-columns: 1fr;
  }

  .clv-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .clv-checklist-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .clv-puzzle-grid {
    grid-template-columns: 1fr;
  }

  .clv-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .clv-hero-content {
    padding: 0 20px;
  }

  .clv-hero-headline {
    font-size: 36px;
  }

  .clv-hero-buttons {
    flex-direction: column;
  }

  .clv-hero-buttons .clv-btn {
    width: 100%;
    text-align: center;
  }

  .clv-dot-item {
    flex: 0 0 calc(50% - 24px);
  }

  .clv-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .clv-framework-item {
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .clv-proof-grid {
    grid-template-columns: 1fr;
  }

  .clv-dot-item {
    flex: 0 0 100%;
  }
}

/* ============================================
   CLAVENIR v5.1 — GLOBAL
   Owner: Kobe | Date: August 2026
   ============================================ */

:root {
  --clv-navy: #001B46;
  --clv-teal: #078B8B;
  --clv-gold: #D9A52E;
  --clv-white: #FFFFFF;
  --clv-neutral: #F6F8FA;
  --clv-teal-light: #EDF8F7;
  --clv-charcoal: #1F2937;
  --clv-border: #D9E2EA;
}

.clv-header-cta > a {
  background-color: var(--clv-navy) !important;
  color: var(--clv-white) !important;
  border: 2px solid var(--clv-navy) !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: background-color .2s ease, color .2s ease !important;
}
.clv-header-cta > a:hover {
  background-color: var(--clv-teal) !important;
  border-color: var(--clv-teal) !important;
  color: var(--clv-white) !important;
}

.clv-lang-switch > a {
  color: var(--clv-charcoal) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}
.clv-lang-switch > a:hover { color: var(--clv-teal) !important; }