/* =============================================
   EWL — Education With Lauren
   Shared Stylesheet · ewl.css
   ============================================= */

/* 1. RESET & VARIABLES */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0d1b3e; --navy-mid: #152444; --navy-light: #1e3060;
  --gold: #c9a84c; --gold-light: #e8d5a3; --gold-pale: #f5edd8;
  --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; }
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:hover { color: var(--gold-light); }

/* 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; }
.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-card { background: var(--white); border-radius: 3px; padding: 2rem; border: 1px solid #e8e0d0; position: relative; }
.review-card::before { content: '\201C'; position: absolute; top: 0.8rem; right: 1.5rem; font-family: 'Cormorant Garamond', serif; font-size: 5rem; line-height: 1; color: var(--gold-pale); }
.review-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.review-text { font-size: 0.86rem; line-height: 1.75; color: #4a5568; font-style: italic; margin-bottom: 1.5rem; font-weight: 300; }
.review-author { font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.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; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 0.5rem; }
.checkbox-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--text-light); font-weight: 300; cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--gold); cursor: pointer; padding: 0; }
.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; }
.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; }
  .checkbox-grid { 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; }
}

/* =============================================
   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); }
}
