/* Shared CSS — Hong Kong Circumcision Centre
   Header, Nav, Footer, CTA, Disclaimer, Base Reset
   Page-specific styles remain inline.
*/

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #ffab39;
  --primary-hover: #ff7200;
  --primary-soft: #ffc878;
  --bg-cream: #FFF9F2;
  --bg-ivory: #FFFDF9;
  --bg-body: #FDFBF7;
  --bg-white: #FFFFFF;
  --text: #1F1B16;
  --text-secondary: #6B5740;
  --text-muted: #9A8870;
  --border: #F0E6D6;
  --border-soft: #F7F1E6;
  --shadow-soft: 0 1px 2px rgba(180,140,80,0.04), 0 4px 16px rgba(180,140,80,0.06);
  --shadow-hover: 0 2px 4px rgba(180,140,80,0.06), 0 8px 24px rgba(180,140,80,0.10);
  --radius: 14px;
  --radius-sm: 10px;
}
body {
  margin: 0;
  font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg-ivory);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
/* Reserve the scrollbar gutter so scroll-lock never shifts layout */
html { scrollbar-gutter: stable; }
body { padding-top: 0; }
.lang-switch {
  display: inline-flex;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px;
  margin-left: auto;   /* push to far right in flex row */
}
.lang-switch a {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.15s;
}
.lang-switch a.active {
  color: var(--primary);
  background: var(--bg-cream);
}
.lang-switch a:hover {
  color: var(--primary);
}
.site-header {
  background: var(--bg-ivory);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0px;
  z-index: 100;
}
.site-nav { background: var(--bg-ivory); border-top: 1px solid var(--border-soft); }
.site-header .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-wrap img {
  height: 48px;
  width: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.site-nav ul {
  max-width: 1100px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0 24px;
}
.site-nav a {
  display: block;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.site-nav a:hover { color: var(--primary); }
.site-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 700;
}
.branch-pill {
  padding: 3px 10px;
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.15s;
}
.branch-pill:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
  flex-wrap: nowrap;
}
.branch-pills {
  display: flex;
  gap: 8px;
  align-items: center;
}
.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.action-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.action-btn span {
  font-size: 14px;
}
.action-phone {
  background: #f5f5f5;
  color: #333;
}
.action-phone:hover {
  background: #e8e8e8;
  transform: translateY(-1px);
}
.action-whatsapp { background: transparent; color: var(--text-secondary); padding: 8px; border: 1px solid var(--border); border-radius: 24px; }
.action-whatsapp { background: transparent; color: var(--text-secondary); padding: 8px; border: 1px solid var(--border); border-radius: 24px; }
.action-whatsapp:hover { background: #f0faf4; border-color: #25D366; transform: translateY(-1px); }
.action-whatsapp .wa-icon {
  background: #25D366;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.action-whatsapp .wa-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}
@media (max-width: 1024px) {
  .header-actions {
    gap: 8px;
  }

  .action-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .action-btn span {
    font-size: 13px;
  }
}
.cta-section {
  padding: 60px 24px;
  background: var(--bg-cream);
  text-align: center;
  border-top: 1px solid var(--border-soft);
}
.cta-section h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}
.cta-section p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 100px; font-weight: 700; font-size: 15px; text-decoration: none; transition: all 0.2s; }
.cta-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.cta-whatsapp { background: transparent; color: #25D366; border: 1px solid #25D366; }
.cta-whatsapp:hover { background: #f0faf4; transform: translateY(-2px); }
.cta-whatsapp .wa-icon { background: #25D366; border-radius: 50%; width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; }
.cta-whatsapp .wa-icon svg { width: 20px; height: 20px; fill: white; }
.cta-phone { background: var(--bg-white); color: #333; border: 1px solid var(--border); }
.cta-phone:hover { background: #f5f5f5; transform: translateY(-2px); }
.site-footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 48px 24px 20px;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-col p { font-size: 13px; color: var(--text-muted); line-height: 1.75; }
.footer-col ul { list-style: none; }
.footer-col li { padding: 3px 0; }
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
}
.footer-col a:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item .wa-icon { background: #25D366; border-radius: 50%; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-contact-item .wa-icon svg { width: 12px; height: 12px; fill: white; }
.footer-copy { max-width: 1100px; margin: 24px auto 0; padding-top: 20px; border-top: 1px solid var(--border-soft); font-size: 12px; color: var(--text-muted); text-align: center; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 20px 0 0; font-size: 12px; color: var(--text-muted); text-align: center; }

.disclaimer-box {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Breadcrumbs */
.breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 24px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--primary);
}
.breadcrumb .sep {
  margin: 0 2px;
  font-size: 11px;
}
.breadcrumb .current {
  color: var(--text-secondary);
}
@media (min-width: 901px) {
  .logo-wrap img { height: 64px; width: auto; }
  /* Nav — desktop/tablet */
  .site-nav a { font-size: 15.5px; }

  /* Hero sub (NOT h1) */
  .hero-sub { font-size: 17.5px; }
  .hero-badge { font-size: 13px; }
  .hero-text-box { padding: 24px 28px; }
  .trust-card { padding: 24px; }
  .trust-title { font-size: 15.5px; }
  .trust-list li { font-size: 15px; }

  /* Section text */
  .section-title { font-size: 32px; }
  .section-subtitle { font-size: 15.5px; }
  .section-eyebrow { font-size: 13px; }

  /* Advantages */
  .adv-card h3 { font-size: 18.5px; }
  .adv-card p { font-size: 15px; line-height: 1.85; }

  /* Doctor */
  .doctor-info .name { font-size: 26px; }
  .doctor-info .role { font-size: 14px; }
  .credential { font-size: 12.5px; }
  .doctor-bio { font-size: 15.5px; line-height: 1.95; }

  /* Steps */
  .step-card h4 { font-size: 16.5px; }
  .step-card p { font-size: 14.5px; line-height: 1.85; }

  /* Media */
  .media-label { font-size: 12px; }
  .media-item { font-size: 14px; }

  /* FAQ */
  details.faq-item > summary { font-size: 16.5px; }
  .faq-answer { font-size: 15px; line-height: 1.9; }

  /* CTA */
  .cta-section h2 { font-size: 26px; }
  .cta-section p { font-size: 15.5px; }

  /* Footer */
  .site-footer { font-size: 14.5px; }
  .footer-col h4 { font-size: 14.5px; }
  .footer-col p { font-size: 14.5px; line-height: 1.85; }
  .footer-col a { font-size: 14.5px; }
  .footer-bottom { font-size: 13px; }
}
@media (max-width: 900px) {
  .hero { min-height: 300px; max-height: 300px; }
  .hero .inner { height: 300px; }
  .hero__img { height: 300px; }
  .hero-content { bottom: 12px; top: auto; transform: none; right: 12px; left: auto; max-width: 70%; }
  .hero h1 { font-size: 30px; }
  .trust-card { display: none; }
  .adv-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .doctor-card { grid-template-columns: 1fr; gap: 24px; }
  .doctor-photo { width: 100%; max-width: 220px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .site-header .inner { flex-wrap: wrap; height: auto; padding: 12px 24px; gap: 12px; }

    /* Nav: tighter spacing for tablets */
    .site-nav ul { padding: 0 16px; }
    .site-nav a { padding: 11px 13px; font-size: 13px; }

    /* Language switcher always visible on mobile */
  .lang-switch {
    display: inline-flex !important;
    margin-left: auto;
  }
}
@media (max-width: 576px) {
  .hero { min-height: 260px; max-height: 260px; }
  .hero .inner { height: 260px; }
  .hero__img { height: 260px; }
  .hero h1 { font-size: 26px; }
  .adv-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 20px; }
  .section-title { font-size: 22px; }
  body { padding-bottom: 0; }

  /* Mobile header: compact action row */
  .site-header .inner { padding: 10px 16px; gap: 8px; flex-wrap: nowrap; }
  .logo-wrap img {
  height: 36px; width: auto;
}

  /* Action buttons smaller on mobile */
  .header-actions { gap: 6px; }

  .branch-pills { gap: 4px; }
  .branch-pill {
    padding: 2px 8px;
    font-size: 11px;
  }

  .lang-switch {
    gap: 1px;
  }
  .lang-switch a {
    padding: 3px 8px;
    font-size: 11px;
  }

  .action-btn {
    padding: 6px 10px;
  }

  .action-btn svg {
    width: 16px;
    height: 16px;
  }

  .action-btn span {
    display: none;
  }

  .action-whatsapp {
    border: none;
  }

  /* Compact nav on mobile */
  .site-nav {
  margin: 0 auto; width: 100%; margin-top: 8px; }
  .site-nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }
  .site-nav li {
    flex: 1 1 calc(33.333% - 4px);
  }
  .site-nav a {
    text-align: center;
    padding: 8px 4px;
    font-size: 16px;
    white-space: nowrap;
  }
}
@media (max-width: 576px) {
  .lang-switch a {
    padding: 4px 10px;
    font-size: 12px;
  }
  .action-whatsapp { border: none; }
}/* =============================================
   MOBILE HAMBURGER + OVERLAY
   Breakpoint: 900px — desktop unchanged
   ============================================= */

/* --- Hamburger button (hidden on desktop) --- */
.hamburger-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 46px;
  height: 46px;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 1100;
  flex-shrink: 0;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
  transform-origin: center;
}

/* Hamburger -> X  (translate BEFORE rotate; top bar -45°, bottom bar +45°;
   gap 8 + line 2 = 10px center distance → ±5px translate = X centered) */
.hamburger-btn.open .hamburger-line:nth-child(1) {
  transform: translateY(5px) rotate(-45deg);
}
.hamburger-btn.open .hamburger-line:nth-child(2) {
  transform: translateY(-5px) rotate(45deg);
}

/* --- Full-screen overlay --- */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0; bottom: 0;
  background: var(--bg-white);
  z-index: 95;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 24px;
  justify-content: flex-start;
}
.mobile-overlay.open {
  display: flex;
  animation: overlaySlideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes overlaySlideDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Overlay nav links — staggered cascade (luxury feel) */
.mobile-overlay-nav {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
}
.mobile-overlay-nav a {
  display: block;
  padding: 11px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-soft);
  opacity: 0;
  transform: translateY(18px);
}
.mobile-overlay.open .mobile-overlay-nav a {
  animation: overlayLinkIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.mobile-overlay.open .mobile-overlay-nav a:nth-child(1) { animation-delay: 0.12s; }
.mobile-overlay.open .mobile-overlay-nav a:nth-child(2) { animation-delay: 0.18s; }
.mobile-overlay.open .mobile-overlay-nav a:nth-child(3) { animation-delay: 0.24s; }
.mobile-overlay.open .mobile-overlay-nav a:nth-child(4) { animation-delay: 0.30s; }
.mobile-overlay.open .mobile-overlay-nav a:nth-child(5) { animation-delay: 0.36s; }
.mobile-overlay.open .mobile-overlay-nav a:nth-child(6) { animation-delay: 0.42s; }
@keyframes overlayLinkIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-overlay-nav a:last-child { border-bottom: none; }
.mobile-overlay-nav a.active {
  color: #fff;
  font-weight: 700;
  background: var(--primary);
  border-radius: 6px;
  border-bottom-color: transparent;
}
.mobile-overlay-nav a:active { background: var(--bg-cream); }

/* Overlay contact actions — fade up last (luxury cascade tail) */
.mobile-overlay-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  width: 100%;
  max-width: 420px;
  opacity: 0;
  transform: translateY(14px);
}
.mobile-overlay.open .mobile-overlay-actions {
  animation: overlayLinkIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.50s forwards;
}
.mobile-overlay-actions .branch-pills {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.mobile-overlay-actions .branch-pill {
  padding: 4px 12px;
  font-size: 13px;
}
.mobile-overlay-actions .action-btn {
  width: 100%;
  justify-content: center;
  font-size: 13.5px;
  padding: 10px 20px;
}
.mobile-overlay-actions .action-btn span {
  display: inline !important;
  font-size: 13.5px;
}
.mobile-overlay-actions .action-whatsapp .wa-icon {
  display: flex !important;  /* restore green circle centering */
}
.mobile-overlay-actions .lang-switch {
  margin-left: 0;
  margin-top: 2px;
}
.mobile-overlay-actions .lang-switch a {
  padding: 4px 14px;
  font-size: 13px;
}

/* --- Mobile: hamburger ON, header-actions + site-nav OFF --- */
@media (max-width: 576px) {
  .hamburger-btn { display: flex !important; }
  .header-actions { display: none !important; }
  .site-nav       { display: none !important; }
  .site-header .inner {
    flex-wrap: nowrap !important;
    height: auto;
    padding: 10px 16px;
    gap: 10px;
  }
  .logo-wrap img {
  height: 36px; width: auto;
}
      }

    /* =============================================
     FAQ (accordion) -- shared across pages
     ============================================= */
.faq-section { padding: 48px 24px; }
.faq-wrap { max-width: 760px; margin: 0 auto; }
details.faq-item {
  border-bottom: 1px solid var(--border-soft);
}
details.faq-item:first-child { border-top: 1px solid var(--border-soft); }
details.faq-item > summary {
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.2s;
  flex-shrink: 0;
}
details.faq-item[open] > summary { color: var(--primary); }
details.faq-item[open] > summary::after { content: '−'; }
.faq-answer {
  padding: 0 0 20px;
  color: var(--text-secondary);
  line-height: 1.85;
}
@media (min-width: 901px) {
  details.faq-item > summary { font-size: 16.5px; }
  .faq-answer { font-size: 15px; line-height: 1.9; }
  }

  /* =============================================
     PULL-DOWN NAV — spec-rewritten, clean
     ============================================= */
  .nav-pulldown { display: none; }

  @media (max-width: 576px) {
    .breadcrumb { display: none; }

    .nav-pulldown {
      display: block;
      position: sticky;
      z-index: 90;
    }

    .nav-pulldown__toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 10px 16px;
      background: var(--primary);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      text-align: left;
      line-height: 1.4;
    }
    .nav-pulldown__toggle:hover { background: var(--primary-hover); }

    .nav-pulldown__arrow {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      margin-left: auto;
      opacity: 0.9;
      transition: transform 0.2s ease;
    }
    .nav-pulldown__toggle.open .nav-pulldown__arrow {
      transform: rotate(180deg);
      opacity: 1;
    }

    /* ---- Dropdown list (Webflow-style real-height animation) ---- */
        .nav-pulldown__list {
                  display: block;
                  height: 0;
                  overflow: hidden;
                  background: var(--bg-white);
                  border-left: 1px solid var(--border);
                  border-right: 1px solid var(--border);
                  border-bottom: 1px solid var(--border);
                  box-shadow: var(--shadow-soft);
                  box-sizing: border-box;
                  transition: height 0.5s ease;
                }

        /* Nav links */
        .nav-pulldown__list a {
          display: block;
          padding: 11px 16px;
          border-bottom: 1px solid var(--border-soft);
          color: var(--text-secondary);
          text-decoration: none;
          font-size: 13.5px;
          transition: color 500ms ease, background-color 500ms ease;
        }
        .nav-pulldown__list a:last-of-type { border-bottom: none; }
        .nav-pulldown__list a:hover { background: var(--bg-cream); }
        .nav-pulldown__list a.active {
          background: var(--primary);
          color: #fff;
          font-weight: 700;
        }

        /* Contact CTAs */
        .nav-pulldown__contact {
          display: flex;
          gap: 10px;
          padding: 14px 16px 28px;
          border-top: 1px solid var(--border-soft);
        }
    .nav-pulldown__cta {
          flex: 1;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 7px;
          padding: 11px 0;
          border-radius: 8px;
          font-size: 13px;
          font-weight: 500;
          text-decoration: none;
          color: var(--text-secondary);
          background: var(--bg-cream);
          border: none;
          transition: background 0.2s ease, color 0.2s ease;
        }
        .nav-pulldown__cta:hover {
          background: #f5f0e6;
        }
        .nav-pulldown__cta--wa { color: #1da851; }
        .nav-pulldown__cta--phone { color: var(--primary); }
    .nav-pulldown__cta .wa-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
    }
    .nav-pulldown__cta svg { width: 16px; height: 16px; fill: currentColor; }
  }

/* =============================================
   PAGE HERO (sub-page) — shared base
   Page-specific overrides (image URLs, text
   positions) remain inline per page.
   ============================================= */
.page-hero {
  background: var(--bg-body);
  border-bottom: 1px solid var(--border-soft);
  padding: 0;
  position: relative;
  min-height: 260px;
  max-height: 260px;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 260px;
}
.page-hero__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.page-hero__text {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 2px 12px rgba(31,27,22,0.06);
  z-index: 2;
}
.page-hero__badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  white-space: nowrap;
}
.page-hero__sub {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .page-hero {
    min-height: 180px;
    padding: 0;
  }
  .page-hero__inner {
    padding: 0;
    height: 100%;
    min-height: 180px;
  }
  .page-hero__img { display: none; }
  .page-hero__text {
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: auto;
    left: auto;
    transform: none;
    max-width: 42%;
    padding: 10px 12px;
    z-index: 2;
    width: auto;
  }
  .page-hero__badge { font-size: 18px; margin-bottom: 4px; }
  .page-hero__sub { font-size: 12px; }
}

@media (min-width: 901px) {
  .page-hero__sub { font-size: 17px; }
}

/* =============================================
   CONTENT SECTIONS — shared base
   Page-specific padding/spacing overrides
   remain inline per page.
   ============================================= */
.content-section:nth-of-type(even) { background: var(--bg-ivory); }
.content-section:nth-of-type(odd) { background: var(--bg-white); }
.content-section + .content-section { border-top: 1px solid var(--border-soft); }
.content-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
}
.content-section h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 12px;
}
.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.content-section h3 { font-size: 20px; font-weight: 700; color: var(--text); margin: 16px 0 8px; }
.content-section h4 { font-size: 17px; font-weight: 700; color: var(--primary); margin: 14px 0 6px; }
.content-section p { font-size: 15px; line-height: 1.85; color: var(--text-secondary); margin-bottom: 16px; }
.content-section li { font-size: 15px; line-height: 1.8; margin-bottom: 8px; color: var(--text-secondary); }
.content-section img { border-radius: var(--radius); margin: 16px 0; border: 1px solid var(--border-soft); }
.content-section ul, .content-section ol { padding-left: 24px; margin: 14px 0; }
.content-section li::marker { color: var(--primary); }

/* Section heading (FAQ, etc.) */
.section-head { text-align: center; margin-bottom: 32px; }
.section-eyebrow { font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.section-title { font-size: 28px; font-weight: 900; color: var(--text); margin-bottom: 8px; letter-spacing: -0.3px; }
.section-subtitle { color: var(--text-muted); }

@media (min-width: 901px) {
  .content-section h2 { font-size: 32px; }
  .content-section h3 { font-size: 22px; }
  .content-section h4 { font-size: 18px; }
  .content-section li { font-size: 16px; }
  .content-section p { font-size: 16px; }
}


