    /* ============================================
       DESIGN TOKENS
       Editorial luxury-medical with warm botanical
       palette — deliberately rejects the corporate
       teal/blue every competitor uses.
       ============================================ */
    :root {
      --cream: #FAF6F1;
      --cream-deep: #F2EBE0;
      --cream-warm: #EDE3D2;
      --ink: #1F1B16;
      --ink-soft: #4A4239;
      --ink-mute: #8B8276;
      --terracotta: #B85C38;
      --terracotta-deep: #8F4226;
      --terracotta-soft: #E8C8B8;
      --sage: #7A8471;
      --sage-deep: #4F5A47;
      --gold: #C9A961;
      --white: #FFFFFF;
      --black: #0F0D0A;
      
      --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
      
      --shadow-sm: 0 1px 2px rgba(31, 27, 22, 0.04);
      --shadow-md: 0 4px 12px rgba(31, 27, 22, 0.06);
      --shadow-lg: 0 12px 32px rgba(31, 27, 22, 0.08);
      
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 20px;
      --radius-pill: 999px;
      
      --container: 1200px;
      --container-narrow: 880px;
    }

    /* ============================================
       RESET & BASE
       ============================================ */
    *, *::before, *::after { box-sizing: border-box; }
    
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    
    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      color: var(--ink);
      background: var(--cream);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    img { max-width: 100%; height: auto; display: block; }
    
    h1, h2, h3, h4 {
      font-family: var(--font-display);
      font-weight: 400;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin: 0;
    }
    
    h1 { font-size: clamp(2.25rem, 6vw, 4.5rem); font-weight: 300; }
    h2 { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 400; }
    h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); font-weight: 500; }
    h4 { font-size: 1.125rem; font-weight: 600; }
    
    p { margin: 0 0 1rem 0; }
    
    a { color: inherit; text-decoration: none; }
    
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    
    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 1.25rem;
    }
    
    .container-narrow {
      width: 100%;
      max-width: var(--container-narrow);
      margin: 0 auto;
      padding: 0 1.25rem;
    }
    
    section { padding: 4rem 0; }
    
    @media (min-width: 768px) { section { padding: 6rem 0; } }
    
    .eyebrow {
      font-family: var(--font-body);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--terracotta);
      margin-bottom: 1rem;
      display: inline-block;
    }
    
    .accent-line {
      display: inline-block;
      width: 40px;
      height: 1px;
      background: var(--terracotta);
      vertical-align: middle;
      margin-right: 0.75rem;
    }

    /* ============================================
       BUTTONS
       ============================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.625rem;
      padding: 1.05rem 2rem;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.03em;
      border-radius: var(--radius-pill);
      transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                  box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                  background-color 0.2s ease,
                  border-color 0.2s ease,
                  color 0.2s ease;
      cursor: pointer;
      border: 1px solid transparent;
      white-space: nowrap;
      will-change: transform;
      text-decoration: none;
    }
    
    .btn-primary {
      background: var(--terracotta);
      color: var(--cream);
      border-color: var(--terracotta);
      box-shadow:
        0 1px 2px rgba(31, 27, 22, 0.08),
        0 4px 12px rgba(143, 66, 38, 0.22);
    }
    .btn-primary:hover {
      background: var(--terracotta-deep);
      border-color: var(--terracotta-deep);
      transform: translateY(-2px);
      box-shadow:
        0 2px 4px rgba(31, 27, 22, 0.1),
        0 10px 24px rgba(143, 66, 38, 0.32);
    }
    .btn-primary:active {
      transform: translateY(0);
      box-shadow:
        0 1px 2px rgba(31, 27, 22, 0.12),
        0 2px 6px rgba(143, 66, 38, 0.2);
      transition-duration: 0.08s;
    }
    .btn-primary:focus-visible {
      outline: 2px solid var(--terracotta-deep);
      outline-offset: 3px;
    }
    
    .btn-secondary {
      background: transparent;
      color: var(--ink);
      border: 1px solid rgba(31, 27, 22, 0.25);
    }
    .btn-secondary:hover {
      background: var(--ink);
      color: var(--cream);
      border-color: var(--ink);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(31, 27, 22, 0.15);
    }
    .btn-secondary:active {
      transform: translateY(0);
      transition-duration: 0.08s;
    }
    .btn-secondary:focus-visible {
      outline: 2px solid var(--ink);
      outline-offset: 3px;
    }

    /* ============================================
       HEADER
       ============================================ */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(250, 246, 241, 0.92);
      backdrop-filter: saturate(180%) blur(12px);
      -webkit-backdrop-filter: saturate(180%) blur(12px);
      border-bottom: 1px solid rgba(31, 27, 22, 0.06);
    }
    
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.25rem;
      max-width: var(--container);
      margin: 0 auto;
    }
    
    .logo {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .logo-name {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 500;
      letter-spacing: -0.02em;
    }
    .logo-sub {
      font-family: var(--font-body);
      font-size: 0.6875rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--ink-mute);
      margin-top: 2px;
    }
    
    .nav-desktop {
      display: none;
      gap: 2rem;
      align-items: center;
    }
    .nav-desktop a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--ink-soft);
      position: relative;
      transition: color 0.2s;
    }
    .nav-desktop a:hover { color: var(--terracotta); }
    .nav-desktop a::after {
      content: '';
      position: absolute;
      left: 0; bottom: -4px;
      width: 0; height: 1px;
      background: var(--terracotta);
      transition: width 0.3s ease;
    }
    .nav-desktop a:hover::after { width: 100%; }
    
    .header-cta { display: none; gap: 1rem; align-items: center; }
    
    .header-phone {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--ink);
      font-weight: 600;
      font-size: 0.9375rem;
      transition: color 0.2s;
    }
    .header-phone:hover { color: var(--terracotta); }
    
    .header-phone-mobile {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--terracotta);
      color: var(--cream);
      margin-right: 0.5rem;
      transition: background 0.2s;
    }
    .header-phone-mobile:hover { background: var(--terracotta-deep); }
    @media (min-width: 1024px) { .header-phone-mobile { display: none; } }
    
    .menu-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding: 0.5rem;
    }
    .menu-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--ink);
      transition: all 0.3s;
    }
    
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: var(--cream);
      padding: 5rem 1.5rem 2rem;
      transform: translateX(100%);
      transition: transform 0.4s ease;
      z-index: 99;
      overflow-y: auto;
    }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-menu nav { display: flex; flex-direction: column; gap: 1.5rem; }
    .mobile-menu nav a {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 400;
      color: var(--ink);
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(31, 27, 22, 0.08);
    }
    .mobile-menu .btn { margin-top: 1.5rem; }
    
    @media (min-width: 1024px) {
      .nav-desktop { display: flex; }
      .header-cta { display: flex; }
      .menu-toggle { display: none; }
    }

    /* ============================================
       HERO
       ============================================ */
    .hero {
      padding: 3rem 0 4rem;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 60%;
      height: 80%;
      background: radial-gradient(circle, var(--terracotta-soft) 0%, transparent 60%);
      opacity: 0.4;
      z-index: 0;
      pointer-events: none;
    }
    
    .hero-inner {
      display: grid;
      gap: 3rem;
      position: relative;
      z-index: 1;
    }
    
    .hero-content .eyebrow { animation: fadeUp 0.7s ease both; }
    .hero-title {
      font-size: clamp(2.5rem, 7vw, 5rem);
      font-weight: 300;
      line-height: 1.05;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.7s 0.1s ease both;
    }
    .hero-title em {
      font-style: italic;
      font-weight: 400;
      color: var(--terracotta);
    }
    .hero-subtitle {
      font-size: 1.0625rem;
      line-height: 1.65;
      color: var(--ink-soft);
      margin-bottom: 2rem;
      max-width: 32rem;
      animation: fadeUp 0.7s 0.2s ease both;
    }
    
    .hero-ctas {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      animation: fadeUp 0.7s 0.3s ease both;
    }
    
    .hero-trust {
      margin-top: 2.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2rem;
      animation: fadeUp 0.7s 0.4s ease both;
    }
    .trust-item {
      display: flex;
      flex-direction: column;
    }
    .trust-value {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--ink);
      line-height: 1;
    }
    .trust-value .stars { color: var(--gold); font-size: 1rem; letter-spacing: -2px; }
    .trust-label {
      font-size: 0.75rem;
      color: var(--ink-mute);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 0.25rem;
    }
    
    .hero-portrait {
      position: relative;
      aspect-ratio: 4 / 5;
      max-width: 480px;
      margin: 0 auto;
      animation: fadeIn 1.2s ease both;
    }
    
    .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
      display: block;
      border-radius: var(--radius-lg);
    }
    
    .hero-image-overlay {
      position: absolute;
      inset: 0;
      border-radius: var(--radius-lg);
      pointer-events: none;
      /* Cream blend on the left edge so the image transitions softly 
         into the text area on its left */
      background: linear-gradient(
        to right,
        var(--cream) 0%,
        rgba(250, 246, 241, 0.55) 14%,
        rgba(250, 246, 241, 0.15) 30%,
        transparent 50%
      );
    }
    
    /* ============================================
       MOBILE HERO — Horizontal swipe carousel
       Slide 1: Text content
       Slide 2: Image with badge
       User swipes left/right between them
       Both slides occupy the same viewport height
       ============================================ */
    @media (max-width: 1023px) {
      .hero {
        padding: 0;
        position: relative;
        overflow: hidden;
      }
      
      .hero > .container {
        padding: 0;
        max-width: none;
        position: relative;
      }
      
      /* Hero-inner becomes a horizontal scroll-snap container */
      .hero-inner {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: none;
        grid-template-rows: none;
        gap: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        min-height: 85vh;
        min-height: 85dvh;
      }
      .hero-inner::-webkit-scrollbar { display: none; }
      
      .hero-content,
      .hero-portrait {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
      }
      
      .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Bottom padding leaves room for dots indicator and prevents 
           content being clipped by the floating CTA bar */
        padding: 2rem 1.5rem 7rem;
        position: relative;
      }
      
      .hero-portrait {
        max-width: none;
        aspect-ratio: auto;
        height: auto;
        min-height: 85vh;
        min-height: 85dvh;
        margin: 0;
        position: relative;
      }
      
      .hero-image,
      .hero-image-overlay {
        border-radius: 0;
      }
      
      .hero-image-overlay {
        background: transparent;
      }
      
      .portrait-badge {
        /* Anchored to the IMAGE area, well clear of marquee below.
           Generous clearance prevents any overlap on small viewports. */
        top: auto;
        bottom: 7rem;
        left: 1.25rem;
        right: auto;
        z-index: 5;
        box-shadow: 0 8px 24px rgba(0,0,0,0.25);
      }
      
      /* Slide indicator dots — sit below the badge, just above the marquee */
      .hero-mobile-dots {
        position: absolute;
        bottom: 1.75rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.5rem;
        z-index: 10;
        padding: 0.5rem 0.875rem;
        background: rgba(250, 246, 241, 0.92);
        backdrop-filter: blur(10px);
        border-radius: 999px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      }
      .hero-mobile-dots .dot {
        width: 8px;
        height: 8px;
        padding: 0;
        border-radius: 50%;
        border: none;
        background: var(--ink-mute);
        opacity: 0.4;
        cursor: pointer;
        transition: all 0.35s ease;
      }
      .hero-mobile-dots .dot.active {
        opacity: 1;
        background: var(--terracotta);
        width: 26px;
        border-radius: 999px;
      }
      .hero-mobile-dots .dot:focus-visible {
        outline: 2px solid var(--terracotta);
        outline-offset: 2px;
      }
      
      /* Hide the floating CTA bar while the hero is visible — 
         redundant with the hero's own CTA, and it blocks the
         badge and trust stats. Shows after user scrolls past hero. */
      body:not(.scrolled-past-hero) .mobile-cta-bar {
        opacity: 0;
        pointer-events: none;
        transform: translateY(100%);
      }
      .mobile-cta-bar {
        transition: opacity 0.3s ease, transform 0.3s ease;
      }
      
      @media (prefers-reduced-motion: reduce) {
        .hero-inner { scroll-behavior: auto; }
        .mobile-cta-bar { transition: none; }
      }
    }
    
    /* Hide dots on desktop */
    @media (min-width: 1024px) {
      .hero-mobile-dots { display: none; }
    }
    .portrait-placeholder {
      font-family: var(--font-display);
      font-size: 0.875rem;
      color: var(--terracotta-deep);
      text-align: center;
      padding: 2rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .portrait-badge {
      position: absolute;
      bottom: -1.5rem;
      left: -1rem;
      background: var(--ink);
      color: var(--cream);
      padding: 1rem 1.25rem;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      max-width: 220px;
    }
    .portrait-badge-num {
      font-family: var(--font-display);
      font-size: 2rem;
      line-height: 1;
      color: var(--gold);
    }
    .portrait-badge-label {
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--cream-deep);
      margin-top: 4px;
    }
    
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    @media (min-width: 1024px) {
      .hero { padding: 5rem 0 6rem; }
      .hero-inner {
        grid-template-columns: 1.1fr 1fr;
        align-items: center;
        gap: 4rem;
      }
    }

    /* ============================================
       MARQUEE — Credential Bar
       ============================================ */
    .credential-bar {
      background: var(--terracotta);
      color: var(--cream);
      padding: 1.25rem 0;
      overflow: hidden;
      position: relative;
    }
    .marquee {
      display: flex;
      gap: 3rem;
      animation: marquee 30s linear infinite;
      white-space: nowrap;
    }
    .marquee-item {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 1rem;
      font-weight: 300;
      letter-spacing: 0.04em;
      display: flex;
      align-items: center;
      gap: 3rem;
    }
    .marquee-item::after {
      content: '✦';
      color: var(--gold);
      font-style: normal;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ============================================
       ABOUT
       ============================================ */
    .about { background: var(--cream); }
    .about-grid {
      display: grid;
      gap: 3rem;
    }
    .about-content p {
      font-size: 1.0625rem;
      line-height: 1.75;
      color: var(--ink-soft);
    }
    .about-content p.lead {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 300;
      font-style: italic;
      color: var(--ink);
      line-height: 1.4;
      margin-bottom: 1.5rem;
    }
    .credentials {
      display: grid;
      gap: 0.875rem;
      margin-top: 2.5rem;
    }
    .credential {
      display: flex;
      gap: 1.25rem;
      align-items: center;
      padding: 1.25rem 1.5rem;
      background: var(--white);
      border-radius: var(--radius-md);
      border-left: 2px solid var(--terracotta);
      transition: all 0.25s ease;
    }
    .credential:hover {
      transform: translateX(2px);
      box-shadow: var(--shadow-md);
    }
    .credential-icon {
      font-family: var(--font-display);
      font-size: 2.25rem;
      font-style: italic;
      font-weight: 400;
      color: var(--terracotta);
      line-height: 1;
      letter-spacing: -0.02em;
      flex-shrink: 0;
      width: 2.5rem;
      text-align: center;
    }
    .credential-detail strong {
      display: block;
      font-size: 0.9375rem;
      color: var(--ink);
      margin-bottom: 3px;
      line-height: 1.35;
    }
    .credential-detail span {
      font-size: 0.8125rem;
      color: var(--ink-mute);
    }
    
    @media (min-width: 1024px) {
      .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: start;
      }
      .about-content {
        padding-top: 3rem;
      }
    }

    /* ============================================
       SERVICES (Tabbed)
       ============================================ */
    .services { background: var(--cream-deep); }
    
    .services-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 3rem;
    }
    .services-header p {
      color: var(--ink-soft);
      margin-top: 1rem;
    }
    
    .tabs {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 2.5rem;
      overflow-x: auto;
      padding-bottom: 0.5rem;
      scrollbar-width: none;
    }
    .tabs::-webkit-scrollbar { display: none; }
    .tab {
      flex-shrink: 0;
      padding: 0.7rem 1.25rem;
      border-radius: var(--radius-pill);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--ink-soft);
      background: var(--white);
      border: 1px solid transparent;
      transition: all 0.2s;
    }
    .tab.active {
      background: var(--ink);
      color: var(--cream);
    }
    .tab:hover:not(.active) {
      border-color: var(--ink);
    }
    
    .services-grid {
      display: grid;
      gap: 1rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
    
    .service-card {
      background: var(--cream);
      padding: 1.75rem;
      border-radius: var(--radius-md);
      transition: all 0.3s;
      border: 1px solid transparent;
      cursor: pointer;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--terracotta-soft);
    }
    .service-card-icon {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--terracotta-soft);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display);
      font-style: italic;
      color: var(--terracotta-deep);
      margin-bottom: 1rem;
    }
    .service-card h4 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
    }
    .service-card p {
      font-size: 0.875rem;
      color: var(--ink-soft);
      margin: 0;
    }
    
    .panel { display: none; }
    .panel.active { display: block; animation: fadeIn 0.4s ease; }

    /* ============================================
       COMPARISON TABLE
       Desktop: refined table with soft cream header
       Mobile: transforms into stacked feature cards
       ============================================ */
    .comparison { background: var(--cream); }
    .comparison-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 2.5rem;
    }
    .comparison-table-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      background: var(--white);
    }
    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
    }
    
    /* Header row — soft cream-deep, ink text */
    .comparison-table thead th {
      padding: 1.25rem 1rem;
      text-align: left;
      background: var(--cream-deep);
      color: var(--ink);
      font-weight: 600;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      vertical-align: bottom;
    }
    /* "OUR CLINIC" column header — terracotta anchor */
    .comparison-table thead th.us {
      background: var(--terracotta);
      color: var(--cream);
      position: relative;
      padding-top: 1.85rem;
    }
    .comparison-table thead th.us::before {
      content: 'OUR CLINIC';
      position: absolute;
      top: 8px; left: 1rem;
      font-size: 0.625rem;
      letter-spacing: 0.15em;
      opacity: 0.85;
      text-transform: uppercase;
      font-weight: 500;
    }
    
    /* Body cells */
    .comparison-table td {
      padding: 1.1rem 1rem;
      border-bottom: 1px solid var(--cream-deep);
      vertical-align: middle;
      color: var(--ink-soft);
    }
    .comparison-table tr:last-child td { border-bottom: none; }
    .comparison-table tbody tr {
      transition: background 0.15s ease;
    }
    .comparison-table tbody tr:hover td {
      background: rgba(0,0,0,0.02);
    }
    .comparison-table tbody tr:hover td.us {
      background: rgba(184, 92, 56, 0.11);
    }
    
    /* Feature column (first) */
    .comparison-table td:first-child {
      font-weight: 600;
      color: var(--ink);
      background: var(--cream);
    }
    
    /* Dr. Kanchan column — focal point */
    .comparison-table td.us {
      background: rgba(184, 92, 56, 0.08);
      color: var(--ink);
      font-weight: 500;
    }
    
    .check { color: var(--sage); font-size: 1.25rem; font-weight: 700; margin-right: 0.35rem; }
    .cross { color: var(--ink-mute); font-size: 1.25rem; opacity: 0.45; }
    .partial { color: var(--gold); font-style: italic; font-size: 0.875rem; }
    
    /* ============================================
       MOBILE: Transform table into feature cards
       Each row becomes a stacked card
       ============================================ */
    @media (max-width: 767px) {
      .comparison-table-wrap {
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        overflow: visible;
      }
      
      /* Hide the table header (we'll show feature name per card) */
      .comparison-table thead {
        position: absolute;
        left: -9999px;
        clip: rect(0 0 0 0);
      }
      
      .comparison-table,
      .comparison-table tbody,
      .comparison-table tr,
      .comparison-table td {
        display: block;
        width: 100%;
        font-size: 0.9rem;
      }
      
      /* Each row = a card */
      .comparison-table tr {
        background: var(--white);
        border-radius: var(--radius-md);
        margin-bottom: 0.875rem;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.04);
      }
      .comparison-table tr:last-child {
        margin-bottom: 0;
      }
      
      /* Feature title (first cell) — cream-deep band at top of card */
      .comparison-table td:first-child {
        background: var(--cream-deep);
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--ink);
        border-bottom: none;
      }
      
      /* Dr. Kanchan cell — prominent, terracotta accent */
      .comparison-table td.us {
        background: rgba(184, 92, 56, 0.07);
        border-left: 3px solid var(--terracotta);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 0.875rem 1rem 0.875rem 0.875rem;
        color: var(--ink);
        font-weight: 500;
      }
      .comparison-table td.us::before {
        content: 'Dr. Kanchan Srivastava';
        display: block;
        font-size: 0.6875rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--terracotta);
        margin-bottom: 0.35rem;
        font-weight: 600;
      }
      
      /* Competitor cells — compact, label above value */
      .comparison-table td[data-label] {
        padding: 0.75rem 1rem;
        background: var(--white);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        color: var(--ink-soft);
        font-size: 0.875rem;
      }
      .comparison-table tr td[data-label]:last-of-type {
        border-bottom: none;
      }
      .comparison-table td[data-label]::before {
        content: attr(data-label);
        display: block;
        font-size: 0.6875rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--ink-mute);
        margin-bottom: 0.25rem;
        font-weight: 600;
      }
      
      /* Don't apply hover effect on touch */
      .comparison-table tbody tr:hover td,
      .comparison-table tbody tr:hover td.us {
        background: revert;
      }
      .comparison-table td.us:hover { background: rgba(184, 92, 56, 0.07); }
      
      .check { font-size: 1.1rem; margin-right: 0.25rem; }
      .cross { font-size: 1.1rem; }
    }

    /* ============================================
       WHY US — Big USP Cards
       ============================================ */
    .why-us {
      background: var(--cream-deep);
      color: var(--ink);
    }
    .why-us h2 { color: var(--ink); }
    .why-us .eyebrow { color: var(--terracotta); }
    
    .usp-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: 1fr;
      margin-top: 3rem;
    }
    @media (min-width: 640px) { .usp-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .usp-grid { grid-template-columns: repeat(3, 1fr); } }
    
    .usp {
      padding: 2rem;
      background: var(--cream);
      border: 1px solid rgba(31, 27, 22, 0.06);
      border-radius: var(--radius-md);
      transition: all 0.3s;
    }
    .usp:hover {
      border-color: var(--terracotta);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }
    .usp-num {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--terracotta);
      font-style: italic;
      line-height: 1;
      margin-bottom: 1rem;
    }
    .usp h3 {
      color: var(--ink);
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: 0.75rem;
    }
    .usp p {
      font-size: 0.9375rem;
      color: var(--ink-soft);
      line-height: 1.6;
      margin: 0;
    }

    /* ============================================
       REVIEWS
       ============================================ */
    .reviews { background: var(--cream); }
    .reviews-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .review-stars-large {
      font-size: 1.5rem;
      color: var(--gold);
      letter-spacing: 4px;
      margin-bottom: 0.5rem;
    }
    .review-rating-text {
      font-family: var(--font-display);
      font-size: 1.125rem;
    }
    .review-rating-text strong { font-weight: 600; }
    
    .reviews-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
    
    .review-card {
      background: var(--white);
      padding: 2rem;
      border-radius: var(--radius-md);
      border-top: 3px solid var(--terracotta-soft);
      position: relative;
    }
    .review-card::before {
      content: '"';
      position: absolute;
      top: 0.5rem;
      right: 1.25rem;
      font-family: var(--font-display);
      font-size: 4rem;
      color: var(--terracotta-soft);
      line-height: 1;
    }
    .review-text {
      font-family: var(--font-display);
      font-size: 1.0625rem;
      font-style: italic;
      font-weight: 300;
      color: var(--ink-soft);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }
    .review-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding-top: 1rem;
      border-top: 1px solid var(--cream-deep);
    }
    .review-avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--terracotta);
      color: var(--cream);
      display: flex; align-items: center; justify-content: center;
      font-weight: 600;
      font-size: 0.875rem;
    }
    .review-author-name {
      font-weight: 600;
      font-size: 0.875rem;
    }
    .review-author-source {
      font-size: 0.75rem;
      color: var(--ink-mute);
    }
    
    .reviews-cta {
      text-align: center;
      margin-top: 3rem;
      display: flex;
      gap: 0.75rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ============================================
       FAQ
       ============================================ */
    .faq { background: var(--cream-deep); }
    .faq-list {
      max-width: 760px;
      margin: 3rem auto 0;
    }
    .faq-item {
      background: var(--cream);
      border-radius: var(--radius-md);
      margin-bottom: 0.75rem;
      overflow: hidden;
      transition: all 0.2s;
    }
    .faq-item summary {
      padding: 1.5rem;
      cursor: pointer;
      font-family: var(--font-display);
      font-size: 1.125rem;
      font-weight: 500;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      color: var(--ink);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 300;
      color: var(--terracotta);
      flex-shrink: 0;
      transition: transform 0.3s;
      line-height: 1;
    }
    .faq-item[open] summary::after { content: '−'; }
    .faq-answer {
      padding: 0 1.5rem 1.5rem;
      color: var(--ink-soft);
      font-size: 0.9375rem;
      line-height: 1.7;
    }

    /* ============================================
       LOCATION & CONTACT
       ============================================ */
    .location {
      background: var(--cream);
      position: relative;
    }
    .location-grid {
      display: grid;
      gap: 2.5rem;
    }
    @media (min-width: 1024px) {
      .location-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
      }
    }
    .location-info-block {
      margin-bottom: 2rem;
    }
    .location-info-block h4 {
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.75rem;
      color: var(--terracotta);
      margin-bottom: 0.75rem;
    }
    .location-info-block p {
      font-size: 1.0625rem;
      color: var(--ink);
      line-height: 1.6;
      margin: 0;
    }
    .contact-buttons {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    /* ============================================
       FOOTER
       ============================================ */
    .site-footer {
      background: var(--cream-deep);
      color: var(--ink-soft);
      padding: 3rem 0 2rem;
      border-top: 1px solid rgba(31, 27, 22, 0.06);
    }
    .footer-grid {
      display: grid;
      gap: 2rem 1.5rem;
      margin-bottom: 2.5rem;
      grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
      grid-column: 1 / -1;
    }
    @media (min-width: 768px) {
      .footer-grid { 
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2.5rem;
      }
      .footer-brand {
        grid-column: auto;
      }
    }
    .footer-brand h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 0.75rem;
    }
    .footer-brand p {
      font-size: 0.875rem;
      color: var(--ink-soft);
      line-height: 1.6;
      max-width: 360px;
    }
    .footer-col h4 {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--terracotta);
      margin-bottom: 1rem;
    }
    .footer-col ul {
      list-style: none;
      padding: 0; margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-col a {
      color: var(--ink-soft);
      font-size: 0.875rem;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--terracotta); }
    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(31, 27, 22, 0.08);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.75rem;
      color: var(--ink-mute);
    }

    /* ============================================
       FLOATING MOBILE CTA BAR
       ============================================ */
    .mobile-cta-bar {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: var(--cream);
      padding: 0.75rem 1rem;
      box-shadow: 0 -4px 16px rgba(31, 27, 22, 0.08);
      display: flex;
      gap: 0.5rem;
      z-index: 50;
      border-top: 1px solid var(--cream-deep);
    }
    .mobile-cta-bar .btn { flex: 1; padding: 0.75rem 1rem; font-size: 0.875rem; }
    @media (min-width: 1024px) { .mobile-cta-bar { display: none; } }
    
    body { padding-bottom: 80px; }
    @media (min-width: 1024px) { body { padding-bottom: 0; } }

    /* ============================================
       CALL DIALOG (Number Chooser)
       ============================================ */
    .call-dialog {
      border: none;
      border-radius: var(--radius-lg);
      padding: 0;
      max-width: 420px;
      width: calc(100% - 2rem);
      background: var(--cream);
      box-shadow: 0 24px 64px rgba(31, 27, 22, 0.18);
      animation: dialogIn 0.25s ease;
    }
    .call-dialog::backdrop {
      background: rgba(31, 27, 22, 0.55);
      backdrop-filter: blur(4px);
      animation: backdropIn 0.25s ease;
    }
    @keyframes dialogIn {
      from { opacity: 0; transform: translateY(20px) scale(0.96); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes backdropIn { from { opacity: 0; } to { opacity: 1; } }
    
    .call-dialog-inner { padding: 2rem 1.5rem 1.5rem; }
    .call-dialog h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      margin: 0 0 0.25rem;
      text-align: center;
      color: var(--ink);
    }
    .call-dialog .dialog-sub {
      text-align: center;
      font-size: 0.875rem;
      color: var(--ink-mute);
      margin-bottom: 1.5rem;
    }
    .dial-option {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.25rem;
      background: var(--white);
      border: 1px solid var(--cream-deep);
      border-radius: var(--radius-md);
      margin-bottom: 0.75rem;
      transition: all 0.2s;
      text-decoration: none;
      color: var(--ink);
    }
    .dial-option:hover, .dial-option:focus {
      border-color: var(--terracotta);
      background: var(--cream);
      transform: translateY(-1px);
      box-shadow: var(--shadow-md);
    }
    .dial-option-icon {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--terracotta);
      color: var(--cream);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .dial-option-content { display: flex; flex-direction: column; line-height: 1.3; }
    .dial-option-content strong {
      font-size: 1.0625rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--ink);
    }
    .dial-option-content span {
      font-size: 0.8125rem;
      color: var(--ink-mute);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 2px;
    }
    .dialog-cancel {
      width: 100%;
      padding: 0.875rem;
      margin-top: 0.5rem;
      background: transparent;
      border: none;
      color: var(--ink-mute);
      font-family: var(--font-body);
      font-size: 0.9375rem;
      cursor: pointer;
      border-radius: var(--radius-md);
      transition: background 0.2s;
    }
    .dialog-cancel:hover { background: var(--cream-deep); color: var(--ink); }
    
    .call-trigger {
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      font: inherit;
      color: inherit;
    }

    /* ============================================
       LITE YOUTUBE EMBED
       ============================================ */
    .video-section {
      background: var(--cream);
      padding: 4rem 0;
    }
    @media (min-width: 768px) { .video-section { padding: 6rem 0; } }
    
    .video-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 3rem;
    }
    .video-header p {
      color: var(--ink-soft);
      margin-top: 1rem;
      font-size: 1.0625rem;
    }
    
    .lite-youtube {
      position: relative;
      max-width: 880px;
      margin: 0 auto;
      aspect-ratio: 16 / 9;
      border-radius: var(--radius-lg);
      overflow: hidden;
      cursor: pointer;
      background: var(--ink);
      box-shadow: var(--shadow-lg);
      transition: transform 0.3s;
    }
    .lite-youtube:hover { transform: translateY(-2px); }
    .lite-youtube img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .lite-youtube iframe {
      width: 100%;
      height: 100%;
      border: 0;
      position: absolute;
      inset: 0;
    }
    .lite-youtube .play-button {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 80px; height: 80px;
      background: var(--terracotta);
      border-radius: 50%;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 32px rgba(0,0,0,0.4);
      transition: all 0.3s;
    }
    .lite-youtube:hover .play-button {
      transform: translate(-50%, -50%) scale(1.08);
      background: var(--terracotta-deep);
    }
    .lite-youtube .play-button::before {
      content: '';
      width: 0; height: 0;
      border-left: 22px solid var(--cream);
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      margin-left: 6px;
    }
    .lite-youtube .video-label {
      position: absolute;
      bottom: 1.5rem; left: 1.5rem;
      background: rgba(31, 27, 22, 0.85);
      color: var(--cream);
      padding: 0.5rem 1rem;
      border-radius: var(--radius-pill);
      font-size: 0.8125rem;
      letter-spacing: 0.05em;
      backdrop-filter: blur(8px);
    }

    /* ============================================
       GOOGLE MAPS EMBED
       ============================================ */
    .map-embed {
      aspect-ratio: 4 / 3;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--cream-deep);
    }
    .map-embed iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }
    .map-placeholder {
      aspect-ratio: 4 / 3;
      background: var(--cream-deep);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink-mute);
      font-size: 0.875rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-align: center;
      padding: 2rem;
      background-image: 
        linear-gradient(135deg, transparent 49%, var(--terracotta-soft) 49%, var(--terracotta-soft) 51%, transparent 51%),
        linear-gradient(45deg, transparent 49%, var(--terracotta-soft) 49%, var(--terracotta-soft) 51%, transparent 51%);
      background-size: 60px 60px;
      background-color: var(--cream-deep);
    }

/* ============================================
   ============================================
   NEW COMPONENTS FOR SUBPAGES (added in S1)
   ============================================
   ============================================ */

/* ============================================
   DROPDOWN NAVIGATION (desktop)
   ============================================ */
.nav-desktop .has-dropdown {
  position: relative;
}
.nav-desktop .nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0;
  letter-spacing: inherit;
}
.nav-desktop .nav-dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 0.25rem;
  opacity: 0.6;
  transition: transform 0.2s ease;
}
.nav-desktop .has-dropdown.open .nav-dropdown-trigger::after {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.04);
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
}
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.7rem 0.9rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}
.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--terracotta);
}
.dropdown-menu .dropdown-divider {
  height: 1px;
  background: var(--cream-deep);
  margin: 0.4rem 0.6rem;
}
.dropdown-menu .dropdown-all {
  font-weight: 600;
  color: var(--terracotta);
  font-size: 0.8125rem;
}

/* ============================================
   MOBILE MENU — accordion submenus
   ============================================ */
.mobile-menu .has-submenu {
  display: block;
}
.mobile-menu .submenu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
}
.mobile-menu .submenu-trigger::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.5;
  transition: transform 0.2s ease;
}
.mobile-menu .has-submenu.open .submenu-trigger::after {
  transform: rotate(180deg);
}
.mobile-menu .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--cream-deep);
  margin-left: 0.25rem;
}
.mobile-menu .has-submenu.open .submenu {
  max-height: 500px;
  padding-top: 0.85rem;
  padding-bottom: 0.25rem;
}
.mobile-menu .submenu a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 400;
}
.mobile-menu .submenu .submenu-all {
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.875rem;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  background: var(--cream);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.breadcrumbs-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
}
.breadcrumbs a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s ease;
}
.breadcrumbs a:hover {
  color: var(--terracotta);
}
.breadcrumbs .sep {
  color: var(--ink-mute);
  opacity: 0.5;
}
.breadcrumbs .current {
  color: var(--ink);
  font-weight: 500;
}

/* ============================================
   SUBPAGE HERO — editorial typography hero
   ============================================ */
.subpage-hero {
  background: var(--cream-deep);
  padding: 3.5rem 0 4rem;
  position: relative;
}
.subpage-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .subpage-hero-inner {
    grid-template-columns: 1.3fr 1fr;
    gap: 3.5rem;
  }
  .subpage-hero { padding: 5rem 0 5.5rem; }
}
.subpage-hero-content .eyebrow {
  margin-bottom: 1.25rem;
}
.subpage-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.subpage-hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}
.subpage-hero-intro {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  max-width: 56ch;
}
.subpage-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.subpage-hero-image-placeholder {
  background: var(--cream);
  border: 1px dashed rgba(0,0,0,0.12);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: var(--ink-mute);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  max-width: 380px;
  margin: 0 auto;
  position: relative;
}
.subpage-hero-image-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.35;
  margin-bottom: 1rem;
}

/* ============================================
   HERO REVIEW SNIPPET — contextual quote
   ============================================ */
.hero-review {
  background: var(--cream);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.hero-review-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.hero-review-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--terracotta);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.5rem;
}
.hero-review-text {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.4vw, 1.5rem);
  line-height: 1.45;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.hero-review-stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.hero-review-attribution {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.hero-review-attribution a {
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 500;
}
.hero-review-attribution a:hover {
  text-decoration: underline;
}

/* ============================================
   ARTICLE BODY — content sections on subpages
   ============================================ */
.article-section {
  padding: 4rem 0;
}
.article-section.alt {
  background: var(--cream);
}
.article-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.article-section h2 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}
.article-section h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.article-section p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.15rem;
  max-width: 68ch;
}
.article-section p:last-child { margin-bottom: 0; }
.article-section a.inline-link {
  color: var(--terracotta);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(184, 92, 56, 0.4);
  font-weight: 500;
  transition: text-decoration-color 0.15s ease;
}
.article-section a.inline-link:hover {
  text-decoration-color: var(--terracotta);
}
.article-section ul.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  max-width: 68ch;
}
.article-section ul.bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  padding-bottom: 0.7rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.article-section ul.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}
.article-intro-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .article-intro-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* ============================================
   TREATMENT OPTION CARDS
   ============================================ */
.treatment-options {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .treatment-options { grid-template-columns: repeat(2, 1fr); }
}
.treatment-card {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.treatment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.treatment-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-deep);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  color: var(--terracotta);
}
.treatment-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 0;
}
.treatment-card p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================
   WARNING/SYMPTOM LIST — "When to see a doctor"
   ============================================ */
.symptom-list {
  background: var(--white);
  border-left: 3px solid var(--terracotta);
  padding: 1.75rem 1.75rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 1.5rem;
  max-width: 720px;
}
.symptom-list-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.symptom-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.symptom-list ul li {
  position: relative;
  padding-left: 1.75rem;
  padding-bottom: 0.7rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
}
.symptom-list ul li:last-child { padding-bottom: 0; }
.symptom-list ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 16px;
  height: 16px;
  border: 2px solid var(--terracotta);
  border-radius: 50%;
}

/* ============================================
   MID-PAGE CTA BANNER
   ============================================ */
.mid-cta {
  background: var(--terracotta);
  color: var(--cream);
  padding: 2.75rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 1rem auto;
  max-width: 880px;
}
.mid-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  color: var(--cream);
}
.mid-cta p {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(250, 246, 241, 0.85);
  margin-bottom: 1.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.mid-cta .btn {
  background: var(--cream);
  color: var(--terracotta);
  border-color: var(--cream);
}
.mid-cta .btn:hover {
  background: var(--white);
}

/* ============================================
   RELATED PAGES — at bottom of subpages
   ============================================ */
.related-section {
  background: var(--cream);
  padding: 4rem 0;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.related-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}
.related-card {
  background: var(--white);
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.related-card-eyebrow {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.related-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--ink);
  margin-top: 0;
}
.related-card p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  flex-grow: 1;
}
.related-card-link {
  font-size: 0.8125rem;
  color: var(--terracotta);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.related-card-link::after {
  content: '→';
  transition: transform 0.2s ease;
}
.related-card:hover .related-card-link::after {
  transform: translateX(3px);
}

/* ============================================
   AUTHOR CARD — Compact About Dr. Kanchan
   ============================================ */
.author-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2.5rem auto 0;
  max-width: 720px;
  border: 1px solid rgba(0,0,0,0.04);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 640px) {
  .author-card { grid-template-columns: 100px 1fr; gap: 1.5rem; }
}
.author-card-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--terracotta);
  font-style: italic;
  font-weight: 500;
}
@media (min-width: 640px) {
  .author-card-avatar { width: 100px; height: 100px; font-size: 2rem; }
}
.author-card-eyebrow {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.author-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  color: var(--ink);
  margin-top: 0;
}
.author-card-credentials {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
  line-height: 1.55;
}
.author-card-bio {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================
   BOTTOM CTA — Final conversion section
   ============================================ */
.bottom-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 4.5rem 0;
  text-align: center;
}
.bottom-cta h2 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}
.bottom-cta h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.bottom-cta p {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(250, 246, 241, 0.75);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.bottom-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}
.bottom-cta .btn-primary {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
}
.bottom-cta .btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 246, 241, 0.35);
}
.bottom-cta .btn-secondary:hover {
  background: rgba(250, 246, 241, 0.1);
  border-color: var(--cream);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.bottom-cta .btn-secondary:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

/* ============================================
   FOOTER — 5 column version (homepage update)
   ============================================ */
.footer-grid-5col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 2rem;
}
@media (min-width: 480px) {
  .footer-grid-5col {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid-5col .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (min-width: 1024px) {
  .footer-grid-5col {
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  }
  .footer-grid-5col .footer-brand {
    grid-column: auto;
  }
}

/* ============================================
   /REVIEWS/ PAGE — featured review cards
   ============================================ */
.featured-reviews-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .featured-reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .featured-reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.featured-review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-top: 3px solid var(--terracotta-soft);
  position: relative;
}
.featured-review-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.featured-review-text {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.featured-review-stars {
  color: #C9A961;
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.featured-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-deep);
}
.featured-review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}
.featured-review-author-name {
  font-weight: 600;
  font-size: 0.875rem;
}
.featured-review-author-source {
  font-size: 0.75rem;
  color: var(--ink-mute);
}

/* /REVIEWS/ PAGE — trust signals grid */
.trust-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

.trust-item {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-md);
  position: relative;
}
.trust-item-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.85;
}
.trust-item h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.trust-item p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   /ARTICLES/ HUB — article cards
   ============================================ */
.article-hub-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .article-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.article-hub-card {
  display: block;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.25s ease;
}
.article-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(31, 27, 22, 0.08);
  border-color: var(--terracotta-soft);
}

.article-hub-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1rem;
}
.article-hub-category {
  color: var(--terracotta);
  font-weight: 600;
}
.article-hub-date::before {
  content: "·";
  margin-right: 0.75rem;
  color: var(--ink-mute);
  opacity: 0.5;
}

.article-hub-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.article-hub-card p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.article-hub-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.02em;
}
