    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --navy: #0D2B2A;
      --navy-light: #153D3B;
      --teal: #015450;
      --teal-mid: #459A8E;
      --aqua: #2DFDF3;
      --aqua-soft: #96FEF9;
      --aqua-glow: rgba(45, 253, 243, 0.15);
      --pink: #D4849A;
      --lavender: #B8A0C8;
      --white: #FFFFFF;
      --off-white: #F7F7F7;
      --gray: #7C7C7C;
      --light-teal-bg: #D7F7FC;
      --font-serif: 'Cormorant Garamond', Georgia, serif;
      --font-sans: 'Nunito Sans', -apple-system, sans-serif;
    }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--font-sans);
      color: var(--white);
      background: var(--navy);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    /* ──── NAV ──── */
    #nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      padding: 1rem 2.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.4s ease;
      background: transparent;
    }

    #nav.scrolled {
      background: rgba(13, 43, 42, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 1px 20px rgba(0,0,0,0.3);
      padding: 0.6rem 2.5rem;
    }

    /* When mobile menu is open, neutralise scrolled-nav backdrop-filter:
       it creates a containing block that traps the .nav-links.open fixed overlay.
       Disable transition too — otherwise the 0.4s fade leaves the overlay trapped
       (transparent) until the backdrop-filter fully unwinds. */
    body.menu-open #nav,
    body.menu-open #nav.scrolled {
      transition: none;
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      box-shadow: none;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
    }

    .nav-logo img {
      height: clamp(36px, 10vw, 50px);
      width: auto; /* keep aspect ratio despite width/height attributes */
      transition: height 0.4s;
    }

    #nav.scrolled .nav-logo img { height: clamp(30px, 8vw, 38px); }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--aqua); }

    .nav-links .btn-book {
      background: linear-gradient(135deg, var(--aqua), var(--teal-mid));
      color: var(--navy);
      padding: 0.6rem 1.5rem;
      border-radius: 100px;
      font-weight: 600;
      letter-spacing: 0.05em;
    }

    .nav-links .btn-book:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 20px rgba(45,253,243,0.3);
    }

    .mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 101;
      padding: 10px;
      min-width: 44px;
      min-height: 44px;
      justify-content: center;
      align-items: center;
    }

    .mobile-toggle span {
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: all 0.3s;
    }

    /* ──── HERO ──── */
    .hero {
      position: relative;
      min-height: 100vh;
      min-height: 100svh; /* iOS Safari: account for collapsing URL bar */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background: var(--navy);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('/images/flowpresso-3d.webp') center/cover no-repeat;
      opacity: 0.4;
    }

    /* Smaller hero asset on phones (LCP) */
    @media (max-width: 640px) {
      .hero-bg { background-image: url('/images/flowpresso-3d-mobile.webp'); }
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(13,43,42,0.6) 0%,
        rgba(13,43,42,0.3) 40%,
        rgba(13,43,42,0.85) 95%,
        var(--navy) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 0 2rem;
    }

    .hero-logo {
      width: 140px;
      margin: 0 auto 2rem;
      opacity: 0.95;
    }

    .hero-logo img { width: 100%; height: auto; }

    .hero-tag {
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--aqua);
      margin-bottom: 1.5rem;
      font-weight: 400;
    }

    .hero h1 {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 5.5vw, 4rem);
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      letter-spacing: 0.02em;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--aqua-soft);
    }

    .hero p {
      font-size: 1rem;
      opacity: 0.8;
      max-width: 560px;
      margin: 0 auto 2.5rem;
      line-height: 1.8;
      font-weight: 300;
    }

    .hero-cta {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ──── BUTTONS ──── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 2rem;
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      font-family: var(--font-sans);
    }

    .btn-aqua {
      background: linear-gradient(135deg, var(--aqua), var(--teal-mid));
      color: var(--navy);
    }

    .btn-aqua:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(45,253,243,0.25);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.3);
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.05);
      border-color: var(--aqua);
      color: var(--aqua);
    }

    .btn-white {
      background: var(--white);
      color: var(--navy);
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .btn-teal {
      background: var(--teal);
      color: var(--white);
      border: 1px solid var(--teal-mid);
    }

    .btn-teal:hover {
      background: var(--teal-mid);
      transform: translateY(-2px);
    }

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      color: var(--aqua);
      opacity: 0.5;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

    .hero-scroll::after {
      content: '';
      width: 1px;
      height: 40px;
      background: var(--aqua);
      animation: scrollLine 2s ease-in-out infinite;
    }

    @keyframes scrollLine {
      0%, 100% { opacity: 0.2; transform: scaleY(0.5); }
      50% { opacity: 0.8; transform: scaleY(1); }
    }

    /* ──── SECTIONS ──── */
    section { padding: 7rem 2rem; }

    .container { max-width: 1200px; margin: 0 auto; }

    .section-tag {
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--aqua);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 300;
      line-height: 1.25;
      margin-bottom: 1.5rem;
    }

    .section-subtitle {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.65);
      max-width: 600px;
      line-height: 1.8;
      font-weight: 300;
    }

    /* ──── INTRO ──── */
    .intro {
      background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
      text-align: center;
    }

    .intro .section-subtitle { margin: 0 auto 3rem; }

    .intro-philosophy {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 300;
      line-height: 1.7;
      max-width: 700px;
      margin: 0 auto 2rem;
      font-style: italic;
      color: var(--aqua-soft);
    }

    .intro-values {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 4rem;
    }

    .intro-value {
      text-align: center;
      padding: 2.5rem 1.5rem;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      transition: all 0.3s;
    }

    .intro-value:hover {
      background: rgba(45,253,243,0.05);
      border-color: rgba(45,253,243,0.15);
      transform: translateY(-4px);
    }

    .intro-value-icon {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      display: block;
      color: var(--aqua);
    }

    .intro-value .intro-value-title {
      font-family: var(--font-serif);
      font-size: 1.15rem;
      font-weight: 400;
      margin-bottom: 0.5rem;
    }

    .intro-value p {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.6;
    }

    /* ──── SERVICES ──── */
    .services { background: var(--navy); }

    .services-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 4rem;
    }

    .service-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 4/5;
      display: flex;
      align-items: flex-end;
      cursor: pointer;
      transition: transform 0.4s ease;
    }

    .service-card:hover { transform: translateY(-6px); }

    .service-card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s ease;
    }

    .service-card:hover .service-card-bg { transform: scale(1.05); }

    .service-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(13,43,42,0.92) 0%, rgba(13,43,42,0.2) 55%);
    }

    .service-card-content {
      position: relative;
      z-index: 2;
      padding: 2.5rem;
      width: 100%;
    }

    .service-card h3,
    .service-card h2 {
      font-family: var(--font-serif);
      font-size: 1.7rem;
      font-weight: 400;
      margin-bottom: 0.75rem;
    }

    .service-card p {
      font-size: 0.85rem;
      opacity: 0.75;
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    .service-card .btn { font-size: 0.72rem; padding: 0.65rem 1.4rem; }

    /* ──── BENEFITS ──── */
    .benefits {
      background: linear-gradient(135deg, var(--teal) 0%, var(--navy-light) 100%);
      position: relative;
      overflow: hidden;
    }

    .benefits::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(45,253,243,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 4rem;
      background: rgba(255,255,255,0.06);
      border-radius: 20px;
      overflow: hidden;
    }

    .benefit-item {
      padding: 2rem 1.5rem;
      background: rgba(13,43,42,0.6);
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      transition: background 0.3s;
    }

    .benefit-item:hover { background: rgba(45,253,243,0.06); }

    .benefit-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--aqua-glow);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--aqua);
      font-size: 1rem;
    }

    .benefit-item h3 {
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 0.25rem;
    }

    .benefit-item p {
      font-size: 0.78rem;
      opacity: 0.5;
      line-height: 1.5;
    }

    /* ──── FLOWPRESSO DETAIL ──── */
    /* ──── CULTURAL BODYWORK DETAIL ──── */
    .cultural-bodywork-detail {
      background: var(--navy);
      position: relative;
    }

    .cultural-bodywork-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .cultural-bodywork-image {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
    }

    .cultural-bodywork-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .cultural-bodywork-image::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      border: 1px solid rgba(45,253,243,0.1);
    }

    .cultural-bodywork-pillars {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-top: 2.5rem;
    }

    /* ──── FLOWPRESSO DETAIL ──── */
    .flowpresso-detail {
      background: var(--navy);
      position: relative;
    }

    .flowpresso-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .flowpresso-features {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-top: 2.5rem;
    }

    .feature {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
    }

    .feature-num {
      font-family: var(--font-serif);
      font-size: 1.6rem;
      color: var(--aqua);
      font-weight: 300;
      flex-shrink: 0;
      width: 2.5rem;
      opacity: 0.6;
    }

    .feature h3 {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .feature p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
    }

    .flowpresso-image {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
    }

    .flowpresso-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .flowpresso-image::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      border: 1px solid rgba(45,253,243,0.1);
    }

    /* ──── DUO ──── */
    .duo {
      background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
    }

    .duo-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-top: 3rem;
    }

    .duo-image {
      border-radius: 20px;
      overflow: hidden;
    }

    .duo-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .duo-content h3 {
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .duo-content p {
      color: rgba(255,255,255,0.65);
      margin-bottom: 1.5rem;
      line-height: 1.8;
      font-size: 0.92rem;
    }

    .duo-options {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin: 2rem 0;
    }

    .duo-option {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 1.5rem 1.75rem;
      border-radius: 14px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s;
      text-decoration: none;
      color: var(--white);
    }

    .duo-option:hover {
      background: rgba(45,253,243,0.06);
      border-color: rgba(45,253,243,0.2);
      transform: translateX(4px);
    }

    .duo-option h3 {
      font-family: var(--font-serif);
      font-size: 1.15rem;
      font-weight: 400;
    }

    .duo-option-desc {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.5);
      margin-top: 0.2rem;
    }

    .duo-option-arrow {
      color: var(--aqua);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    /* ──── SPORTS ──── */
    .sports {
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }

    .sports::before {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(45,253,243,0.06) 0%, transparent 70%);
      border-radius: 50%;
    }

    .sports-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .sports p {
      color: rgba(255,255,255,0.65);
      line-height: 1.8;
      margin-bottom: 1.5rem;
      font-size: 0.92rem;
    }

    .sports-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin: 2.5rem 0;
    }

    .sport-stat {
      border-left: 2px solid var(--aqua);
      padding-left: 1rem;
    }

    .sport-stat h3 {
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: 300;
      color: var(--aqua);
    }

    .sport-stat p {
      font-size: 0.78rem;
      opacity: 0.5;
      margin-bottom: 0;
    }

    .sports-image {
      border-radius: 20px;
      overflow: hidden;
    }

    .sports-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ──── RESEARCH ──── */
    .research {
      background: var(--navy);
      text-align: center;
      padding-top: 6rem;
      padding-bottom: 6rem;
    }

    .research-subtitle {
      text-align: center;
      max-width: 720px;
      margin: 1.5rem auto 3rem;
    }

    .research-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin: 0 auto 3rem;
      max-width: 1000px;
    }

    .research-stat {
      padding: 1.5rem 1rem;
      border: 1px solid rgba(45, 253, 243, 0.15);
      border-radius: 12px;
      background: rgba(45, 253, 243, 0.04);
      transition: background 0.3s ease, border-color 0.3s ease;
    }

    .research-stat:hover {
      background: rgba(45, 253, 243, 0.08);
      border-color: rgba(45, 253, 243, 0.35);
    }

    .research-stat h3 {
      font-family: var(--font-serif);
      font-size: 2.4rem;
      font-weight: 300;
      color: var(--aqua);
      margin-bottom: 0.5rem;
      letter-spacing: -0.01em;
    }

    .research-stat p {
      font-size: 0.85rem;
      opacity: 0.7;
      line-height: 1.5;
      margin-bottom: 0;
    }

    .research-citation {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.5);
      max-width: 720px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .research-citation a {
      color: var(--aqua);
      text-decoration: none;
      white-space: nowrap;
    }

    .research-citation a:hover {
      text-decoration: underline;
    }

    /* ──── PACKAGES ──── */
    .packages {
      background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
      text-align: center;
      padding-top: 6rem;
      padding-bottom: 6rem;
    }

    .packages-subtitle {
      text-align: center;
      max-width: 720px;
      margin: 1.5rem auto 3rem;
    }

    .packages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .package {
      position: relative;
      padding: 2.5rem 1.75rem 2rem;
      border: 1px solid rgba(45, 253, 243, 0.15);
      border-radius: 16px;
      background: rgba(45, 253, 243, 0.04);
      text-align: left;
      transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .package:hover {
      background: rgba(45, 253, 243, 0.08);
      border-color: rgba(45, 253, 243, 0.35);
      transform: translateY(-4px);
    }

    .package-name {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 400;
      color: #fff;
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }

    .package-price {
      font-family: var(--font-serif);
      font-size: 2.6rem;
      font-weight: 300;
      color: var(--aqua);
      margin: 0.5rem 0 0.25rem;
      letter-spacing: -0.02em;
    }

    .package-price .package-currency {
      font-size: 1.3rem;
      vertical-align: top;
      margin-right: 0.15rem;
      opacity: 0.7;
    }

    .package-validity {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--aqua);
      margin-bottom: 1.25rem;
    }

    .package-desc {
      font-size: 0.92rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 1.25rem;
    }

    .package-bullets {
      list-style: none;
      padding: 0;
      margin: 0 0 1.75rem;
      flex: 1;
    }

    .package-bullets li {
      position: relative;
      padding-left: 1.4rem;
      font-size: 0.85rem;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 0.5rem;
    }

    .package-bullets li:last-child { margin-bottom: 0; }

    .package-bullets li::before {
      content: '\2713';
      position: absolute;
      left: 0;
      top: 0;
      color: var(--aqua);
      font-weight: 600;
    }

    .package .btn {
      align-self: flex-start;
      margin-top: auto;
    }

    /* ──── PRICING MENU (/pricing/) ──── */
    .pricing {
      background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
      padding-bottom: 5rem;
    }

    .pricing .section-tag,
    .pricing .section-title {
      text-align: center;
    }

    .pricing-menu {
      max-width: 920px;
      margin: 3rem auto 0;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .pricing-group-title {
      font-family: var(--font-serif);
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--aqua);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin: 0 0 1.25rem;
      padding-bottom: 0.65rem;
      border-bottom: 1px solid rgba(45, 253, 243, 0.18);
    }

    .pricing-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
    }

    .pricing-row {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      padding: 1.25rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .pricing-row:last-child { border-bottom: 0; }

    .pricing-row-main { flex: 1; min-width: 0; }

    .pricing-row-name {
      font-family: var(--font-serif);
      font-size: 1.25rem;
      font-weight: 400;
      color: #fff;
      margin: 0 0 0.35rem;
      line-height: 1.3;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    .pricing-row-flag {
      display: inline-block;
      font-family: var(--font-sans);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--aqua);
      background: rgba(45, 253, 243, 0.1);
      border: 1px solid rgba(45, 253, 243, 0.25);
      border-radius: 999px;
      padding: 0.2rem 0.55rem;
    }

    .pricing-row-desc {
      font-size: 0.92rem;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.7);
      margin: 0 0 0.35rem;
    }

    .pricing-row-dur {
      display: inline-block;
      font-size: 0.78rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
    }

    .pricing-row-dur::before { content: "⏱ "; opacity: 0.7; margin-right: 0.2rem; }

    .pricing-row-side {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.6rem;
      min-width: 110px;
    }

    .pricing-row-price {
      font-family: var(--font-serif);
      font-size: 1.8rem;
      font-weight: 300;
      color: var(--aqua);
      letter-spacing: -0.02em;
      line-height: 1;
      white-space: nowrap;
    }

    .pricing-row-price span {
      font-size: 0.95rem;
      vertical-align: top;
      margin-right: 0.1rem;
      opacity: 0.7;
    }

    .pricing-row-cta {
      font-family: var(--font-sans);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--aqua);
      text-decoration: none;
      border-bottom: 1px solid rgba(45, 253, 243, 0.4);
      padding-bottom: 2px;
      transition: color 0.2s ease, border-color 0.2s ease;
    }

    .pricing-row-cta:hover {
      color: #fff;
      border-color: #fff;
    }

    .pricing-foot-note {
      text-align: center;
      max-width: 640px;
      margin: 3rem auto 0;
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.6;
    }

    .pricing-foot-note a {
      color: var(--aqua);
      text-decoration: none;
      border-bottom: 1px solid rgba(45, 253, 243, 0.4);
    }

    .pricing-foot-note a:hover { color: #fff; border-color: #fff; }

    @media (max-width: 640px) {
      .pricing-row {
        flex-direction: column;
        gap: 0.6rem;
        padding: 1.1rem 0;
      }
      .pricing-row-side {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-width: 0;
        gap: 1rem;
      }
      .pricing-row-price { font-size: 1.5rem; }
      .pricing-group-title { font-size: 1.35rem; }
    }

    /* ──── BOOKING PACKS UPSELL (/begin/ #packages) ──── */
    .booking-packs {
      margin: 3rem auto 0;
      max-width: 1100px;
      padding: 2.25rem 1.75rem;
      border: 1px solid rgba(45, 253, 243, 0.18);
      border-radius: 18px;
      background: rgba(45, 253, 243, 0.04);
    }

    .booking-packs-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
    }

    .booking-packs-head h2 {
      font-family: var(--font-serif);
      font-weight: 400;
      font-size: 1.5rem;
      color: #fff;
      margin: 0;
    }

    .booking-packs-head p {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.65);
      margin: 0;
      max-width: 460px;
    }

    .booking-packs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .booking-pack {
      padding: 1.5rem 1.25rem;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      background: rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
    }

    .booking-pack-name {
      font-family: var(--font-serif);
      font-size: 1.15rem;
      font-weight: 400;
      color: #fff;
      margin: 0 0 0.4rem;
      line-height: 1.3;
    }

    .booking-pack-price {
      font-family: var(--font-serif);
      font-size: 1.8rem;
      font-weight: 300;
      color: var(--aqua);
      letter-spacing: -0.02em;
      margin: 0.25rem 0 0.2rem;
    }

    .booking-pack-price span {
      font-size: 0.95rem;
      vertical-align: top;
      margin-right: 0.1rem;
      opacity: 0.7;
    }

    .booking-pack-validity {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--aqua);
      margin-bottom: 0.9rem;
    }

    .booking-pack-desc {
      font-size: 0.88rem;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.7);
      margin: 0 0 1rem;
      flex: 1;
    }

    .booking-pack .btn {
      align-self: flex-start;
      font-size: 0.78rem;
      padding: 0.55rem 1.1rem;
    }

    @media (max-width: 768px) {
      .booking-packs-grid { grid-template-columns: 1fr; }
      .booking-packs { padding: 1.75rem 1.25rem; }
    }

    /* ──── GOOGLE REVIEWS ──── */
    .testimonials {
      background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
      text-align: center;
    }

    .google-summary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 1.5rem;
      font-family: var(--font-sans);
      color: rgba(255,255,255,0.7);
      font-size: 0.9rem;
    }

    .google-summary img {
      height: 24px;
      width: auto;
    }

    .google-summary .summary-stars {
      color: #FBBC04;
      font-size: 1.1rem;
      letter-spacing: 2px;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .testimonial {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(45,253,243,0.10);
      padding: 2rem 1.75rem;
      border-radius: 16px;
      text-align: left;
      transition: all 0.3s;
      display: flex;
      flex-direction: column;
    }

    .testimonial:hover {
      background: rgba(45,253,243,0.04);
      border-color: rgba(45,253,243,0.20);
      transform: translateY(-4px);
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }

    .testimonial-avatar-letter {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-sans);
      font-weight: 600;
      font-size: 1.1rem;
      color: #fff;
      flex-shrink: 0;
    }

    .testimonial-meta {
      flex: 1;
      min-width: 0;
    }

    .testimonial-author {
      font-weight: 600;
      font-size: 0.88rem;
      color: #fff;
      line-height: 1.3;
    }

    .testimonial-date {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.4);
      font-family: var(--font-sans);
    }

    .testimonial-google {
      margin-left: auto;
      flex-shrink: 0;
    }

    .testimonial-google svg {
      width: 20px;
      height: 20px;
    }

    .testimonial-stars {
      color: #FBBC04;
      font-size: 0.9rem;
      letter-spacing: 2px;
      margin-bottom: 0.75rem;
    }

    .testimonial-text {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      flex: 1;
      font-family: var(--font-sans);
    }

    .testimonial-link {
      display: inline-block;
      margin-top: 1.5rem;
      font-size: 0.75rem;
      color: var(--aqua);
      opacity: 0.5;
      text-decoration: none;
      font-family: var(--font-sans);
      transition: opacity 0.2s;
    }

    .testimonial-link:hover { opacity: 1; }
    }

    /* ──── ABOUT ──── */
    .about {
      background: var(--navy);
    }

    .about-layout {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 4rem;
      align-items: start;
    }

    .about-image {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .about-image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 20px;
    }

    .about-content h3 {
      font-family: var(--font-serif);
      font-size: 2.2rem;
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .about-content p {
      color: rgba(255,255,255,0.65);
      margin-bottom: 1.25rem;
      line-height: 1.8;
      font-size: 0.92rem;
    }

    .about-greeting {
      font-family: var(--font-serif);
      font-size: 1.3rem;
      font-style: italic;
      color: var(--aqua) !important;
      opacity: 0.95;
      margin-bottom: 1.5rem !important;
    }

    .about-mihi {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1.05rem;
      line-height: 1.85;
      color: rgba(255, 255, 255, 0.85);
      padding: 1.5rem 1.75rem;
      margin: 2rem 0;
      border-left: 2px solid var(--aqua);
      background: rgba(45, 253, 243, 0.04);
      border-radius: 0 8px 8px 0;
    }

    .about-credentials {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      margin: 2rem 0 1.5rem;
      padding: 1.75rem;
      border: 1px solid rgba(45, 253, 243, 0.15);
      border-radius: 12px;
      background: rgba(45, 253, 243, 0.03);
    }

    .about-credential h3 {
      font-family: var(--font-sans);
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--aqua);
      font-weight: 500;
      margin-bottom: 0.4rem;
    }

    .about-credential p {
      font-size: 0.86rem !important;
      line-height: 1.65 !important;
      margin-bottom: 0 !important;
      color: rgba(255, 255, 255, 0.72) !important;
    }

    .about-signoff {
      font-family: var(--font-serif) !important;
      font-size: 1rem !important;
      color: rgba(255, 255, 255, 0.7) !important;
      line-height: 1.6 !important;
      margin-top: 1.5rem !important;
    }

    .about-signoff em {
      color: var(--aqua);
      font-size: 1.1rem;
    }

    .about-details {
      display: flex;
      gap: 2.5rem;
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      flex-wrap: wrap;
    }

    .about-detail {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
    }

    .about-detail span { color: var(--aqua); }

    .about-detail a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      border-bottom: 1px solid rgba(45, 253, 243, 0.3);
      transition: all 0.3s;
    }
    .about-detail a:hover {
      color: var(--aqua);
      border-bottom-color: var(--aqua);
    }

    /* ──── CTA BANNER ──── */
    .cta-banner {
      position: relative;
      text-align: center;
      padding: 8rem 2rem;
      overflow: hidden;
    }

    .cta-banner-bg {
      position: absolute;
      inset: 0;
      background: url('/images/rafael-leao.webp') center/cover no-repeat;
      opacity: 0.35;
    }

    .cta-banner-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, var(--navy) 0%, rgba(13,43,42,0.5) 50%, var(--navy) 100%);
    }

    .cta-banner .container {
      position: relative;
      z-index: 2;
    }

    .cta-banner .section-title {
      max-width: 600px;
      margin: 0 auto 1rem;
    }

    .cta-banner .section-subtitle {
      margin: 0 auto 3rem;
      text-align: center;
    }

    /* ──── FACIAL ADD-ON ──── */
    .addon {
      background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
    }

    .addon-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .addon-image {
      border-radius: 20px;
      overflow: hidden;
    }

    .addon-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .addon-content h3 {
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: 300;
      margin-bottom: 0.5rem;
    }

    .addon-duration {
      font-size: 0.85rem;
      color: var(--aqua);
      margin-bottom: 1.5rem;
    }

    .addon-list {
      list-style: none;
      margin: 1.5rem 0 2rem;
    }

    .addon-list li {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.7);
      padding: 0.5rem 0;
      padding-left: 1.5rem;
      position: relative;
      line-height: 1.6;
    }

    .addon-list li::before {
      content: '~';
      position: absolute;
      left: 0;
      color: var(--aqua);
    }

    /* ──── CONTACT ──── */
    .contact {
      background: var(--navy-light);
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }

    .contact-info h3 {
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .contact-info p {
      color: rgba(255,255,255,0.6);
      margin-bottom: 2rem;
      line-height: 1.8;
      font-size: 0.92rem;
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.25rem;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.7);
    }

    .contact-detail-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--aqua-glow);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
      color: var(--aqua);
    }

    .contact-detail a {
      color: var(--white);
      text-decoration: none;
      transition: color 0.3s;
    }

    .contact-detail a:hover { color: var(--aqua); }

    .contact-socials {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .contact-social {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.7rem 1.2rem;
      min-height: 44px;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 100px;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: all 0.3s;
    }
    .contact-social:hover {
      border-color: var(--aqua);
      color: var(--aqua);
      background: rgba(45, 253, 243, 0.05);
      transform: translateY(-1px);
    }
    .contact-social svg {
      flex-shrink: 0;
    }

    .contact-form {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      padding: 2.5rem;
      border-radius: 20px;
    }

    @media (max-width: 480px) {
      .contact-form { padding: 1.25rem; }
    }

    .form-group { margin-bottom: 1.25rem; }

    .form-group label {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.85rem 1rem;
      min-height: 44px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      font-family: var(--font-sans);
      font-size: 16px;
      background: rgba(255,255,255,0.04);
      color: var(--white);
      transition: border-color 0.3s;
      outline: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--aqua);
      background: rgba(45,253,243,0.03);
    }

    .form-group textarea { height: 120px; resize: vertical; }

    .contact-form .btn { width: 100%; justify-content: center; }

    /* ──── FOOTER ──── */
    footer {
      background: var(--navy);
      border-top: 1px solid rgba(255,255,255,0.05);
      padding: 4rem 2rem 2rem;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .footer-brand p {
      margin-top: 1rem;
      font-size: 0.82rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.55);
      max-width: 350px;
    }

    .footer-brand img { height: 45px; width: auto; }

    .footer-col .footer-col-title {
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
      font-weight: 600;
      color: rgba(255,255,255,0.8);
    }

    .footer-col a {
      display: block;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      font-size: 0.82rem;
      margin-bottom: 0.7rem;
      transition: color 0.3s;
    }

    .footer-col a:hover { color: var(--aqua); }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.55);
    }

    .footer-social {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .footer-social a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      font-size: 0.8rem;
      padding: 0.6rem 0.9rem;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      transition: color 0.3s;
    }

    .footer-social a:hover { color: var(--aqua); }

    .footer-bottom span a {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-bottom span a:hover { color: var(--aqua); }

    /* ──── NATURE DIVIDERS ──── */
    .nature-divider {
      position: relative;
      height: 300px;
      overflow: hidden;
      margin-top: -1px;
      margin-bottom: -1px;
    }

    .nature-divider img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .nature-divider::before,
    .nature-divider::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      height: 55%;
      z-index: 2;
      pointer-events: none;
    }

    .nature-divider::before {
      top: 0;
      background: linear-gradient(180deg, var(--navy) 0%, rgba(13,43,42,0.6) 40%, transparent 100%);
    }

    .nature-divider::after {
      bottom: 0;
      background: linear-gradient(0deg, var(--navy) 0%, rgba(13,43,42,0.6) 40%, transparent 100%);
    }

    .nature-divider.from-navy-light::before {
      background: linear-gradient(180deg, var(--navy-light) 0%, rgba(21,61,59,0.6) 40%, transparent 100%);
    }

    .nature-divider.to-navy-light::after {
      background: linear-gradient(0deg, var(--navy-light) 0%, rgba(21,61,59,0.6) 40%, transparent 100%);
    }

    .nature-divider.from-teal::before {
      background: linear-gradient(180deg, var(--navy-light) 0%, rgba(21,61,59,0.6) 40%, transparent 100%);
    }

    .nature-divider.to-teal::after {
      background: linear-gradient(0deg, var(--teal) 0%, rgba(1,84,80,0.6) 40%, transparent 100%);
    }

    @media (max-width: 768px) {
      .nature-divider { height: 200px; }
    }

    @media (max-width: 414px) {
      .nature-divider { height: 150px; }
    }

    /* ──── AFTERPAY ──── */
    .afterpay-strip {
      background: var(--navy);
      text-align: center;
      padding: 0.75rem 1rem;
    }

    .afterpay-strip img {
      max-width: 100%;
      height: auto;
      max-height: 28px;
      width: auto;
      opacity: 0.7;
      display: inline-block;
    }

    @media (max-width: 480px) {
      .afterpay-strip { padding: 0.6rem 0.75rem; }
      .afterpay-strip img { max-height: 22px; }
    }

    /* ──── MOBILE ──── */
    @media (max-width: 968px) {
      .services-grid,
      .duo-layout,
      .flowpresso-layout,
      .cultural-bodywork-layout,
      .sports-layout,
      .about-layout,
      .contact-layout,
      .addon-layout { grid-template-columns: 1fr; }

      .about-layout { gap: 2rem; }
      .intro-values { grid-template-columns: repeat(2, 1fr); }
      .benefits-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .google-summary { flex-wrap: wrap; }
      .footer-content { grid-template-columns: 1fr; }
      .sports-image { order: -1; }
      .flowpresso-layout { gap: 2.5rem; }
      .cultural-bodywork-layout { gap: 2.5rem; }
      .duo-layout { gap: 2.5rem; }
      section { padding: 5rem 1.25rem; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13, 43, 42, 0.98);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        z-index: 100;
        padding: 2rem;
      }
      .nav-links.open a {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
      }
      .nav-links.open .btn-book {
        margin-top: 1rem;
        padding: 0.85rem 2rem;
      }
      .mobile-toggle { display: flex; }
      .nav-links.open ~ .mobile-toggle { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .service-card { aspect-ratio: 16/10; }
      .benefits-grid { grid-template-columns: 1fr; }
      .sports-stats { grid-template-columns: 1fr; }
      .research-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
      .research-stat h3 { font-size: 2rem; }
      .packages-grid { grid-template-columns: 1fr; gap: 1.25rem; max-width: 480px; }
      .package { padding: 2rem 1.5rem 1.75rem; }
      .package-price { font-size: 2.2rem; }
      .intro-values { grid-template-columns: 1fr; }
      .footer-content { grid-template-columns: 1fr; text-align: center; }
      .footer-brand p { margin-left: auto; margin-right: auto; }
      .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
      .about-details { flex-direction: column; gap: 1rem; }
      .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
      .flowpresso-layout { gap: 2.5rem; }
      .duo-layout { gap: 2rem; }
      .booking-grid { grid-template-columns: 1fr; }
      section { padding: 4rem 1rem; }
    }

    @media (max-width: 414px) {
      .hero h1 { font-size: 1.8rem; }
      .hero p { font-size: 0.9rem; }
      .hero-cta { flex-direction: column; align-items: center; }
      .hero-cta .btn { width: 100%; justify-content: center; }
      .hero-scroll { display: none; }
      .section-title { font-size: 1.5rem; }
      .intro-philosophy { font-size: 1.2rem; }
      .service-card-content { padding: 1.5rem; }
      .service-card h3,
    .service-card h2 { font-size: 1.3rem; }
      .duo-option { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
      .btn { min-height: 44px; padding: 0.75rem 1.5rem; font-size: 0.75rem; }
      #nav { padding: 0.75rem 1rem; }
      #nav.scrolled { padding: 0.5rem 1rem; }
      footer { padding: 3rem 1rem 1.5rem; }
      .research-stats { grid-template-columns: 1fr; }
    }

    /* ──── BOOKING ──── */
    .booking {
      background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
    }

    /* Step indicator */
    .booking-steps {
      display: flex;
      justify-content: center;
      gap: 0;
      margin: 3rem auto 3rem;
      max-width: 600px;
    }

    .booking-step {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.25);
      cursor: default;
      transition: color 0.3s;
    }

    .booking-step.active { color: var(--aqua); }
    .booking-step.done { color: rgba(255,255,255,0.5); cursor: pointer; }

    .booking-step-num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      transition: all 0.3s;
    }

    .booking-step.active .booking-step-num {
      border-color: var(--aqua);
      background: var(--aqua);
      color: var(--navy);
    }

    .booking-step.done .booking-step-num {
      border-color: rgba(255,255,255,0.3);
      background: rgba(255,255,255,0.1);
    }

    .booking-step-line {
      width: 40px;
      height: 1px;
      background: rgba(255,255,255,0.1);
      margin: 0 0.75rem;
    }

    /* Booking panels */
    .booking-panel { display: none; }
    .booking-panel.active { display: block; animation: fadeUp 0.4s ease; }

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

    /* Step 1: Service selection */
    .booking-filters {
      display: flex;
      gap: 0.75rem;
      margin: 0 0 2rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .booking-filter {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0.5rem 1.15rem;
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      border: 1px solid rgba(255,255,255,0.1);
      background: transparent;
      color: rgba(255,255,255,0.6);
      font-family: var(--font-sans);
      transition: all 0.3s;
    }

    .booking-filter:hover { border-color: rgba(45,253,243,0.3); color: var(--aqua); }

    .booking-filter.active {
      background: var(--aqua);
      color: var(--navy);
      border-color: var(--aqua);
    }

    .booking-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
      gap: 1rem;
    }

    .booking-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s;
      cursor: pointer;
      position: relative;
    }

    .booking-card:hover {
      border-color: rgba(45,253,243,0.2);
      background: rgba(45,253,243,0.04);
      transform: translateY(-3px);
    }

    .booking-card.selected {
      border-color: var(--aqua);
      background: rgba(45,253,243,0.08);
      box-shadow: 0 0 30px rgba(45,253,243,0.1);
    }

    .booking-card-body {
      padding: 1.5rem;
    }

    .booking-card-tag {
      font-size: 0.62rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--aqua);
      font-weight: 600;
      margin-bottom: 0.4rem;
      opacity: 0.7;
    }

    .booking-card h3 {
      font-family: var(--font-serif);
      font-size: 1.2rem;
      font-weight: 400;
      margin-bottom: 0.4rem;
      line-height: 1.3;
    }

    .booking-card-desc {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .booking-card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 1rem;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .booking-card-info {
      display: flex;
      gap: 1rem;
    }

    .booking-card-duration,
    .booking-card-price {
      font-size: 0.78rem;
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .booking-card-duration { color: rgba(255,255,255,0.4); }

    .booking-card-price { font-weight: 600; }
    .booking-card-price span { color: var(--aqua); }

    .booking-card-cta {
      font-size: 0.78rem;
      color: var(--aqua);
      font-weight: 600;
      display: flex;
      align-items: center;
      letter-spacing: 0.05em;
      transition: transform 0.3s;
    }

    .booking-card:hover .booking-card-cta {
      transform: translateX(4px);
    }

    .booking-card-popular::after {
      content: 'Popular';
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      background: var(--aqua);
      color: var(--navy);
      font-size: 0.55rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.2rem 0.6rem;
      border-radius: 100px;
    }

    /* "Booking on request" — for services that need manual confirmation
       (Cal.com "Requires Confirmation" enabled). Sits under the category
       tag, so a user immediately sees that the booking is not instant. */
    .booking-card-request-badge {
      display: inline-block;
      margin-top: 0.45rem;
      font-family: var(--font-sans);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--aqua);
      background: rgba(45, 253, 243, 0.08);
      border: 1px solid rgba(45, 253, 243, 0.3);
      padding: 0.22rem 0.6rem;
      border-radius: 100px;
    }
    .booking-card-request .booking-card-cta {
      color: var(--aqua);
    }

    /* "Booking on request" confirmation modal: shown before the Cal.com
       modal for requestOnly services (Couples Massage 60/90) so the client
       knows the card is held but not charged until Ardre confirms. */
    .request-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    .request-modal[hidden] { display: none; }
    body.modal-open { overflow: hidden; }
    .request-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(2, 8, 23, 0.75);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }
    .request-modal-card {
      position: relative;
      max-width: 520px;
      width: 100%;
      background: var(--navy);
      border: 1px solid rgba(45, 253, 243, 0.25);
      border-radius: 18px;
      padding: 2.25rem 1.75rem 1.75rem;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      color: var(--white);
      animation: rcIn 0.25s ease-out;
    }
    @keyframes rcIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .request-modal-close {
      position: absolute;
      top: 0.6rem;
      right: 0.9rem;
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, 0.5);
      font-size: 1.6rem;
      line-height: 1;
      cursor: pointer;
      padding: 0.25rem 0.5rem;
    }
    .request-modal-close:hover { color: var(--aqua); }
    .request-modal-tag {
      display: inline-block;
      font-family: var(--font-sans);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--aqua);
      background: rgba(45, 253, 243, 0.08);
      border: 1px solid rgba(45, 253, 243, 0.3);
      padding: 0.22rem 0.7rem;
      border-radius: 100px;
      margin-bottom: 0.85rem;
    }
    .request-modal-card h3 {
      font-family: var(--font-serif);
      font-size: clamp(1.15rem, 2.4vw, 1.4rem);
      font-weight: 400;
      line-height: 1.3;
      margin: 0 0 0.9rem;
      color: var(--white);
    }
    .request-modal-card p {
      font-size: 0.92rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.8);
      margin: 0 0 1.5rem;
    }
    .request-modal-actions {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .request-modal-actions .btn { font-size: 0.7rem; padding: 0.75rem 1.4rem; }
    @media (max-width: 480px) {
      .request-modal-card { padding: 2rem 1.25rem 1.25rem; }
      .request-modal-actions { flex-direction: column-reverse; }
      .request-modal-actions .btn { width: 100%; justify-content: center; }
    }

    /* Step 2: Calendar */
    .cal-wrapper {
      max-width: 800px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
    }

    .cal-box {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 18px;
      padding: 2rem;
    }

    .cal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    .cal-header h4 {
      font-family: var(--font-serif);
      font-size: 1.15rem;
      font-weight: 400;
    }

    .cal-nav {
      display: flex;
      gap: 0.5rem;
    }

    .cal-nav button {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.1);
      background: transparent;
      color: var(--white);
      cursor: pointer;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      font-family: var(--font-sans);
    }

    .cal-nav button:hover {
      border-color: var(--aqua);
      color: var(--aqua);
    }

    .cal-weekdays {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
      margin-bottom: 0.5rem;
    }

    .cal-weekday {
      text-align: center;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      padding: 0.4rem 0;
    }

    .cal-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
    }

    .cal-day {
      text-align: center;
      padding: 0.6rem 0;
      border-radius: 10px;
      font-size: 0.82rem;
      cursor: pointer;
      transition: all 0.2s;
      border: 1px solid transparent;
    }

    .cal-day:hover:not(.cal-day-disabled):not(.cal-day-empty) {
      background: rgba(45,253,243,0.08);
      border-color: rgba(45,253,243,0.15);
    }

    .cal-day-empty { cursor: default; }

    .cal-day-disabled {
      color: rgba(255,255,255,0.15);
      cursor: not-allowed;
    }

    .cal-day-today {
      border-color: rgba(255,255,255,0.15);
    }

    .cal-day.cal-day-selected {
      background: var(--aqua);
      color: var(--navy);
      font-weight: 600;
      border-color: var(--aqua);
    }

    /* Time slots */
    .time-slots-title {
      font-family: var(--font-serif);
      font-size: 1.15rem;
      font-weight: 400;
      margin-bottom: 0.5rem;
    }

    .time-slots-date {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.45);
      margin-bottom: 1.5rem;
    }

    .time-slots-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
    }

    .time-slot {
      padding: 0.7rem;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px;
      text-align: center;
      font-size: 0.82rem;
      cursor: pointer;
      transition: all 0.2s;
      background: transparent;
      color: var(--white);
      font-family: var(--font-sans);
    }

    .time-slot:hover {
      border-color: rgba(45,253,243,0.3);
      background: rgba(45,253,243,0.05);
    }

    .time-slot.selected {
      background: var(--aqua);
      color: var(--navy);
      border-color: var(--aqua);
      font-weight: 600;
    }

    .time-slots-empty {
      color: rgba(255,255,255,0.3);
      font-size: 0.85rem;
      text-align: center;
      padding: 2rem 0;
      font-style: italic;
    }

    /* Step 3: Contact form */
    .booking-confirm {
      max-width: 700px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
    }

    .booking-summary {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 18px;
      padding: 2rem;
    }

    .booking-summary h4 {
      font-family: var(--font-serif);
      font-size: 1.2rem;
      font-weight: 400;
      margin-bottom: 1.5rem;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      font-size: 0.85rem;
    }

    .summary-row:last-child { border-bottom: none; }

    .summary-label { color: rgba(255,255,255,0.45); }
    .summary-value { font-weight: 500; }
    .summary-price { color: var(--aqua); font-weight: 600; font-size: 1.1rem; }

    .booking-form-panel {
      display: flex;
      flex-direction: column;
    }

    .booking-form-panel h4 {
      font-family: var(--font-serif);
      font-size: 1.2rem;
      font-weight: 400;
      margin-bottom: 1.5rem;
    }

    /* Step nav */
    .booking-nav {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2.5rem;
    }

    .booking-nav .btn { min-width: 160px; justify-content: center; }

    /* Success */
    .booking-success {
      text-align: center;
      padding: 3rem 2rem;
      max-width: 500px;
      margin: 0 auto;
    }

    .booking-success-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: var(--aqua);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto 1.5rem;
    }

    .booking-success h3 {
      font-family: var(--font-serif);
      font-size: 1.8rem;
      font-weight: 300;
      margin-bottom: 1rem;
    }

    .booking-success p {
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem;
      line-height: 1.7;
    }

    .booking-note {
      text-align: center;
      margin-top: 2.5rem;
      padding: 1.25rem 2rem;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 14px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .booking-note p {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.6;
    }

    .booking-note strong { color: var(--aqua); }

    @media (max-width: 768px) {
      .cal-wrapper, .booking-confirm { grid-template-columns: 1fr; }
      .booking-steps { gap: 0; }
      .booking-step span:not(.booking-step-num) { display: none; }
      .booking-step-line { width: 24px; }
      .time-slots-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ──── ANIMATIONS ──── */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ──── DIVIDER ──── */
    .divider {
      width: 60px;
      height: 1px;
      background: linear-gradient(90deg, var(--aqua), transparent);
      margin: 1.5rem 0;
    }

    .divider-center {
      margin: 1.5rem auto;
    }

    /* ──── ACTIVE PAGE LINK (multi-page nav) ──── */
    .nav-links a.active {
      color: var(--aqua);
      position: relative;
    }
    .nav-links a.active::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -6px;
      height: 1px;
      background: var(--aqua);
      opacity: 0.7;
    }
    .nav-links a.active.btn-book::after { display: none; }

    /* ──── MOBILE MENU CLOSE BUTTON ──── */
    .mobile-close {
      display: none;
      position: absolute;
      top: 1.25rem;
      right: 1.5rem;
      width: 44px;
      height: 44px;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50%;
      color: var(--white);
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
      z-index: 102;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }
    .mobile-close:hover {
      border-color: var(--aqua);
      color: var(--aqua);
    }
    @media (max-width: 768px) {
      .nav-links.open ~ .mobile-close {
        display: flex;
      }
    }

    /* ──── BREADCRUMB (article pages) ──── */
    .article-breadcrumb-wrap {
      padding: 7rem 1.5rem 0;
    }
    .breadcrumb {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 1.5rem;
      padding: 0;
    }
    .breadcrumb a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.3s;
    }
    .breadcrumb a:hover {
      color: var(--aqua);
    }
    .breadcrumb .sep {
      margin: 0 0.5rem;
      opacity: 0.4;
    }
    .breadcrumb .current {
      color: var(--aqua);
    }

    /* ──── ARTICLE BACK BUTTON ──── */
    .article-back {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      padding: 0.65rem 1.25rem;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 100px;
      transition: all 0.3s;
      margin-bottom: 2rem;
    }
    .article-back:hover {
      border-color: var(--aqua);
      color: var(--aqua);
    }

    /* ──── PREV / NEXT ARTICLE ──── */
    .article-nav {
      max-width: 900px;
      margin: 0 auto;
      padding: 3rem 2rem 4rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .article-nav a {
      display: flex;
      flex-direction: column;
      padding: 1.5rem;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      text-decoration: none;
      color: var(--white);
      transition: all 0.3s;
    }
    .article-nav a:hover {
      border-color: var(--aqua);
      background: rgba(45,253,243,0.05);
    }
    .article-nav .label {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--aqua);
      margin-bottom: 0.5rem;
      opacity: 0.8;
    }
    .article-nav .title {
      font-family: var(--font-serif);
      font-size: 1.15rem;
      font-weight: 400;
      line-height: 1.3;
    }
    .article-nav .next {
      text-align: right;
    }
    @media (max-width: 640px) {
      .article-nav {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.25rem 3rem;
      }
      .article-nav .next {
        text-align: left;
      }
    }

    /* ──── DISCOVER HUB (Journey landing) ──── */
    .discover-hero {
      padding: 9rem 1.5rem 4rem;
      text-align: center;
      background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
    }
    .discover-hero .tag {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--aqua);
      margin-bottom: 1rem;
    }
    .discover-hero h1 {
      font-family: var(--font-serif);
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 300;
      color: var(--white);
      letter-spacing: 0.01em;
      line-height: 1.15;
      margin-bottom: 1.25rem;
    }
    .discover-hero h1 em {
      color: var(--aqua-soft);
      font-style: italic;
    }
    .discover-hero p {
      max-width: 640px;
      margin: 0 auto;
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.65);
      font-weight: 300;
      line-height: 1.8;
    }
    .discover-divider {
      width: 60px;
      height: 1px;
      background: var(--aqua);
      margin: 1.5rem auto;
    }
    .discover-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
      gap: 1.75rem;
      padding: 4rem 0 6rem;
    }
    .discover-card {
      position: relative;
      display: flex;
      flex-direction: column;
      border-radius: 14px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.4s ease;
      text-decoration: none;
      color: inherit;
    }
    .discover-card:hover {
      transform: translateY(-4px);
      border-color: rgba(45, 253, 243, 0.35);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    }
    .discover-card-image {
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: var(--navy-light);
    }
    .discover-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .discover-card:hover .discover-card-image img { transform: scale(1.05); }
    .discover-card-body {
      padding: 1.75rem 1.5rem 1.85rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .discover-card-tag {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--aqua);
      margin-bottom: 0.85rem;
    }
    .discover-card h3,
    .discover-card h2 {
      font-family: var(--font-serif);
      font-size: 1.45rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 0.75rem;
      line-height: 1.25;
    }
    .discover-card p {
      font-size: 0.92rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 1.25rem;
      flex: 1;
    }
    .discover-card-link {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--aqua);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }
    .discover-card-link::after {
      content: '\2192';
      transition: transform 0.3s ease;
    }
    .discover-card:hover .discover-card-link::after { transform: translateX(4px); }

    /* ──── ARTICLE PAGE ──── */
    .article-hero {
      position: relative;
      padding: 3rem 1.5rem 5rem;
      background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
      text-align: center;
      overflow: hidden;
    }
    .article-hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .article-hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.18;
    }
    .article-hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(13, 43, 42, 0.65) 0%, rgba(13, 43, 42, 0.95) 100%);
    }
    .article-hero .container {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }
    .article-tag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--aqua);
      margin-bottom: 1rem;
    }
    .article-hero h1 {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      font-weight: 300;
      color: var(--white);
      letter-spacing: 0.01em;
      line-height: 1.15;
      margin-bottom: 1.25rem;
    }
    .article-hero h1 em {
      color: var(--aqua-soft);
      font-style: italic;
    }
    .article-lede {
      max-width: 640px;
      margin: 0 auto;
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.6;
      font-style: italic;
      font-family: var(--font-serif);
    }
    .article-body {
      max-width: 720px;
      margin: 0 auto;
      padding: 5rem 2rem;
    }
    .article-body p {
      margin-bottom: 1.4rem;
      font-size: 1rem;
      line-height: 1.85;
      color: rgba(255, 255, 255, 0.78);
      font-weight: 300;
    }
    .article-body p.lead {
      font-size: 1.15rem;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.92);
      font-weight: 400;
    }
    .article-body h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.6rem, 3.2vw, 2rem);
      font-weight: 400;
      color: var(--white);
      margin: 3rem 0 1.25rem;
      letter-spacing: 0.01em;
      line-height: 1.25;
    }
    .article-body h2:first-child { margin-top: 0; }
    .article-body h3 {
      font-family: var(--font-serif);
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--aqua);
      margin: 2rem 0 0.85rem;
    }
    .article-body ul {
      margin: 0 0 1.4rem 0;
      padding: 0;
      list-style: none;
    }
    .article-body ul li {
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 0.65rem;
      font-size: 0.98rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.75);
      font-weight: 300;
    }
    .article-body ul li::before {
      content: '\2022';
      position: absolute;
      left: 0;
      top: 0;
      color: var(--aqua);
      font-weight: 700;
      font-size: 1.1rem;
    }
    .article-body blockquote {
      margin: 2.5rem 0;
      padding: 1.75rem 1.85rem;
      border-left: 2px solid var(--aqua);
      background: rgba(45, 253, 243, 0.04);
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1.1rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.92);
      border-radius: 0 8px 8px 0;
      font-weight: 400;
    }
    .article-body blockquote cite {
      display: block;
      margin-top: 0.85rem;
      font-family: var(--font-sans);
      font-style: normal;
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      color: var(--aqua);
    }
    .article-body strong {
      color: rgba(255, 255, 255, 0.95);
      font-weight: 500;
    }
    .article-body a {
      color: var(--aqua);
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
      transition: opacity 0.2s;
    }
    .article-body a:hover { opacity: 0.8; }

    /* Soft line breaks were inserted in articles for desktop visual rhythm.
       On mobile they cut sentences awkwardly mid-line — collapse them.
       Blockquote <br> kept intact (intentional poetic spacing in Ardré's quote). */
    @media (max-width: 768px) {
      .article-body p > br { display: none; }
    }

    .article-cta {
      text-align: center;
      padding: 4rem 2rem;
      background: var(--navy-light);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .article-cta h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      font-weight: 300;
      color: var(--white);
      margin-bottom: 0.85rem;
    }
    .article-cta p {
      max-width: 520px;
      margin: 0 auto 2rem;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.95rem;
      line-height: 1.7;
    }
    .article-cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    @media (max-width: 768px) {
      .article-body { padding: 3.5rem 1.25rem; }
      .article-body p { font-size: 0.98rem; }
      .article-hero { padding: 2rem 1.25rem 3.5rem; }
      .article-cta-buttons { flex-direction: column; align-items: center; }
      .discover-grid { padding: 3rem 0 4rem; }
      .discover-hero { padding: 7rem 1.25rem 3rem; }
      .article-breadcrumb-wrap { padding: 6rem 1.25rem 0; }
    }

    /* ──── JOURNEY TEASER (home page article cards) ──── */
    .journey-teaser {
      padding: 7rem 2rem;
      background: var(--navy);
    }
    .journey-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.75rem;
      margin-top: 3rem;
    }
    .journey-card {
      display: flex;
      flex-direction: column;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 14px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: all 0.4s ease;
    }
    .journey-card:hover {
      border-color: rgba(45, 253, 243, 0.35);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    }
    .journey-card-image {
      height: 200px;
      overflow: hidden;
      background: var(--navy-light);
    }
    .journey-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .journey-card:hover .journey-card-image img {
      transform: scale(1.05);
    }
    .journey-card-body {
      padding: 1.75rem 1.5rem 1.85rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .journey-card-tag {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--aqua);
      font-weight: 600;
      margin-bottom: 0.85rem;
    }
    .journey-card-body h3 {
      font-family: var(--font-serif);
      font-size: 1.45rem;
      font-weight: 400;
      line-height: 1.25;
      color: var(--white);
      margin-bottom: 0.75rem;
    }
    .journey-card-body p {
      font-size: 0.92rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 1.25rem;
      flex: 1;
    }
    .journey-card-link {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--aqua);
      font-weight: 600;
    }

    /* ──── TREATMENT PICKER (dropdown jump-to article) ──── */
    .treatment-picker {
      max-width: 460px;
      margin: 2.5rem auto 0;
      text-align: center;
    }
    .treatment-picker-label {
      display: block;
      font-family: var(--font-sans);
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--aqua);
      font-weight: 600;
      margin-bottom: 0.75rem;
      opacity: 0.85;
    }
    .treatment-picker-control {
      position: relative;
    }
    .treatment-picker select {
      width: 100%;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background: rgba(45, 253, 243, 0.04);
      border: 1px solid rgba(45, 253, 243, 0.3);
      border-radius: 100px;
      color: var(--white);
      font-family: var(--font-serif);
      font-size: 1.05rem;
      padding: 0.95rem 3rem 0.95rem 1.5rem;
      cursor: pointer;
      transition: border-color 0.3s ease, background 0.3s ease;
    }
    .treatment-picker select:hover,
    .treatment-picker select:focus {
      border-color: var(--aqua);
      background: rgba(45, 253, 243, 0.08);
      outline: none;
    }
    .treatment-picker select option {
      background: var(--navy);
      color: var(--white);
      font-family: var(--font-sans);
    }
    .treatment-picker-arrow {
      position: absolute;
      right: 1.4rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--aqua);
      font-size: 0.9rem;
      pointer-events: none;
      line-height: 1;
    }
    @media (max-width: 720px) {
      .treatment-picker { margin-top: 2rem; }
      .treatment-picker select { font-size: 0.95rem; padding: 0.85rem 2.5rem 0.85rem 1.25rem; }
    }

    /* ──── CONTACT MAP ──── */
    .contact-map {
      background: var(--navy);
      padding-top: 4rem;
      padding-bottom: 5rem;
    }
    .contact-map .section-tag,
    .contact-map .section-title { text-align: center; }
    .contact-map .section-title { margin-bottom: 2rem; }
    .contact-map-frame {
      max-width: 1000px;
      margin: 0 auto;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 10px 40px rgba(0,0,0,0.3);
      aspect-ratio: 16 / 10;
      background: rgba(255,255,255,0.03);
    }
    .contact-map-frame iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: grayscale(0.2) contrast(1.05);
    }
    .contact-map-note {
      text-align: center;
      margin: 1.5rem auto 0;
      font-size: 0.9rem;
    }
    .contact-map-note a {
      color: var(--aqua);
      text-decoration: none;
      border-bottom: 1px solid rgba(45, 253, 243, 0.4);
      padding-bottom: 0.15rem;
    }
    .contact-map-note a:hover { color: var(--white); border-color: var(--white); }
    @media (max-width: 600px) {
      .contact-map-frame { aspect-ratio: 1 / 1; }
    }

    /* ──── ABOUT — STATS, MIHI, CREDENTIALS ──── */
    .about-subtitle {
      font-size: 1.05rem;
      line-height: 1.5;
      color: rgba(255,255,255,0.75);
      margin: 0 0 1.5rem;
    }
    .about-stats {
      list-style: none;
      padding: 0;
      margin: 1.75rem 0 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.85rem;
    }
    .about-stats li {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      padding: 0.85rem 1rem;
      background: rgba(45, 253, 243, 0.04);
      border: 1px solid rgba(45, 253, 243, 0.12);
      border-radius: 12px;
    }
    .about-stat-num {
      font-family: var(--font-serif);
      font-size: 1.6rem;
      font-weight: 500;
      color: var(--white);
      line-height: 1;
      display: inline-flex;
      align-items: baseline;
      gap: 0.15rem;
    }
    .about-stat-unit {
      font-size: 0.75rem;
      font-weight: 400;
      color: var(--aqua-soft);
      letter-spacing: 0.05em;
    }
    .about-stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }
    @media (min-width: 600px) {
      .about-stats { grid-template-columns: repeat(4, 1fr); }
    }

    .about-mihi-wrap {
      margin: 1.5rem 0 1.75rem;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      background: rgba(255,255,255,0.02);
    }
    .about-mihi-wrap summary {
      cursor: pointer;
      list-style: none;
      padding: 0.85rem 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      min-height: 44px;
      justify-content: center;
    }
    .about-mihi-wrap summary::-webkit-details-marker { display: none; }
    .about-mihi-wrap summary::before {
      content: '+';
      float: right;
      font-size: 1.2rem;
      color: var(--aqua);
      margin-left: 1rem;
      transition: transform 0.2s;
    }
    .about-mihi-wrap[open] summary::before { content: '–'; }
    .about-mihi-summary-text {
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--aqua);
      font-size: 0.85rem;
      text-transform: uppercase;
    }
    .about-mihi-summary-translate {
      font-size: 0.78rem;
      font-style: italic;
      color: rgba(255,255,255,0.5);
    }
    .about-mihi-wrap .about-mihi {
      padding: 0 1.25rem 1.25rem;
      margin: 0;
    }

    .credentials { background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%); }
    .credentials-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      max-width: 1100px;
      margin: 3rem auto 0;
    }
    .credential {
      padding: 2rem 1.75rem;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 18px;
      transition: all 0.25s;
    }
    .credential:hover {
      border-color: rgba(45, 253, 243, 0.25);
      background: rgba(45, 253, 243, 0.03);
    }
    .credential-title {
      font-family: var(--font-serif);
      font-size: 1.25rem;
      color: var(--aqua-soft);
      margin: 0 0 0.85rem;
      font-style: italic;
    }
    .credential-body {
      font-size: 0.95rem;
      line-height: 1.6;
      color: rgba(255,255,255,0.78);
      margin: 0;
    }
    @media (min-width: 768px) {
      .credentials-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    }

    /* ──── COMPARE: WHICH ONE IS FOR YOU (treatments) ──── */
    .compare { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%); }
    .compare-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      max-width: 1000px;
      margin: 0 auto;
    }
    .compare-col {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      padding: 2rem 1.75rem;
      display: flex;
      flex-direction: column;
    }
    .compare-cat {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--aqua);
      margin: 0 0 0.5rem;
    }
    .compare-col h3 {
      font-family: var(--font-serif);
      font-size: 1.7rem;
      color: var(--white);
      margin: 0 0 0.5rem;
      line-height: 1.15;
    }
    .compare-tagline {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.5;
      margin: 0 0 1.5rem;
    }
    .compare-list {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      margin: 0 0 1.75rem;
      flex: 1;
    }
    .compare-list > div {
      display: grid;
      grid-template-columns: 100px 1fr;
      gap: 0.75rem;
      padding-bottom: 0.85rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .compare-list > div:last-child { border-bottom: none; padding-bottom: 0; }
    .compare-list dt {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin: 0;
    }
    .compare-list dd {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.85);
      margin: 0;
      line-height: 1.45;
    }
    .compare-col .btn { align-self: flex-start; }
    .compare-note {
      max-width: 1000px;
      margin: 2rem auto 0;
      text-align: center;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.6);
    }
    .compare-note a {
      color: var(--aqua);
      text-decoration: none;
      border-bottom: 1px solid rgba(45,253,243,0.4);
    }
    .compare-note a:hover { color: var(--white); border-color: var(--white); }
    @media (min-width: 768px) {
      .compare-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    }

    /* ──── BEFORE YOU BOOK (begin page) ──── */
    .before-booking {
      max-width: 880px;
      margin: 3rem auto 0;
      padding: 1.75rem 1.5rem;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(45, 253, 243, 0.12);
      border-radius: 18px;
    }
    .before-booking-heading {
      font-family: var(--font-serif);
      font-size: 1.3rem;
      font-style: italic;
      text-align: center;
      color: var(--aqua-soft);
      margin: 0 0 1.5rem;
      letter-spacing: 0.02em;
    }
    .before-booking-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }
    .before-booking-item { padding: 0.5rem 0; }
    .before-booking-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--aqua);
      margin: 0 0 0.4rem;
    }
    .before-booking-text {
      font-size: 0.92rem;
      line-height: 1.55;
      color: rgba(255,255,255,0.78);
      margin: 0;
    }
    @media (min-width: 640px) {
      .before-booking-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
    }
    @media (min-width: 900px) {
      .before-booking-grid { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
    }

    /* ──── STICKY MOBILE CTA ──── */
    .sticky-cta-mobile { display: none; }
    @media (max-width: 768px) {
      .sticky-cta-mobile {
        display: flex;
        position: fixed;
        bottom: max(1rem, env(safe-area-inset-bottom));
        left: 1rem;
        right: 1rem;
        z-index: 99;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        padding: 0.95rem 1.5rem;
        min-height: 50px;
        background: linear-gradient(135deg, var(--aqua), var(--teal-mid));
        color: var(--navy);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        border-radius: 100px;
        text-decoration: none;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(45, 253, 243, 0.25);
        opacity: 0;
        pointer-events: none;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
      }
      body.show-sticky-cta .sticky-cta-mobile {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }
      body.show-sticky-cta .sticky-cta-mobile:active { transform: scale(0.97); }
      body.has-sticky-cta { padding-bottom: 5rem; }
      body.menu-open .sticky-cta-mobile { display: none; }
    }

    /* ──── SESSIONS & PRICING TABLE (treatments) ──── */
    .sessions-pricing {
      background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
    }
    .sessions-table {
      max-width: 880px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .session-row {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      padding: 1.1rem 1.25rem;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 14px;
      text-decoration: none;
      color: inherit;
      transition: all 0.25s;
      min-height: 44px;
    }
    .session-row:hover, .session-row:focus-visible {
      border-color: rgba(45, 253, 243, 0.35);
      background: rgba(45, 253, 243, 0.04);
      transform: translateY(-1px);
    }
    .session-row-main {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .session-row-tag {
      display: inline-block;
      align-self: flex-start;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--aqua);
      background: rgba(45, 253, 243, 0.08);
      padding: 0.2rem 0.55rem;
      border-radius: 100px;
    }
    .session-row-name {
      font-family: var(--font-serif);
      font-size: 1.1rem;
      color: var(--white);
      line-height: 1.25;
    }
    .session-row-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .session-row-duration {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.55);
    }
    .session-row-price {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-left: auto;
    }
    .session-row-cta {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--aqua);
    }
    .sessions-table-note {
      max-width: 880px;
      margin: 2rem auto 0;
      text-align: center;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.55);
    }
    .sessions-table-note a {
      color: var(--aqua);
      text-decoration: none;
      border-bottom: 1px solid rgba(45,253,243,0.4);
    }
    .sessions-table-note a:hover { color: var(--white); border-color: var(--white); }
    @media (min-width: 640px) {
      .session-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
      }
      .session-row-main { flex: 1; flex-direction: row; align-items: center; gap: 1rem; }
      .session-row-tag { flex-shrink: 0; }
      .session-row-meta { flex-shrink: 0; }
      .session-row-price { margin-left: 0; }
    }

    /* ──── SOCIAL PROOF (above the fold) ──── */
    .social-proof {
      background: rgba(45, 253, 243, 0.04);
      border-top: 1px solid rgba(45, 253, 243, 0.12);
      border-bottom: 1px solid rgba(45, 253, 243, 0.12);
      padding: 1.1rem 1.25rem;
    }
    .social-proof-inner {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      text-align: center;
    }
    .social-proof-rating {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .social-proof-stars {
      color: #FFC107;
      letter-spacing: 0.1em;
      font-size: 1.05rem;
    }
    .social-proof-text {
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.85rem;
    }
    .social-proof-text strong { color: var(--white); font-weight: 700; }
    .social-proof-quote {
      font-family: var(--font-serif);
      font-style: italic;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.95rem;
      margin: 0;
      line-height: 1.4;
    }
    .social-proof-quote span {
      font-style: normal;
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.8rem;
      white-space: nowrap;
    }
    @media (min-width: 768px) {
      .social-proof-inner {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
      }
      .social-proof-quote { font-size: 1rem; }
    }

    /* Touch devices: drop hover-lift transforms so they don't stay stuck after a tap.
       Targeted reset — keeps hover color/border changes, only kills the lift. */
    @media (hover: none) {
      .btn:hover,
      .nav-links .btn-book:hover,
      .service-card:hover,
      .booking-card:hover,
      .package:hover,
      .contact-social:hover,
      .footer-bottom span a:hover,
      .article-card:hover,
      .feature-card:hover,
      .session-row:hover,
      .intro-value:hover,
      .stat-card:hover,
      .credential-item:hover {
        transform: none;
      }
    }

    /* Mobile readability bump (Ardré feedback 2026-05-11): older eyes find
       the default a touch small on phones. Lifting the html base from 16px
       to 17px scales every rem-based size proportionally on ≤ 768px without
       touching individual rules. Long-form articles get an extra nudge. */
    @media (max-width: 768px) {
      html { font-size: 17px; }
      .article-body p { font-size: 1.05rem; }
    }

    /* Second pass (Ardré feedback 2026-05-12): the html-base bump fixed
       headings/main copy, but secondary body text inside cards/boxes was
       still tight at 0.78-0.85rem. Lifting those to 0.92-0.95rem. Badges,
       eyebrows, dates and uppercase micro-labels stay small on purpose. */
    @media (max-width: 768px) {
      .intro-value p,
      .service-card p,
      .feature p,
      .package-bullets li,
      .testimonial-text,
      .addon-list li,
      .discover-card p { font-size: 0.95rem; }

      .about-credential p { font-size: 0.95rem !important; }

      .benefit-item p,
      .duo-option-desc,
      .research-stat p,
      .about-detail,
      .contact-detail { font-size: 0.92rem; }
    }
