    /* ─── DESIGN TOKENS ───────────────────────────────────────────── */
    :root {
      --accent:       #B85C38;
      --accent-light: rgba(184, 92, 56, 0.10);
      --accent-dark:  #963E22;
      --sage:       #B85C38;   /* terracotta primary */
      --sage-light: #D4896E;   /* terracotta light   */
      --sage-pale:  #F5E8E0;   /* terracotta wash    */
      --warm-white: #FAF6F0;   /* cream base         */
      --linen:      #F2EAD8;   /* deep cream / parchment */
      --stone:      #E5D9C6;   /* warm stone border  */
      --charcoal:   #2A2420;   /* warm-tinted dark   */
      --warm-grey:  #6E6058;   /* warm grey text     */
      --gold:       #B8934A;   /* muted gold primary */
      --gold-light: #DFC48A;   /* muted gold light   */
      --radius-sm:  6px;
      --radius-md:  14px;
      --radius-lg:  28px;
      --shadow-sm:  0 2px 12px rgba(42,36,32,.06);
      --shadow-md:  0 6px 32px rgba(42,36,32,.10);
      --shadow-lg:  0 16px 60px rgba(42,36,32,.14);
      --transition: 0.2s cubic-bezier(0.4,0,0.2,1);
    }

    /* ─── RESET ───────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      font-size: 16px;
      overflow-x: hidden;
    }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--warm-white);
      color: var(--charcoal);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* ─── UTILITIES ───────────────────────────────────────────────── */
    .container {
      width: 100%;
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: clamp(1.8rem, 4.5vw, 2.6rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.15;
      color: var(--charcoal);
    }
    .section-title em {
      font-style: italic;
      font-weight: 600;
      color: var(--sage);
    }
    .divider {
      width: 48px;
      height: 2px;
      background: var(--gold);
      margin: 20px 0 28px;
    }
    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--sage);
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 500;
      padding: 14px 28px;
      border-radius: var(--radius-lg);
      border: none;
      cursor: pointer;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
      text-decoration: none;
      letter-spacing: .01em;
    }
    .btn-whatsapp:hover {
      background: #963E22;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(184, 92, 56, .30);
    }
    .btn-whatsapp svg { flex-shrink: 0; }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--charcoal);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 500;
      padding: 12px 24px;
      border-radius: var(--radius-lg);
      border: 1.5px solid var(--stone);
      cursor: pointer;
      transition: border-color var(--transition), color var(--transition);
      text-decoration: none;
    }
    .btn-outline:hover {
      border-color: var(--sage);
      color: var(--sage);
    }

    /* ─── INTRO VIDEO HEADER ──────────────────────────────────────── */
    #intro {
      position: relative;
      height: 180svh;
      background: var(--warm-white);
      background-image: radial-gradient(rgba(184, 92, 56, 0.05) 1.5px, transparent 1.5px);
      background-size: 24px 24px;
    }
    .intro-sticky {
      position: sticky;
      top: 0;
      height: 100svh;
      overflow: hidden;
      z-index: 150;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .intro-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: var(--charcoal);
      /* no will-change: iOS suspends video playback when promoted to its own layer inside a sticky ancestor */
    }
    .intro-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 50% 42%, rgba(0,0,0,.12), rgba(0,0,0,.48) 78%),
        linear-gradient(to bottom, transparent 52%, var(--warm-white) 100%);
    }
    .intro-name {
      position: relative;
      z-index: 2;
      text-align: center;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: clamp(48px, 11vw, 132px);
      line-height: 1;
      color: #fff;
      letter-spacing: -0.5px;
      text-shadow: 0 2px 34px rgba(0,0,0,.4);
      will-change: transform, opacity;
    }
    .intro-name small {
      display: block;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: clamp(11px, 1.6vw, 15px);
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-top: 20px;
      opacity: .85;
    }
    .intro-scroll-hint {
      position: absolute;
      bottom: 34px; left: 50%;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      color: rgba(255,255,255,.85);
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      animation: introHintBob 2s ease-in-out infinite;
    }
    @keyframes introHintBob {
      0%, 100% { transform: translate(-50%, 0); }
      50%      { transform: translate(-50%, 7px); }
    }

    /* ─── NAV ─────────────────────────────────────────────────────── */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(250,248,245,.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(224,217,206,.5);
      transition: box-shadow var(--transition);
    }
    #navbar.scrolled {
      box-shadow: var(--shadow-sm);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      padding: 0 24px;
      max-width: 1080px;
      margin: 0 auto;
    }
    .nav-brand {
      display: flex;
      flex-direction: column;
      white-space: nowrap;
    }
    .nav-brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--charcoal);
      line-height: 1.1;
    }
    .nav-brand-sub {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--warm-grey);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .nav-links a {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--warm-grey);
      transition: color var(--transition);
      letter-spacing: .01em;
    }
    .nav-links a:hover { color: var(--charcoal); }
    .nav-links a.active { color: var(--charcoal); font-weight: 600; }
    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav-phone {
      font-size: 13px;
      font-weight: 500;
      color: var(--warm-grey);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--charcoal);
      border-radius: 2px;
      transition: transform var(--transition), opacity var(--transition);
    }
    .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-menu {
      display: none;
      position: fixed;
      top: 64px; left: 0; right: 0;
      background: var(--warm-white);
      border-bottom: 1px solid var(--stone);
      padding: 20px 24px 28px;
      z-index: 99;
      flex-direction: column;
      gap: 16px;
      max-height: calc(100vh - 64px);
      overflow-y: auto;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 16px;
      font-weight: 500;
      color: var(--charcoal);
      padding: 8px 0;
      border-bottom: 1px solid var(--stone);
    }
    .mobile-menu .btn-whatsapp {
      justify-content: center;
      border-bottom: none;
      padding: 14px 28px;
      color: #fff;
    }

    /* ─── HERO ────────────────────────────────────────────────────── */
    #hero {
      min-height: 100svh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden; /* clips the bg-accent blobs that bleed outside */
      background: var(--warm-white);
      background-image: radial-gradient(rgba(184, 92, 56, 0.05) 1.5px, transparent 1.5px);
      background-size: 24px 24px;
      padding-top: 64px;
    }
    /* scroll-margin-top so fixed nav never covers section headings */
    #why, #safety, #services, #reviews, #location, #book {
      scroll-margin-top: 72px;
    }
    .hero-bg-accent {
      position: absolute;
      top: -120px; right: -180px;
      width: 640px;
      height: 640px;
      border-radius: 50%;
      background: radial-gradient(circle at 40% 40%, var(--sage-pale) 0%, transparent 68%);
      pointer-events: none;
    }
    .hero-bg-accent-2 {
      position: absolute;
      bottom: -80px; left: -120px;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle at 60% 60%, var(--linen) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      padding: 80px 24px 80px;
      max-width: 1080px;
      margin: 0 auto;
      width: 100%;
      position: relative;
    }
    .hero-content { }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--linen);
      border: 1px solid var(--gold-light);
      border-radius: 20px;
      padding: 6px 16px;
      margin-bottom: 28px;
      flex-wrap: wrap;
      max-width: 100%;
    }
    .hero-badge-stars {
      color: var(--gold);
      font-size: 13px;
      letter-spacing: .05em;
    }
    .hero-badge-text {
      font-size: 12.5px;
      font-weight: 500;
      color: var(--warm-grey);
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.6rem, 6vw, 4rem);
      font-weight: 500;
      line-height: 1.08;
      color: var(--charcoal);
      margin-bottom: 8px;
    }
    .hero-title em {
      font-style: italic;
      color: var(--sage);
    }
    .hero-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2.5vw, 1.35rem);
      font-weight: 400;
      font-style: italic;
      color: var(--warm-grey);
      margin-bottom: 28px;
      line-height: 1.5;
    }
    .hero-desc {
      font-size: 15px;
      color: var(--warm-grey);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 480px;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .hero-phone-link {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 500;
      color: var(--charcoal);
      transition: color var(--transition);
    }
    .hero-phone-link:hover { color: var(--sage); }
    .hero-trust-row {
      display: flex;
      gap: 28px;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid var(--stone);
      flex-wrap: wrap;
    }
    .trust-stat { }
    .trust-stat-num {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: -0.03em;
      color: var(--charcoal);
      line-height: 1;
    }
    .trust-stat-label {
      font-size: 12px;
      color: var(--warm-grey);
      margin-top: 4px;
      letter-spacing: .02em;
    }
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-card-stack {
      position: relative;
      width: 100%;
      max-width: 400px;
    }
    .hero-main-card {
      background: var(--charcoal);
      border-radius: 24px;
      padding: 40px 36px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .hero-main-card::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(184, 92, 56, .15);
    }
    .hero-main-card::after {
      content: '';
      position: absolute;
      bottom: -40px; left: -40px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: rgba(184, 147, 74, .12);
    }
    .hero-card-icon {
      width: 48px;
      height: 48px;
      background: rgba(184, 92, 56, .18);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .hero-card-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-style: italic;
      font-weight: 400;
      line-height: 1.4;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }
    .hero-card-author {
      font-size: 12.5px;
      color: rgba(255,255,255,.65);
      font-weight: 400;
    }
    .hero-float-pill {
      position: absolute;
      background: var(--warm-white);
      border-radius: 100px;
      padding: 10px 18px;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      color: var(--charcoal);
      animation: float 3s ease-in-out infinite;
    }
    .pill-1 {
      top: -18px; left: -20px;
      animation-delay: 0s;
    }
    .pill-2 {
      bottom: -14px; right: -20px;
      animation-delay: 2s;
    }
    /* contain pills within stack bounds on mobile */
    @media (max-width: 1024px) {
      .pill-1 { top: 12px; left: 0; }
      .pill-2 { bottom: 12px; right: 0; }
      .hero-card-stack { padding: 0 4px; }
    }
    @keyframes float {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    .pill-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--sage);
      flex-shrink: 0;
    }

    /* ─── TRUST METRICS BAR ──────────────────────────────────────── */
    #trust-bar {
      background: var(--charcoal);
      padding: 0;
    }
    .trust-bar-inner {
      display: flex;
      align-items: stretch;
      max-width: 1080px;
      margin: 0 auto;
    }
    .trust-bar-stat {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 28px 24px;
      border-right: 1px solid rgba(255,255,255,.08);
      text-align: center;
    }
    .trust-bar-stat:last-child { border-right: none; }
    .trust-bar-num {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: -0.03em;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 6px;
    }
    .trust-bar-label {
      font-size: 12px;
      font-weight: 500;
      color: rgba(255,255,255,.5);
      letter-spacing: .02em;
    }
    @media (max-width: 640px) {
      .trust-bar-inner { flex-wrap: wrap; }
      .trust-bar-stat {
        flex: 0 0 33.33%;
        padding: 20px 12px;
        border-bottom: 1px solid rgba(255,255,255,.06);
      }
      .trust-bar-num { font-size: 1.5rem; }
    }

    /* ─── SERVICE FEATURED ────────────────────────────────────────── */
    .services-featured {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }
    .service-card-featured {
      padding: 36px 32px;
      border-color: var(--stone);
    }
    .service-card-featured::before {
      opacity: 1;
    }
    .service-card-featured .service-card-title {
      font-size: 1.2rem;
    }
    @media (max-width: 640px) {
      .services-featured { grid-template-columns: 1fr; }
    }

    /* ─── WHY DR. DEOGIRE ─────────────────────────────────────────── */
    #why {
      background: var(--linen);
      padding: 100px 0;
    }
    .why-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .why-left {}
    .why-body {
      font-size: 15.5px;
      color: var(--warm-grey);
      line-height: 1.75;
      margin-bottom: 32px;
    }
    .why-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .feature-pill {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: rgba(250, 246, 240, 0.7);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(229, 217, 198, 0.8);
      border-radius: var(--radius-md);
      padding: 16px;
      transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    }
    .feature-pill:hover {
      border-color: var(--sage-light);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }
    .feature-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--sage-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--sage);
      border: 1px solid rgba(184, 92, 56, .12);
    }
    .feature-text {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--charcoal);
      line-height: 1.35;
    }
    .feature-text span {
      display: block;
      font-size: 12px;
      font-weight: 400;
      color: var(--warm-grey);
      margin-top: 2px;
    }
    .why-right {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .quote-block {
      background: var(--warm-white);
      border-left: 3px solid var(--sage);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      padding: 24px 28px;
      position: relative;
    }
    .quote-block-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-style: italic;
      color: var(--charcoal);
      line-height: 1.5;
      margin-bottom: 12px;
    }
    .quote-block-author {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      color: var(--sage);
    }
    .why-badge {
      background: linear-gradient(135deg, var(--charcoal) 0%, #3D2A1E 100%);
      color: #fff;
      border-radius: var(--radius-md);
      padding: 28px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .why-badge-icon {
      width: 52px;
      height: 52px;
      background: rgba(184, 92, 56, .22);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .why-badge-num {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      letter-spacing: -0.03em;
      color: var(--gold);
      line-height: 1;
    }
    .why-badge-label {
      font-size: 13px;
      color: rgba(255,255,255,.7);
      margin-top: 3px;
    }

    /* ─── SERVICES ────────────────────────────────────────────────── */
    #services {
      padding: 100px 0;
      background: var(--warm-white);
    }
    .services-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .services-header .divider { margin: 20px auto 28px; }
    .services-desc {
      font-size: 15.5px;
      color: var(--warm-grey);
      max-width: 560px;
      margin: 0 auto;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }
    .service-card {
      background: rgba(242, 234, 216, 0.65);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(229, 217, 198, 0.9);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
      cursor: default;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--sage), var(--gold-light));
      opacity: 0;
      transition: opacity var(--transition);
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--sage-light);
    }
    .service-card:hover::before { opacity: 1; }
    .service-card-icon {
      width: 52px;
      height: 52px;
      background: var(--warm-white);
      border-radius: 14px;
      border: 1px solid var(--stone);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--sage);
    }
    .service-card-title {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--charcoal);
      margin-bottom: 10px;
    }
    .service-card-desc {
      font-size: 14px;
      color: var(--warm-grey);
      line-height: 1.65;
    }
    .service-card-has-page {
      cursor: pointer;
    }
    .service-card-has-page::before {
      opacity: 1;
    }
    .service-card-badge {
      display: inline-block;
      font-family: 'Inter', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--sage);
      background: var(--sage-pale);
      border: 1px solid rgba(184, 92, 56, 0.25);
      border-radius: 4px;
      padding: 2px 7px;
      margin-left: 8px;
      vertical-align: middle;
      position: relative;
      top: -2px;
      white-space: nowrap;
    }
    .card-guide-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      color: var(--sage);
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-thickness: 1.5px;
      text-decoration-color: rgba(184, 92, 56, 0.4);
      margin-top: 16px;
      margin-bottom: 14px;
      transition: color var(--transition), gap var(--transition);
    }
    .card-guide-link:hover {
      color: var(--accent-dark);
      gap: 9px;
    }
    .card-guide-link svg {
      transition: transform var(--transition);
    }
    .card-guide-link:hover svg {
      transform: translateX(3px);
    }

    /* ─── REVIEWS ─────────────────────────────────────────────────── */
    #reviews {
      padding: 100px 0;
      background: linear-gradient(160deg, #2A2420 0%, #3D2A1E 100%);
    }
    .reviews-header { margin-bottom: 60px; }
    .reviews-header .section-label { color: var(--sage-light); }
    .reviews-header .section-title { color: var(--warm-white); }
    .reviews-header .section-title em { color: var(--gold-light); }
    .reviews-header .divider { background: var(--gold); }
    .reviews-aggregate {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-bottom: 56px;
      flex-wrap: wrap;
    }
    .reviews-big-num {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 5rem;
      font-weight: 700;
      letter-spacing: -0.04em;
      color: var(--gold);
      line-height: 1;
    }
    .reviews-agg-right { }
    .reviews-stars {
      display: flex;
      gap: 4px;
      margin-bottom: 6px;
    }
    .reviews-stars svg { color: var(--gold); }
    .reviews-count {
      font-size: 14px;
      color: rgba(255,255,255,.6);
    }
    .reviews-count strong { color: #fff; }
    .reviews-carousel {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
    }
    .review-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: var(--radius-lg);
      padding: 28px;
      transition: background var(--transition), border-color var(--transition);
    }
    .review-card:hover {
      background: rgba(255,255,255,.09);
      border-color: rgba(184, 147, 74, .35);
    }
    .review-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 16px;
    }
    .review-stars svg { color: var(--gold); }
    .review-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-style: italic;
      font-weight: 400;
      color: rgba(255,255,255,.88);
      line-height: 1.55;
      margin-bottom: 20px;
    }
    .review-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .review-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--sage), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      flex-shrink: 0;
    }
    .review-name {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,.85);
    }
    .review-meta {
      font-size: 11.5px;
      color: rgba(255,255,255,.4);
      margin-top: 2px;
    }
    .reviews-tag-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 48px;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .reviews-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(184, 147, 74, .13);
      border: 1px solid rgba(184, 147, 74, .25);
      color: var(--gold-light);
      font-size: 12px;
      font-weight: 500;
      padding: 6px 14px;
      border-radius: 100px;
    }
    .tag-count {
      background: rgba(184, 147, 74, .22);
      color: var(--gold-light);
      font-size: 11px;
      font-weight: 600;
      padding: 1px 7px;
      border-radius: 100px;
    }

    /* ─── LOCATION ────────────────────────────────────────────────── */
    #location {
      padding: 100px 0;
      background: var(--linen);
    }
    .location-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: start;
    }
    .location-info { }
    .location-address-block {
      background: var(--warm-white);
      border: 1px solid var(--stone);
      border-radius: var(--radius-lg);
      padding: 32px;
      margin-bottom: 24px;
    }
    .location-detail-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid var(--stone);
    }
    .location-detail-row:last-child { border-bottom: none; padding-bottom: 0; }
    .location-detail-row:first-child { padding-top: 0; }
    .location-icon {
      width: 36px;
      height: 36px;
      background: var(--sage-pale);
      border-radius: 8px;
      border: 1px solid rgba(184, 92, 56, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--sage);
    }
    .location-detail-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--warm-grey);
      margin-bottom: 4px;
    }
    .location-detail-value {
      font-size: 15px;
      font-weight: 500;
      color: var(--charcoal);
      line-height: 1.4;
    }
    .location-detail-value a {
      color: var(--sage);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .hours-highlight {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(184, 92, 56, .10);
      color: var(--sage);
      font-size: 12px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 100px;
      margin-top: 4px;
    }
    .location-map {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--stone);
      box-shadow: var(--shadow-sm);
      background: var(--warm-white);
    }
    .map-visual {
      position: relative;
      height: 300px;
      background:
        linear-gradient(180deg, rgba(242,234,216,0) 60%, var(--warm-white) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(184, 92, 56, .04) 28px, rgba(184, 92, 56, .04) 29px),
        repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(184, 92, 56, .04) 28px, rgba(184, 92, 56, .04) 29px),
        var(--linen);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 12px;
    }
    .map-pin {
      width: 52px;
      height: 52px;
      background: var(--sage);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      box-shadow: 0 6px 24px rgba(184, 92, 56, .35);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .map-pin svg { transform: rotate(45deg); }
    .map-label {
      background: var(--warm-white);
      border: 1px solid var(--stone);
      border-radius: 12px;
      padding: 10px 18px;
      text-align: center;
      box-shadow: var(--shadow-sm);
    }
    .map-label-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--charcoal);
    }
    .map-label-addr {
      font-size: 12px;
      color: var(--warm-grey);
      margin-top: 2px;
    }
    .map-directions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 24px;
      border-top: 1px solid var(--stone);
      background: var(--warm-white);
    }
    .map-directions-text {
      font-size: 13px;
      color: var(--warm-grey);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .map-directions-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--sage);
      color: #fff;
      font-size: 13.5px;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 100px;
      transition: background var(--transition), transform var(--transition);
      text-decoration: none;
    }
    .map-directions-link:hover {
      background: #963E22;
      transform: translateY(-1px);
    }

    /* ─── STERILIZATION SAFETY ────────────────────────────────────── */
    .safety-container {
      max-width: 900px;
      margin: 0 auto;
      background: rgba(242, 234, 216, 0.5);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(229, 217, 198, 0.8);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow-md);
    }
    .safety-timeline {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      margin-bottom: 48px;
    }
    .timeline-line {
      position: absolute;
      top: 24px; left: 4%; right: 4%;
      height: 4px;
      background: var(--stone);
      z-index: 1;
      border-radius: 2px;
    }
    .timeline-progress {
      height: 100%;
      background: var(--sage);
      width: 25%;
      transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 2px;
    }
    .timeline-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 2;
      position: relative;
      width: 25%;
    }
    .step-num {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--warm-white);
      border: 2px solid var(--stone);
      color: var(--warm-grey);
      font-weight: 600;
      font-size: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
      box-shadow: var(--shadow-sm);
    }
    .timeline-step.active .step-num {
      background: var(--sage);
      border-color: var(--sage);
      color: #fff;
      transform: scale(1.1);
      box-shadow: 0 4px 12px rgba(184, 92, 56, 0.3);
    }
    .step-label {
      margin-top: 12px;
      font-size: 12px;
      font-weight: 600;
      color: var(--warm-grey);
      text-transform: uppercase;
      letter-spacing: .05em;
      text-align: center;
      transition: color var(--transition);
    }
    .timeline-step.active .step-label {
      color: var(--charcoal);
    }
    .safety-cards {
      position: relative;
      min-height: 160px;
    }
    .safety-card {
      display: none;
      align-items: center;
      gap: 32px;
      animation: fadeIn 0.4s ease forwards;
    }
    .safety-card.active {
      display: flex;
    }
    .safety-card-visual {
      width: 80px;
      height: 80px;
      border-radius: var(--radius-md);
      background: var(--sage-pale);
      border: 1px solid rgba(184, 92, 56, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--sage);
    }
    .safety-card-content h3 {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 1.15rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--charcoal);
      margin-bottom: 12px;
    }
    .safety-card-content p {
      font-size: 14.5px;
      color: var(--warm-grey);
      line-height: 1.7;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .safety-container { padding: 24px; }
      .safety-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 32px;
      }
      .timeline-line { display: none; }
      .timeline-step {
        flex-direction: row;
        width: 100%;
        gap: 16px;
        align-items: center;
      }
      .step-num { width: 36px; height: 36px; font-size: 13px; }
      .step-label { margin-top: 0; text-align: left; font-size: 11px; }
      .safety-card { flex-direction: column; align-items: flex-start; gap: 20px; min-height: auto; }
      .safety-card-visual { width: 60px; height: 60px; }
      .safety-card-visual svg { width: 36px; height: 36px; }
    }


    /* ─── BOOKING CTA ─────────────────────────────────────────────── */
    #book {
      padding: 100px 0;
      background: var(--warm-white);
    }
    .book-inner {
      background: 
        radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(135deg, #2A2420 0%, #3D2A1E 100%);
      background-size: 20px 20px, 100% 100%;
      border-radius: 32px;
      padding: 72px 60px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 48px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .book-inner::before {
      content: '';
      position: absolute;
      top: -80px; right: 100px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184, 92, 56, .14) 0%, transparent 70%);
      pointer-events: none;
    }
    .book-inner::after {
      content: '';
      position: absolute;
      bottom: -60px; left: 60px;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184, 147, 74, .10) 0%, transparent 70%);
      pointer-events: none;
    }
    .book-label { color: var(--sage-light); }
    .book-title {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      color: var(--warm-white);
      line-height: 1.15;
      margin: 12px 0 16px;
    }
    .book-title em { color: var(--gold-light); font-style: italic; font-weight: 600; }
    .book-desc {
      font-size: 15px;
      color: rgba(255,255,255,.6);
      line-height: 1.7;
      max-width: 440px;
    }
    .book-actions {
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: flex-end;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }
    .btn-whatsapp-lg {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--sage);
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 600;
      padding: 18px 32px;
      border-radius: var(--radius-lg);
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
      white-space: nowrap;
    }
    .btn-whatsapp-lg:hover {
      background: #963E22;
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(184, 92, 56, .40);
    }
    .book-phone {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.65);
      font-size: 14px;
      font-weight: 500;
      transition: color var(--transition);
    }
    .book-phone:hover { color: rgba(255,255,255,.9); }

    /* ─── FOOTER ──────────────────────────────────────────────────── */
    footer {
      background: #231A16;
      border-top: 1px solid rgba(255,255,255,.07);
      padding: 48px 24px 32px;
    }
    .footer-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
    }
    .footer-brand {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--warm-white);
    }
    .footer-brand span {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.4);
      margin-top: 4px;
    }
    .footer-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .footer-links a {
      font-size: 13px;
      color: rgba(255,255,255,.5);
      transition: color var(--transition);
    }
    .footer-links a:hover { color: rgba(255,255,255,.85); }
    .footer-bottom {
      font-size: 12px;
      color: rgba(255,255,255,.3);
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.06);
      width: 100%;
      text-align: center;
    }

    /* ─── SCROLL ANIMATIONS ───────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.42s ease, transform 0.42s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.07s; }
    .reveal-delay-2 { transition-delay: 0.13s; }
    .reveal-delay-3 { transition-delay: 0.19s; }
    .reveal-delay-4 { transition-delay: 0.25s; }

    /* ─── RESPONSIVE ──────────────────────────────────────────────── */
    @media (min-width: 1025px) and (max-width: 1200px) {
      .nav-links { gap: 16px; }
      .nav-links a { font-size: 13px; }
      .nav-cta { gap: 8px; }
      .nav-phone { font-size: 12.5px; }
      .nav-cta .btn-whatsapp { padding: 10px 20px; font-size: 14px; }
    }

    @media (max-width: 1024px) {
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .hamburger { display: flex; }
      .hero-inner {
        grid-template-columns: 1fr;
        padding: 56px 24px 52px;
        gap: 36px;
        /* content first, card second on mobile */
      }
      /* remove order:-1 so content leads on mobile */
      .hero-visual { order: 1; }
      .hero-card-stack { max-width: 380px; margin: 0 auto; }
      .why-inner { grid-template-columns: 1fr; gap: 48px; }
      .location-inner { grid-template-columns: 1fr; gap: 40px; }
      .book-inner {
        grid-template-columns: 1fr;
        padding: 48px 32px;
      }
      .book-actions { align-items: flex-start; }
    }
    @media (max-width: 640px) {
      /* 3-col trust stats — no orphan */
      .hero-trust-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }
      .why-features { grid-template-columns: 1fr; }
      .book-inner { padding: 40px 24px; border-radius: 20px; }
      .reviews-carousel { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
    }

    /* ─── REDUCED MOTION ─────────────────────────────────────────── */
    @media (prefers-reduced-motion: reduce) {
      .reveal { transition: none; opacity: 1; transform: none; }
      .hero-float-pill { animation: none; }
      #intro { height: 100svh; }
      .intro-name { transform: none !important; opacity: 1 !important; }
      .intro-overlay { background: radial-gradient(circle at 50% 42%, rgba(0,0,0,.12), rgba(0,0,0,.48) 78%); }
      .intro-scroll-hint { display: none; }
    }

    /* ─── PRINT STYLES ────────────────────────────────────────────── */
    @media print {
      #navbar, .hero-visual, #intro { display: none; }
      #hero { min-height: auto; padding-top: 20px; }
      .hero-inner { grid-template-columns: 1fr; }
      body { font-size: 12px; }
      .book-inner { background: #f5e8e0; color: #2A2420; border-radius: 8px; }
    }

    /* ─── STAR SVG ────────────────────────────────────────────────── */
    .star-svg { display: inline-block; width: 16px; height: 16px; fill: currentColor; }

    /* ─── STICKY WHATSAPP BUTTON ─────────────────────────────────── */
    .sticky-wa {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 91;
      display: flex;
      align-items: center;
      gap: 9px;
      background: #25D366;
      color: #fff;
      padding: 13px 20px 13px 16px;
      border-radius: 50px;
      text-decoration: none;
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: -0.01em;
      box-shadow: 0 4px 18px rgba(37, 211, 102, .38);
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.2s ease;
      pointer-events: none;
    }
    .sticky-wa.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .sticky-wa.hide {
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
    }
    .sticky-wa:hover { box-shadow: 0 6px 26px rgba(37, 211, 102, .52); }
    @media (max-width: 640px) {
      .sticky-wa .sticky-wa-label { display: none; }
      .sticky-wa { padding: 13px; border-radius: 50%; }
    }

    /* ─── JJ CONSULTING FLOAT ─────────────────────────────────────── */
    .jj-float {
      position: fixed;
      bottom: 28px;
      left: 28px;
      z-index: 90;
      background: #111827;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,.28), 0 2px 8px rgba(0,0,0,.14);
      text-decoration: none;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }
    .jj-float:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 40px rgba(0,0,0,.34), 0 2px 8px rgba(0,0,0,.14);
    }
    .jj-float-brand {
      display: block;
      padding: 7px 14px 6px;
      font-family: 'Inter', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255,255,255,.38);
      border-bottom: 1px solid rgba(255,255,255,.07);
      white-space: nowrap;
    }
    .jj-float-cta {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 10px 16px 12px 14px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      white-space: nowrap;
      letter-spacing: .01em;
    }
    .jj-float-cta svg { flex-shrink: 0; color: #25D366; }
    @media (max-width: 480px) {
      .jj-float-brand { display: none; }
      .jj-float { border-radius: 12px; }
      .jj-float-cta { font-size: 12px; padding: 10px 14px; }
    }

/* ─── SERVICE PAGE LAYOUT ─────────────────────────────────────────────────── */
.svc-breadcrumb {
  background: var(--warm-white);
  padding: 11px 0;
  border-bottom: 1px solid var(--stone);
}
.svc-breadcrumb-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 13px;
  color: var(--warm-grey);
}
.svc-breadcrumb a { color: var(--sage); text-decoration: none; }
.svc-breadcrumb a:hover { text-decoration: underline; }
.svc-breadcrumb-sep { margin: 0 6px; opacity: 0.5; }

.svc-hero {
  background: var(--linen);
  padding: 72px 0 60px;
}
.svc-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.svc-eyebrow {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}
.svc-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 18px;
}
.svc-hero-desc {
  font-size: 16.5px;
  color: var(--warm-grey);
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.svc-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.svc-points {
  padding: 72px 0;
  background: var(--warm-white);
}
.svc-points-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
.svc-points h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: 36px;
}
.svc-point-list { list-style: none; display: grid; gap: 14px; }
.svc-point-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--linen);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  border: 1px solid var(--stone);
}
.svc-point-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--sage);
  background: var(--sage-pale);
  border-radius: 5px;
  padding: 3px 8px;
  flex-shrink: 0;
  margin-top: 3px;
}
.svc-point-text {
  font-size: 14.5px;
  color: var(--charcoal);
  line-height: 1.65;
}

.svc-trust {
  background: var(--charcoal);
  padding: 40px 0;
}
.svc-trust-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 0;
  align-items: stretch;
}
.svc-trust-stat {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.svc-trust-stat:last-child { border-right: none; }
.svc-trust-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold);
  display: block;
}
.svc-trust-label {
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
  margin-top: 3px;
  display: block;
}

.svc-reviews {
  padding: 72px 0;
  background: linear-gradient(160deg, #2A2420 0%, #3D2A1E 100%);
}
.svc-reviews-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
.svc-reviews h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 32px;
}
.svc-reviews h2 em { color: var(--gold-light); font-style: italic; }

.svc-related {
  padding: 56px 0;
  background: var(--warm-white);
}
.svc-related-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
.svc-related h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--warm-grey);
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}
.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
}
.svc-related-link {
  background: var(--linen);
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  text-decoration: none;
  color: var(--charcoal);
  font-size: 13.5px;
  font-weight: 500;
  transition: border-color var(--transition), background var(--transition);
  display: block;
}
.svc-related-link:hover {
  border-color: var(--sage);
  background: var(--sage-pale);
  color: var(--sage);
}

.svc-cta-section {
  padding: 72px 0;
  background: var(--linen);
  text-align: center;
}
.svc-cta-inner {
  max-width: 540px;
  margin: 0 auto;
  padding: 0 20px;
}
.svc-cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.2;
}
.svc-cta-inner p {
  font-size: 15.5px;
  color: var(--warm-grey);
  line-height: 1.65;
  margin-bottom: 28px;
}
.svc-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Privacy & About pages */
.prose-hero {
  background: var(--linen);
  padding: 72px 0 56px;
}
.prose-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}
.prose-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 16px;
}
.prose-inner .lead {
  font-size: 16.5px;
  color: var(--warm-grey);
  line-height: 1.7;
}
.prose-body {
  padding: 60px 0 80px;
  background: var(--warm-white);
}
.prose-body .prose-inner h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 40px 0 14px;
}
.prose-body .prose-inner h2:first-child { margin-top: 0; }
.prose-body .prose-inner p {
  font-size: 15px;
  color: var(--warm-grey);
  line-height: 1.75;
  margin-bottom: 14px;
}

@media (max-width: 640px) {
  .svc-trust-inner { flex-wrap: wrap; }
  .svc-trust-stat { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,.07); }
  .svc-trust-stat:nth-child(3), .svc-trust-stat:nth-child(4) { border-bottom: none; }
  .svc-trust-stat:nth-child(2) { border-right: none; }
}
