/* =============================================
   Tuition With Lauren
   Shared Stylesheet · twl.css
   Forked from Education With Lauren's ewl.css --
   same navy/gold/cream system, warmer amber-gold accent.
   ============================================= */

/* 1. RESET & VARIABLES */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0d1b3e; --navy-mid: #152444; --navy-light: #1e3060;
  --gold: #d19a3f; --gold-light: #ecc57e; --gold-pale: #f8e9cf;
  --cream: #f7f2e8; --white: #ffffff; --muted: #8a9ab5;
  --text-navy: #2c3e6b; --text-light: rgba(255,255,255,0.75); --text-lighter: rgba(255,255,255,0.5);
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--navy); overflow-x: hidden; }

/* 2. NAVIGATION */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 4rem;
  background: rgba(13,27,62,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.nav-brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.nav-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--white); letter-spacing: 0.08em; line-height: 1.2; }
.nav-name span { display: block; font-size: 0.65rem; font-family: 'Jost', sans-serif; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); }
nav > ul { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
nav > ul > li > a { font-size: 0.73rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); text-decoration: none; transition: color 0.2s; }
nav > ul > li > a:hover, nav > ul > li > a.active { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 0.5rem 1.2rem; border-radius: 2px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle::after { content: ' ▾'; font-size: 0.55rem; opacity: 0.7; vertical-align: middle; }
.nav-sub {
  display: none;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--navy); border: 1px solid rgba(201,168,76,0.3); border-radius: 3px;
  min-width: 270px; padding: 0.8rem 0 0.3rem; z-index: 300;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  flex-direction: column; gap: 0 !important;
  list-style: none;
}
.nav-dropdown:hover .nav-sub { display: flex; }
.nav-sub li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-sub li:last-child { border-bottom: none; }
.nav-sub a { display: block; padding: 0.7rem 1.3rem; font-size: 0.72rem !important; letter-spacing: 0.08em !important; color: var(--text-light) !important; text-transform: none !important; font-weight: 300 !important; }
.nav-sub a:hover { color: var(--gold) !important; background: rgba(201,168,76,0.06); }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 600; position: relative; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 3. COOKIE MODAL (forced engagement) */
.cookie-overlay {
  position: fixed; inset: 0; background: rgba(8,15,31,0.88);
  z-index: 9990; display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.cookie-overlay.visible { display: flex; }
.cookie-banner {
  background: var(--navy); border: 2px solid var(--gold); border-radius: 4px;
  padding: 2.2rem 2.5rem; max-width: 520px; width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.cookie-banner h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 0.8rem; }
.cookie-text { font-size: 0.85rem; line-height: 1.65; color: var(--text-light); margin-bottom: 1.5rem; }
.cookie-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.8rem; }
.btn-cookie-accept { background: var(--gold); color: var(--navy); border: none; padding: 0.7rem 1.8rem; border-radius: 2px; cursor: pointer; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; flex: 1; }
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-decline { background: transparent; color: var(--text-light); border: 1.5px solid rgba(255,255,255,0.3); padding: 0.7rem 1.8rem; border-radius: 2px; cursor: pointer; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; }

/* 4. HERO (homepage full-screen) */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; padding-top: 5rem; }
.hero.hero-short { min-height: 58vh; }
.hero-img { position: absolute; inset: 0; background: url('https://i.ibb.co/Y4svTNNS/Gemini-Generated-Image-bm1b1tbm1b1tbm1b.png') center 20% / cover no-repeat; z-index: 0; transform: translateZ(0); will-change: transform; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,27,62,0.92) 0%, rgba(13,27,62,0.68) 50%, rgba(13,27,62,0.25) 100%); z-index: 1; }
.hero-left { position: relative; z-index: 2; padding: 6rem 3rem 6rem 4rem; max-width: 640px; }
.hero-short .hero-left { padding: 5rem 3rem 5rem 4rem; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; }
.hero-eyebrow::before { content: ''; width: 2.5rem; height: 1px; background: var(--gold); display: block; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 4.5vw, 4rem); font-weight: 600; line-height: 1.1; color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.82); max-width: 46ch; margin-bottom: 2rem; font-weight: 300; }
.hero-location { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 2.5rem; letter-spacing: 0.08em; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.breadcrumb-hero { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }
.breadcrumb-hero a { color: var(--gold-light); text-decoration: none; }
.breadcrumb-hero a:hover { color: var(--gold); }

/* Carousel */
.carousel-slide { display: none; animation: carouselIn 0.5s ease both; }
.carousel-slide.active { display: block; }
.carousel-dots { display: flex; gap: 0.6rem; margin-bottom: 2rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid var(--gold); background: transparent; cursor: pointer; padding: 0; transition: background 0.25s; }
.dot.active { background: var(--gold); }
@keyframes carouselIn { from { opacity: 0; } to { opacity: 1; } }

/* 5. TRUST BAR */
.trust-bar { background: var(--gold); padding: 1rem 4rem; display: flex; justify-content: center; gap: 3rem; align-items: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; font-weight: 600; color: var(--navy); letter-spacing: 0.06em; }

/* 6. SECTIONS */
.section { padding: 6rem 4rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-dark { background: var(--navy); }
.section-navy { background: var(--navy); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.eyebrow { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.6rem; }
.eyebrow::before { content: ''; width: 1.5rem; height: 1px; background: var(--gold); display: block; }
.eyebrow-light { color: var(--gold-light); }
.eyebrow-light::before { background: var(--gold-light); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 600; line-height: 1.2; margin-bottom: 0.8rem; }
.title-light { color: var(--white); }
.section-sub { font-size: 0.95rem; line-height: 1.75; color: #6b7a9a; max-width: 56ch; font-weight: 300; margin-bottom: 3.5rem; }
.section-sub-light { color: var(--text-light); }

/* 7. HOW WE CAN HELP */
.hwch-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; border-radius: 4px; overflow: hidden; border: 1px solid rgba(201,168,76,0.25); }
.hwch-col { background: var(--navy-mid); padding: 0; display: flex; flex-direction: column; border-right: 1px solid rgba(201,168,76,0.2); }
.hwch-col:last-child { border-right: none; }
.hwch-col:nth-child(odd) { background: var(--navy); }
.hwch-header { padding: 1.8rem 2rem 1.4rem; border-bottom: 2px solid rgba(201,168,76,0.3); cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; }
.hwch-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--white); line-height: 1.2; }
.hwch-title em { font-style: italic; color: var(--gold); font-weight: 600; }
.hwch-chevron { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-left: 0.5rem; transition: transform 0.3s; display: none; }
.hwch-body { padding: 1.4rem 2rem; flex: 1; display: flex; flex-direction: column; }
.hwch-sub { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-style: italic; line-height: 1.55; margin-bottom: 1.4rem; }
.hwch-services { list-style: none; flex: 1; margin-bottom: 1.5rem; }
.hwch-services li { padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-weight: 300; }
.hwch-svc-name { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: rgba(255,255,255,0.8); }
.hwch-svc-name::before { content: '→'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }
.hwch-svc-desc { font-size: 0.73rem; color: rgba(255,255,255,0.4); line-height: 1.4; padding-left: 1.2rem; margin-top: 0.25rem; font-style: italic; }
.hwch-badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 1px 5px; border-radius: 2px; margin-left: 4px; }
.hwch-badge-soon { display: inline-block; border: 1px solid rgba(201,168,76,0.4); color: rgba(201,168,76,0.6); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 1px 5px; border-radius: 2px; margin-left: 4px; }
.hwch-cta { display: block; text-align: center; padding: 0.85rem; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); border-radius: 2px; color: var(--gold); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; margin-top: auto; transition: background 0.2s, color 0.2s; }
.hwch-cta:hover { background: var(--gold); color: var(--navy); }
.hwch-consult { text-align: center; margin-top: 2.5rem; }
.hwch-consult p { font-size: 0.85rem; color: rgba(255,255,255,0.55); font-style: italic; }
.hwch-consult a { color: var(--gold); text-decoration: none; font-weight: 500; }
.hwch-consult a.btn-gold { color: var(--navy) !important; }
.hwch-copy { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.78); font-weight: 300; }
.hwch-consult a:hover { color: var(--gold-light); }

/* SERVICES (folded into one unified block, per Wayne's go-live feedback) */
.services-unified { border: 1px solid rgba(201,168,76,0.25); border-radius: 4px; overflow: hidden; margin-top: 1rem; }
.services-unified-item { display: flex; gap: 1.8rem; padding: 2.2rem 2.4rem; border-bottom: 1px solid rgba(201,168,76,0.15); align-items: flex-start; background: var(--navy); }
.services-unified-item:nth-child(even) { background: var(--navy-mid); }
.services-unified-item:last-child { border-bottom: none; }
.svc-num { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--gold); opacity: 0.7; flex-shrink: 0; width: 2.6rem; }
.svc-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 400; color: var(--white); margin-bottom: 0.4rem; line-height: 1.2; }
.svc-body h3 em { font-style: italic; color: var(--gold); font-weight: 600; }
.svc-tags { font-size: 0.66rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.9rem; }
.svc-body p:not(.svc-tags) { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.75); font-weight: 300; max-width: 62ch; margin-bottom: 0.9rem; }
.svc-link { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em; color: var(--gold); text-decoration: none; }
.svc-link:hover { color: var(--gold-light); text-decoration: underline; }
@media (max-width: 700px) {
  .services-unified-item { flex-direction: column; gap: 0.5rem; padding: 1.6rem 1.5rem; }
  .svc-num { width: auto; }
}

/* 8. STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 2.2rem; left: 3rem; right: 3rem; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent); }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 4.5rem; height: 4.5rem; background: var(--white); border: 1.5px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--gold); }
.step h3 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.step p { font-size: 0.82rem; color: #6b7a9a; line-height: 1.65; font-weight: 300; }
.step-detail { display: inline-block; margin-top: 0.6rem; font-size: 0.72rem; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; background: rgba(201,168,76,0.1); padding: 0.25rem 0.7rem; border-radius: 2px; }

/* 9. ABOUT */
.bio-inner { max-width: 860px; }
.bio-role { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: var(--gold); margin-bottom: 1.5rem; }
.bio-text { font-size: 0.92rem; line-height: 1.85; color: #4a5568; font-weight: 300; margin-bottom: 2.5rem; }
.bio-text p + p { margin-top: 1rem; }

/* 9b. TUITION TEAM */
.team-group-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); margin: 0 0 1.6rem; padding-bottom: 0.7rem; border-bottom: 1px solid rgba(201,168,76,0.35); }
.team-grid { display: flex; flex-direction: column; gap: 3rem; margin-top: 1rem; }
.team-card { display: grid; grid-template-columns: 220px 1fr; gap: 2.5rem; align-items: start; }
.team-photo { width: 220px; border-radius: 4px; overflow: hidden; border-top: 3px solid var(--gold); box-shadow: 0 4px 18px rgba(20,30,60,0.08); flex-shrink: 0; }
.team-photo img { width: 100%; height: auto; display: block; object-fit: cover; }
.team-role { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 600; color: var(--navy); margin: 0 0 1rem; line-height: 1.15; }
.team-bio { font-size: 0.9rem; line-height: 1.8; color: #4a5568; font-weight: 300; }
.team-bio p + p { margin-top: 1rem; }
@media (max-width: 700px) {
  .team-card { grid-template-columns: 1fr; }
  .team-photo { width: 160px; margin: 0 auto; }
  .team-card > div:last-child { text-align: center; }
  .team-bio { text-align: left; }
}
.quals-title { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.quals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; margin-bottom: 2rem; }
.qual-item { display: flex; align-items: flex-start; gap: 0.7rem; background: var(--white); border-radius: 3px; padding: 0.9rem 1rem; border-left: 2px solid var(--gold); }
.qual-icon { font-size: 0.9rem; flex-shrink: 0; margin-top: 0.15rem; }
.qual-text { font-size: 0.78rem; line-height: 1.5; color: var(--navy); }
.qual-text strong { font-weight: 600; display: block; margin-bottom: 0.1rem; }

/* 10. REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 2rem; }

/* REVIEW CAROUSEL -- horizontal scroll-snap track (matches withlauren.uk) */
.reviews-carousel-wrap { position: relative; padding: 0.5rem 0 0.25rem; }
.reviews-carousel-wrap::before {
  content: ''; position: absolute; top: -1.5rem; bottom: 1.5rem; left: 50%;
  width: 100vw; transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.07), transparent 65%);
  pointer-events: none; z-index: 0;
}
.reviews-carousel {
  position: relative; z-index: 1; display: flex; align-items: stretch;
  gap: 1.4rem; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 0.4rem 0.15rem 1.1rem; margin: 0 -0.15rem;
  scrollbar-width: none; -ms-overflow-style: none;
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.reviews-carousel .review-card {
  flex: 0 0 min(310px, 80vw); scroll-snap-align: start;
  display: flex; flex-direction: column;
}
.reviews-carousel .review-card .review-text { flex: 1; }
.review-card { background: var(--white); border-radius: 8px; padding: 1.8rem 1.9rem 1.6rem; border: 1px solid #ece5d6; border-top: 3px solid var(--gold); position: relative; box-shadow: 0 4px 14px rgba(20,30,60,0.05); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(20,30,60,0.11); }
.review-card-top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.1rem; }
.review-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--navy), #2c3e63); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; }
.review-card-id { flex: 1; min-width: 0; }
.review-card-top .review-stars { margin-bottom: 0; flex-shrink: 0; }
.review-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; }
.review-text { font-size: 0.86rem; line-height: 1.75; color: #4a5568; font-style: italic; margin-bottom: 0; font-weight: 300; }
.review-author { font-size: 0.85rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.review-role { font-size: 0.72rem; color: #8a9ab5; margin-top: 0.15rem; }
.reviews-cta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding: 2rem; background: var(--white); border-radius: 3px; border: 1px dashed rgba(201,168,76,0.4); }
.reviews-cta-text { flex: 1; min-width: 220px; }
.reviews-cta-text h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.reviews-cta-text p { font-size: 0.83rem; color: #6b7a9a; font-weight: 300; }
.btn-google-review { display: inline-flex; align-items: center; gap: 0.6rem; background: #fff; color: #3c4043; border: 1px solid #dadce0; padding: 0.75rem 1.5rem; border-radius: 3px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-decoration: none; white-space: nowrap; transition: box-shadow 0.2s; }
.btn-google-review:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.btn-fb-review { display: inline-flex; align-items: center; gap: 0.6rem; background: #1877f2; color: var(--white); padding: 0.75rem 1.5rem; border-radius: 3px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-decoration: none; white-space: nowrap; transition: background 0.2s; }
.btn-fb-review:hover { background: #1462cc; }

/* 11. CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { width: 2.5rem; height: 2.5rem; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.contact-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.2rem; }
.contact-value { font-size: 0.88rem; color: var(--text-light); font-weight: 300; }
.contact-value a { color: var(--gold-light); text-decoration: none; }
.contact-value a:hover { color: var(--gold); }

/* 12. FORM */
.interest-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2); border-radius: 3px; padding: 2.5rem; }
.interest-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 0.4rem; }
.interest-form > p { font-size: 0.83rem; color: var(--text-light); margin-bottom: 1.8rem; font-weight: 300; line-height: 1.6; }
.form-section-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin: 1.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(201,168,76,0.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.8rem 1rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.2); border-radius: 2px; color: var(--white); font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 300; outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-consent { font-size: 0.73rem; color: var(--text-lighter); line-height: 1.5; margin-bottom: 1.2rem; margin-top: 1rem; }

/* 13. FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 4rem; }
.faq-item { border-bottom: 1px solid #e8e0d0; padding: 1.5rem 0; }
.faq-q { font-size: 0.92rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
.faq-a { font-size: 0.85rem; line-height: 1.7; color: #6b7a9a; font-weight: 300; }

/* 14. CTA SECTION */
.cta-section { background: var(--navy); text-align: center; padding: 7rem 4rem; position: relative; overflow: hidden; border-top: 1px solid rgba(201,168,76,0.18); }
.cta-section::before { content: 'EWL'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Cormorant Garamond', serif; font-size: 20rem; font-weight: 600; color: rgba(201,168,76,0.03); pointer-events: none; white-space: nowrap; }
.cta-tagline { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--gold-light); margin-bottom: 1rem; }
.cta-actions { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.social-link { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); color: var(--gold-light); text-decoration: none; padding: 0.5rem 1rem; border-radius: 2px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em; transition: background 0.2s; }
.social-link:hover { background: rgba(201,168,76,0.2); }

/* 15. BUTTONS */
.btn-gold { background: var(--gold); color: var(--navy); padding: 0.95rem 2.2rem; border-radius: 2px; border: none; font-family: 'Jost', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; cursor: pointer; display: inline-block; transition: background 0.2s, transform 0.2s; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.5); color: var(--white); padding: 0.95rem 2.2rem; border-radius: 2px; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: background 0.2s, border-color 0.2s; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-navy { border: 1.5px solid var(--navy); color: var(--navy); padding: 0.95rem 2.2rem; border-radius: 2px; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: background 0.2s, color 0.2s; }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* 16. FOOTER */
footer { background: #080f1f; padding: 3rem 4rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; font-weight: 300; max-width: 32ch; }
.footer-col h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* 17. DETAIL CARDS (inner pages) */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.detail-card { background: var(--white); border: 1px solid #e8e0d0; border-radius: 3px; padding: 2rem; border-left: 3px solid var(--gold); }
.detail-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 0.5rem; }
.detail-card .price { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--gold); font-weight: 600; margin: 0.5rem 0; }
.detail-card p { font-size: 0.85rem; color: #6b7a9a; line-height: 1.7; font-weight: 300; margin-bottom: 1rem; }
.detail-card ul { list-style: none; margin-bottom: 1rem; }
.detail-card ul li { font-size: 0.83rem; color: #4a5568; padding: 0.3rem 0; display: flex; align-items: center; gap: 0.6rem; }
.detail-card ul li::before { content: '✓'; color: var(--gold); font-weight: 600; }
.service-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.service-badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.25rem 0.9rem; border-radius: 2px; margin-bottom: 0.8rem; }
.new-service-badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 2px; margin-bottom: 0.5rem; }

/* 18. INFO BOX */
.info-box { background: var(--navy); border-radius: 3px; padding: 2rem; border-left: 3px solid var(--gold); margin-bottom: 2rem; }
.info-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 0.8rem; }
.info-box p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.7; font-weight: 300; }

/* 19. ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* =============================================
   20. RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  nav { padding: 0.8rem 1.5rem; }
  /* Nav toggle — must sit above the overlay */
  .nav-toggle { display: flex; position: relative; z-index: 9500; }

  /* Full-screen menu — block not flex (flex collapses items on Android Chrome) */
  nav > ul {
    display: none;
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: #0d1b3e;
    z-index: 9000;
    overflow-y: auto;
    padding: 76px 0 2rem;
    margin: 0; list-style: none;
  }
  nav > ul.open { display: block; }

  /* Every item explicitly block so Chrome cannot collapse them */
  nav > ul > li { display: block; width: 100%; border-bottom: 1px solid rgba(201,168,76,0.12); }
  nav > ul > li > a {
    display: block; width: 100%; padding: 1.1rem 2rem;
    font-size: 0.9rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
    color: #d4dff5; text-decoration: none;
  }
  nav > ul > li > a:active, nav > ul > li > a.active { color: #c9a84c; }
  .nav-cta {
    display: block !important; margin: 1.5rem 2rem 0 !important;
    padding: 1rem !important; border-radius: 2px;
    background: #c9a84c !important; color: #0d1b3e !important;
    text-align: center; font-weight: 600 !important;
    width: calc(100% - 4rem) !important;
  }

  /* How We Can Help accordion toggle */
  .nav-dropdown-toggle::after { content: ' ▸'; font-size: 0.65rem; opacity: 0.6; }
  .nav-dropdown-toggle.sub-open::after { content: ' ▾'; }

  /* Sub-menu — block layout */
  .nav-sub {
    display: none;
    position: static !important; transform: none !important;
    background: rgba(255,255,255,0.04) !important;
    border: none !important; border-left: 2px solid rgba(201,168,76,0.3) !important;
    border-radius: 0 !important; box-shadow: none !important;
    margin-left: 1.5rem; padding: 0 !important; min-width: 0 !important;
    list-style: none;
  }
  .nav-sub.open { display: block !important; }
  .nav-sub li { display: block; border-bottom: 1px solid rgba(201,168,76,0.1) !important; }
  .nav-sub a {
    display: block !important; padding: 0.9rem 1.5rem !important;
    font-size: 0.85rem !important; font-weight: 300 !important;
    color: rgba(255,255,255,0.75) !important;
    text-transform: none !important; letter-spacing: 0.05em !important;
  }
  .nav-sub a:active { color: #c9a84c !important; }

  /* Carousel — reserve space for tallest 3-line headline, anchors from top */
  .carousel-slide { min-height: 13rem; }

  .hero { min-height: 80vh; padding-top: 70px; }
  .hero.hero-short { min-height: 65vh; }
  .hero-img { height: 80vh; bottom: auto; }
  .hero-short .hero-img { height: 65vh; }
  .hero-left { padding: 3rem 1.5rem; max-width: 100%; text-align: center; }
  .hero-short .hero-left { padding: 3rem 1.5rem; }
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-overlay { background: rgba(13,27,62,0.88); }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-location { justify-content: center; }
  .hero-actions { justify-content: center; flex-direction: column; }
  .hero-actions a { text-align: center; width: 100%; }
  .carousel-dots { justify-content: center; }
  .breadcrumb-hero { justify-content: center; }

  .trust-bar { padding: 0.8rem 1rem; gap: 0.5rem; display: grid; grid-template-columns: 1fr 1fr; text-align: center; }
  .trust-item { justify-content: center; font-size: 0.72rem; }
  .trust-bar .trust-item:last-child { display: none; }

  .hwch-grid { display: block; border-radius: 4px; }
  .hwch-col { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.2); }
  .hwch-col:last-child { border-bottom: none; }
  .hwch-header { cursor: pointer; }
  .hwch-chevron { display: block; }
  .hwch-body { max-height: 0; overflow: hidden; padding: 0 2rem; transition: max-height 0.4s ease, padding 0.3s ease; }
  .hwch-col.open .hwch-body { max-height: 1200px; padding: 1.4rem 2rem; }
  .hwch-col.open .hwch-chevron { transform: rotate(180deg); }

  .section { padding: 3.5rem 1.5rem; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .section-sub { max-width: 100%; margin-bottom: 2.5rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps-grid::before { display: none; }
  .quals-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-cta { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .interest-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 4rem 1.5rem; }
  footer { padding: 3rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .detail-grid { grid-template-columns: 1fr; }
  .cookie-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 0.86rem; line-height: 1.65; }
}

/* =============================================
   21. BLOG / ARTICLE
   ============================================= */
.article { max-width: 760px; margin: 0 auto; }
.article .lead { font-size: 1.08rem; line-height: 1.85; color: var(--text-navy); font-weight: 300; margin-bottom: 2.2rem; }
.article p { font-size: 0.96rem; line-height: 1.9; color: #4a5568; font-weight: 300; margin-bottom: 1.25rem; }
.article h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--navy); line-height: 1.25; margin: 2.8rem 0 0.9rem; display: flex; gap: 0.8rem; align-items: baseline; }
.article h2 .n { color: var(--gold); font-weight: 600; flex-shrink: 0; }
.article h2.plain { display: block; }
.article strong { color: var(--navy); font-weight: 600; }

/* Stat callout */
.stat-callout { background: var(--white); border-left: 3px solid var(--gold); border-radius: 3px; padding: 1.6rem 1.9rem; margin: 2rem 0; }
.stat-callout .big { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; color: var(--gold); font-weight: 600; line-height: 1; }
.stat-callout p { margin: 0.6rem 0 0; font-size: 0.83rem; color: #6b7a9a; line-height: 1.6; }

/* Service section */
.article-service { margin-top: 3rem; padding-top: 2.5rem; border-top: 2px solid var(--gold); }
.article-service .eyebrow { margin-bottom: 0.5rem; }
.article-emphasis { font-family: 'Cormorant Garamond', serif; font-size: 1.22rem; color: var(--navy); font-style: italic; line-height: 1.65; margin: 1.4rem 0; font-weight: 400; }

/* 3-col capability grid */
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem 1.5rem; margin: 1.8rem 0 2rem; }
.capability-item { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.88rem; color: var(--navy); font-weight: 400; line-height: 1.4; }
.capability-item::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }

/* Closing pull-quote */
.article-pull { font-family: 'Cormorant Garamond', serif; font-size: 1.42rem; font-style: italic; color: var(--navy); line-height: 1.65; text-align: center; margin: 2.5rem 0 1.8rem; padding: 2rem 1.5rem; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); font-weight: 400; }

/* In-article CTA */
.article-cta { text-align: center; margin: 2rem 0 0.5rem; }

/* Sources */
.sources { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid #e8e0d0; }
.sources h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
.sources ul { list-style: none; }
.sources li { font-size: 0.78rem; color: #8a9ab5; line-height: 1.7; padding-left: 1rem; position: relative; margin-bottom: 0.3rem; }
.sources li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.disclaimer { font-size: 0.78rem; font-style: italic; color: #8a9ab5; line-height: 1.6; margin-top: 1.4rem; }

@media (max-width: 960px) {
  .article h2 { font-size: 1.45rem; }
  .article .lead { font-size: 1rem; }
  .article-pull { font-size: 1.22rem; }
}
@media (max-width: 600px) {
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   22. SPECIALIST BIO CARDS
   ============================================= */
.specialist-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.specialist-card { background: var(--white); border-top: 3px solid var(--gold); border-radius: 4px; padding: 2rem 2rem 1.6rem; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.specialist-card .spec-role { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.specialist-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 600; color: var(--navy); margin: 0 0 0.25rem; line-height: 1.15; }
.specialist-card .spec-focus { font-size: 0.8rem; color: #8a9ab5; margin-bottom: 1.3rem; letter-spacing: 0.04em; }
.specialist-card p { font-size: 0.9rem; color: #4a5568; line-height: 1.85; font-weight: 300; margin-bottom: 1rem; }
.specialist-card .spec-list { list-style: none; margin: 0 0 1.2rem; }
.specialist-card .spec-list li { font-size: 0.87rem; color: #4a5568; padding: 0.22rem 0 0.22rem 1.4rem; position: relative; line-height: 1.5; }
.specialist-card .spec-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.spec-qualifications { border-top: 1px solid #e8e0d0; padding-top: 1rem; margin-top: 1.2rem; }
.spec-qualifications h4 { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.65rem; }
.spec-qualifications ul { list-style: none; }
.spec-qualifications li { font-size: 0.8rem; color: #8a9ab5; padding: 0.18rem 0 0.18rem 1rem; position: relative; line-height: 1.55; }
.spec-qualifications li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* Process steps */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.process-step { text-align: center; padding: 1.5rem 1rem; }
.process-step .step-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 0.6rem; opacity: 0.8; }
.process-step h4 { font-size: 0.85rem; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.82rem; color: #6b7a9a; line-height: 1.6; }

@media (max-width: 700px) {
  .specialist-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   23. STRAPLINE STRIP
   ============================================= */
.strip-strapline {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  text-align: center;
  padding: 1.1rem 4rem;
  font-size: 0.82rem;
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(201,168,76,0.25);
}
.strip-strapline strong { color: var(--gold); font-weight: 500; }
@media(max-width:700px){ .strip-strapline { padding: 1rem 1.5rem; } }

/* --- Partnership lockup over hero (v38) --- */
.hero-partner {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.6rem 1.25rem 0.6rem 0.7rem;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 999px;
  text-decoration: none;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.hero-partner:hover { background: rgba(255,255,255,0.17); border-color: rgba(201,168,76,0.6); }
.hero-partner img { width: 52px; height: 52px; display: block; flex-shrink: 0; }
.hero-partner-text { line-height: 1.2; }
.hero-partner-label { display: block; font-family: 'Jost', sans-serif; font-size: 0.56rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.hero-partner-name { display: block; margin-top: 0.22rem; font-family: 'Jost', sans-serif; font-size: 0.84rem; font-weight: 400; color: #fff; white-space: nowrap; }
@media(max-width:1000px){ .hero-partner { display: none; } }

/* Full partnership graphic - mobile only, where the hero lockup is hidden */
.partner-band { display: none; background: var(--cream); padding: 2.2rem 1.1rem 1.9rem; }
.partner-band-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.partner-band-link { display: block; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 18px rgba(13,27,62,0.13); }
.partner-band-link img { width: 100%; height: auto; display: block; }
.partner-band-caption { margin-top: 0.9rem; font-size: 0.82rem; font-weight: 300; color: #4a5568; line-height: 1.7; }
.partner-band-caption a { color: var(--navy); font-weight: 500; border-bottom: 1px solid var(--gold); text-decoration: none; white-space: nowrap; }
@media(max-width:1000px){ .partner-band { display: block; } }

/* --- Hero badge stack (v40) --- */
.hero-badges { position: absolute; z-index: 3; right: 3rem; bottom: 2.8rem; display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.hero-award { display: block; background: #fff; border-radius: 8px; padding: 0.45rem 0.6rem; box-shadow: 0 3px 16px rgba(0,0,0,0.28); transition: transform 0.25s ease; }
.hero-award:hover { transform: translateY(-2px); }
.hero-award img { display: block; width: 148px; height: auto; }
@media(max-width:1000px){ .hero-badges { display: none; } }

/* Award badge in the mobile credentials band */
.band-award { display: block; width: 168px; margin: 0 auto 1.4rem; }
.band-award img { display: block; width: 100%; height: auto; }
.band-divider { width: 44px; height: 1px; background: var(--gold); margin: 0 auto 1.4rem; opacity: 0.6; }

/* Invoice note (v44) */
.invoice-note {
  margin-top: 1.6rem; text-align: center;
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.06em; color: #8a9ab5;
}
.invoice-note-light { color: rgba(255,255,255,0.55); }

/* Case study (v44) */
.case-study { background: var(--navy); color: #fff; }
.case-study .section-title { color: var(--cream); }
.case-study-lead { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 220px 1fr; gap: 2.6rem; align-items: center; text-align: left; }
.case-portrait { width: 220px; height: 220px; border-radius: 50%; overflow: hidden; box-shadow: 0 4px 26px rgba(0,0,0,0.32); }
.case-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-study-lead p { font-size: 1rem; font-weight: 300; line-height: 1.95; color: rgba(255,255,255,0.82); margin-bottom: 1.1rem; }
.case-study-lead p.turn { color: var(--gold-light); font-style: italic; }
.case-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.8rem; }
.case-step { background: var(--cream); border-radius: 6px; padding: 1.9rem 1.6rem; text-align: center; position: relative; }
.case-step-num { font-family: 'Jost', sans-serif; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.case-step h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--navy); margin: 0 0 0.7rem; line-height: 1.15; }
.case-step p { font-size: 0.86rem; font-weight: 300; line-height: 1.75; color: #4a5568; margin: 0; }
.case-close { margin-top: 2.4rem; text-align: center; }
.case-close p { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-style: italic; color: var(--cream); line-height: 1.5; margin-bottom: 1.6rem; }
@media(max-width:820px){
  .case-steps { grid-template-columns: 1fr; gap: 1.1rem; }
  .case-close p { font-size: 1.2rem; }
  .case-study-lead { grid-template-columns: 1fr; gap: 1.6rem; text-align: center; justify-items: center; }
  .case-portrait { width: 180px; height: 180px; }
}
