/* ============================================================
   BOXXED AESTHETICS & WELLNESS — SHARED STYLESHEET
   Single source of truth for ALL pages.
   Contains: design tokens, base, buttons, announcement bar,
   header/nav, mega menu, homepage sections, footer, final CTA,
   policy-page content, and responsive rules.
   Edit shared elements (header/footer/mega menu) HERE ONCE.
   ============================================================ */

  :root {
    --champagne: #CBB79A;
    --champagne-soft: #D9C9B0;
    --taupe: #7A6A58;
    --espresso: #3A302A;
    --espresso-deep: #2B2521;
    --espresso-darkest: #1C1815;
    --greige: #E9E5DF;
    --greige-soft: #F2EFE9;
    --ivory: #FAF8F4;
    --display: 'Cormorant Garamond', serif;
    --display-thin: 'Italiana', serif;
    --body: 'Manrope', system-ui, sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--body);
    font-weight: 300;
    color: var(--espresso);
    background: var(--ivory);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  ::selection {
    background: var(--champagne);
    color: var(--espresso-deep);
  }

  /* ============ ANNOUNCEMENT BAR ============ */
  .announcement {
    background: var(--espresso-darkest);
    color: var(--champagne);
    text-align: center;
    padding: 12px 24px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    z-index: 1000;
  }
  .announcement-line {
    line-height: 1.9;
  }
  .announcement-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(203, 183, 154, 0.4);
    padding-bottom: 1px;
    transition: border-color 0.3s ease, color 0.3s ease;
  }
  .announcement-link:hover {
    color: var(--champagne-soft);
    border-color: var(--champagne);
  }
  .announcement .sep {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--champagne);
    border-radius: 50%;
    margin: 0 14px;
    vertical-align: middle;
    opacity: 0.6;
  }
  /* Call/Text control — lives in the nav, under the Book Now button */
  .nav-links .book-wrap {
    position: relative;
  }
  .nav-callus {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .nav-callus .qc-option {
    font-size: 11px;
    color: var(--champagne-soft);
    padding: 11px 18px;
    letter-spacing: 0.18em;
  }
  .nav-callus .qc-option::after { display: none; }
  .nav-callus .qc-option:hover { color: var(--ivory); }
  @media (max-width: 1024px) {
    .nav-callus {
      position: static;
      justify-content: center;
      margin-top: 16px;
    }
  }
  .textme-label {
    color: var(--champagne-soft);
    opacity: 0.9;
    font-size: 14px;
    font-weight: 800;
  }
  .qc-wrap {
    position: relative;
    display: inline-block;
  }
  .qc-trigger {
    font-family: var(--body);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--champagne);
    background: none;
    border: none;
    border-bottom: 1px solid rgba(203, 183, 154, 0.4);
    padding: 0 0 1px;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }
  .qc-trigger:hover,
  .qc-wrap.qc-open .qc-trigger {
    border-color: var(--champagne);
  }
  .qc-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: flex;
    flex-direction: column;
    min-width: 132px;
    background: var(--espresso-darkest);
    border: 1px solid rgba(203, 183, 154, 0.28);
    border-radius: 3px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 1001;
  }
  .qc-menu[hidden] {
    display: none;
  }
  .qc-option {
    font-family: var(--body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: left;
    color: var(--champagne-soft);
    text-decoration: none;
    padding: 11px 18px;
    transition: background 0.25s ease, color 0.25s ease;
  }
  .qc-option + .qc-option {
    border-top: 1px solid rgba(203, 183, 154, 0.14);
  }
  .qc-option:hover {
    background: rgba(203, 183, 154, 0.12);
    color: var(--ivory);
  }

  /* ============ HEADER ============ */
  .header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--espresso-deep);
    border-bottom: 1px solid rgba(203, 183, 154, 0.08);
    transition: all 0.4s ease;
  }
  .nav-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-family: var(--display-thin);
    font-size: 26px;
    letter-spacing: 0.32em;
    color: var(--champagne);
    text-decoration: none;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
  }
  .logo .reg {
    font-size: 9px;
    vertical-align: super;
    margin-left: 2px;
    opacity: 0.6;
  }
  .logo-img img {
    height: 92px;
    width: auto;
    display: block;
  }
  .footer-logo-img img {
    height: 88px;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 44px;
    list-style: none;
  }
  .nav-links a {
    color: var(--ivory);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 300;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
  }
  .nav-links a:hover {
    color: var(--champagne);
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--champagne);
    transition: width 0.4s ease;
  }
  .nav-links a:hover::after {
    width: 100%;
  }
  .book-btn {
    border: 1px solid var(--champagne);
    background: var(--champagne);
    color: var(--espresso-deep) !important;
    padding: 12px 28px !important;
    transition: all 0.4s ease;
  }
  .book-btn:hover {
    background: transparent;
    color: var(--champagne) !important;
  }
  .book-btn::after { display: none; }

  /* ============ NAV CHEVRON ============ */
  .nav-chevron {
    width: 9px;
    height: 6px;
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    vertical-align: 1px;
    opacity: 0.7;
  }
  .treatments-wrap:hover .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
  }

  /* ============ HAMBURGER (hidden on desktop) ============ */
  .nav-toggle { display: none; }

  /* ============ MOBILE NAVIGATION ============ */
  @media (max-width: 1024px) {
    .nav-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      padding: 0;
      background: none;
      border: none;
      cursor: pointer;
      position: relative;
      z-index: 1001;
    }
    .nav-toggle-bar {
      display: block;
      width: 26px;
      height: 1.5px;
      background: var(--champagne);
      transition: transform 0.35s ease, opacity 0.2s ease;
    }
    body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
    body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Logo a touch smaller so the bar isn't too tall on phones */
    .logo-img img { height: 64px; }

    /* The nav becomes a slide-down panel anchored below the header bar */
    .main-nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--espresso-deep);
      border-top: 1px solid rgba(203, 183, 154, 0.12);
      box-shadow: 0 30px 60px rgba(28, 24, 21, 0.4);
      padding: 14px 30px 40px;
      max-height: calc(100vh - 100%);
      overflow-y: auto;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
      z-index: 1000;
    }
    body.nav-open .main-nav {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    body.nav-open { overflow: hidden; }

    .nav-links {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      max-width: 460px;
      margin: 0 auto;
    }
    .nav-links > li { border-bottom: 1px solid rgba(203, 183, 154, 0.14); }
    .nav-links > li > a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      font-size: 15px !important;
      letter-spacing: 0.14em !important;
      padding: 19px 2px !important;
    }
    .nav-links a::after { display: none; }
    .nav-links > li:last-child {
      border-bottom: none;
      margin-top: 26px;
    }
    .book-btn {
      justify-content: center;
      padding: 16px 28px !important;
    }

    /* Treatments — tap to expand the stacked list */
    .treatments-wrap .nav-chevron { width: 12px; height: 8px; opacity: 0.75; margin-left: 0; }
    .treatments-wrap.mobile-expanded .nav-chevron { transform: rotate(180deg); opacity: 1; }
    .main-nav .mega-menu {
      position: static;
      width: auto;
      background: none;
      box-shadow: none;
      padding: 0;
      opacity: 1;
      visibility: visible;
      transform: none;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s ease;
    }
    .main-nav .treatments-wrap.mobile-expanded .mega-menu { max-height: 4000px; }
    .main-nav .mega-inner {
      grid-template-columns: 1fr;
      gap: 0;
      padding: 4px 0 14px;
    }
    .main-nav .mega-cols-centered { display: contents; }
    .main-nav .mega-col,
    .main-nav .mega-col-centered {
      padding: 18px 0;
      border-bottom: 1px solid rgba(203, 183, 154, 0.12);
      text-align: left;
      align-items: stretch;
    }
    .main-nav .mega-col:last-child { border-bottom: none; }
    .main-nav .mega-col-icon { display: none; }
    .main-nav .mega-col-rule { display: none; }
    .main-nav .mega-col-list li::after { display: none; }
    .main-nav .mega-col-title { color: var(--champagne); text-align: left; margin-bottom: 10px; }
    .main-nav .mega-menu .mega-col-list li a { color: var(--ivory); padding: 12px 2px; }
    .main-nav .mega-menu .mega-col-list li a:hover { color: var(--champagne); }
    .main-nav .mega-menu .mega-col-list li.mega-list-sub a { color: rgba(217, 201, 176, 0.75); }
    .main-nav .mega-menu .mega-col-list li.mega-list-sub a:hover { color: var(--champagne); }
    .main-nav .mega-col-list li.mega-list-sub::before { background: rgba(203, 183, 154, 0.4); }
    .main-nav .mega-col-blurb { color: rgba(250, 248, 244, 0.62); text-align: left; min-height: 0; margin-bottom: 14px; }
    .main-nav .mega-menu .mega-col-button {
      align-self: flex-start;
      margin-top: 6px;
      color: var(--champagne);
      border-color: rgba(203, 183, 154, 0.5);
    }
  }

  /* ============ MEGA MENU (FULL-WIDTH) ============ */
  .treatments-wrap {
    position: static;
  }
  .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--greige-soft);
    padding: 24px 48px 28px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.45s;
    box-shadow: 0 30px 60px rgba(28, 24, 21, 0.12);
    z-index: 998;
  }
  .treatments-wrap:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mega-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    align-items: start;
  }
  /* The four blurb+button columns size against EACH OTHER (not against the long
     Injectables list), so their buttons align without being dragged to the
     bottom of the menu. */
  .mega-cols-centered {
    grid-column: 3 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: stretch;
  }
  .mega-col {
    display: flex;
    flex-direction: column;
  }
  .mega-col-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(203, 183, 154, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--taupe);
    margin: 0 auto 18px;
    transition: all 0.4s ease;
  }
  .mega-col-icon svg {
    width: 22px;
    height: 22px;
  }
  .mega-col-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
  }
  /* Only the four clickable category cards react to hover. The two list
     columns are not clickable as a whole, so their icon/title/rule stay put. */
  a.mega-col-centered:hover .mega-col-icon {
    background: rgba(203, 183, 154, 0.18);
    color: var(--espresso-deep);
  }
  .mega-col-title {
    font-family: var(--display);
    font-size: 19px;
    letter-spacing: -0.005em;
    color: var(--espresso-deep);
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.2;
    text-align: center;
  }
  .mega-col-rule {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--champagne);
    margin: 0 auto 22px;
    transition: width 0.4s ease;
  }
  a.mega-col-centered:hover .mega-col-rule {
    width: 40px;
  }
  .mega-col-list {
    list-style: none;
    margin-bottom: 0;
    flex-grow: 1;
  }
  .mega-col-list li {
    position: relative;
  }
  .mega-col-list li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 1px;
    background: rgba(203, 183, 154, 0.45);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
  }
  .mega-col-list li:hover::after {
    width: 100%;
    background: var(--champagne);
  }
  .mega-menu .mega-col-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 0;
    color: var(--espresso);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
    transition: color 0.3s ease;
    line-height: 1.4;
  }
  .mega-col-list li a span {
    flex: 1;
    min-width: 0;
  }
  .mega-menu .mega-col-list li a:hover {
    color: var(--taupe);
  }
  .mega-list-chevron {
    width: 5px;
    height: 8px;
    opacity: 0.45;
    transition: opacity 0.3s ease, transform 0.4s ease;
    flex-shrink: 0;
    color: var(--taupe);
  }
  .mega-col-list li a:hover .mega-list-chevron {
    opacity: 1;
    transform: translateX(3px);
    color: var(--champagne);
  }
  /* Sub-items nested under a parent treatment (e.g. PDRN / Exosomes under Microneedling) */
  .mega-col-list li.mega-list-sub {
    padding-left: 16px;
  }
  .mega-col-list li.mega-list-sub::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 50%;
    width: 7px;
    height: 1px;
    background: rgba(139, 122, 104, 0.5);
  }
  .mega-menu .mega-col-list li.mega-list-sub a {
    font-size: 12px;
    color: var(--taupe);
  }
  .mega-menu .mega-col-list li.mega-list-sub a:hover {
    color: var(--espresso);
  }
  .mega-col-list li.mega-list-sub::after {
    left: 16px;
  }

  /* Centered columns for Laser, Hair, IV, Signature */
  .mega-col-centered {
    align-items: center;
    text-align: center;
  }
  .mega-col-centered .mega-col-rule {
    margin-left: auto;
    margin-right: auto;
  }
  .mega-col-blurb {
    font-size: 14px;
    color: var(--taupe);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 24px;
    /* No fixed min-height: blurbs wrap to different line counts at different
       window widths. The buttons are pinned to the bottom of their column
       instead (margin-top:auto below), so they always align to each other. */
  }
  .mega-menu .mega-col-button {
    display: inline-block;
    padding: 13px 26px;
    background: transparent;
    border: 1px solid var(--champagne);
    color: var(--espresso-deep);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
    align-self: center;
    text-align: center;
    margin-top: auto; /* pin to the bottom so all four buttons line up */
  }
  a.mega-col-centered {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    /* Reset the nav-link typography these anchors would otherwise inherit
       (.nav-links a sets uppercase, letter-spacing, 12px, padding). */
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: normal;
    text-transform: none;
    padding: 0;
  }
  a.mega-col-centered::after { display: none; }
  a.mega-col-centered:hover .mega-col-title { color: var(--espresso-deep); }
  /* Button is a span now; it lights up when the card is hovered */
  a.mega-col-centered:hover .mega-col-button {
    background: var(--champagne);
    color: var(--espresso-deep);
  }

  /* "View All" CTA - for Injectables and Skin Treatments columns */
  .mega-menu .mega-col-cta {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--espresso-deep);
    text-decoration: none;
    margin-top: auto;
    font-weight: 500;
    width: fit-content;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--champagne);
    transition: all 0.3s ease;
  }
  .mega-menu .mega-col-cta:hover {
    color: var(--taupe);
    border-bottom-color: var(--taupe);
  }

  /* ============ HERO ============ */
  .hero {
    background: var(--espresso-deep);
    color: var(--ivory);
    min-height: 64vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 80% 20%, rgba(203, 183, 154, 0.08) 0%, transparent 50%),
      radial-gradient(ellipse at 20% 80%, rgba(139, 122, 104, 0.06) 0%, transparent 50%);
    z-index: 0;
  }
  .hero-watermark {
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    width: clamp(320px, 42vw, 620px);
    height: clamp(320px, 42vw, 620px);
    background-image: url('assets/logo-mark.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
    z-index: 1;
  }
  .hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0px 48px 32px;
    position: relative;
    z-index: 3;
    width: 100%;
  }
  .hero-eyebrow {
    font-size: 15px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--champagne);
    font-weight: 400;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
  }
  .hero-eyebrow::before {
    content: '';
    width: 48px;
    height: 1px;
    background: var(--champagne);
  }
  .hero-title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(48px, 7vw, 104px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    max-width: 1200px;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.4s forwards;
  }
  .hero-title em {
    font-style: italic;
    color: var(--champagne);
    font-weight: 300;
  }
  .hero-line-2 {
    display: inline-block;
    padding-left: 1.2em;
  }
  .hero-title .tm {
    font-size: 0.22em;
    vertical-align: super;
    color: var(--champagne);
    margin-left: 0.15em;
    font-style: normal;
    opacity: 0.8;
    font-family: var(--body);
    letter-spacing: 0.05em;
  }
  .hero-sub {
    font-size: 17px;
    font-weight: 300;
    max-width: 540px;
    line-height: 1.7;
    color: rgba(250, 248, 244, 0.75);
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.6s forwards;
  }
  .hero-ctas {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.8s forwards;
  }
  .btn-primary {
    background: var(--champagne);
    color: var(--espresso-deep);
    padding: 18px 36px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    border: 1px solid var(--champagne);
  }
  .btn-primary:hover {
    background: transparent;
    color: var(--champagne);
  }
  .btn-ghost {
    background: transparent;
    color: var(--ivory);
    padding: 18px 36px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    border: 1px solid rgba(250, 248, 244, 0.25);
  }
  .btn-ghost:hover {
    border-color: var(--ivory);
    background: rgba(250, 248, 244, 0.04);
  }
  .hero-scroll {
    position: absolute;
    bottom: 48px;
    right: 48px;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--taupe);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 300;
  }

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

  /* ============ SLOGAN BREAK ============ */
  .slogan-break {
    background: var(--ivory);
    padding: 160px 48px;
    text-align: center;
  }
  .slogan {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(40px, 6vw, 88px);
    line-height: 1.1;
    color: var(--espresso-deep);
    letter-spacing: -0.01em;
    max-width: 1100px;
    margin: 0 auto;
  }
  .slogan em {
    font-style: italic;
    color: var(--taupe);
  }
  .slogan-tm {
    font-size: 14px;
    vertical-align: super;
    color: var(--champagne);
    margin-left: 4px;
  }
  .slogan-line {
    display: block;
    width: 1px;
    height: 80px;
    background: var(--champagne);
    margin: 80px auto 0;
    opacity: 0.4;
  }

  /* ============ PHILOSOPHY ============ */
  .philosophy {
    background: var(--ivory);
    padding: 0 48px 200px;
  }
  .container {
    max-width: 1500px;
    margin: 0 auto;
  }
  .section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 400;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .section-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--taupe);
  }
  .philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 120px;
    align-items: start;
  }
  .philosophy h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.1;
    color: var(--espresso-deep);
    letter-spacing: -0.01em;
  }
  .philosophy h2 em {
    font-style: italic;
    color: var(--taupe);
  }
  .philosophy-body p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--espresso);
    margin-bottom: 28px;
    font-weight: 300;
    max-width: 580px;
  }
  .philosophy-body p:first-letter {
    initial-letter: unset;
  }

  /* ============ PILLARS ============ */
  .pillars {
    background: var(--greige-soft);
    padding: 24px 48px 40px;
  }
  .pillars-header {
    text-align: center;
    margin-bottom: 40px;
  }
  .pillars-header h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.1;
    color: var(--espresso-deep);
    margin: 0 auto;
    max-width: 900px;
    letter-spacing: -0.01em;
  }
  .pillars-header h2 em {
    font-style: italic;
    color: var(--taupe);
  }
  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(139, 122, 104, 0.2);
    border-bottom: 1px solid rgba(139, 122, 104, 0.2);
  }
  .pillar {
    padding: 56px 36px 64px;
    border-right: 1px solid rgba(139, 122, 104, 0.15);
    transition: background 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  .pillar:last-child { border-right: none; }

  /* PILLARS INTRO LINE */
  .pillars-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
  }
  .pillars-intro p {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 300;
    color: var(--taupe);
    line-height: 1.55;
    letter-spacing: 0.005em;
  }
  .pillars-intro em {
    font-style: italic;
    color: var(--espresso-deep);
  }
  .pillar:hover {
    background: var(--ivory);
  }
  .pillar-number {
    position: absolute;
    top: 28px;
    right: 32px;
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: 140px;
    line-height: 0.85;
    color: var(--champagne);
    opacity: 0.12;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: top right;
  }
  .pillar:hover .pillar-number {
    opacity: 0.18;
    transform: scale(1.04);
  }
  .pillar-rule {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--champagne);
    opacity: 0.5;
    margin-bottom: 40px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    position: relative;
    z-index: 2;
  }
  .pillar:hover .pillar-rule {
    width: 72px;
    opacity: 1;
  }
  .pillar h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2;
    color: var(--espresso-deep);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
  }
  .pillar:hover h3 {
    transform: translateX(3px);
  }
  .pillar p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--taupe);
    font-weight: 300;
    position: relative;
    z-index: 2;
  }

  /* ============ TREATMENTS PREVIEW ============ */
  .treatments-section {
    background: var(--ivory);
    padding: 40px 48px 20px;
  }
  .treatments-header {
    text-align: center;
    margin-bottom: 72px;
  }
  .treatments-header h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.1;
    color: var(--espresso-deep);
    letter-spacing: -0.01em;
    margin: 0 auto;
    max-width: 900px;
  }
  .treatments-header h2 em {
    font-style: italic;
    color: var(--taupe);
  }
  .treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(139, 122, 104, 0.15);
    border: 1px solid rgba(139, 122, 104, 0.15);
  }
  .treatment-card {
    background: var(--ivory);
    padding: 30px 40px 28px;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  a.treatment-card:hover {
    background: var(--greige-soft);
  }
  .card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
  }
  .card-icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(203, 183, 154, 0.42);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--taupe);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .card-icon {
    width: 28px;
    height: 28px;
    display: block;
  }
  img.card-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
  }
  a.treatment-card:hover .card-icon-wrap {
    background: rgba(203, 183, 154, 0.16);
    color: var(--espresso-deep);
    transform: scale(1.04);
  }
  .card-title-block {
    flex: 1;
    min-width: 0;
  }
  .treatment-card h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 26px;
    line-height: 1.15;
    color: var(--espresso-deep);
    margin-bottom: 12px;
    letter-spacing: -0.005em;
  }
  .treatment-card h3 em {
    font-style: italic;
    color: var(--taupe);
  }
  .card-rule {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--champagne);
    opacity: 0.6;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  }
  a.treatment-card:hover .card-rule {
    width: 56px;
    opacity: 1;
  }
  .treatment-card p {
    font-size: 14px;
    color: var(--taupe);
    line-height: 1.75;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 320px;
    flex-grow: 1;
  }
  .treatment-list {
    list-style: none;
    margin-bottom: 40px;
    columns: 2;
    column-gap: 28px;
    flex-grow: 1;
  }
  .treatment-list li {
    font-size: 14px;
    color: var(--espresso-deep);
    line-height: 1.5;
    font-weight: 400;
    padding: 6px 0;
    break-inside: avoid;
    transition: color 0.3s ease, padding-left 0.3s ease;
    cursor: pointer;
    border-bottom: 1px solid rgba(139, 122, 104, 0.08);
  }
  .treatment-list li:hover {
    color: var(--espresso-deep);
    padding-left: 4px;
  }
  .treatment-list li a { color: inherit; text-decoration: none; display: block; }
  a.treatment-card { text-decoration: none; color: inherit; }
  .treatment-card .arrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--espresso-deep);
    font-weight: 400;
    transition: gap 0.4s ease;
    margin-top: auto;
  }
  a.treatment-card:hover .arrow {
    gap: 20px;
  }
  .treatment-card .arrow span {
    width: 24px;
    height: 1px;
    background: var(--champagne);
    display: block;
  }

  /* ============ INTERCEPT MOMENT (within treatments) ============ */
  .treatments-intercept {
    max-width: 760px;
    margin: 80px auto 0;
    text-align: center;
  }
  .intercept-question {
    font-family: var(--display);
    font-style: italic;
    font-size: 20px;
    color: var(--taupe);
    margin-bottom: 24px;
    font-weight: 300;
  }
  .intercept-headline {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.15;
    color: var(--espresso-deep);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }
  .intercept-headline em {
    font-style: italic;
    color: var(--champagne);
  }
  .intercept-sub {
    font-size: 16px;
    color: var(--taupe);
    line-height: 1.75;
    margin-bottom: 48px;
    font-weight: 300;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .intercept-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ============ REGENERATIVE EDITORIAL ============ */
  .regen-editorial {
    background: var(--espresso-deep);
    color: var(--ivory);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
  }
  .regen-bg {
    position: absolute;
    top: 50%;
    right: -8%;
    transform: translateY(-50%);
    width: 720px;
    height: 720px;
    background-image: url('assets/logo-mark.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
  }
  .regen-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
  }
  .regen-content h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.1;
    margin: 0 0 30px;
    letter-spacing: -0.015em;
  }
  .regen-content h2 em {
    font-style: italic;
    color: var(--champagne);
  }
  .regen-content > p {
    font-size: 15.5px;
    line-height: 1.85;
    color: rgba(250, 248, 244, 0.78);
    margin-bottom: 22px;
    max-width: 640px;
    font-weight: 300;
  }
  .regen-content > p:last-of-type {
    margin-bottom: 36px;
  }
  .regen-content > p em {
    font-style: italic;
    color: var(--champagne);
    opacity: 0.95;
  }
  .regen-treatments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 820px;
    position: relative;
    z-index: 2;
  }
  /* Reversed chips: ivory on the dark editorial, carrying the site's gold metal glow
     (platinum variant for exosome-touched, per the site-wide metal code). */
  .regen-treatment {
    background: var(--ivory);
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: var(--espresso-deep);
    gap: 16px;
    border: 1px solid rgba(203, 183, 154, 0.9);
    border-radius: 2px;
    position: relative;
    box-shadow: 0 0 0 1px rgba(203, 183, 154, 0.4), 0 12px 44px rgba(190, 165, 130, 0.35);
  }
  .regen-treatment:hover {
    border-color: rgba(203, 183, 154, 1);
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px rgba(203, 183, 154, 0.5), 0 18px 52px rgba(190, 165, 130, 0.5);
  }
  .regen-treatment.regen-plat {
    border: 1px solid rgba(168, 173, 182, 0.9);
    box-shadow: 0 0 0 1px rgba(168, 173, 182, 0.45), 0 12px 44px rgba(145, 152, 165, 0.35);
  }
  .regen-treatment.regen-plat:hover {
    border-color: rgba(168, 173, 182, 1);
    box-shadow: 0 0 0 1px rgba(168, 173, 182, 0.55), 0 18px 52px rgba(145, 152, 165, 0.5);
  }
  .regen-treatment-name {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.04em;
    font-family: var(--body);
    line-height: 1.35;
    transition: color 0.4s ease;
  }
  .regen-treatment:hover .regen-treatment-name {
    color: var(--espresso-darkest);
  }
  .regen-treatment-arrow {
    width: 18px;
    height: 1px;
    background: rgba(169, 143, 104, 0.7);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
    flex-shrink: 0;
  }
  .regen-treatment:hover .regen-treatment-arrow {
    width: 32px;
    background: #A98F68;
  }
  .regen-treatment.regen-plat .regen-treatment-arrow {
    background: rgba(140, 147, 160, 0.7);
  }
  .regen-treatment.regen-plat:hover .regen-treatment-arrow {
    background: #8C93A0;
  }

  /* ============ AI ASSESSMENT ============ */
  .ai-section {
    background: var(--ivory);
    padding: 14px 48px;
  }
  .ai-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
  .ai-content .section-eyebrow {
    justify-content: center;
  }
  .ai-content h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.1;
    color: var(--espresso-deep);
    margin: 24px 0 32px;
    letter-spacing: -0.01em;
  }
  .ai-content h2 em {
    font-style: italic;
    color: var(--taupe);
  }
  .ai-intro {
    font-size: 17px;
    line-height: 1.8;
    color: var(--espresso);
    margin: 0 auto 56px;
    font-weight: 300;
    max-width: 580px;
  }
  .ai-features {
    list-style: none;
    margin: 0 auto 56px;
    max-width: 480px;
    text-align: left;
    border-top: 1px solid rgba(139, 122, 104, 0.15);
  }
  .ai-features li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(139, 122, 104, 0.15);
    font-size: 15px;
    color: var(--espresso);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .ai-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--champagne);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .btn-dark {
    background: var(--espresso-deep);
    color: var(--ivory);
    padding: 18px 40px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    border: 1px solid var(--espresso-deep);
  }
  .btn-dark:hover {
    background: transparent;
    color: var(--espresso-deep);
  }

  /* ============ MEMBERSHIPS ============ */
  .memberships {
    background: var(--greige-soft);
    padding: 70px 48px 110px;
  }
  .mem-header {
    text-align: center;
    margin-bottom: 72px;
  }
  .mem-header .section-eyebrow {
    justify-content: center;
  }
  .mem-header h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.1;
    color: var(--espresso-deep);
    margin: 24px auto 32px;
    max-width: 900px;
    letter-spacing: -0.01em;
  }
  .mem-header h2 em {
    font-style: italic;
    color: var(--taupe);
  }
  .mem-header > p {
    font-size: 17px;
    color: var(--taupe);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
  }
  /* PERKS CARD */
  .perks-card {
    background: var(--espresso-deep);
    color: var(--ivory);
    max-width: 880px;
    margin: 0 auto;
    padding: 36px 80px 32px;
    position: relative;
    overflow: hidden;
  }
  .perks-card-bg {
    position: absolute;
    top: 50%;
    right: -15%;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    background-image: url('assets/logo-mark.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.045;
    pointer-events: none;
  }
  .perks-inner {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .perks-eyebrow {
    font-size: 15px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--champagne);
    font-weight: 400;
    margin-bottom: 18px;
  }
  .perks-rule {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--champagne);
    margin: 0 auto 48px;
  }
  .perks-list {
    list-style: none;
    margin: 0 auto 56px;
    max-width: 760px;
    text-align: left;
  }
  .perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .perks-grid li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 22px;
    background: rgba(250, 248, 244, 0.025);
    border: 1px solid rgba(203, 183, 154, 0.16);
    border-radius: 4px;
    color: rgba(250, 248, 244, 0.92);
    font-size: 14.5px;
    font-weight: 300;
    line-height: 1.55;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  }
  .perks-grid li:hover {
    background: rgba(203, 183, 154, 0.07);
    border-color: rgba(203, 183, 154, 0.4);
    transform: translateY(-2px);
  }
  .perks-ico {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(203, 183, 154, 0.45);
    color: var(--champagne);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease, color 0.35s ease;
  }
  .perks-ico svg { width: 20px; height: 20px; }
  .perks-grid li:hover .perks-ico {
    background: var(--champagne);
    color: var(--espresso-deep);
  }
  .perks-txt { padding-top: 2px; }
  .perks-hl {
    color: var(--champagne);
    font-weight: 500;
  }
  .perks-cta {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    border: 1px solid var(--champagne);
    color: var(--champagne);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
  }
  .perks-cta:hover {
    background: var(--champagne);
    color: var(--espresso-deep);
  }

  /* FOUNDING CALLOUT inside perks card */
  .founding-callout {
    margin: 32px -80px -32px;
    padding: 32px 80px 32px;
    background: rgba(196, 91, 78, 0.08);
    border-top: 1px solid rgba(196, 91, 78, 0.35);
    text-align: center;
    position: relative;
  }
  .founding-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: #E08879;
    font-weight: 500;
    margin-bottom: 28px;
    padding: 8px 20px;
    border: 1px solid rgba(196, 91, 78, 0.6);
  }
  .founding-title {
    font-family: var(--display);
    font-weight: 300;
    font-size: 54px;
    line-height: 1.1;
    color: var(--ivory);
    margin-bottom: 26px;
    letter-spacing: -0.015em;
  }
  .founding-title em {
    font-style: italic;
    color: #E08879;
  }
  .founding-text {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(250, 248, 244, 0.85);
    font-weight: 300;
    max-width: 580px;
    margin: 0 auto;
  }

  /* ============ FOUNDING ACCESS ============ */
  .founding {
    background: var(--ivory);
    padding: 100px 48px;
    text-align: center;
  }
  .founding-inner {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(203, 183, 154, 0.4);
    padding: 80px 60px;
    position: relative;
  }
  .founding-inner::before, .founding-inner::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid var(--champagne);
  }
  .founding-inner::before {
    top: -1px; left: -1px;
    border-right: none;
    border-bottom: none;
  }
  .founding-inner::after {
    bottom: -1px; right: -1px;
    border-left: none;
    border-top: none;
  }
  .founding-eyebrow {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 32px;
    font-weight: 400;
  }
  .founding h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.15;
    color: var(--espresso-deep);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
  }
  .founding h2 em {
    font-style: italic;
    color: var(--taupe);
  }
  .founding p {
    font-size: 16px;
    color: var(--taupe);
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.8;
  }

  /* ============ FINAL CTA ============ */
  .final-cta {
    background: var(--espresso-darkest);
    color: var(--ivory);
    padding: 6px 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .final-cta .section-eyebrow {
    color: var(--champagne);
    justify-content: center;
  }
  .final-cta .section-eyebrow::before {
    background: var(--champagne);
  }
  .final-cta h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(48px, 6.5vw, 96px);
    line-height: 1.05;
    margin: 32px 0 40px;
    letter-spacing: -0.015em;
  }
  .final-cta h2 em {
    font-style: italic;
    color: var(--champagne);
  }
  .final-cta p {
    font-size: 17px;
    color: rgba(250, 248, 244, 0.7);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
  }
  .final-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--espresso-darkest);
    color: var(--ivory);
    padding: 36px 48px 22px;
    border-top: 1px solid rgba(203, 183, 154, 0.1);
    scroll-margin-top: 30px;
  }
  .footer-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 2.15fr;
    gap: 96px;
    padding-bottom: 10px;
    align-items: start;
  }
  .footer-brand .logo {
    margin-bottom: 36px;
    display: inline-block;
  }
  .footer-slogan {
    font-family: var(--display);
    font-weight: 300;
    font-size: 34px;
    line-height: 1.08;
    color: var(--ivory);
    letter-spacing: -0.012em;
    margin: 0;
  }
  .footer-slogan em {
    font-style: italic;
    color: var(--champagne);
    font-weight: 300;
  }
  .footer-slogan-line-2 {
    display: inline-block;
    padding-left: 1.2em;
  }
  .footer-slogan .tm {
    font-size: 0.28em;
    vertical-align: super;
    color: var(--champagne);
    margin-left: 0.18em;
    font-style: normal;
    opacity: 0.85;
    font-family: var(--body);
    letter-spacing: 0.05em;
    font-weight: 400;
  }
  .footer-partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 52px;
    padding: 13px 26px;
    border: 1px solid rgba(203, 183, 154, 0.55);
    color: var(--champagne);
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  }
  .footer-partner-btn svg {
    width: 14px;
    height: 10px;
    transition: transform 0.4s ease;
  }
  .footer-partner-btn:hover {
    background: var(--champagne);
    color: var(--espresso-darkest);
    border-color: var(--champagne);
  }
  .footer-partner-btn:hover svg { transform: translateX(3px); }

  /* Visit Us section */
  .footer-visit {
    width: 100%;
  }
  .footer-visit-title {
    font-family: var(--body);
    font-size: 10px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--champagne);
    font-weight: 400;
    margin: 0 0 18px;
  }
  .footer-visit-rule {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--champagne);
    opacity: 0.55;
    margin-bottom: 36px;
  }
  .footer-visit-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
  .footer-map {
    position: relative;
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border: 1px solid rgba(203, 183, 154, 0.18);
    background: var(--espresso);
    cursor: pointer;
    transition: border-color 0.4s ease;
  }
  .footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.55) sepia(0.18) brightness(0.9) contrast(0.95);
    transition: filter 0.5s ease;
  }
  .footer-map-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(28, 24, 21, 0.08) 0%, rgba(28, 24, 21, 0.18) 100%);
    transition: background 0.4s ease;
  }
  .footer-map:hover {
    border-color: rgba(203, 183, 154, 0.4);
  }
  .footer-map:hover iframe {
    filter: grayscale(0.3) sepia(0.1) brightness(0.95) contrast(1);
  }
  .footer-map:hover .footer-map-overlay {
    background: linear-gradient(180deg, rgba(28, 24, 21, 0) 0%, rgba(28, 24, 21, 0.08) 100%);
  }

  .footer-block-title {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 300;
    color: var(--ivory);
    margin: 0 0 20px;
    letter-spacing: -0.005em;
    position: relative;
    padding-bottom: 14px;
  }
  .footer-block-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 1px;
    background: var(--champagne);
    opacity: 0.5;
  }

  .footer-contact-block p,
  .footer-hours-block p {
    font-size: 15px;
    color: rgba(250, 248, 244, 0.72);
    font-weight: 300;
    line-height: 1.75;
    margin: 0;
    letter-spacing: 0.005em;
  }
  .footer-temp-flag {
    display: inline-block;
    font-family: var(--body);
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--champagne);
    font-weight: 500;
    padding: 6px 11px;
    border: 1px solid rgba(203, 183, 154, 0.35);
    background: rgba(203, 183, 154, 0.06);
    margin-bottom: 18px;
  }
  .footer-address-line {
    color: rgba(250, 248, 244, 0.85) !important;
    font-size: 15.5px !important;
  }
  .footer-address-last {
    margin-bottom: 18px !important;
  }
  .footer-phone-line a,
  .footer-email-line a {
    color: rgba(250, 248, 244, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-phone-line a:hover,
  .footer-email-line a:hover {
    color: var(--champagne);
  }
  .footer-phone-line {
    font-size: 15.5px !important;
    color: rgba(250, 248, 244, 0.85) !important;
    line-height: 1.75;
    margin: 0;
  }
  .footer-phone-line .qc-trigger {
    font-family: var(--body);
    font-size: 15.5px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: rgba(250, 248, 244, 0.85);
    border-bottom: none;
    padding: 0;
    transition: color 0.3s ease;
  }
  .footer-phone-line .qc-trigger:hover,
  .footer-phone-line .qc-wrap.qc-open .qc-trigger {
    color: var(--champagne);
  }
  .footer-phone-line .qc-menu {
    right: auto;
    left: 0;
  }
  .footer-phone-note {
    color: var(--champagne);
    font-size: 15.5px;
    letter-spacing: 0.02em;
    font-style: italic;
    font-family: var(--display);
    opacity: 0.95;
  }
  .footer-email-line {
    margin-top: 6px !important;
    font-size: 15.5px !important;
  }
  .footer-contact-spacer {
    margin-top: 14px !important;
  }
  .footer-hours-block p {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 6px 0;
  }
  .footer-day {
    color: var(--champagne);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 400;
    flex-shrink: 0;
  }
  .footer-time {
    color: rgba(250, 248, 244, 0.78);
    font-size: 14px;
    text-align: right;
    font-weight: 300;
  }
  .footer-time-closed {
    color: rgba(250, 248, 244, 0.78) !important;
    font-style: italic;
    font-family: var(--display);
    font-size: 14px !important;
  }

  /* Bottom bar */
  .footer-finance {
    max-width: 1500px;
    margin: 24px auto 0;
    padding: 16px 0;
    border-top: 1px solid rgba(203, 183, 154, 0.1);
    border-bottom: 1px solid rgba(203, 183, 154, 0.1);
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: rgba(250, 248, 244, 0.5);
    font-weight: 300;
  }
  .footer-finance strong { color: var(--champagne); font-weight: 400; }
  .footer-finance a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(203, 183, 154, 0.45); transition: text-decoration-color 0.25s ease; }
  .footer-finance a:hover strong { color: var(--champagne-soft); }
  .footer-finance a:hover { text-decoration-color: var(--champagne); }
  .footer-bottom {
    max-width: 1500px;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px 32px;
  }
  .footer-copyright {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(250, 248, 244, 0.4);
    font-weight: 300;
    margin: 0;
  }
  /* Legal fine print — imagery/AI disclosure, last line of every page */
  .footer-disclaimer {
    max-width: 1500px;
    margin: 18px auto 0;
    font-size: 10px;
    letter-spacing: 0.06em;
    line-height: 1.7;
    color: rgba(250, 248, 244, 0.28);
    font-weight: 300;
    text-align: center;
  }
  .footer-bottom-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
  }
  .footer-bottom-links a {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(250, 248, 244, 0.45);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
  }
  .footer-bottom-links a:hover {
    color: var(--champagne);
  }
  .footer-social {
    display: flex;
    gap: 30px;
  }
  .footer-social a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: rgba(250, 248, 244, 0.5);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
  }
  .footer-social-icon {
    width: 19px;
    height: 19px;
    display: block;
  }
  .footer-social a:hover {
    color: var(--champagne);
  }

  /* ============ NAV COMPRESSION (prevents wrap between full desktop and mobile) ============ */
  @media (max-width: 1300px) {
    .nav-links { gap: 30px; }
    .nav-links a { font-size: 11.5px; letter-spacing: 0.14em; }
  }

  /* ============ MOBILE ============ */
  @media (max-width: 1180px) {
    .nav-links { gap: 18px; }
    .nav-links a { font-size: 11px; letter-spacing: 0.1em; }
    .logo-img img { height: 72px; }
    .book-btn { padding: 10px 18px !important; }
    .nav-callus .textme-label, .nav-callus .qc-trigger { font-size: 12px; }
  }
  @media (max-width: 1024px) {
    .nav-container { padding: 16px 32px; }
    .philosophy-grid {
      grid-template-columns: 1fr;
      gap: 60px;
    }
    .pillars-grid {
      grid-template-columns: 1fr 1fr;
    }
    .pillar {
      border-right: 1px solid rgba(139, 122, 104, 0.15);
      border-bottom: 1px solid rgba(139, 122, 104, 0.15);
    }
    .pillar:nth-child(2n) { border-right: none; }
    .pillar:nth-last-child(-n+2) { border-bottom: none; }
    .pillar:last-child { border-right: none; }
    .regen-treatments {
      grid-template-columns: repeat(2, 1fr);
    }
    .treatment-grid {
      grid-template-columns: 1fr 1fr;
    }
    .mem-grid {
      grid-template-columns: 1fr;
      max-width: 480px;
      margin: 0 auto;
    }
    .perks-card {
      padding: 56px 40px 48px;
    }
    .perks-grid {
      grid-template-columns: 1fr;
    }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 56px;
    }
    .footer-visit-grid {
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 32px;
    }
  }
  @media (max-width: 860px) {
    .nav-container { padding: 14px 24px; }
    .footer-visit-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .footer-map { height: 220px; }
  }
  @media (max-width: 640px) {
    .hero-inner { padding: 60px 24px 80px; }
    .slogan-break, .philosophy, .pillars, .treatments-section,
    .regen-editorial, .ai-section, .memberships, .founding, .final-cta {
      padding-left: 24px;
      padding-right: 24px;
    }
    .pillars-grid, .treatment-grid {
      grid-template-columns: 1fr;
    }
    .pillar {
      border-right: none;
      border-bottom: 1px solid rgba(139, 122, 104, 0.15);
    }
    .pillar:last-child { border-bottom: none; }
    .regen-treatments {
      grid-template-columns: 1fr;
    }
    footer {
      padding: 40px 24px 28px;
    }
    .footer-slogan { font-size: 28px; }
    .hero-scroll { display: none; }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
    /* Keep the bottom bar inside the viewport on small phones: the social row's
       fixed 30px gaps made its minimum width 338px, wider than a 360px screen. */
    .footer-bottom > * { max-width: 100%; }
    .footer-social { gap: 14px 18px; flex-wrap: wrap; }
  }

/* ============================================================
   POLICY-PAGE CONTENT (financial + cancellation pages)
   ============================================================ */

  /* HERO */
  .policy-hero {
    background: var(--espresso-darkest);
    color: var(--ivory);
    padding: 48px 48px 44px;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .policy-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(203, 183, 154, 0.07) 0%, transparent 65%);
    pointer-events: none;
  }
  .policy-hero-inner {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .policy-eyebrow {
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 28px;
    font-weight: 400;
  }
  .policy-eyebrow::before,
  .policy-eyebrow::after {
    content: '';
    display: inline-block;
    width: 26px;
    height: 1px;
    background: var(--champagne);
    vertical-align: middle;
    margin: 0 16px;
    opacity: 0.5;
  }
  .policy-title {
    font-family: var(--display);
    font-size: clamp(38px, 8vw, 96px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.018em;
    margin-bottom: 32px;
    color: var(--ivory);
  }
  .policy-title em {
    font-style: italic;
    color: var(--champagne);
  }
  .policy-hero-sub {
    font-size: 16px;
    color: rgba(250, 248, 244, 0.7);
    line-height: 1.85;
    font-weight: 300;
    max-width: 640px;
    margin: 0 auto 40px;
  }
  .policy-meta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--body);
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(203, 183, 154, 0.7);
    padding-top: 28px;
    border-top: 1px solid rgba(203, 183, 154, 0.18);
  }
  .policy-meta-dot {
    width: 4px;
    height: 4px;
    background: var(--champagne);
    border-radius: 50%;
    opacity: 0.6;
  }

  /* BODY */
  .policy-body {
    background: var(--ivory);
    padding: 48px 48px 56px;
  }
  .policy-container {
    max-width: 820px;
    margin: 0 auto;
  }

  /* INTRO/PURPOSE */
  .policy-intro {
    background: var(--greige-soft);
    padding: 56px 60px;
    margin-bottom: 90px;
    border-left: 2px solid var(--champagne);
    position: relative;
  }
  .policy-intro-label {
    font-family: var(--body);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .policy-intro p {
    font-family: var(--display);
    font-size: 21px;
    line-height: 1.6;
    color: var(--espresso-deep);
    font-weight: 300;
    font-style: italic;
  }
  .policy-intro p strong {
    font-style: normal;
    color: var(--espresso-darkest);
    font-weight: 400;
  }

  /* SECTIONS */
  .policy-section {
    margin-bottom: 44px;
    position: relative;
  }
  .policy-section:last-child {
    margin-bottom: 0;
  }
  .section-number {
    font-family: var(--display);
    font-size: 14px;
    letter-spacing: 0.14em;
    color: var(--champagne);
    font-weight: 400;
    font-style: italic;
    display: block;
    margin-bottom: 12px;
  }
  .policy-section h2 {
    font-family: var(--display);
    font-size: 38px;
    font-weight: 300;
    color: var(--espresso-darkest);
    line-height: 1.15;
    letter-spacing: -0.012em;
    margin-bottom: 16px;
  }
  .section-rule {
    width: 48px;
    height: 1px;
    background: var(--champagne);
    margin-bottom: 28px;
    display: block;
  }
  .policy-section p {
    font-size: 16px;
    color: var(--espresso);
    line-height: 1.85;
    margin-bottom: 18px;
    font-weight: 300;
  }
  .policy-section p:last-child {
    margin-bottom: 0;
  }
  .policy-section strong {
    color: var(--espresso-darkest);
    font-weight: 500;
  }
  .policy-section em.italic-accent {
    font-style: italic;
    color: var(--taupe);
  }

  /* DIAMOND LIST */
  .policy-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 22px;
  }
  .policy-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--espresso);
    line-height: 1.75;
    font-weight: 300;
  }
  .policy-list li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 11px;
    width: 6px;
    height: 6px;
    background: var(--champagne);
    transform: rotate(45deg);
  }

  /* CALLOUT for important notes */
  .policy-callout {
    background: var(--greige-soft);
    border-left: 2px solid var(--champagne);
    padding: 22px 28px;
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--espresso-deep);
    font-style: italic;
    font-family: var(--display);
  }

  /* DIVIDER between sections */
  .section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 122, 104, 0.18) 50%, transparent 100%);
    margin: 0 auto 76px;
  }

  /* ACKNOWLEDGEMENT (final section) */
  .acknowledgement {
    background: var(--espresso-deep);
    color: var(--ivory);
    padding: 64px 60px;
    margin-top: 30px;
    position: relative;
  }
  .acknowledgement .section-number {
    color: var(--champagne);
  }
  .acknowledgement h2 {
    color: var(--ivory);
  }
  .acknowledgement .section-rule {
    background: var(--champagne);
  }
  .acknowledgement p {
    color: rgba(250, 248, 244, 0.75);
  }
  .acknowledgement strong {
    color: var(--ivory);
  }
  .acknowledgement .policy-list li {
    color: rgba(250, 248, 244, 0.75);
  }

  /* QUESTIONS BLOCK */
  .policy-questions {
    text-align: center;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(139, 122, 104, 0.18);
  }
  .policy-questions-eyebrow {
    font-family: var(--body);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .policy-questions h3 {
    font-family: var(--display);
    font-size: 36px;
    font-weight: 300;
    color: var(--espresso-darkest);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
  }
  .policy-questions h3 em {
    font-style: italic;
    color: var(--taupe);
  }
  .policy-questions p {
    font-size: 16px;
    color: var(--espresso);
    margin-bottom: 32px;
    font-weight: 300;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .policy-questions-btn {
    display: inline-block;
    background: var(--espresso-darkest);
    color: var(--ivory);
    padding: 16px 38px;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .policy-questions-btn:hover {
    background: var(--champagne);
    color: var(--espresso-darkest);
  }


  /* ============ POLICY PAGE RESPONSIVE ============ */
  @media (max-width: 980px) {
    .policy-body { padding: 40px 32px 48px; }
    .policy-intro { padding: 44px 36px; }
    .acknowledgement { padding: 50px 36px; }
    .policy-section h2 { font-size: 32px; }
  }
  @media (max-width: 640px) {
    .policy-hero { padding: 40px 24px 36px; }
    .policy-body { padding: 70px 24px 90px; }
    .policy-intro { padding: 36px 28px; }
    .policy-intro p { font-size: 18px; }
    .policy-section h2 { font-size: 28px; }
    .acknowledgement { padding: 44px 28px; }
  }


  /* ============================================================
     MEMBERSHIPS PAGE  (memberships.html)  — prefix .mp-
     ============================================================ */

  /* HERO */
  .mp-hero {
    background: var(--espresso-darkest);
    color: var(--ivory);
    padding: 32px 48px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .mp-hero::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 760px; height: 760px;
    transform: translate(-50%, -50%);
    background-image: url('assets/logo-mark.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.04;
    pointer-events: none;
  }
  .mp-hero-inner { max-width: 840px; margin: 0 auto; position: relative; z-index: 2; }
  .mp-hero .section-eyebrow { color: var(--champagne); justify-content: center; }
  .mp-hero .section-eyebrow::before { background: var(--champagne); }
  .mp-hero h1 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(48px, 7vw, 100px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 28px 0 30px;
  }
  .mp-hero h1 em { font-style: italic; color: var(--champagne); }
  .mp-hero-sub {
    font-size: 18px;
    line-height: 1.85;
    font-weight: 300;
    color: rgba(250, 248, 244, 0.74);
    max-width: 640px;
    margin: 0 auto;
  }

  /* BEAUTY BANK — SLIM STRIP */
  .mp-stripband {
    background: var(--ivory);
    padding: 16px 48px 44px;
    border-bottom: 1px solid rgba(139, 122, 104, 0.16);
  }
  .mp-strip-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mp-strip-item {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 0 30px;
  }
  .mp-strip-step {
    display: block;
    font-family: var(--display);
    font-size: 24px;
    font-weight: 400;
    color: var(--espresso-deep);
    letter-spacing: 0.005em;
    margin-bottom: 9px;
  }
  .mp-strip-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--taupe);
    font-weight: 300;
  }
  .mp-strip-arrow {
    flex-shrink: 0;
    color: var(--champagne);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mp-strip-arrow svg { width: 26px; height: 12px; }
  .mp-welcome-box {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    padding: 16px 26px;
    background: var(--greige-soft);
    border: 1px solid rgba(203, 183, 154, 0.55);
    border-radius: 4px;
    box-shadow: 0 16px 36px rgba(58, 48, 42, 0.07);
  }
  .mp-welcome-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--champagne);
    color: var(--espresso-darkest);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mp-welcome-icon svg { width: 21px; height: 21px; }
  .mp-welcome-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 300;
    color: var(--espresso);
  }
  .mp-welcome-eyebrow {
    display: block;
    font-size: 9.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 4px;
  }
  .mp-welcome-text strong { color: var(--espresso-deep); font-weight: 600; }
  .mp-welcome-text em { font-style: italic; color: var(--taupe); }

  /* TIERS */
  .mp-tiers { background: var(--greige-soft); padding: 20px 48px 28px; }
  .mp-tiers-head { text-align: center; margin-bottom: 68px; }
  .mp-tiers-head .section-eyebrow { justify-content: center; }
  .mp-tiers-head h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(36px, 4.6vw, 64px);
    line-height: 1.1;
    color: var(--espresso-deep);
    letter-spacing: -0.012em;
    margin: 22px auto 0;
    max-width: 720px;
  }
  .mp-tiers-head h2 em { font-style: italic; color: var(--taupe); }
  .mp-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1260px;
    margin: 0 auto;
    align-items: stretch;
  }
  .mp-tier {
    background: var(--espresso-deep);
    color: var(--ivory);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s ease;
  }
  .mp-tier.featured {
    outline: 1px solid var(--champagne);
    outline-offset: -1px;
    box-shadow: 0 30px 70px rgba(28, 24, 21, 0.22);
  }
  .mp-tier-tag {
    position: absolute;
    top: 18px; right: 18px;
    z-index: 3;
    font-size: 9px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--espresso-deep);
    background: var(--champagne);
    font-weight: 600;
    padding: 7px 13px;
  }
  .mp-tier-visual {
    height: 152px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mp-tier-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28,24,21,0) 55%, rgba(28,24,21,0.45) 100%);
  }
  .mp-visual-gold {
    background: linear-gradient(135deg, #8a6843 0%, #c9a57e 26%, #efdcc1 50%, #c9a57e 74%, #856440 100%);
  }
  .mp-visual-onyx {
    background: linear-gradient(135deg, #1c1815 0%, #4a443d 46%, #2b2521 62%, #15120f 100%);
  }
  .mp-visual-diamond {
    background: linear-gradient(135deg, #131318 0%, #51515c 38%, #2a2a30 56%, #0b0b0e 100%);
  }
  /* Real tier texture images (RepeatMD app art) — gradient classes remain as loading fallback */
  .mp-tier-visual.mp-visual-img { background-size: cover; background-position: center; }
  .mp-tier-mark {
    width: 50px;
    height: auto;
    position: relative;
    z-index: 2;
    opacity: 0.92;
  }
  .mp-visual-gold .mp-tier-mark { filter: brightness(0.35) saturate(0.7); opacity: 0.5; }
  .mp-tier-body {
    padding: 40px 34px 36px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .mp-tier-name {
    font-family: var(--display);
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 0.01em;
    color: var(--ivory);
    margin-bottom: 14px;
  }
  .mp-tier-price {
    font-family: var(--display);
    font-size: 46px;
    font-weight: 300;
    color: var(--champagne);
    line-height: 1;
    margin-bottom: 6px;
  }
  /* Optical fix: Cormorant's oldstyle "3" renders full-height while 1/2 are small — size it to match */
  .mp-tier-price .mp-osf { font-family: inherit; font-size: 0.72em; letter-spacing: 0; text-transform: none; color: inherit; margin-left: 0; position: relative; top: -0.07em; }
  .mp-tier-price span {
    font-family: var(--body);
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250, 248, 244, 0.55);
    font-weight: 300;
    margin-left: 4px;
  }
  .mp-tier-credit {
    font-size: 14px;
    color: rgba(250, 248, 244, 0.85);
    font-weight: 300;
    margin-bottom: 26px;
    line-height: 1.5;
  }
  .mp-tier-credit strong { color: var(--champagne); font-weight: 500; }
  .mp-tier-rule {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(203, 183, 154, 0.18);
    margin-bottom: 24px;
  }
  .mp-tier-list {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
  }
  .mp-tier-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 11px 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(250, 248, 244, 0.88);
    font-weight: 300;
  }
  .mp-tier-list .mp-marker {
    flex-shrink: 0;
    margin-top: 7px;
    width: 6px; height: 6px;
    background: var(--champagne);
    transform: rotate(45deg);
  }
  .mp-tier-list li strong { color: var(--ivory); font-weight: 500; }
  .mp-tier-desc {
    font-family: var(--display);
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(250, 248, 244, 0.6);
    font-weight: 300;
    margin-bottom: 26px;
  }
  .mp-tier-free {
    font-size: 11px;
    letter-spacing: 0.04em;
    line-height: 1.5;
    color: #E08879;
    font-weight: 400;
    padding: 12px 16px;
    background: rgba(196, 91, 78, 0.08);
    border: 1px solid rgba(196, 91, 78, 0.32);
    margin-bottom: 24px;
    text-align: center;
  }
  .mp-tier-cta {
    margin-top: auto;
    display: block;
    text-align: center;
    padding: 16px 24px;
    background: var(--champagne);
    border: 1px solid var(--champagne);
    color: var(--espresso-deep);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
  }
  .mp-tier-cta:hover { background: var(--champagne-soft); border-color: var(--champagne-soft); color: var(--espresso-deep); }
  .mp-tier.featured .mp-tier-cta { background: var(--champagne); color: var(--espresso-deep); }
  .mp-tier.featured .mp-tier-cta:hover { background: var(--champagne-soft); border-color: var(--champagne-soft); }

  /* INTERCEPT — FIRST MONTH ON US */
  .mp-intercept {
    background: var(--espresso-darkest);
    padding: 44px 48px 48px;
    text-align: center;
  }
  .mp-intercept-inner {
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid rgba(196, 91, 78, 0.35);
    background: rgba(196, 91, 78, 0.06);
    padding: 72px 56px;
  }
  .mp-intercept-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: #E08879;
    font-weight: 500;
    padding: 8px 20px;
    border: 1px solid rgba(196, 91, 78, 0.6);
    margin-bottom: 28px;
  }
  .mp-intercept h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.08;
    color: var(--ivory);
    letter-spacing: -0.015em;
    margin-bottom: 26px;
  }
  .mp-intercept h2 em { font-style: italic; color: #E08879; }
  .mp-intercept p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(250, 248, 244, 0.85);
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto 18px;
  }
  .mp-intercept p:last-child { margin-bottom: 0; }
  .mp-intercept strong { color: var(--ivory); font-weight: 500; }
  .mp-intercept .mp-credit-hl { color: #E08879; font-weight: 500; }

  /* HOW TO JOIN — APP */
  .mp-join { background: var(--ivory); padding: 40px 48px; }
  .mp-join-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .mp-join-copy .section-eyebrow { color: var(--taupe); }
  .mp-join-copy h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.1;
    color: var(--espresso-deep);
    letter-spacing: -0.012em;
    margin: 20px 0 18px;
  }
  .mp-join-copy h2 em { font-style: italic; color: var(--taupe); }
  .mp-join-lead {
    font-size: 16px;
    line-height: 1.8;
    color: var(--taupe);
    font-weight: 300;
    margin-bottom: 36px;
    max-width: 520px;
  }
  .mp-join-steps { list-style: none; margin: 0 0 40px; padding: 0; counter-reset: jstep; }
  .mp-join-steps li {
    position: relative;
    padding: 16px 0 16px 52px;
    border-top: 1px solid rgba(139, 122, 104, 0.2);
    font-size: 15px;
    line-height: 1.6;
    color: var(--espresso);
    font-weight: 300;
    counter-increment: jstep;
  }
  .mp-join-steps li::before {
    content: counter(jstep, decimal-leading-zero);
    position: absolute;
    left: 0; top: 16px;
    font-family: var(--display);
    font-size: 16px;
    color: var(--champagne);
    font-weight: 500;
  }
  .mp-join-steps li strong { color: var(--espresso-deep); font-weight: 500; }
  .mp-join-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--espresso-deep);
    color: var(--ivory);
    padding: 18px 24px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--espresso-deep);
    transition: all 0.4s ease;
  }
  .mp-join-btn:hover { background: transparent; color: var(--espresso-deep); }
  .mp-qr-card {
    background: var(--greige-soft);
    border: 1px solid rgba(203, 183, 154, 0.4);
    padding: 36px 36px 30px;
    text-align: center;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }
  .mp-join-or {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 400;
  }
  .mp-join-or::before, .mp-join-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(139, 122, 104, 0.3);
  }
  .mp-qr-card img {
    width: 190px; height: 190px;
    display: block;
    margin: 0 auto 18px;
    background: var(--ivory);
    padding: 12px;
    border: 1px solid rgba(203, 183, 154, 0.3);
  }
  .mp-qr-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 400;
    line-height: 1.6;
  }
  .mp-qr-label strong { color: var(--espresso-deep); font-weight: 500; }

  /* EVERY TIER ALSO ENJOYS — SLIM BAND */
  .mp-perks-band {
    background: var(--greige-soft);
    padding: 8px 48px 72px;
    text-align: center;
  }
  .mp-perks-inner { max-width: 1100px; margin: 0 auto; }
  .mp-perks-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: 38px;
    line-height: 1.08;
    color: var(--espresso-deep);
    margin: 14px 0 44px;
  }
  .mp-perks-title em { font-style: italic; color: var(--taupe); }
  .mp-perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
  }
  .mp-perk {
    background: var(--ivory);
    border: 1px solid rgba(203, 183, 154, 0.4);
    padding: 40px 30px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }
  .mp-perk:hover {
    border-color: rgba(203, 183, 154, 0.75);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(28, 24, 21, 0.08);
  }
  .mp-perk-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(203, 183, 154, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--taupe);
    margin-bottom: 22px;
  }
  .mp-perk-icon svg { width: 26px; height: 26px; }
  .mp-perk h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 21px;
    line-height: 1.25;
    color: var(--espresso-deep);
    margin-bottom: 12px;
  }
  .mp-perk p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--taupe);
    font-weight: 300;
    max-width: 280px;
  }

  /* FINE PRINT */
  .mp-fineprint { background: var(--greige-soft); padding: 0 48px 100px; }
  .mp-fineprint-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid rgba(139, 122, 104, 0.25);
    padding-top: 40px;
  }
  .mp-fineprint p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--taupe);
    font-weight: 300;
    max-width: 720px;
    margin: 0 auto;
  }
  .mp-fineprint strong { color: var(--espresso); font-weight: 500; }

  /* MEMBERSHIPS PAGE — RESPONSIVE */
  @media (max-width: 980px) {
    .mp-tier-grid { grid-template-columns: 1fr; max-width: 460px; }
    .mp-tier.featured { box-shadow: none; }
    .mp-strip-inner { flex-direction: column; gap: 26px; }
    .mp-strip-arrow { transform: rotate(90deg); }
    .mp-strip-item { max-width: 100%; padding: 0; }
    .mp-join-inner { grid-template-columns: 1fr; gap: 48px; }
    .mp-qr-card { max-width: 360px; margin: 0 auto; }
  }
  @media (max-width: 640px) {
    .mp-hero { padding: 80px 24px 70px; }
    .mp-stripband, .mp-tiers, .mp-join, .mp-perks-band { padding-left: 24px; padding-right: 24px; }
    .mp-intercept { padding: 72px 24px; }
    .mp-intercept-inner { padding: 52px 28px; }
    .mp-perks-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .mp-perks-title { font-size: 30px; }
  }


  /* ============================================================
     REWARDS / APP PAGE  (rewards.html)  — prefix .rw-
     ============================================================ */

  /* HERO */
  .rw-hero {
    background: var(--espresso-darkest);
    color: var(--ivory);
    padding: 46px 48px 46px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .rw-hero::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 760px; height: 760px;
    transform: translate(-50%, -50%);
    background-image: url('assets/logo-mark.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.04;
    pointer-events: none;
  }
  .rw-hero-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }
  .rw-hero .section-eyebrow { color: var(--champagne); justify-content: center; }
  .rw-hero .section-eyebrow::before { background: var(--champagne); }
  .rw-hero h1 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(42px, 5.6vw, 78px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 18px 0 18px;
  }
  .rw-hero h1 em { font-style: italic; color: var(--champagne); }
  .rw-hero-sub {
    font-size: 18px;
    line-height: 1.85;
    font-weight: 300;
    color: rgba(250, 248, 244, 0.74);
    max-width: 640px;
    margin: 0 auto;
  }
  .rw-hero-cta {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .rw-welcome-box {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 420px;
    padding: 12px 20px;
    background: rgba(203, 183, 154, 0.08);
    border: 1px solid rgba(203, 183, 154, 0.4);
    border-radius: 4px;
  }
  .rw-welcome-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--champagne);
    color: var(--espresso-darkest);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rw-welcome-icon svg { width: 18px; height: 18px; }
  .rw-welcome-text {
    margin: 0;
    text-align: left;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 300;
    color: rgba(250, 248, 244, 0.82);
  }
  .rw-welcome-eyebrow {
    display: block;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 3px;
  }
  .rw-welcome-text strong { color: var(--ivory); font-weight: 600; }

  /* FEATURE GRID */
  .rw-features { background: var(--greige-soft); padding: 26px 48px 50px; }
  .mp-join.rw-download { padding: 56px 48px 54px; }
  .rw-features-head { text-align: center; max-width: 760px; margin: 0 auto 28px; }
  .rw-features-head .section-eyebrow { justify-content: center; }
  .rw-features-head h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(34px, 4.4vw, 60px);
    line-height: 1.1;
    color: var(--espresso-deep);
    letter-spacing: -0.012em;
    margin: 22px 0 0;
  }
  .rw-features-head h2 em { font-style: italic; color: var(--taupe); }
  .rw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .rw-card {
    background: var(--ivory);
    border: 1px solid rgba(203, 183, 154, 0.35);
    padding: 42px 36px 38px;
    display: flex;
    flex-direction: column;
  }
  .rw-card-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(203, 183, 154, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--taupe);
    margin-bottom: 24px;
  }
  .rw-card-icon svg { width: 23px; height: 23px; }
  .rw-card-icon-text { font-family: var(--display); font-size: 23px; font-weight: 500; letter-spacing: 0.01em; line-height: 1; }
  .rw-card-label {
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--champagne);
    font-weight: 500;
    margin-bottom: 10px;
  }
  .rw-card h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 26px;
    line-height: 1.15;
    color: var(--espresso-deep);
    margin-bottom: 14px;
    letter-spacing: -0.005em;
  }
  .rw-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--taupe);
    font-weight: 300;
  }
  .rw-card p strong { color: var(--espresso-deep); font-weight: 500; }
  .rw-card-link {
    margin-top: 20px;
    align-self: flex-start;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--espresso-deep);
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--champagne);
    transition: all 0.3s ease;
  }
  .rw-card-link:hover { color: var(--taupe); border-bottom-color: var(--taupe); }
  .rw-card-fine {
    margin-top: 18px;
    font-size: 11px;
    line-height: 1.55;
    color: var(--taupe);
    font-weight: 300;
    opacity: 0.85;
  }

  /* FEATURED CARD (full-width, e.g. the $10K giveaway) */
  .rw-feature {
    grid-column: 1 / -1;
    background: var(--espresso-deep);
    border-color: var(--espresso-deep);
    color: var(--ivory);
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 50px;
    align-items: center;
    padding: 48px 52px;
  }
  .rw-feature .rw-card-icon { background: rgba(203, 183, 154, 0.16); color: var(--champagne); }
  .rw-feature .rw-card-label { color: var(--champagne); }
  .rw-feature h3 { color: var(--ivory); font-size: 40px; line-height: 1.05; margin-bottom: 0; }
  .rw-feature-body p { color: rgba(250, 248, 244, 0.85); font-size: 15.5px; line-height: 1.75; }
  .rw-feature-body p strong { color: var(--champagne); font-weight: 500; }
  .rw-feature-body .rw-card-fine { margin-top: 16px; color: rgba(250, 248, 244, 0.5); opacity: 1; }

  /* DISCLAIMERS (reuses .mp-fineprint look) */
  .rw-disclaimer { background: var(--ivory); padding: 0 48px 64px; }
  .rw-disclaimer-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid rgba(139, 122, 104, 0.22);
    padding-top: 36px;
  }
  .rw-disclaimer p {
    font-size: 12px;
    line-height: 1.7;
    color: var(--taupe);
    font-weight: 300;
    max-width: 760px;
    margin: 0 auto 12px;
  }
  .rw-disclaimer p:last-child { margin-bottom: 0; }
  .rw-disclaimer a,
  .rw-card-fine a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.3s ease;
  }
  .rw-disclaimer a:hover,
  .rw-card-fine a:hover { opacity: 0.7; }

  /* REWARDS PAGE — RESPONSIVE */
  @media (max-width: 980px) {
    .rw-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 760px) {
    .rw-grid { grid-template-columns: 1fr; max-width: 440px; }
    .rw-feature { grid-template-columns: 1fr; gap: 26px; padding: 40px 32px; }
    .rw-feature h3 { font-size: 34px; }
  }
  @media (max-width: 640px) {
    .rw-hero { padding: 40px 24px 40px; }
    .rw-features { padding: 72px 24px 64px; }
    .rw-disclaimer { padding: 0 24px 72px; }
  }


  /* ============================================================
     PRODUCTS PAGE  (products.html)  — prefix .pp-
     ============================================================ */

  /* HERO */
  .pp-hero {
    background: var(--espresso-darkest);
    color: var(--ivory);
    padding: 28px 48px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .pp-hero::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 680px; height: 680px;
    transform: translate(-50%, -50%);
    background-image: url('assets/logo-mark.png');
    background-size: contain; background-repeat: no-repeat; background-position: center;
    opacity: 0.04; pointer-events: none;
  }
  .pp-hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
  .pp-hero .section-eyebrow { color: var(--champagne); justify-content: center; }
  .pp-hero .section-eyebrow::before { background: var(--champagne); }
  .pp-hero h1 {
    font-family: var(--display); font-weight: 300;
    font-size: clamp(42px, 5.6vw, 80px); line-height: 1.05;
    letter-spacing: -0.018em; margin: 26px 0 26px;
  }
  .pp-hero h1 em { font-style: italic; color: var(--champagne); }
  .pp-hero-sub {
    font-size: 17px; line-height: 1.85; font-weight: 300;
    color: rgba(250, 248, 244, 0.74); max-width: 620px; margin: 0 auto 26px;
  }
  .pp-hero-note {
    display: inline-block;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--champagne); font-weight: 400;
    padding: 11px 22px; border: 1px solid rgba(203, 183, 154, 0.4);
  }

  /* SHOP LAYOUT */
  .pp-shop { background: var(--greige-soft); padding: 64px 48px 96px; }
  .pp-shop-inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 244px 1fr; gap: 56px; align-items: start;
  }

  /* SIDEBAR FILTERS */
  .pp-sidebar {
    position: sticky;
    top: 96px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 122, 104, 0.4) transparent;
  }
  .pp-sidebar::-webkit-scrollbar { width: 6px; }
  .pp-sidebar::-webkit-scrollbar-thumb { background: rgba(139, 122, 104, 0.35); border-radius: 3px; }
  .pp-sidebar::-webkit-scrollbar-track { background: transparent; }
  .pp-filter-group { margin-bottom: 16px; }
  .pp-filter-title {
    font-family: var(--body); font-size: 11px; letter-spacing: 0.26em;
    text-transform: uppercase; color: var(--taupe); font-weight: 500;
    margin-bottom: 11px; padding-bottom: 10px;
    border-bottom: 1px solid rgba(139, 122, 104, 0.25);
  }
  .pp-viewall {
    display: inline-block;
    font-family: var(--display); font-size: 18px; color: var(--espresso-deep);
    font-weight: 400; cursor: pointer; padding-bottom: 4px;
    border-bottom: 1px solid transparent; transition: border-color 0.3s ease;
  }
  .pp-viewall.active { border-bottom-color: var(--champagne); }
  .pp-viewall:hover { border-bottom-color: var(--champagne); }
  .pp-filter {
    display: flex; align-items: center; gap: 11px; cursor: pointer;
    padding: 4px 0; font-size: 13.5px; color: var(--espresso); font-weight: 300;
    transition: color 0.25s ease;
  }
  .pp-filter:hover { color: var(--espresso-deep); }
  .pp-filter input { position: absolute; opacity: 0; width: 0; height: 0; }
  .pp-check {
    width: 16px; height: 16px; flex-shrink: 0;
    border: 1px solid rgba(139, 122, 104, 0.5);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s ease;
  }
  .pp-check::after {
    content: ''; width: 8px; height: 4px;
    border-left: 1.5px solid var(--espresso-deep);
    border-bottom: 1.5px solid var(--espresso-deep);
    transform: rotate(-45deg) translateY(-1px);
    opacity: 0; transition: opacity 0.2s ease;
  }
  .pp-filter input:checked + .pp-check { background: var(--champagne); border-color: var(--champagne); }
  .pp-filter input:checked + .pp-check::after { opacity: 1; }

  /* PRODUCT GRID */
  .pp-count { font-size: 14px; color: var(--taupe); font-weight: 300; margin-bottom: 22px; letter-spacing: 0.02em; }
  .pp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
  .pp-card {
    background: var(--ivory);
    border: 1px solid rgba(203, 183, 154, 0.3);
    display: flex; flex-direction: column;
    cursor: pointer; overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .pp-card:hover { border-color: rgba(203, 183, 154, 0.65); box-shadow: 0 14px 34px rgba(28, 24, 21, 0.07); }
  .pp-card-img {
    aspect-ratio: 1 / 1; background: var(--greige-soft);
    position: relative; flex-shrink: 0;
  }
  .pp-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: url('assets/logo-mark.png') center / 60px no-repeat;
    opacity: 0.12;
  }
  .pp-card-img.pp-has-img { background-size: cover; background-position: center; }
  .pp-card-img.pp-has-img::after { display: none; }
  .pp-card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex-grow: 1; }
  .pp-card-brand {
    display: none;
    font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--champagne); font-weight: 500; margin-bottom: 9px;
  }
  .pp-card-name {
    font-family: var(--display); font-weight: 400; font-size: 21px;
    line-height: 1.18; color: var(--espresso-deep); margin-bottom: 16px;
  }
  .pp-card-price { display: flex; align-items: center; gap: 14px; margin-top: auto; }
  .pp-price { font-size: 15px; color: var(--taupe); font-weight: 300; }
  .pp-sep { width: 1px; height: 30px; background: rgba(139, 122, 104, 0.3); flex-shrink: 0; }
  .pp-price-member { display: flex; flex-direction: column; line-height: 1.05; }
  .pp-price-member b { font-size: 15px; color: var(--espresso-deep); font-weight: 600; }
  .pp-price-member small {
    font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--champagne); font-weight: 500; margin-top: 3px;
  }

  /* EXPANDED DETAILS */
  .pp-details { display: none; }
  .pp-card.pp-expanded {
    grid-column: 1 / -1; flex-direction: row; cursor: default;
  }
  .pp-card.pp-expanded .pp-card-img { width: 300px; aspect-ratio: auto; }
  .pp-card.pp-expanded .pp-card-body { padding: 36px 40px; }
  .pp-card.pp-expanded .pp-card-brand { display: block; }
  .pp-card.pp-expanded .pp-card-name { font-size: 30px; margin-bottom: 18px; }
  .pp-card.pp-expanded .pp-card-price { margin-top: 0; margin-bottom: 4px; }
  .pp-card.pp-expanded .pp-details { display: block; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(203, 183, 154, 0.3); }
  .pp-details h4 {
    font-family: var(--body); font-size: 10px; letter-spacing: 0.26em;
    text-transform: uppercase; color: var(--champagne); font-weight: 500; margin-bottom: 10px;
  }
  .pp-details ul { list-style: none; margin: 0 0 26px; padding: 0; }
  .pp-details li {
    display: flex; align-items: flex-start; gap: 13px; padding: 7px 0;
    font-size: 14px; line-height: 1.5; color: var(--espresso); font-weight: 300;
  }
  .pp-details li::before {
    content: ''; flex-shrink: 0; margin-top: 7px;
    width: 6px; height: 6px; background: var(--champagne); transform: rotate(45deg);
  }
  .pp-details p { font-size: 14.5px; line-height: 1.75; color: var(--taupe); font-weight: 300; margin-bottom: 28px; }
  .pp-order-btn {
    display: inline-block; background: var(--espresso-deep); color: var(--ivory);
    padding: 15px 34px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 500; text-decoration: none; border: 1px solid var(--espresso-deep);
    transition: all 0.4s ease;
  }
  .pp-order-btn:hover { background: transparent; color: var(--espresso-deep); }
  .pp-instore-note { display: block; margin-top: 7px; font-size: 12px; letter-spacing: 0.05em; color: var(--taupe); font-weight: 300; }
  .pp-card-size { display: block; margin-top: 4px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--champagne); font-weight: 500; }

  /* Multi-size pricing (one product, several volumes): rows of size | reg | member */
  .pp-price-rows { flex-direction: column; align-items: stretch; gap: 8px; }
  .pp-price-row { display: flex; align-items: center; gap: 14px; }
  .pp-price-row .pp-sep { height: 24px; }
  .pp-price-row .pp-price { min-width: 46px; flex-shrink: 0; }
  .pp-size-label {
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--champagne); font-weight: 500; min-width: 56px; flex-shrink: 0;
  }

  /* Shade swatches (tinted SPF products) — shown inside the expanded details/modal */
  .pp-shades { display: flex; flex-wrap: wrap; gap: 12px 18px; margin: 2px 0 26px; }
  .pp-shade { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--taupe); font-weight: 300; }
  .pp-shade-dot { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08); }

  /* NOON consultation-gated products (no public price; dispensed by consultation) */
  .pp-consult-price { margin-top: auto; }
  .pp-consult-line { font-size: 14px; letter-spacing: 0.04em; color: var(--champagne); font-weight: 400; font-style: italic; }
  .pp-consult-note {
    margin: 2px 0 24px; padding-left: 16px; border-left: 1px solid var(--champagne-soft);
    font-size: 13.5px; line-height: 1.75; color: var(--taupe); font-weight: 300; font-style: italic;
  }
  /* Allergen notice (e.g. oral supplements) — clear, legible, on-brand. */
  .pp-details .pp-allergy {
    margin: 0 0 28px; font-size: 14px; line-height: 1.6; letter-spacing: 0.02em;
    color: var(--espresso-deep); font-weight: 400;
  }
  .pp-details .pp-allergy strong { font-weight: 600; letter-spacing: 0.05em; }

  /* PRODUCTS — RESPONSIVE */
  @media (max-width: 1080px) {
    .pp-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 900px) {
    .pp-shop-inner { grid-template-columns: 1fr; gap: 36px; }
    .pp-sidebar { position: static; max-height: none; overflow: visible; padding-right: 0; }
    .pp-filter-group { margin-bottom: 24px; }
    .pp-sidebar .pp-filter-list { display: flex; flex-wrap: wrap; gap: 4px 22px; }
    .pp-card.pp-expanded { flex-direction: column; }
    .pp-card.pp-expanded .pp-card-img { width: 100%; aspect-ratio: 1 / 1; }
    .pp-card.pp-expanded .pp-card-body { padding: 24px 22px; }
  }
  @media (max-width: 560px) {
    .pp-hero { padding: 60px 24px 52px; }
    .pp-shop { padding: 48px 24px 72px; }
    .pp-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  }


  /* PRODUCT QUICK-VIEW MODAL */
  body.pp-no-scroll { overflow: hidden; }
  .pp-modal {
    position: fixed; inset: 0; z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    padding: 40px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .pp-modal.open { opacity: 1; visibility: visible; }
  .pp-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(28, 24, 21, 0.62);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    cursor: pointer;
  }
  .pp-modal-card {
    position: relative; z-index: 2;
    background: var(--ivory);
    width: 100%; max-width: 860px;
    max-height: 88vh;
    display: flex; flex-direction: column; overflow: hidden;
    box-shadow: 0 50px 110px rgba(28, 24, 21, 0.45);
    transform: translateY(16px) scale(0.985);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .pp-modal.open .pp-modal-card { transform: translateY(0) scale(1); }
  .pp-scroll-hint { position: absolute; left: 50%; transform: translateX(-50%); width: 34px; height: 34px; border-radius: 50%; background: rgba(250, 248, 244, 0.94); box-shadow: 0 5px 16px rgba(28, 24, 21, 0.16); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; z-index: 4; }
  .pp-modal-card.show-hint .pp-scroll-hint { opacity: 1; }
  .pp-scroll-chev { width: 9px; height: 9px; border-right: 1.5px solid var(--espresso); border-bottom: 1.5px solid var(--espresso); transform: rotate(45deg); margin-top: -3px; animation: ppScrollBounce 1.45s ease-in-out infinite; }
  @keyframes ppScrollBounce { 0%, 100% { transform: rotate(45deg) translate(0, 0); } 50% { transform: rotate(45deg) translate(2px, 2px); } }
  .pp-modal-close {
    position: absolute; top: 15px; right: 15px; z-index: 3;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(250, 248, 244, 0.9);
    border: 1px solid rgba(139, 122, 104, 0.3);
    color: var(--espresso-deep); font-size: 22px; line-height: 1;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
  }
  .pp-modal-close:hover { background: var(--champagne); border-color: var(--champagne); }
  .pp-modal-body { display: flex; align-items: stretch; flex: 1 1 auto; min-height: 0; overflow-y: auto; }
  .cn-modal-cta, .iv-modal-cta { flex-shrink: 0; }
  .pp-modal-body .pp-card-img { width: 380px; height: 440px; aspect-ratio: auto; min-height: 0; flex-shrink: 0; align-self: center; }
  /* Real 1:1 product photos: zoomed in the modal — panel taller than wide, cover-crop
     eats only side background since products are centered verticals. */
  .pp-modal-body .pp-card-img.pp-has-img { height: 460px; }
  /* Exception: the two shade-swatch images keep the full frame (tints sit at the right edge) —
     zoomed via a larger square panel instead of a crop. */
  .pp-modal-body .pp-card-img[style*="cs_face_shield_flex"],
  .pp-modal-body .pp-card-img[style*="cs_brush_on_shield"] { width: 440px; height: 440px; }
  .pp-modal-body .pp-card-body { flex-grow: 1; padding: 44px 46px; }
  .pp-modal-body .pp-card-brand { display: block; }
  .pp-modal-body .pp-card-name { font-size: 32px; line-height: 1.1; margin-bottom: 18px; }
  .pp-modal-body .pp-card-price { margin-top: 0; margin-bottom: 4px; }
  .pp-modal-body .pp-details {
    display: block; margin-top: 26px; padding-top: 26px;
    border-top: 1px solid rgba(203, 183, 154, 0.3);
  }
  @media (max-width: 720px) {
    .pp-modal { padding: 16px; }
    .pp-modal-body { flex-direction: column; align-items: stretch; }
    .pp-modal-body .pp-card-img { width: 100%; min-height: 0; aspect-ratio: 1 / 1; align-self: stretch; }
    .pp-modal-body .pp-card-img.pp-has-img { height: auto; }
    .pp-modal-body .pp-card-body { padding: 28px 26px 40px; }
    .pp-modal-body .pp-card-name { font-size: 27px; }
  }


  /* ============================================================
     CONCERNS PAGE  (concerns.html)  — prefix .cn-
     (reuses the .pp-modal shell from the products page)
     ============================================================ */

  /* HERO */
  .cn-hero {
    background: var(--espresso-darkest);
    color: var(--ivory);
    padding: 60px 48px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cn-hero::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 660px; height: 660px;
    transform: translate(-50%, -50%);
    background-image: url('assets/logo-mark.png');
    background-size: contain; background-repeat: no-repeat; background-position: center;
    opacity: 0.04; pointer-events: none;
  }
  .cn-hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
  .cn-hero .section-eyebrow { color: var(--champagne); justify-content: center; }
  .cn-hero .section-eyebrow::before { background: var(--champagne); }
  .cn-hero h1 {
    font-family: var(--display); font-weight: 300;
    font-size: clamp(44px, 6vw, 88px); line-height: 1.04;
    letter-spacing: -0.02em; margin: 24px 0 24px;
  }
  .cn-hero h1 em { font-style: italic; color: var(--champagne); }
  .cn-hero-sub {
    font-size: 17px; line-height: 1.8; font-weight: 300;
    color: rgba(250, 248, 244, 0.74); max-width: 580px; margin: 0 auto;
  }

  /* SHOP / SEARCH / GRID */
  .cn-shop { background: var(--greige-soft); padding: 56px 48px 96px; }
  .cn-shop-inner { max-width: 1240px; margin: 0 auto; }
  .cn-search { max-width: 560px; margin: 0 auto 18px; position: relative; }
  .cn-search-icon {
    position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
    width: 18px; height: 18px; color: var(--taupe); pointer-events: none;
  }
  .cn-search input {
    width: 100%; padding: 17px 22px 17px 52px;
    border: 1px solid rgba(139, 122, 104, 0.4); background: var(--ivory);
    font-family: var(--body); font-size: 15px; color: var(--espresso-deep);
    font-weight: 300; letter-spacing: 0.01em; transition: border-color 0.3s ease;
  }
  .cn-search input::placeholder { color: var(--taupe); }
  .cn-search input:focus { outline: none; border-color: var(--champagne); }
  .cn-count { text-align: center; font-size: 14px; color: var(--taupe); font-weight: 300; margin-bottom: 40px; letter-spacing: 0.02em; }
  .cn-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  }
  .cn-card {
    background: var(--ivory); border: 1px solid rgba(203, 183, 154, 0.3);
    display: flex; flex-direction: column; cursor: pointer; overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  }
  .cn-card:hover { border-color: rgba(203, 183, 154, 0.7); box-shadow: 0 14px 30px rgba(28, 24, 21, 0.08); transform: translateY(-2px); }
  .cn-card-img {
    aspect-ratio: 4 / 3; background: var(--greige-soft); position: relative;
  }
  .cn-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: url('assets/logo-mark.png') center / 44px no-repeat; opacity: 0.12;
  }
  .cn-card-img.cn-has-img { background-size: cover; background-position: center; }
  .cn-card-img.cn-has-img::after { display: none; }
  .cn-card-name {
    font-family: var(--display); font-weight: 400; font-size: 18px;
    line-height: 1.25; color: var(--espresso-deep);
    text-align: center; padding: 16px 14px 18px;
  }
  .cn-details { display: none; }
  .cn-noresults { display: none; text-align: center; padding: 60px 20px; color: var(--taupe); font-size: 16px; font-weight: 300; }
  .cn-noresults.show { display: block; }

  /* CONCERN MODAL CONTENT (inside reused .pp-modal shell) */
  .pp-modal-body .cn-card-img { width: 320px; aspect-ratio: auto; min-height: 360px; flex-shrink: 0; }
  .cn-modal-content { flex-grow: 1; padding: 42px 46px; }
  .cn-modal-content .cn-card-name {
    font-size: 30px; line-height: 1.1; text-align: left; padding: 0; margin-bottom: 18px;
  }
  .cn-def { font-size: 15px; line-height: 1.75; color: var(--taupe); font-weight: 300; margin-bottom: 30px; }
  .cn-treat-title {
    font-family: var(--body); font-size: 10px; letter-spacing: 0.26em;
    text-transform: uppercase; color: var(--champagne); font-weight: 500; margin-bottom: 10px;
  }
  .cn-treat-list { list-style: none; margin: 0; padding: 0; }
  .cn-treat-list li { border-bottom: 1px solid rgba(203, 183, 154, 0.3); }
  .cn-treat-list li:first-child { border-top: 1px solid rgba(203, 183, 154, 0.3); }
  .cn-treat-list li a {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 13px 2px; text-decoration: none;
    font-size: 15px; color: var(--espresso-deep); font-weight: 300;
    transition: color 0.3s ease, padding 0.3s ease;
  }
  .cn-treat-list li a:hover { color: var(--taupe); padding-left: 8px; }
  .cn-treat-chevron { width: 6px; height: 10px; flex-shrink: 0; color: var(--champagne); }

  .cn-modal-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding: 26px 46px; background: var(--greige-soft);
    border-top: 1px solid rgba(203, 183, 154, 0.4);
  }
  .cn-modal-cta p {
    font-family: var(--display); font-size: 20px; color: var(--espresso-deep);
    font-weight: 400; line-height: 1.25; margin: 0;
  }
  .cn-modal-cta p em { font-style: italic; color: var(--taupe); }
  .cn-cta-btn {
    flex-shrink: 0;
    display: inline-block; background: var(--espresso-deep); color: var(--ivory);
    padding: 15px 30px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 500; text-decoration: none; border: 1px solid var(--espresso-deep);
    transition: all 0.4s ease;
  }
  .cn-cta-btn:hover { background: transparent; color: var(--espresso-deep); }

  /* CONCERNS — RESPONSIVE */
  @media (max-width: 1080px) { .cn-grid { grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 820px)  { .cn-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 720px) {
    .pp-modal-body .cn-card-img { width: 100%; min-height: 0; aspect-ratio: 16 / 10; }
    .cn-modal-content { padding: 28px 26px; }
    .cn-modal-cta { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px 26px; }
  }
  @media (max-width: 540px) {
    .cn-hero { padding: 52px 24px 48px; }
    .cn-shop { padding: 44px 24px 72px; }
    .cn-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  }


  /* ============================================================
     IV INFUSIONS PAGE  (iv-infusions.html)  — prefix .iv-
     (reuses .pp-modal shell + .pp-price pricing component)
     ============================================================ */

  .iv-waves { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0.16; mix-blend-mode: screen; }

  /* HERO */
  .iv-hero {
    background:
      radial-gradient(ellipse 130% 90% at 50% -20%, rgba(203,183,154,0.12), transparent 60%),
      radial-gradient(ellipse 100% 60% at 12% 118%, rgba(203,183,154,0.07), transparent 55%),
      var(--espresso-darkest);
    color: var(--ivory); padding: 76px 48px 70px; text-align: center;
    position: relative; overflow: hidden;
  }
  .iv-hero::after {
    content: ''; position: absolute; top: 50%; left: 50%; width: 700px; height: 700px;
    transform: translate(-50%, -50%); background: url('assets/logo-mark.png') center / contain no-repeat;
    opacity: 0.035; pointer-events: none;
  }
  .iv-hero-inner { position: relative; z-index: 2; max-width: 840px; margin: 0 auto; }
  .iv-hero .section-eyebrow { color: var(--champagne); justify-content: center; }
  .iv-hero .section-eyebrow::before { background: var(--champagne); }
  .iv-hero h1 { font-family: var(--display); font-weight: 300; font-size: clamp(38px, 6.4vw, 92px); line-height: 1.04; letter-spacing: -0.02em; margin: 26px 0 26px; }
  .iv-hero h1 em { font-style: italic; color: var(--champagne); }
  .iv-hero-sub { font-size: 18px; line-height: 1.85; font-weight: 300; color: rgba(250, 248, 244, 0.78); max-width: 600px; margin: 0 auto; }

  /* INTRO */
  .iv-intro { background: var(--greige-soft); padding: 24px 48px 18px; text-align: center; }
  .iv-intro-inner { max-width: 800px; margin: 0 auto; }
  .iv-intro .section-eyebrow { justify-content: center; }
  .iv-intro h2 { font-family: var(--display); font-weight: 300; font-size: clamp(30px, 3.8vw, 50px); color: var(--espresso-deep); letter-spacing: -0.01em; margin: 20px 0 22px; }
  .iv-intro h2 em { font-style: italic; color: var(--taupe); }
  .iv-intro p { font-size: 16.5px; line-height: 1.85; color: var(--taupe); font-weight: 300; }
  .iv-intro p + p { margin-top: 16px; }

  /* MENU GRID */
  .iv-menu { background: var(--greige-soft); padding: 36px 48px 34px; }
  .iv-grid { max-width: 1240px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }
  .iv-grid > .iv-card { flex: 0 1 calc((100% - 52px) / 3); }
  .iv-card { position: relative; background: var(--ivory); border: 1px solid rgba(203, 183, 154, 0.32); display: flex; flex-direction: column; cursor: pointer; overflow: hidden; transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; }
  .iv-addon-badge { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--espresso-deep); background: var(--champagne); font-weight: 600; padding: 6px 12px; }
  .iv-addons-head { text-align: center; max-width: 700px; margin: 70px auto 38px; }
  .iv-addons-head .section-eyebrow { justify-content: center; }
  .iv-addons-head h2 { font-family: var(--display); font-weight: 300; font-size: clamp(28px, 3.4vw, 46px); color: var(--espresso-deep); letter-spacing: -0.01em; margin: 18px 0 16px; }
  .iv-addons-head h2 em { font-style: italic; color: var(--taupe); }
  .iv-addons-head p { font-size: 15px; line-height: 1.75; color: var(--taupe); font-weight: 300; }
  .iv-addons-grid { max-width: 760px; margin: 0 auto; }
  .iv-addons-grid > .iv-card { flex: 0 1 calc((100% - 26px) / 2); }
  .iv-card:hover { border-color: rgba(203, 183, 154, 0.7); box-shadow: 0 18px 40px rgba(28, 24, 21, 0.09); transform: translateY(-3px); }
  .iv-card-img { aspect-ratio: 4 / 3; background: var(--greige-soft); position: relative; flex-shrink: 0; }
  .iv-card-img::after { content: ''; position: absolute; inset: 0; background: url('assets/logo-mark.png') center / 54px no-repeat; opacity: 0.12; }
  .iv-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex-grow: 1; }
  .iv-card-name { font-family: var(--display); font-weight: 400; font-size: 25px; line-height: 1.1; color: var(--espresso-deep); margin-bottom: 9px; }
  .iv-card-tag { font-size: 13.5px; line-height: 1.6; color: var(--taupe); font-weight: 300; margin-bottom: 22px; }
  .iv-card-price { display: flex; align-items: center; gap: 14px; margin-top: auto; }
  .iv-details { display: none; }

  /* LOUNGE FEATURE */
  .iv-lounge {
    background:
      radial-gradient(ellipse 90% 80% at 85% 10%, rgba(203,183,154,0.10), transparent 55%),
      var(--espresso-darkest);
    color: var(--ivory); position: relative; overflow: hidden;
  }
  .iv-lounge-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch; position: relative; z-index: 2; }
  .iv-lounge-img { position: relative; min-height: 480px; background: var(--espresso); }
  .iv-lounge-img::after { content: ''; position: absolute; inset: 0; background: url('assets/logo-mark.png') center / 90px no-repeat; opacity: 0.07; }
  .iv-lounge-copy { padding: 84px 70px; }
  .iv-lounge-copy .section-eyebrow { color: var(--champagne); }
  .iv-lounge-copy .section-eyebrow::before { background: var(--champagne); }
  .iv-lounge h2 { font-family: var(--display); font-weight: 300; font-size: clamp(32px, 3.8vw, 52px); line-height: 1.08; letter-spacing: -0.012em; margin: 20px 0 22px; }
  .iv-lounge h2 em { font-style: italic; color: var(--champagne); }
  .iv-lounge p { font-size: 16px; line-height: 1.8; color: rgba(250, 248, 244, 0.8); font-weight: 300; margin-bottom: 18px; }
  .iv-lounge p strong { color: var(--ivory); font-weight: 500; }
  .iv-group {
    margin-top: 28px; padding: 22px 26px;
    background: rgba(203, 183, 154, 0.08); border: 1px solid rgba(203, 183, 154, 0.3);
  }
  .iv-group-title { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--champagne); font-weight: 500; margin-bottom: 10px; }
  .iv-group p { font-size: 14.5px; line-height: 1.7; color: rgba(250, 248, 244, 0.82); margin: 0; }

  /* MODAL CONTENT (inside reused .pp-modal shell) */
  .pp-modal-body .iv-card-img { width: 320px; aspect-ratio: auto; min-height: 400px; flex-shrink: 0; }
  .iv-modal-content { flex-grow: 1; padding: 42px 46px; }
  .iv-modal-content .iv-card-name { font-size: 31px; line-height: 1.08; margin-bottom: 4px; }
  .iv-modal-content .iv-card-tag { font-size: 14px; margin-bottom: 0; }
  .iv-modal-content .iv-card-price { margin: 18px 0 26px; }
  .iv-desc { font-size: 15.5px; line-height: 1.75; color: var(--espresso-deep); font-weight: 400; margin-bottom: 28px; }
  .iv-bestfor { font-size: 14px; line-height: 1.55; color: var(--espresso-deep); background: rgba(203,183,154,0.12); border-left: 2px solid var(--champagne); padding: 10px 14px; border-radius: 0 3px 3px 0; margin: -10px 0 28px; }
  .iv-bestfor strong { color: var(--taupe); font-weight: 600; letter-spacing: 0.04em; }
  /* Section labels: generous space above, tight below (see .nm-sec note) */
  .iv-sec { margin-top: 30px; margin-bottom: 24px; }
  .iv-sec h4 { font-family: var(--body); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--champagne); font-weight: 500; margin-bottom: 10px; }
  .iv-sec p { font-size: 14.5px; line-height: 1.7; color: var(--taupe); font-weight: 300; }
  .iv-why { font-size: 14px; line-height: 1.6; color: var(--taupe); font-style: italic; font-weight: 300; margin-top: 11px; padding-left: 18px; }
  .iv-sec .iv-note { font-size: 12px; color: var(--taupe); margin-top: 6px; font-style: italic; }
  .iv-protocol-box { background: rgba(203, 183, 154, 0.12); border-left: 2px solid var(--champagne); padding: 14px 18px; font-size: 14.5px; line-height: 1.6; color: var(--espresso-deep); font-weight: 400; }
  .pp-per { font-size: 14px; color: var(--taupe); font-weight: 300; }
  .iv-dose-ladder { display: flex; flex-direction: column; gap: 6px; margin-top: 6px; }
  .iv-dose-ladder .iv-card-price { margin: 0; padding: 6px 0; }
  .iv-dose-ladder .iv-card-price + .iv-card-price { border-top: 1px solid rgba(58, 48, 42, 0.08); }
  .iv-proto-total { font-size: 15px; font-weight: 500; color: var(--espresso-deep); margin-bottom: 7px; }
  .iv-proto-phase { font-size: 13.5px; line-height: 1.55; color: var(--taupe); font-weight: 300; margin-top: 3px; }
  .iv-proto-phase strong { color: var(--espresso-deep); font-weight: 500; }
  .iv-proto-divider { height: 1px; background: rgba(58, 48, 42, 0.12); border: 0; margin: 11px 0; }
  .iv-proto-maint { font-size: 13.5px; line-height: 1.55; color: var(--taupe); font-weight: 300; }
  .iv-proto-maint strong { color: var(--espresso-deep); font-weight: 500; }
  .iv-why-title { font-family: var(--body); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--taupe); font-weight: 500; margin: 20px 0 9px; }
  .iv-why-block { padding-left: 0; margin-top: 0; }
  .iv-bundle { display: inline-block; margin-top: 11px; line-height: 1.55; font-family: var(--body); font-size: 12.5px; letter-spacing: 0.02em; color: var(--taupe); font-weight: 300; text-decoration: none; transition: color 0.25s ease; }
  .iv-bundle strong { font-weight: 500; color: var(--espresso-deep); }
  .iv-bundle .iv-bundle-arrow { display: inline-block; margin-left: 6px; color: var(--champagne); transition: transform 0.25s ease; }
  .iv-bundle:hover { color: var(--espresso-deep); }
  .iv-bundle:hover .iv-bundle-arrow { transform: translateX(3px); }
  .iv-addons { display: flex; flex-direction: column; gap: 12px; }
  .iv-addon { border: 1px solid rgba(203, 183, 154, 0.4); padding: 14px 16px; }
  .iv-addon-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 5px; }
  .iv-addon-name { font-family: var(--display); font-size: 18px; color: var(--espresso-deep); }
  .iv-addon-price { font-size: 12.5px; color: var(--taupe); font-weight: 400; white-space: nowrap; }
  .iv-addon-desc { font-size: 12.5px; line-height: 1.55; color: var(--taupe); font-weight: 300; }
  .iv-modal-cta { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 24px 46px; background: var(--greige-soft); border-top: 1px solid rgba(203, 183, 154, 0.4); }
  .iv-modal-cta p { font-family: var(--display); font-size: 19px; color: var(--espresso-deep); font-weight: 400; margin: 0; }
  .iv-modal-cta p em { font-style: italic; color: var(--taupe); }
  .iv-cta-btn { flex-shrink: 0; display: inline-block; background: var(--espresso-deep); color: var(--ivory); padding: 15px 30px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; text-decoration: none; border: 1px solid var(--espresso-deep); transition: all 0.4s ease; }
  .iv-cta-btn:hover { background: transparent; color: var(--espresso-deep); }

  /* IV — RESPONSIVE */
  @media (max-width: 1024px) {
    .iv-grid > .iv-card { flex-basis: calc((100% - 26px) / 2); }
    .iv-lounge-inner { grid-template-columns: 1fr; }
    .iv-lounge-img { min-height: 320px; }
    .iv-lounge-copy { padding: 64px 40px; }
  }
  @media (max-width: 720px) {
    .pp-modal-body .iv-card-img { width: 100%; min-height: 0; aspect-ratio: 16 / 10; }
    .iv-modal-content { padding: 30px 26px; }
    .iv-modal-cta { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px 26px; }
  }
  @media (max-width: 560px) {
    .iv-hero { padding: 60px 24px 56px; }
    .iv-intro { padding: 20px 24px 16px; }
    .iv-menu { padding: 30px 24px 28px; }
    .iv-grid { max-width: 380px; margin: 0 auto; }
    .iv-grid > .iv-card { flex-basis: 100%; }
    .iv-lounge-copy { padding: 52px 26px; }
  }


  /* IV — real images (fill placeholder, hide watermark) */
  .iv-card-img.iv-has-img, .iv-lounge-img.iv-has-img { background-size: cover; background-position: center; }
  .iv-card-img.iv-has-img::after, .iv-lounge-img.iv-has-img::after { display: none; }


  /* ============================================================
     NEUROMODULATORS PAGE  (neuromodulators.html)  — prefix .nm-
     (reuses .pp-modal shell + .pp-price pricing component)
     ============================================================ */

  /* HERO */
  .nm-hero {
    background: var(--espresso-darkest); color: var(--ivory);
    padding: 54px 48px 50px; text-align: center; position: relative; overflow: hidden;
  }
  .nm-hero::after {
    content: ''; position: absolute; top: 50%; left: 50%; width: 700px; height: 700px;
    transform: translate(-50%, -50%); background: url('assets/logo-mark.png') center / contain no-repeat;
    opacity: 0.035; pointer-events: none;
  }
  .nm-hero-inner { position: relative; z-index: 2; max-width: 840px; margin: 0 auto; }
  .nm-hero .section-eyebrow { color: var(--champagne); justify-content: center; }
  .nm-hero .section-eyebrow::before { background: var(--champagne); }
  .nm-hero h1 { font-family: var(--display); font-weight: 300; font-size: clamp(38px, 6.4vw, 92px); line-height: 1.04; letter-spacing: -0.02em; margin: 22px 0 0; }
  .nm-hero h1 em { font-style: italic; color: var(--champagne); }
  .nm-hero-sub { font-size: 18px; line-height: 1.85; font-weight: 300; color: rgba(250, 248, 244, 0.78); max-width: 620px; margin: 0 auto; }

  /* SECTION (Facial / Body) */
  .nm-section { background: var(--greige-soft); padding: 40px 48px 48px; }
  .nm-section + .nm-section { border-top: 1px solid rgba(139, 122, 104, 0.18); }
  .nm-section-head { text-align: center; max-width: 760px; margin: 0 auto 38px; }
  .nm-section-head .section-eyebrow { justify-content: center; }
  .nm-section-head h2 { font-family: var(--display); font-weight: 300; font-size: clamp(34px, 4.6vw, 64px); color: var(--espresso-deep); letter-spacing: -0.012em; margin: 14px 0 18px; }
  .nm-section-head h2 em { font-style: italic; color: var(--taupe); }
  .nm-section-desc { font-size: 16px; line-height: 1.9; color: var(--taupe); font-weight: 300; }
  .nm-pullquote { max-width: 700px; margin: 30px auto 0; text-align: center; }
  .nm-pullquote::before { content: ""; display: block; width: 40px; height: 1px; background: var(--champagne); margin: 0 auto 26px; }
  .nm-pullquote p { font-family: var(--display); font-weight: 300; font-style: italic; font-size: clamp(22px, 2.9vw, 32px); line-height: 1.5; letter-spacing: -0.01em; color: var(--espresso-deep); margin: 0; }
  .nm-pullquote .nm-pq-accent { color: var(--taupe); }
  /* FAQ accordion (reusable across treatment pages) */
  .nm-faq { max-width: 800px; margin: 0 auto; }
  .nm-faq-item { border-top: 1px solid rgba(139, 122, 104, 0.22); }
  .nm-faq-item:last-child { border-bottom: 1px solid rgba(139, 122, 104, 0.22); }
  .nm-faq-q { width: 100%; background: none; border: 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 24px; text-align: left; padding: 26px 4px; font-family: var(--body); font-weight: 400; font-size: 17px; color: var(--espresso-deep); letter-spacing: 0.005em; transition: color 0.25s ease; }
  .nm-faq-q:hover { color: var(--taupe); }
  .nm-faq-icon { flex: 0 0 auto; width: 14px; height: 14px; position: relative; transition: transform 0.3s ease; }
  .nm-faq-icon::before, .nm-faq-icon::after { content: ""; position: absolute; background: var(--champagne); transition: opacity 0.3s ease; }
  .nm-faq-icon::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
  .nm-faq-icon::after { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
  .nm-faq-item.open .nm-faq-icon::after { opacity: 0; }
  .nm-faq-item.open .nm-faq-icon { transform: rotate(180deg); }
  .nm-faq-a { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
  /* Generous cap: long answers reflow much taller on phones, and a tight cap
     silently clips the end of the text. */
  .nm-faq-item.open .nm-faq-a { max-height: 1500px; }
  .nm-faq-a p { font-size: 15px; line-height: 1.85; color: var(--taupe); font-weight: 300; margin: 0; padding: 0 40px 28px 4px; }
  .nm-results-note {
    display: inline-block; margin-top: 18px;
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe);
    font-weight: 400; padding: 9px 20px; border: 1px solid rgba(203, 183, 154, 0.5);
  }
  .nm-results-note strong { color: var(--espresso-deep); font-weight: 500; }

  /* BUNDLE FLAG — slim strip under the hero on every treatment page:
     single-session prices on-site, bundle pricing lives in the app */
  .bundle-flag { background: var(--espresso-darkest); text-align: center; padding: 14px 24px; border-top: 1px solid rgba(203, 183, 154, 0.22); }
  .bundle-flag p { margin: 0; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250, 248, 244, 0.62); font-weight: 400; }
  .bundle-flag .flag-sep { color: rgba(203, 183, 154, 0.55); padding: 0 10px; }
  .bundle-flag a { color: var(--champagne); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: opacity 0.3s ease; }
  .bundle-flag a:hover { opacity: 0.75; }
  @media (max-width: 600px) {
    .bundle-flag { padding: 12px 18px; }
    .bundle-flag p { font-size: 9.5px; letter-spacing: 0.13em; line-height: 1.8; }
    .bundle-flag .flag-sep { display: block; height: 0; overflow: hidden; padding: 0; }
  }

  /* CARDS */
  .nm-grid { max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }
  .nm-grid > .nm-card { flex: 0 1 calc((100% - 52px) / 3); }
  .nm-grid-2 { max-width: 780px; }
  .nm-grid-2 > .nm-card { flex: 0 1 calc((100% - 26px) / 2); }
  /* Square card images — for pages whose photography is shot 1:1 (e.g. chemical peels),
     so the full frame shows instead of being cropped to 4/3. */
  .nm-grid-square .nm-card-img { aspect-ratio: 1 / 1; }
  .nm-card { background: var(--ivory); border: 1px solid rgba(203, 183, 154, 0.32); display: flex; flex-direction: column; cursor: pointer; overflow: hidden; transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; }
  .nm-card:hover { border-color: rgba(203, 183, 154, 0.7); box-shadow: 0 18px 40px rgba(28, 24, 21, 0.09); transform: translateY(-3px); }
  .nm-card-img { aspect-ratio: 4 / 3; background: var(--greige-soft); position: relative; flex-shrink: 0; }
  .nm-card-img::after { content: ''; position: absolute; inset: 0; background: url('assets/logo-mark.png') center / 54px no-repeat; opacity: 0.12; }
  .nm-card-img.nm-has-img { background-size: cover; background-position: center; }
  .nm-card-img.nm-has-img::after { display: none; }
  .nm-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex-grow: 1; }
  .nm-card-name { font-family: var(--display); font-weight: 400; font-size: 23px; line-height: 1.15; color: var(--espresso-deep); margin-bottom: 9px; }
  .nm-card-tag { font-size: 13.5px; line-height: 1.6; color: var(--taupe); font-weight: 300; margin-bottom: 22px; }
  .nm-card-price { display: flex; align-items: center; gap: 14px; margin-top: auto; }
  .nm-details { display: none; }

  /* MODAL CONTENT (inside reused .pp-modal shell) */
  .pp-modal-body .nm-card-img { width: 320px; aspect-ratio: auto; min-height: 380px; flex-shrink: 0; }
  /* RF Skin Tightening: pan the portrait modal crop right so face + device + headband show (card stays centered) */
  .pp-modal-body .nm-card-img.rf-pan { background-position: 82% center; }
  .nm-modal-content { flex-grow: 1; padding: 42px 46px; }
  .nm-modal-content .nm-card-name { font-size: 30px; line-height: 1.1; margin-bottom: 4px; }
  .nm-modal-content .nm-card-tag { font-size: 14px; margin-bottom: 0; }
  /* Teaser tag shown only on the card; hidden in the modal where full zones are listed */
  .nm-modal-content .nm-tag-modal-hide { display: none; }
  /* Inline "Boxxed app" link (e.g. bundle-pricing copy → Rewards page download) */
  .app-link { color: var(--taupe); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; transition: color 0.3s ease; }
  .app-link:hover { color: var(--espresso-deep); }
  .nm-results-note .app-link, .sig-note .app-link { color: inherit; }
  .nm-modal-content .nm-card-price { margin: 18px 0 26px; }
  /* "Bloodless alternative" flag inside PRP hair modals → deep-links to the matching Exosome card */
  .nm-altflag { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 24px; padding: 14px 18px; background: rgba(203, 183, 154, 0.13); border: 1px solid rgba(203, 183, 154, 0.45); font-size: 13.5px; line-height: 1.5; color: var(--taupe); font-weight: 300; text-decoration: none; transition: background 0.3s ease, border-color 0.3s ease; }
  .nm-altflag strong { color: var(--espresso-deep); font-weight: 500; }
  .nm-altflag .altflag-arrow { color: var(--champagne); font-size: 16px; flex-shrink: 0; transition: transform 0.3s ease; }
  .nm-altflag:hover { background: rgba(203, 183, 154, 0.22); border-color: rgba(203, 183, 154, 0.75); }
  .nm-altflag:hover .altflag-arrow { transform: translateX(4px); }
  .nm-desc { font-size: 15.5px; line-height: 1.75; color: var(--espresso-deep); font-weight: 400; margin-bottom: 26px; }
  /* Generous space ABOVE each section label, tight space BELOW it, so the label
     clearly belongs to the content it introduces rather than the text above it. */
  .nm-sec { margin-top: 30px; }
  .nm-sec h4 { font-family: var(--body); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--champagne); font-weight: 500; margin-bottom: 10px; }
  .nm-sec p { font-size: 14.5px; line-height: 1.7; color: var(--taupe); font-weight: 300; }
  .nm-modal-cta { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 24px 46px; background: var(--greige-soft); border-top: 1px solid rgba(203, 183, 154, 0.4); flex-shrink: 0; }
  .nm-modal-cta p { font-family: var(--display); font-size: 19px; color: var(--espresso-deep); font-weight: 400; margin: 0; }
  .nm-modal-cta p em { font-style: italic; color: var(--taupe); }
  .nm-cta-btn { flex-shrink: 0; display: inline-block; background: var(--espresso-deep); color: var(--ivory); padding: 15px 30px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; text-decoration: none; border: 1px solid var(--espresso-deep); transition: all 0.4s ease; }
  .nm-cta-btn:hover { background: transparent; color: var(--espresso-deep); }

  /* FAT DISSOLVING — TREATMENT ZONE CHIPS (shown in modal via .nm-details) */
  .fd-zones { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
  .fd-zone { display: inline-block; background: var(--ivory); border: 1px solid rgba(203, 183, 154, 0.5); color: var(--espresso-deep); font-size: 12.5px; font-weight: 300; line-height: 1.3; padding: 7px 13px; border-radius: 100px; }

  /* SIGNATURE COLLECTIONS — single-card layout, included-items list & protocol note (shown in modal via .nm-details) */
  .sig-solo { display: grid; grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .sig-value { margin: 5px 0 0; font-size: 12px; line-height: 1.5; letter-spacing: 0.02em; color: var(--taupe); font-weight: 300; }
  .sig-value .sig-value-save { color: var(--espresso-deep); font-weight: 500; }
  .nm-card-price-value { align-items: stretch; }
  .nm-card-price-value .pp-left { display: flex; flex-direction: column; }
  .nm-card-price-value .pp-sep { height: auto; }
  .nm-card-price-value .pp-price-member { justify-content: flex-start; }
  .sig-incl { display: flex; flex-direction: column; margin-top: 4px; }
  .sig-incl-item { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid rgba(203, 183, 154, 0.28); }
  .sig-incl-item:last-child { border-bottom: none; padding-bottom: 0; }
  .sig-incl-name { font-size: 14px; font-weight: 300; line-height: 1.5; color: var(--espresso-deep); }
  .sig-incl-name small { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); margin-top: 4px; }
  .sig-qty { flex-shrink: 0; font-family: var(--body); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; color: var(--taupe); white-space: nowrap; }
  .sig-qty b { color: var(--taupe); font-weight: 600; }
  .sig-note { background: var(--greige-soft); border: 1px solid rgba(203, 183, 154, 0.4); border-radius: 4px; padding: 16px 18px; font-size: 13.5px; line-height: 1.7; font-weight: 300; color: var(--espresso); }
  .sig-note strong { color: var(--espresso-deep); font-weight: 500; }

  /* NEUROMODULATORS — RESPONSIVE */
  @media (max-width: 1024px) { .nm-grid > .nm-card { flex-basis: calc((100% - 26px) / 2); } }
  @media (max-width: 720px) {
    .pp-modal-body .nm-card-img { width: 100%; min-height: 0; aspect-ratio: 16 / 10; }
    .nm-modal-content { padding: 30px 26px; }
    .nm-modal-cta { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px 26px; }
  }
  @media (max-width: 560px) {
    .nm-hero { padding: 60px 24px 56px; }
    .nm-section { padding: 40px 24px 48px; }
    .nm-grid, .nm-grid-2 { max-width: 380px; margin: 0 auto; }
    .nm-grid > .nm-card, .nm-grid-2 > .nm-card { flex-basis: 100%; }
  }

  /* ============================================================
     PARTNERS / AFFILIATE PAGE (.pt-)
     ============================================================ */
  .pt-section { background: var(--greige-soft); padding: 64px 48px 88px; }
  .pt-inner { max-width: 980px; margin: 0 auto; }
  .pt-intro { max-width: 720px; margin: 0 auto 8px; text-align: center; }
  .pt-intro p { font-size: 16px; line-height: 1.85; color: var(--espresso-deep); font-weight: 300; }
  .pt-intro p + p { margin-top: 18px; }

  /* How it works — 3 general steps (no specifics) */
  .pt-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 900px; margin: 52px auto 0; }
  .pt-step { background: var(--ivory); border: 1px solid rgba(203, 183, 154, 0.32); padding: 32px 26px; text-align: center; }
  .pt-step-num { font-family: var(--display); font-style: italic; font-size: 30px; color: var(--champagne); line-height: 1; margin-bottom: 14px; }
  .pt-step h3 { font-family: var(--display); font-weight: 400; font-size: 21px; color: var(--espresso-deep); margin-bottom: 8px; }
  .pt-step p { font-size: 13.5px; line-height: 1.7; color: var(--taupe); font-weight: 300; }

  /* Application form */
  .pt-form-wrap { max-width: 760px; margin: 60px auto 0; background: var(--ivory); border: 1px solid rgba(203, 183, 154, 0.4); padding: 48px 52px 52px; }
  .pt-form-head { text-align: center; margin-bottom: 34px; }
  .pt-form-head h2 { font-family: var(--display); font-weight: 400; font-size: 30px; color: var(--espresso-deep); margin-bottom: 8px; }
  .pt-form-head h2 em { font-style: italic; color: var(--taupe); }
  .pt-form-head p { font-size: 14px; color: var(--taupe); font-weight: 300; }
  .pt-fieldset { border: none; padding: 0; margin: 0 0 26px; }
  .pt-legend { font-family: var(--body); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--champagne); font-weight: 600; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(203, 183, 154, 0.35); width: 100%; }
  .pt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .pt-field { display: flex; flex-direction: column; }
  .pt-field-full { grid-column: 1 / -1; }
  .pt-field label { font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--taupe); font-weight: 500; margin-bottom: 7px; }
  .pt-field label .pt-opt { text-transform: none; letter-spacing: 0; font-weight: 300; color: rgba(139, 122, 104, 0.7); }
  .pt-field input, .pt-field select, .pt-field textarea {
    font-family: var(--body); font-size: 14.5px; font-weight: 300; color: var(--espresso-deep);
    background: var(--greige-soft); border: 1px solid rgba(203, 183, 154, 0.45);
    padding: 13px 15px; border-radius: 0; width: 100%; transition: border-color 0.3s ease;
  }
  .pt-field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
  .pt-field input:focus, .pt-field select:focus, .pt-field textarea:focus { outline: none; border-color: var(--champagne); }
  .pt-field input::placeholder, .pt-field textarea::placeholder { color: rgba(139, 122, 104, 0.6); }
  .pt-form-actions { text-align: center; margin-top: 32px; }
  .pt-note { font-size: 12px; color: var(--taupe); font-weight: 300; margin-top: 18px; line-height: 1.6; }
  .pt-confirm { text-align: center; padding: 30px 20px; }
  .pt-confirm h3 { font-family: var(--display); font-weight: 400; font-size: 28px; color: var(--espresso-deep); margin-bottom: 10px; }
  .pt-confirm h3 em { font-style: italic; color: var(--taupe); }
  .pt-confirm p { font-size: 15px; color: var(--taupe); font-weight: 300; line-height: 1.7; }

  /* Eligibility / legal disclaimer */
  .pt-disclaimer { max-width: 760px; margin: 46px auto 0; padding-top: 34px; border-top: 1px solid rgba(203, 183, 154, 0.4); }
  .pt-disclaimer h3 { font-family: var(--display); font-weight: 400; font-size: 22px; color: var(--espresso-deep); margin-bottom: 14px; text-align: center; }
  .pt-disclaimer h3 em { font-style: italic; color: var(--taupe); }
  .pt-disclaimer p { font-size: 12.5px; line-height: 1.8; color: var(--taupe); font-weight: 300; }
  .pt-disclaimer p + p { margin-top: 13px; }
  .pt-disclaimer a { color: var(--espresso-deep); text-decoration: none; border-bottom: 1px solid rgba(203, 183, 154, 0.7); }
  .pt-disclaimer a:hover { border-bottom-color: var(--espresso-deep); }
  .pt-disclaimer .pt-fine { font-size: 11px; font-style: italic; color: rgba(139, 122, 104, 0.8); margin-top: 16px; }

  @media (max-width: 720px) {
    .pt-section { padding: 48px 24px 64px; }
    .pt-steps { grid-template-columns: 1fr; max-width: 420px; }
    .pt-form-wrap { padding: 36px 26px 40px; }
    .pt-grid { grid-template-columns: 1fr; }
  }

  /* ============================================================
     MEMBERSHIP FLAG
     .member-comp — "complimentary for members" badge, overlaid
     top-right on a treatment/product card image
     ============================================================ */
  .member-comp {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--espresso-deep);
    color: var(--champagne);
    font-family: var(--body);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 6px 11px;
    border-radius: 100px;
    box-shadow: 0 4px 14px rgba(28, 24, 21, 0.28);
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  }
  a.member-comp:hover {
    background: var(--espresso);
    box-shadow: 0 6px 18px rgba(28, 24, 21, 0.34);
    transform: translateY(-1px);
  }
  /* small screens: long badges (e.g. "Onyx & Black Diamond") must wrap clear of the modal's close button */
  @media (max-width: 640px) {
    .pp-modal .member-comp {
      left: 12px;
      right: auto;
      max-width: calc(100% - 104px);
      white-space: normal;
      text-align: left;
      line-height: 1.5;
    }
  }

  /* ============================================================
     SIGNATURE PACKAGE FLAG
     .sig-flag — merchandising badge (champagne fill), overlaid
     top-right on a package card image. Carries into the modal.
     ============================================================ */
  .sig-flag {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--champagne);
    color: var(--espresso-deep);
    font-family: var(--body);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 11px;
    border-radius: 100px;
    box-shadow: 0 4px 14px rgba(28, 24, 21, 0.28);
    white-space: nowrap;
  }

  /* ============================================================
     ABOUT PAGE (.ab-)
     Founder story (portrait + prose), team grid, signature.
     Image placeholders reuse the greige + logo-mark watermark.
     ============================================================ */
  .ab-story { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 58px; align-items: start; }
  .ab-portrait { aspect-ratio: 4 / 5; background: var(--greige-soft); position: relative; position: sticky; top: 110px; }
  .ab-portrait::after { content: ''; position: absolute; inset: 0; background: url('assets/logo-mark.png') center / 84px no-repeat; opacity: 0.12; }
  .ab-portrait.ab-has-img { background-size: cover; background-position: center top; background-repeat: no-repeat; }
  .ab-portrait.ab-has-img::after { display: none; }
  .ab-prose .ab-lead { font-family: var(--display); font-size: 25px; line-height: 1.5; font-weight: 400; color: var(--espresso-deep); margin-bottom: 28px; }
  .ab-prose .ab-lead em { font-style: italic; color: var(--taupe); }
  .ab-prose p { font-size: 16px; line-height: 1.95; font-weight: 300; color: var(--espresso); margin-bottom: 20px; }
  .ab-prose p:last-child { margin-bottom: 0; }
  .ab-prose em { font-style: italic; color: var(--taupe); }
  .ab-signature { margin-top: 36px; }
  .ab-sig-name { font-family: var(--display); font-style: italic; font-size: 28px; color: var(--espresso-deep); line-height: 1; }
  .ab-sig-role { display: block; font-family: var(--body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); margin-top: 10px; font-weight: 500; }

  .ab-team-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
  .ab-member-img { aspect-ratio: 4 / 5; background: var(--greige-soft); position: relative; margin-bottom: 22px; }
  .ab-member-img::after { content: ''; position: absolute; inset: 0; background: url('assets/logo-mark.png') center / 64px no-repeat; opacity: 0.12; }
  .ab-member-img.ab-has-img { background-size: cover; background-position: center top; background-repeat: no-repeat; }
  .ab-member-img.ab-has-img::after { display: none; }
  .ab-member-name { font-family: var(--display); font-size: 25px; font-weight: 400; color: var(--espresso-deep); line-height: 1.15; }
  .ab-member-role { font-family: var(--body); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); font-weight: 600; margin: 9px 0 15px; }
  .ab-member-bio { font-size: 14px; line-height: 1.72; font-weight: 300; color: var(--espresso); margin: 0 0 12px; }
  .ab-member-bio:last-child { margin-bottom: 0; }

  @media (max-width: 1024px) { .ab-team-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
  @media (max-width: 900px) {
    .ab-story { grid-template-columns: 1fr; gap: 30px; }
    .ab-portrait { position: relative; top: 0; width: 100%; max-width: 340px; margin: 0 auto; }
    .ab-team-grid { grid-template-columns: 1fr; max-width: 360px; }
  }

  /* ABOUT — quiet in-memoriam dedication (About page only, above footer) */
  .ab-dedication { max-width: 680px; margin: 0 auto; padding: 26px 24px 70px; text-align: center; }
  .ab-ded-mark { display: block; color: var(--champagne); font-size: 14px; letter-spacing: 0.3em; margin-bottom: 18px; }
  .ab-dedication p { font-family: var(--display); font-style: italic; font-size: 22px; line-height: 1.55; font-weight: 400; color: var(--taupe); margin: 0; }

  /* ============================================================
     IV — NAD+ FLAGSHIP SECTION (.iv-nad / .nad-)
     ============================================================ */
  .iv-nad { background: var(--greige-soft); padding: 40px 40px 92px; scroll-margin-top: 76px; }
  .iv-nad-inner { max-width: 1080px; margin: 0 auto; }
  .nad-head { text-align: center; max-width: 760px; margin: 0 auto; }
  .nad-head h2 { font-family: var(--display); font-weight: 400; font-size: 46px; line-height: 1.08; color: var(--espresso-deep); margin: 12px 0 18px; }
  .nad-head h2 em { font-style: italic; color: var(--taupe); }
  .nad-intro { font-size: 16px; line-height: 1.85; font-weight: 300; color: var(--espresso); }

  .nad-diff { background: var(--ivory); border: 1px solid rgba(203,183,154,0.5); border-left: 3px solid var(--champagne); border-radius: 4px; padding: 34px 38px; margin: 46px auto 0; max-width: 900px; }
  .nad-diff h3 { font-family: var(--display); font-weight: 500; font-size: 27px; line-height: 1.2; color: var(--espresso-deep); margin: 6px 0 16px; }
  .nad-diff p { font-size: 15px; line-height: 1.8; font-weight: 300; color: var(--espresso); margin-bottom: 12px; }
  .nad-diff p:last-child { margin-bottom: 0; }
  .nad-diff strong { color: var(--espresso-deep); font-weight: 500; }
  .nad-payoff { font-family: var(--display) !important; font-style: italic; font-size: 20px !important; color: var(--taupe) !important; margin-top: 18px !important; }

  .nad-hero-card { display: grid; grid-template-columns: 1.5fr 1fr; background: var(--espresso-deep); border-radius: 6px; overflow: hidden; margin: 48px auto 0; max-width: 980px; box-shadow: 0 24px 60px rgba(28,24,21,0.28); }
  .nad-hero-left { padding: 44px 44px 46px; }
  .nad-flag { display: inline-block; background: var(--champagne); color: var(--espresso-deep); font-family: var(--body); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; padding: 6px 12px; border-radius: 100px; margin-bottom: 18px; }
  .nad-hero-left h3 { font-family: var(--display); font-weight: 400; font-size: 34px; line-height: 1.1; color: var(--ivory); margin-bottom: 14px; }
  .nad-hero-left > p { font-size: 14.5px; line-height: 1.75; font-weight: 300; color: var(--greige); margin-bottom: 22px; }
  .nad-proto { list-style: none; padding: 0; margin: 0 0 18px; border-top: 1px solid rgba(203,183,154,0.25); }
  .nad-proto li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(203,183,154,0.25); }
  .nad-proto-phase { font-family: var(--body); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--champagne); font-weight: 600; }
  .nad-proto-detail { font-size: 14px; color: var(--ivory); font-weight: 300; text-align: right; }
  .nad-proto-note { font-size: 12.5px; line-height: 1.6; color: var(--taupe); margin: 0; }
  .nad-hero-right { background: var(--espresso-darkest); padding: 40px 34px; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 16px; }
  .nad-hero-right .nad-hero-price { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
  .nad-hero-card .pp-price, .nad-hero-card .pp-price-member b { color: var(--ivory); }
  .nad-hero-card .pp-price-member small { color: var(--champagne); }
  .nad-cta-btn { text-align: center; background: var(--champagne); color: var(--espresso-deep); padding: 16px 24px; font-family: var(--body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; text-decoration: none; border: 1px solid var(--champagne); transition: all 0.3s ease; }
  .nad-cta-btn:hover { background: transparent; color: var(--champagne); }
  .nad-cta-secondary { text-align: center; color: var(--greige); padding: 13px 24px; font-family: var(--body); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; text-decoration: none; border: 1px solid rgba(203,183,154,0.4); transition: all 0.3s ease; }
  .nad-cta-secondary:hover { border-color: var(--champagne); color: var(--ivory); }

  .nad-rules { margin: 64px auto 0; max-width: 980px; text-align: center; }
  .nad-rules h3 { font-family: var(--display); font-weight: 400; font-size: 30px; color: var(--espresso-deep); margin: 10px 0 30px; }
  .nad-rules h3 em { font-style: italic; color: var(--taupe); }
  .nad-rules-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; text-align: left; }
  .nad-rule { background: var(--ivory); border: 1px solid rgba(203,183,154,0.45); border-radius: 4px; padding: 26px 24px; }
  .nad-rule-num { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--espresso-deep); color: var(--champagne); font-family: var(--display); font-size: 17px; margin-bottom: 14px; }
  .nad-rule p { font-size: 14px; line-height: 1.7; font-weight: 300; color: var(--espresso); margin: 0; }
  .nad-rule strong { color: var(--espresso-deep); font-weight: 500; }

  .nad-ladder { margin: 64px auto 0; max-width: 1080px; text-align: center; }
  .nad-ladder h3 { font-family: var(--display); font-weight: 400; font-size: 30px; color: var(--espresso-deep); margin: 10px 0 26px; }
  .nad-ladder h3 em { font-style: italic; color: var(--taupe); }
  .nad-table { width: 100%; border-collapse: collapse; text-align: left; }
  .nad-table th { font-family: var(--body); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); font-weight: 600; padding: 0 14px 12px; border-bottom: 1px solid var(--champagne); white-space: nowrap; }
  .nad-table td { font-family: var(--body); font-size: 13.5px; font-weight: 300; color: var(--espresso); padding: 13px 14px; border-bottom: 1px solid rgba(203,183,154,0.3); vertical-align: top; }
  .nad-table .nad-dose { font-weight: 600; color: var(--espresso-deep); white-space: nowrap; }
  .nad-table td[data-label="Price"] { color: var(--taupe); }
  .nad-table .nad-mem { color: var(--espresso-deep); font-weight: 600; font-size: 14.5px; }
  .nad-table-note { font-size: 12.5px; line-height: 1.7; font-weight: 300; color: var(--taupe); margin: 22px auto 0; max-width: 840px; }

  .iv-card-jump { text-decoration: none; color: inherit; }
  .iv-card-jump-link { margin-top: 14px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--body); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--taupe); transition: color 0.3s ease; }
  .iv-card-jump:hover .iv-card-jump-link { color: var(--espresso-deep); }
  .iv-card-jump-link svg { width: 6px; height: 10px; }

  @media (max-width: 920px) {
    .nad-hero-card { grid-template-columns: 1fr; }
    .nad-rules-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 760px) {
    .iv-nad { padding: 30px 22px 62px; }
    .nad-head h2 { font-size: 36px; }
    .nad-diff { padding: 26px 24px; }
    .nad-table thead { display: none; }
    .nad-table, .nad-table tbody, .nad-table tr, .nad-table td { display: block; width: 100%; }
    .nad-table tr { background: var(--ivory); border: 1px solid rgba(203,183,154,0.45); border-radius: 6px; margin-bottom: 14px; }
    .nad-table td { display: flex; justify-content: space-between; gap: 18px; text-align: right; padding: 11px 16px; border-bottom: 1px solid rgba(203,183,154,0.25); }
    .nad-table td:last-child { border-bottom: none; }
    .nad-table td::before { content: attr(data-label); font-family: var(--body); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--taupe); font-weight: 600; text-align: left; flex-shrink: 0; }
  }

  /* NAD+ dose-row Book buttons + titration confirm modal */
  .nad-book-btn { display: inline-block; cursor: pointer; background: var(--espresso-deep); color: var(--ivory); border: 1px solid var(--espresso-deep); font-family: var(--body); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; padding: 9px 17px; border-radius: 100px; text-decoration: none; white-space: nowrap; transition: all 0.3s ease; }
  .nad-book-btn:hover { background: transparent; color: var(--espresso-deep); }
  .nad-table td.nad-book-cell { text-align: right; white-space: nowrap; }

  .nad-confirm { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 24px; }
  .nad-confirm.open { display: flex; }
  .nad-confirm-backdrop { position: absolute; inset: 0; background: rgba(28,24,21,0.6); }
  .nad-confirm-card { position: relative; background: var(--ivory); max-width: 460px; width: 100%; padding: 40px 38px; border-radius: 6px; box-shadow: 0 30px 70px rgba(28,24,21,0.4); text-align: center; }
  .nad-confirm-card h3 { font-family: var(--display); font-weight: 400; font-size: 29px; color: var(--espresso-deep); margin: 10px 0 16px; }
  .nad-confirm-card p { font-size: 14.5px; line-height: 1.7; font-weight: 300; color: var(--espresso); margin-bottom: 14px; }
  .nad-confirm-card .nad-confirm-dose { color: var(--espresso-deep); font-weight: 600; }
  .nad-confirm-sub { font-weight: 500 !important; color: var(--espresso-deep) !important; }
  .nad-confirm-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
  .nad-confirm-yes { background: var(--espresso-deep); color: var(--ivory); border: 1px solid var(--espresso-deep); padding: 15px; font-family: var(--body); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; text-decoration: none; transition: all 0.3s ease; }
  .nad-confirm-yes:hover { background: transparent; color: var(--espresso-deep); }
  .nad-confirm-no { background: transparent; color: var(--taupe); border: 1px solid rgba(203,183,154,0.5); padding: 14px; font-family: var(--body); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: all 0.3s ease; }
  .nad-confirm-no:hover { border-color: var(--espresso-deep); color: var(--espresso-deep); }

  @media (max-width: 760px) {
    .nad-table td.nad-book-cell { display: block; text-align: center; }
    .nad-table td.nad-book-cell::before { display: none; }
    .nad-table td.nad-book-cell .nad-book-btn { width: 100%; padding: 13px; }
  }

  /* NAD+ — "Why more than one dose?" explainer (before the dose ladder) */
  .nad-why { margin: 64px auto 0; max-width: 820px; text-align: center; }
  .nad-why h3 { font-family: var(--display); font-weight: 400; font-size: 30px; color: var(--espresso-deep); margin: 10px 0 20px; }
  .nad-why h3 em { font-style: italic; color: var(--taupe); }
  .nad-why p { font-size: 15.5px; line-height: 1.85; font-weight: 300; color: var(--espresso); margin-bottom: 16px; }
  .nad-why strong { color: var(--espresso-deep); font-weight: 500; }
  .nad-why-take { font-family: var(--display); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--espresso-deep); border-top: 1px solid rgba(203,183,154,0.5); border-bottom: 1px solid rgba(203,183,154,0.5); padding: 22px 18px; margin: 28px 0 18px; }
  .nad-why-take em { color: var(--taupe); font-style: italic; }
  .nad-why-note { font-size: 12.5px !important; line-height: 1.7; color: var(--taupe) !important; margin: 0 !important; }

/* ============ BEFORE & AFTER GALLERY (treatment modals) ============ */
.nm-ba-gal { position: relative; margin-top: 12px; background: var(--greige-soft); border: 1px solid rgba(58, 48, 42, 0.08); }
.nm-ba-track { height: 340px; }
.nm-ba-track img { display: none; width: 100%; height: 100%; object-fit: contain; }
.nm-ba-track img.on { display: block; }
@media (max-width: 600px) { .nm-ba-track { height: 260px; } }
.nm-ba-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(58, 48, 42, 0.18); background: rgba(250, 248, 244, 0.92); color: var(--espresso); font-size: 20px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0 0 2px; transition: background 0.25s ease, color 0.25s ease; }
.nm-ba-btn:hover { background: var(--espresso); color: var(--ivory); }
.nm-ba-prev { left: 10px; }
.nm-ba-next { right: 10px; }
.nm-ba-dots { position: absolute; bottom: 8px; left: 0; right: 0; text-align: center; pointer-events: none; }
.nm-ba-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: rgba(58, 48, 42, 0.22); margin: 0 3px; }
.nm-ba-dot.on { background: var(--champagne); }
.nm-ba-cap { font-family: var(--body); font-size: 12px; font-weight: 300; color: var(--taupe); margin-top: 10px; }
.nm-ba-cap:empty { display: none; }
.nm-ba-credit { font-family: var(--body); font-size: 11px; font-weight: 300; color: var(--taupe); opacity: 0.65; margin-top: 4px; }

/* ============ OXYGENEO — DEVICE & TOUCHSCREEN FEATURES ============ */
.geneo-device { max-width: 640px; margin: 18px auto 0; }
.geneo-device img { display: block; width: 100%; border-radius: 4px; border: 1px solid rgba(58, 48, 42, 0.1); }
.geneo-device-cap { font-family: var(--body); font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); text-align: center; margin: 12px 0 0; }
.geneo-screen { max-width: 640px; margin: 30px auto 46px; }
.geneo-screen img { display: block; width: 100%; border-radius: 4px; border: 1px solid rgba(58, 48, 42, 0.1); }

.iv-addons-head-tight { margin-top: 34px; }
.iv-addons-head-tight h2 { margin-top: 0; }

/* ============ PRE-OPENING STICKY SAVINGS BAR ============ */
.preopen-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--espresso-darkest); border-top: 1px solid rgba(203, 183, 154, 0.4); transform: translateY(100%); transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1); }
.preopen-bar.show { transform: translateY(0); }
.preopen-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 18px; padding: 13px 24px; }
.preopen-spark { color: var(--champagne); font-size: 14px; flex-shrink: 0; }
.preopen-text { margin: 0; flex: 1; font-family: var(--body); font-size: 13.5px; font-weight: 300; letter-spacing: 0.02em; color: var(--greige); line-height: 1.45; }
.preopen-text strong { color: var(--champagne); font-weight: 500; }
.preopen-link { color: var(--champagne); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: rgba(203, 183, 154, 0.5); transition: color 0.3s ease, text-decoration-color 0.3s ease; }
.preopen-link:hover { color: var(--ivory); text-decoration-color: var(--ivory); }
.preopen-cta { flex-shrink: 0; font-family: var(--body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; color: var(--espresso-deep); background: var(--champagne); padding: 11px 22px; text-decoration: none; transition: background 0.3s ease; }
.preopen-cta:hover { background: #A98F68; }
.preopen-close { flex-shrink: 0; background: transparent; border: 0; color: var(--taupe); font-size: 22px; line-height: 1; cursor: pointer; padding: 0 2px; transition: color 0.3s ease; }
.preopen-close:hover { color: var(--ivory); }
body.pp-no-scroll .preopen-bar { transform: translateY(100%); }
@media (max-width: 640px) {
  /* right padding keeps text, CTA & close clear of the chat launcher (bottom-right) */
  .preopen-inner { gap: 10px 12px; padding: 10px 72px 12px 14px; flex-wrap: wrap; position: relative; }
  .preopen-spark { display: none; }
  .preopen-text { font-size: 12px; flex: 1 1 100%; }
  .preopen-cta { padding: 9px 16px; }
  .preopen-close { position: absolute; top: 6px; right: 10px; margin-left: 0; padding: 6px 8px; }
}

/* ============ MODAL SPLIT-SCROLL — image static left, content scrolls right ============ */
/* Universal: EVERY modal site-wide. The image column stays fixed while only the content
   column scrolls. Content scrollers by family: .pp-card-body (products), .cn-modal-content
   (concerns), .iv-modal-content (IV), .nm-modal-content (treatments + signature). */
.pp-modal-body { overflow: hidden; }
.pp-modal-body .pp-card-body,
.cn-modal-content,
.iv-modal-content,
.nm-modal-content,
.ing-modal-content { overflow-y: auto; min-height: 0; }
@media (max-width: 720px) {
  /* On mobile the image stacks on top, so the whole modal scrolls normally. */
  .pp-modal-body { overflow-y: auto; }
  .pp-modal-body .pp-card-body,
  .cn-modal-content,
  .iv-modal-content,
  .nm-modal-content,
  .ing-modal-content { overflow-y: visible; }
}

/* ============ MICRONEEDLING — SPECIALIZED INGREDIENTS ============ */
.ing-section { background: var(--greige-soft); }
.ing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}
.ing-card {
  position: relative;
  background: var(--ivory);
  border: 1px solid rgba(203, 183, 154, 0.4);
  border-radius: 6px;
  padding: 30px 28px 26px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.ing-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--champagne), var(--champagne-soft));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.ing-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(58, 48, 42, 0.42); border-color: var(--champagne); }
.ing-card:hover::before { transform: scaleX(1); }
.ing-eyebrow { font-family: var(--body); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--champagne); font-weight: 500; margin-bottom: 14px; }
.ing-title { font-family: var(--display); font-size: 26px; line-height: 1.08; color: var(--espresso); font-weight: 500; margin-bottom: 5px; }
.ing-sub { display: block; font-family: var(--body); font-size: 10.5px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--taupe); font-weight: 400; margin-bottom: 15px; }
.ing-teaser { font-family: var(--body); font-size: 14.5px; line-height: 1.6; color: var(--taupe); font-weight: 300; flex-grow: 1; margin-bottom: 20px; }
.ing-more { font-family: var(--body); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--espresso); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.ing-more svg { width: 5px; height: 9px; }
.ing-details { display: none; }

/* Ingredient modal content (inside reused .pp-modal shell — single centered column, no image) */
.ing-modal-content { flex: 1 1 auto; padding: 48px 50px; max-width: 660px; margin: 0 auto; }
.ing-modal-content .ing-eyebrow { margin-bottom: 10px; }
.ing-modal-title { font-family: var(--display); font-size: 34px; line-height: 1.05; color: var(--espresso); font-weight: 500; margin-bottom: 5px; }
.ing-modal-content .ing-sub { margin-bottom: 22px; }
.ing-modal-content .nm-desc { font-size: 16px; line-height: 1.75; color: var(--espresso-deep); font-weight: 300; margin-bottom: 26px; }
.ing-modal-content .nm-sec { margin-bottom: 22px; }
.ing-modal-content .nm-sec .fd-zones { margin-top: 12px; }
.ing-placeholder { background: rgba(203, 183, 154, 0.15); border-left: 2px solid var(--champagne); border-radius: 0 3px 3px 0; padding: 12px 16px; font-size: 13.5px; line-height: 1.6; color: var(--taupe); font-style: italic; }
@media (max-width: 720px) {
  .ing-modal-content { padding: 32px 26px 42px; }
  .ing-modal-title { font-size: 28px; }
}

/* ============ CHEMICAL PEELS — PRICING CHART ============ */
/* Reuses the .nad-table price-ladder component (shared: NAD+ dose ladder + this chart). */
.peel-pricing { max-width: 700px; margin: 0 auto; }
.peel-pricing .nad-dose { white-space: normal; }
.peel-area-note { display: block; font-family: var(--body); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--taupe); font-weight: 400; margin-top: 4px; }
.peel-pricing-cta { text-align: center; margin-top: 32px; }
#peel-pricing { scroll-margin-top: 130px; }
/* "See the full chart" link inside each peel modal */
.peel-price-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 30px; font-family: var(--body); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--taupe); text-decoration: none; cursor: pointer; transition: color 0.3s ease; }
.peel-price-link:hover { color: var(--espresso-deep); }
.peel-price-link svg { width: 10px; height: 6px; flex-shrink: 0; }

  /* Named complimentary-treatment menus inside membership tier cards */
  .mp-has-comp { flex-wrap: wrap; }
  .mp-has-comp > span:not(.mp-marker) { flex: 1 1 0; min-width: 0; }
  .mp-comp-list { list-style: none; flex-basis: 100%; margin: 8px 0 2px 22px; padding: 0; display: flex; flex-direction: column; gap: 6px; }
  .mp-comp-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-size: 12.5px; line-height: 1.5; color: var(--taupe); font-weight: 300; }
  .mp-comp-list li em { font-style: normal; color: var(--champagne); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; font-weight: 500; }

  /* ============================================================
     REWARDS — REFERRAL BAND  (rewards.html)  — .rw-refer
     ============================================================ */
  .rw-refer {
    background: var(--espresso-deep);
    padding: 36px 40px 0;
    text-align: center;
  }
  .rw-refer-inner { max-width: 760px; margin: 0 auto; }
  .rw-refer .section-eyebrow { color: var(--champagne); justify-content: center; }
  .rw-refer-title {
    font-family: var(--display); font-weight: 400;
    font-size: clamp(30px, 4.2vw, 42px); line-height: 1.15;
    color: var(--ivory); margin: 14px 0 20px;
  }
  .rw-refer-title em { font-style: italic; color: var(--champagne); }
  .rw-refer-lead {
    font-size: 15.5px; line-height: 1.85; font-weight: 300;
    color: var(--greige); max-width: 640px; margin: 0 auto 40px;
  }
  .rw-refer-stats {
    display: flex; align-items: stretch; justify-content: center;
    gap: 34px; margin-bottom: 42px;
  }
  .rw-refer-stat {
    flex: 0 1 240px; display: flex; flex-direction: column; gap: 8px;
    padding: 26px 24px; border: 1px solid rgba(203, 183, 154, 0.28);
  }
  .rw-refer-amt {
    font-family: var(--display); font-size: 44px; line-height: 1;
    color: var(--champagne);
  }
  .rw-refer-desc {
    font-size: 12.5px; line-height: 1.6; font-weight: 300;
    color: var(--greige-soft); letter-spacing: 0.02em;
  }
  .rw-refer-plus {
    align-self: center; font-family: var(--display);
    font-size: 30px; color: var(--taupe);
  }
  .rw-refer-fine {
    margin-top: 26px; font-size: 11.5px; line-height: 1.7;
    font-weight: 300; color: var(--taupe); letter-spacing: 0.03em;
  }
  @media (max-width: 640px) {
    .rw-refer { padding: 28px 24px 0; }
    .rw-refer-stats { flex-direction: column; align-items: center; gap: 14px; }
    .rw-refer-stat { flex-basis: auto; width: 100%; max-width: 320px; }
    .rw-refer-plus { font-size: 24px; }
  }

  /* ============================================================
     CONCERNS — CATEGORY CHIPS  (concerns.html)  — .cn-chips
     ============================================================ */
  .cn-chips {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px; margin: 22px 0 6px;
  }
  .cn-chip {
    font-family: var(--body); font-size: 11.5px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--taupe); background: transparent;
    border: 1px solid rgba(139, 122, 104, 0.35);
    border-radius: 999px; padding: 9px 22px; cursor: pointer;
    transition: color .25s ease, border-color .25s ease, background .25s ease;
  }
  .cn-chip:hover { color: var(--espresso); border-color: var(--champagne); }
  .cn-chip.active {
    color: var(--ivory); background: var(--espresso);
    border-color: var(--espresso);
  }

  /* ============================================================
     AI ASSESSMENT PAGE  (ai-assessment.html)  — prefix .aip-
     ============================================================ */
  .aip-hero {
    background: var(--espresso-deep);
    padding: 10px 40px 36px;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .aip-hero::before {
    content: ''; position: absolute;
    top: 50%; left: 50%;
    width: 700px; height: 700px;
    transform: translate(-50%, -50%);
    background-image: url('assets/logo-mark.png');
    background-size: contain; background-repeat: no-repeat; background-position: center;
    opacity: 0.04; pointer-events: none;
  }
  .aip-hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
  .aip-hero .section-eyebrow { color: var(--champagne); }
  .aip-hero h1 {
    font-family: var(--display); font-weight: 400;
    font-size: clamp(38px, 5.4vw, 58px); line-height: 1.1;
    color: var(--ivory); margin: 16px 0 22px;
  }
  .aip-hero h1 em { font-style: italic; color: var(--champagne); }
  .aip-hero-sub {
    font-size: 16px; line-height: 1.85; font-weight: 300;
    color: var(--greige); max-width: 620px; margin: 0 auto;
  }
  .aip-how { background: var(--greige-soft); padding: 22px 40px; }
  .aip-how-inner {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  }
  .aip-step { text-align: center; }
  .aip-step-num {
    font-family: var(--display); font-size: 15px; letter-spacing: 0.2em;
    color: var(--champagne); display: block; margin-bottom: 10px;
  }
  .aip-step h3 {
    font-family: var(--display); font-weight: 500; font-size: 21px;
    color: var(--espresso-deep); margin-bottom: 8px;
  }
  .aip-step p { font-size: 13.5px; line-height: 1.7; font-weight: 300; color: var(--taupe); max-width: 260px; margin: 0 auto; }
  .aip-embed { background: var(--ivory); padding: 64px 40px 72px; }
  .aip-embed-inner { max-width: 980px; margin: 0 auto; }
  .aip-privacy {
    margin-top: 26px; text-align: center;
    font-size: 11.5px; line-height: 1.7; font-weight: 300;
    color: var(--taupe); letter-spacing: 0.03em;
    max-width: 640px; margin-left: auto; margin-right: auto;
  }
  @media (max-width: 760px) {
    .aip-hero { padding: 8px 24px 26px; }
    .aip-how { padding: 18px 24px; }
    .aip-how-inner { grid-template-columns: 1fr; gap: 28px; }
    .aip-embed { padding: 40px 16px 56px; }
  }

  /* MEGA MENU — AI strip */
  .mega-ai-strip {
    border-top: 1px solid rgba(203, 183, 154, 0.25);
    text-align: center; padding: 20px 20px 8px; margin-top: 24px;
  }
  .mega-ai-strip a {
    display: inline-block;
    background: var(--espresso-deep); color: var(--champagne);
    font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
    font-weight: 500; text-decoration: none;
    padding: 13px 32px;
    transition: background .25s ease, color .25s ease;
  }
  .mega-ai-strip a:hover { background: var(--espresso-darkest); color: var(--ivory); }
  /* Desktop: float the pill INSIDE the menu, centered in the empty space
     under the four "Explore Category" buttons (columns 3–6). */
  @media (min-width: 1025px) {
    .mega-ai-strip {
      position: absolute; left: 66%; transform: translateX(-50%);
      bottom: 64px; border-top: none; margin: 0; padding: 0;
    }
  }
  /* Collapsed nav (phone/tablet): strip sits at the end of the accordion menu;
     dark backdrop there, so switch to an outlined champagne pill. */
  @media (max-width: 1024px) {
    .mega-ai-strip { border-top-color: rgba(203, 183, 154, 0.2); padding: 18px 16px 10px; margin-top: 14px; }
    .mega-ai-strip a { background: transparent; border: 1px solid var(--champagne); }
    .mega-ai-strip a:hover { background: var(--champagne); color: var(--espresso-deep); }
  }

  /* CONCERNS — AI line under chips */
  .cn-ai-line {
    text-align: center; margin: 4px 0 10px;
    font-size: 14px; font-weight: 300; color: var(--taupe);
  }
  .cn-ai-line a { color: var(--espresso); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--champagne); }
  .cn-ai-line a:hover { color: var(--champagne); }

  /* ============================================================
     HOMEPAGE — FOUNDER BAND (slim trust strip under the hero)
     ============================================================ */
  /* ============================================================
     HOMEPAGE — TREATMENT CARD CLICK AFFORDANCE (2026-07-24)
     Category cards (<a>) read as buttons; list cards (<div>)
     signal that their ITEMS are the links.
     ============================================================ */
  /* Category cards: lift + shadow on hover */
  a.treatment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(43, 37, 33, 0.12);
    z-index: 2;
  }
  /* Their "Explore Category" line becomes an outlined button that fills on hover */
  a.treatment-card .arrow {
    align-self: flex-start;
    border: 1px solid rgba(58, 48, 42, 0.35);
    padding: 12px 22px;
    transition: gap 0.4s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }
  a.treatment-card:hover .arrow {
    background: var(--espresso-deep);
    border-color: var(--espresso-deep);
    color: var(--ivory);
  }
  /* List cards (<div>): the card itself isn't a link — don't pretend it is */
  div.treatment-card { cursor: default; }
  div.treatment-card .arrow { color: var(--taupe); opacity: 0.75; }
  /* ...but each treatment IS — give list items a resting chevron */
  .treatment-list li a {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
  }
  .treatment-list li a::after {
    content: '';
    width: 5px; height: 5px; flex-shrink: 0;
    border-top: 1.3px solid var(--champagne);
    border-right: 1.3px solid var(--champagne);
    transform: rotate(45deg);
    opacity: 0.55;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .treatment-list li:hover a::after { opacity: 1; transform: rotate(45deg) translate(1px, -1px); }
  /* Row underline that extends across on hover (mimics the title-rule affordance) */
  .treatment-list li { position: relative; }
  .treatment-list li::after {
    content: ''; position: absolute; left: 0; bottom: -1px;
    height: 1px; width: 0;
    background: var(--champagne);
    transition: width 0.35s ease;
  }
  .treatment-list li:hover::after { width: 100%; }

  /* Perk tiles are links to the memberships page — full-tile click area */
  .perks-grid li { padding: 0; align-items: stretch; }
  .perks-grid .perks-link {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 22px; flex: 1;
    color: inherit; text-decoration: none;
    text-align: left;
  }

  /* HAIR RESTORATION — pathway accents echoing the Two Pathways legend
     (gold = PRP, platinum = Exosome Finish) */
  .nm-card.hr-gold {
    border: 1px solid rgba(203, 183, 154, 0.9);
    box-shadow: 0 0 0 1px rgba(203, 183, 154, 0.4), 0 12px 44px rgba(190, 165, 130, 0.55);
  }
  .nm-card.hr-plat {
    border: 1px solid rgba(168, 173, 182, 0.9);
    box-shadow: 0 0 0 1px rgba(168, 173, 182, 0.45), 0 12px 44px rgba(130, 138, 152, 0.5);
  }
  .nm-card.hr-gold:hover {
    border-color: rgba(203, 183, 154, 1);
    box-shadow: 0 0 0 1px rgba(203, 183, 154, 0.5), 0 18px 52px rgba(190, 165, 130, 0.65);
  }
  .nm-card.hr-plat:hover {
    border-color: rgba(168, 173, 182, 1);
    box-shadow: 0 0 0 1px rgba(168, 173, 182, 0.55), 0 18px 52px rgba(130, 138, 152, 0.6);
  }

  /* IV PAGE — pathway metals: gold = infusions, platinum = add-ons (echoes hair-restoration code) */
  .iv-card {
    border: 1px solid rgba(203, 183, 154, 0.9);
    box-shadow: 0 0 0 1px rgba(203, 183, 154, 0.4), 0 12px 44px rgba(190, 165, 130, 0.55);
  }
  .iv-card:hover {
    border-color: rgba(203, 183, 154, 1);
    box-shadow: 0 0 0 1px rgba(203, 183, 154, 0.5), 0 18px 52px rgba(190, 165, 130, 0.65);
  }
  .iv-card.iv-card-addon {
    border: 1px solid rgba(168, 173, 182, 0.9);
    box-shadow: 0 0 0 1px rgba(168, 173, 182, 0.45), 0 12px 44px rgba(130, 138, 152, 0.5);
  }
  .iv-card.iv-card-addon:hover {
    border-color: rgba(168, 173, 182, 1);
    box-shadow: 0 0 0 1px rgba(168, 173, 182, 0.55), 0 18px 52px rgba(130, 138, 152, 0.6);
  }

  /* INGREDIENT CARDS — metal code (gold = PDRN/HA, platinum = exosomes) */
  .ing-card.hr-gold {
    border: 1px solid rgba(203, 183, 154, 0.9);
    box-shadow: 0 0 0 1px rgba(203, 183, 154, 0.4), 0 12px 44px rgba(190, 165, 130, 0.55);
  }
  .ing-card.hr-gold:hover {
    border-color: rgba(203, 183, 154, 1);
    box-shadow: 0 0 0 1px rgba(203, 183, 154, 0.5), 0 18px 52px rgba(190, 165, 130, 0.65);
  }
  .ing-card.hr-plat {
    border: 1px solid rgba(168, 173, 182, 0.9);
    box-shadow: 0 0 0 1px rgba(168, 173, 182, 0.45), 0 12px 44px rgba(130, 138, 152, 0.5);
  }
  .ing-card.hr-plat:hover {
    border-color: rgba(168, 173, 182, 1);
    box-shadow: 0 0 0 1px rgba(168, 173, 182, 0.55), 0 18px 52px rgba(130, 138, 152, 0.6);
  }

  /* ABOUT — framed portraits (champagne double-frame, gallery style) */
  .ab-portrait, .ab-member-img {
    border: 1px solid rgba(203, 183, 154, 0.65);
    outline: 1px solid rgba(203, 183, 154, 0.35);
    outline-offset: 5px;
  }

  /* HOMEPAGE AI SECTION — two-column with looping before/after video (2026-07-25) */
  /* Desktop: copy + CTAs stacked in the left column, video spanning the right.
     Mobile: copy, then video, then CTAs (see the 820px block below). */
  .ai-grid {
    display: grid; grid-template-columns: 1.15fr 0.85fr;
    gap: 56px; align-items: center;
    max-width: 980px; margin: 0 auto;
  }
  .ai-left { display: flex; flex-direction: column; gap: 32px; }
  .ai-grid .ai-content { max-width: none; margin: 0; text-align: left; }
  .ai-grid .ai-intro { margin-bottom: 0; }
  /* Both CTAs read as one set: identical type size and padding */
  .ai-ctas .btn-primary,
  .ai-ctas .btn-dark {
    font-size: 12px;
    letter-spacing: 0.2em;
    padding: 18px 40px;
  }
  .ai-grid .ai-content .section-eyebrow { justify-content: flex-start; }
  .ai-grid .intercept-ctas { justify-content: flex-start; }
  /* The whole video is a link to the assessment */
  .ai-media {
    display: flex; justify-content: center;
    text-decoration: none; cursor: pointer;
    -webkit-tap-highlight-color: rgba(203, 183, 154, 0.25);
  }
  .ai-media video {
    display: block; width: 100%; max-width: 340px; height: auto;
    border: 1px solid rgba(203, 183, 154, 0.65);
    outline: 1px solid rgba(203, 183, 154, 0.35);
    outline-offset: 5px;
    box-shadow: 0 18px 48px rgba(43, 37, 33, 0.16);
    pointer-events: none; /* taps land on the link, not the video element */
    transition: box-shadow 0.4s ease, transform 0.4s ease, outline-color 0.4s ease;
  }
  .ai-media:hover video,
  .ai-media:focus-visible video {
    transform: translateY(-3px);
    outline-color: rgba(203, 183, 154, 0.8);
    box-shadow: 0 24px 58px rgba(43, 37, 33, 0.24);
  }
  @media (max-width: 820px) {
    /* Order on phones: copy, then the video, then the buttons.
       .ai-left dissolves so its children become grid items we can place. */
    .ai-grid { grid-template-columns: 1fr; gap: 28px; }
    .ai-left { display: contents; }
    .ai-grid .ai-content { grid-column: 1; grid-row: 1; text-align: center; }
    .ai-grid .ai-media { grid-column: 1; grid-row: 2; }
    .ai-grid .ai-ctas { grid-column: 1; grid-row: 3; }
    .ai-grid .intercept-ctas { justify-content: center; }
    .ai-grid .ai-content .section-eyebrow { justify-content: center; }
    .ai-grid .intercept-ctas { justify-content: center; }
    .ai-media video { max-width: 300px; }
  }

  /* Tier CTA app note */
  .mp-tier-appnote {
    margin: 10px 0 0; text-align: center;
    font-size: 11px; font-style: italic; font-weight: 300;
    color: rgba(233, 229, 223, 0.55);
  }

  /* "Get the App" join sections: center the copy column (all pages);
     the numbered step rows stay left-aligned for readability */
  .mp-join-copy { text-align: center; }
  .mp-join-copy .section-eyebrow { justify-content: center; }
  .mp-join-copy .mp-join-steps { text-align: left; }

  /* OXYGENEO — collapsible "science" panel under the variation cards */
  .sci-wrap { text-align: center; margin-top: 34px; }
  .sci-toggle {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--body); font-size: 11.5px; letter-spacing: 0.18em;
    text-transform: uppercase; font-weight: 500;
    color: var(--ivory); background: var(--espresso-deep);
    border: 1px solid var(--espresso-deep);
    padding: 13px 26px; cursor: pointer;
    transition: background .3s ease, color .3s ease, border-color .3s ease;
  }
  .sci-toggle .sci-chev { color: var(--champagne); }
  .sci-toggle:hover { background: transparent; color: var(--espresso-deep); border-color: rgba(58, 48, 42, 0.45); }
  .sci-toggle:hover .sci-chev { color: var(--espresso-deep); }
  .sci-chev { width: 12px; height: 8px; transition: transform .3s ease; }
  .sci-toggle.open .sci-chev { transform: rotate(180deg); }
  .sci-panel { margin-top: 30px; animation: sciFade .4s ease; }
  .sci-panel[hidden] { display: none; }
  @keyframes sciFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

  /* IV PAGE — center eyebrows in centered contexts (left-aligned columns keep left) */
  .nad-head .section-eyebrow, .nad-rules .section-eyebrow, .nad-ladder .section-eyebrow,
  .nad-why .section-eyebrow, .nad-confirm-card .section-eyebrow { justify-content: center; }

  /* CHEMICAL PEELS — price-list pointer on closed cards */
  .peel-card-pricenote { margin: 8px 0 0; font-size: 11.5px; font-style: italic; font-weight: 300; color: var(--taupe); }

  /* Peel cards: tighter bottom padding under the price-list liner */
  .nm-card-body:has(.peel-card-pricenote) { padding-bottom: 14px; }
  /* IV collapsibles: tighter gap between button and revealed content */
  .iv-nad .sci-panel { margin-top: 14px; }
  /* …and the blocks inside those panels drop their standalone top margins */
  .sci-panel .nad-why, .sci-panel .nad-diff { margin-top: 0; }
  .sci-panel .nad-rules { margin-top: 28px; }

/* ============ PROSE LINKS — dark default so no link ever falls back to browser blue ============ */
.nm-faq-a a,
.cn-noresults a,
.policy-section a,
.pt-note a {
  color: var(--espresso-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(139, 122, 104, 0.55);
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}
.nm-faq-a a:hover,
.cn-noresults a:hover,
.policy-section a:hover,
.pt-note a:hover {
  color: var(--taupe);
  text-decoration-color: var(--champagne);
}
.footer-finance a { color: inherit; }

/* ============ MEGA MENU HOVER FIX — kill the deadzone + close grace period (desktop only) ============ */
@media (min-width: 1025px) {
  /* Invisible hover bridge: spans the gap between the Treatments link and the top of the mega menu,
     so a slow diagonal path down into the menu never breaks the hover chain.
     Only materializes once the menu is already open (wrap hovered) — passing the cursor
     through the empty strip below the link does NOT open the menu. */
  .treatments-wrap > a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: -70px;
    right: -70px;
    height: 50px;
    display: none;
  }
  .treatments-wrap:hover > a::before {
    display: block;
  }
  /* Once closing, the menu is instantly inert (pointer-events) so re-entering the
     space it occupied can never re-trigger the hover chain — only the Treatments
     link itself reopens it. Short delay keeps the close from feeling twitchy. */
  .mega-menu { transition-delay: 0.12s; pointer-events: none; }
  .treatments-wrap:hover .mega-menu { transition-delay: 0s; pointer-events: auto; }
}

/* ============ VISIT US BAND (homepage, under hero) ============
   Physical-place proof: flagship render + where/when to find us. */
.visit-band {
  background: var(--greige-soft);
  padding: 56px 48px;
}
.visit-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.visit-media img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
  /* same gold metal glow as the treatment cards */
  border: 1px solid rgba(203, 183, 154, 0.9);
  box-shadow: 0 0 0 1px rgba(203, 183, 154, 0.4), 0 12px 44px rgba(190, 165, 130, 0.55);
}
.visit-caption {
  margin: 14px 0 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  font-weight: 300;
  color: var(--taupe);
  letter-spacing: 0.01em;
}
.visit-copy .section-eyebrow { margin-bottom: 22px; }
.visit-copy h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 3.9vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--espresso-deep);
  margin: 0 0 22px;
}
.visit-copy h2 em {
  font-style: italic;
  color: var(--champagne);
}
.visit-lead {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--taupe);
  margin: 0 0 34px;
  max-width: 520px;
}
.visit-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 54px;
  margin-bottom: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(139, 122, 104, 0.24);
}
/* Block titles + hours rows mirror the footer's Hours block */
.visit-block-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 300;
  color: var(--espresso-deep);
  margin: 0 0 18px;
  letter-spacing: -0.005em;
  position: relative;
  padding-bottom: 14px;
}
.visit-block-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 1px;
  background: var(--champagne);
  opacity: 0.7;
}
.visit-detail p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--espresso);
}
.visit-hours { min-width: 290px; }
.visit-hours p {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
}
.visit-day {
  color: var(--taupe);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  flex-shrink: 0;
}
.visit-time {
  color: var(--espresso);
  font-size: 14px;
  text-align: right;
  font-weight: 300;
}
.visit-time-closed {
  font-style: italic;
  font-family: var(--display);
  color: var(--taupe);
}
.visit-btn {
  display: inline-block;
  background: var(--champagne);
  color: var(--espresso-deep);
  padding: 16px 34px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.4s ease;
}
.visit-btn:hover {
  background: var(--espresso-deep);
  color: var(--ivory);
}
@media (max-width: 1024px) {
  .visit-inner { grid-template-columns: 1fr; gap: 36px; }
  .visit-media img { height: 340px; }
}
@media (max-width: 640px) {
  .visit-band { padding: 40px 24px; }
  .visit-media img { height: 260px; }
  .visit-details { gap: 24px 32px; }
}

/* ============ TYPOGRAPHY POLISH (designer review 2026-07-31) ============ */
/* Prevent widows/orphans at every viewport: balanced headlines, tidy paragraph rag.
   Browsers without support simply ignore these. */
h1, h2, h3, h4,
.hero-eyebrow, .section-eyebrow, .perks-eyebrow { text-wrap: balance; }
p, li { text-wrap: pretty; }
/* Nav labels never break into two lines */
.nav-links > li > a { white-space: nowrap; }

/* ============ MOBILE BOOK NOW (persistent CTA in the header bar; hamburger sits to its left) ============ */
.book-btn-mobile { display: none; }
@media (max-width: 1024px) {
  .book-btn-mobile {
    display: inline-block;
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 300;
    color: var(--espresso-deep);
    background: var(--champagne);
    border: 1px solid var(--champagne);
    padding: 12px 22px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.4s ease;
  }
  .book-btn-mobile:hover {
    background: transparent;
    color: var(--champagne);
  }
  .nav-toggle { margin-left: auto; margin-right: 16px; }
}
@media (max-width: 430px) {
  .logo-img img { height: 54px; }
  .book-btn-mobile { padding: 10px 14px; letter-spacing: 0.12em; }
  .nav-toggle { margin-right: 10px; }
}

/* ============ DP4 TECHNOLOGY BAND (microneedling page) ============ */
.dp4-band {
  background: var(--espresso-deep);
  padding: 64px 48px;
}
.dp4-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 72px;
  align-items: center;
}
.dp4-band .section-eyebrow {
  color: var(--champagne);
  margin-bottom: 22px;
}
.dp4-copy h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin: 0 0 20px;
}
.dp4-copy h2 em {
  font-style: italic;
  color: var(--champagne);
}
.dp4-lead {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(250, 248, 244, 0.75);
  margin: 0 0 28px;
  max-width: 560px;
}
.dp4-points {
  list-style: none;
  margin: 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(203, 183, 154, 0.22);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dp4-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(250, 248, 244, 0.82);
}
.dp4-points strong { color: var(--ivory); font-weight: 500; }
.dp4-marker {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--champagne);
  margin-top: 8px;
  opacity: 0.9;
}
.dp4-media { display: flex; justify-content: center; }
.dp4-media img {
  height: 460px;
  width: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}
@media (max-width: 900px) {
  .dp4-band { padding: 48px 24px; }
  .dp4-inner { grid-template-columns: 1fr; gap: 40px; }
  .dp4-media img { height: 340px; }
}

/* ============ GENEO EDITORIAL — dark tech band, same family as the DP4 band ============ */
.ged-band {
  background: var(--espresso-deep);
  padding: 64px 48px;
}
.ged-band .section-eyebrow {
  color: var(--champagne);
  margin-bottom: 22px;
}
.ged-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
}
.ged-copy h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.1;
  color: var(--ivory);
  letter-spacing: -0.012em;
  margin: 0 0 22px;
}
.ged-copy h2 em { font-style: italic; color: var(--champagne); }
.ged-copy .nm-section-desc { text-align: left; color: rgba(250, 248, 244, 0.75); }
.ged-copy .nm-section-desc strong { color: var(--ivory); font-weight: 500; }
.ged-media img {
  display: block;
  width: 100%;
  /* same gold metal glow as the treatment cards */
  border: 1px solid rgba(203, 183, 154, 0.9);
  box-shadow: 0 0 0 1px rgba(203, 183, 154, 0.4), 0 12px 44px rgba(190, 165, 130, 0.35);
}
@media (max-width: 900px) {
  .ged-band { padding: 48px 24px; }
  .ged-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ============ PRESS / MEDIA PAGE ============ */
.pr-hero {
  background: var(--espresso-deep);
  color: var(--ivory);
  padding: 74px 48px 66px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pr-hero::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 620px; height: 620px;
  background: url('assets/logo-mark.png') center / contain no-repeat;
  opacity: 0.05; pointer-events: none;
}
.pr-hero-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 2; }
.pr-hero .section-eyebrow { color: var(--champagne); justify-content: center; margin-bottom: 22px; }
.pr-hero h1 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(38px, 6vw, 76px); line-height: 1.04;
  letter-spacing: -0.02em; margin: 0 0 22px;
}
.pr-hero h1 em { font-style: italic; color: var(--champagne); }
.pr-hero-sub {
  font-size: 17px; line-height: 1.85; font-weight: 300;
  color: rgba(250, 248, 244, 0.78); margin: 0 auto 30px; max-width: 620px;
}
.pr-hero-btn {
  display: inline-block; background: var(--champagne); color: var(--espresso-deep);
  padding: 16px 34px; font-size: 12px; letter-spacing: 0.16em;
  text-decoration: none; transition: all 0.4s ease; word-break: break-word;
}
.pr-hero-btn:hover { background: transparent; color: var(--champagne); box-shadow: inset 0 0 0 1px var(--champagne); }

.pr-section { background: var(--ivory); padding: 60px 48px; }
.pr-section-alt { background: var(--greige-soft); }
.pr-inner { max-width: 880px; margin: 0 auto; }
.pr-inner h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(30px, 3.6vw, 46px); line-height: 1.12;
  color: var(--espresso-deep); letter-spacing: -0.012em; margin: 0 0 12px;
}
.pr-inner h2 em { font-style: italic; color: var(--taupe); }
.pr-note {
  font-size: 13px; font-style: italic; color: var(--taupe);
  font-weight: 300; margin: 0 0 30px;
}

/* Fast facts */
.pr-facts { margin: 26px 0 0; }
.pr-fact {
  display: grid; grid-template-columns: 210px 1fr; gap: 24px;
  padding: 15px 0; border-top: 1px solid rgba(139, 122, 104, 0.2);
}
.pr-fact:last-child { border-bottom: 1px solid rgba(139, 122, 104, 0.2); }
.pr-fact dt {
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--champagne); font-weight: 500; padding-top: 3px;
}
.pr-fact dd {
  margin: 0; font-size: 15.5px; line-height: 1.65;
  color: var(--espresso); font-weight: 300;
}

/* Copy blocks (boilerplate + bios) */
.pr-copyblock {
  background: var(--ivory);
  border: 1px solid rgba(139, 122, 104, 0.22);
  border-left: 2px solid var(--champagne);
  padding: 24px 28px; margin-bottom: 20px;
}
.pr-section-alt .pr-copyblock { background: rgba(250, 248, 244, 0.7); }
.pr-label {
  display: block; font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--taupe);
  font-weight: 500; margin-bottom: 12px;
}
.pr-copyblock p {
  margin: 0; font-size: 16px; line-height: 1.85;
  color: var(--espresso); font-weight: 300;
}

/* Expert topics */
.pr-topics { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.pr-topics li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15.5px; line-height: 1.7; color: var(--espresso); font-weight: 300;
}
.pr-topic-mark {
  flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%;
  background: var(--champagne); margin-top: 9px;
}

/* Downloadable assets */
.pr-assets {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 22px; margin-bottom: 26px;
}
.pr-asset {
  display: flex; flex-direction: column; text-decoration: none;
  border: 1px solid rgba(203, 183, 154, 0.5);
  background: var(--ivory); padding: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
a.pr-asset:hover {
  border-color: var(--champagne); transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(190, 165, 130, 0.28);
}
.pr-asset-thumb {
  height: 108px; display: flex; align-items: center; justify-content: center;
  background: var(--greige-soft); margin-bottom: 14px; overflow: hidden;
}
.pr-asset-dark { background: var(--espresso-deep); }
.pr-asset-thumb img { max-width: 78%; max-height: 76%; object-fit: contain; display: block; }
/* Photographs fill the thumb; logos stay contained with breathing room */
.pr-asset-photo { padding: 0; }
.pr-asset-photo img { max-width: 100%; max-height: 100%; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.pr-asset-name { font-size: 14px; color: var(--espresso-deep); font-weight: 400; line-height: 1.4; }
.pr-asset-meta {
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--taupe); font-weight: 400; margin-top: 6px;
}
.pr-asset-pending { opacity: 0.6; }
.pr-credit { font-size: 12.5px; line-height: 1.7; color: var(--taupe); font-weight: 300; margin: 0; }

@media (max-width: 720px) {
  .pr-hero { padding: 52px 24px 46px; }
  .pr-section { padding: 44px 24px; }
  .pr-fact { grid-template-columns: 1fr; gap: 6px; }
  .pr-fact dt { padding-top: 0; }
  .pr-copyblock { padding: 20px 20px; }
  .pr-hero-btn { padding: 15px 22px; font-size: 11px; letter-spacing: 0.1em; }
}

/* About page — media line, boxed so it reads as utility and stays clear of the
   in-memoriam dedication that follows it */
.ab-medialine {
  background: var(--ivory);
  text-align: center;
  padding: 34px 24px 58px;
}
.ab-medialine p {
  display: inline-block;
  margin: 0;
  background: var(--greige-soft);
  border: 1px solid rgba(139, 122, 104, 0.22);
  padding: 15px 28px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--taupe);
  font-weight: 300;
  max-width: 100%;
}
.ab-medialine a {
  color: var(--taupe);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(139, 122, 104, 0.4);
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}
.ab-medialine a:hover {
  color: var(--espresso-deep);
  text-decoration-color: var(--champagne);
}

/* Press topics — lead-in emphasis (used by the name/dedication note) */
.pr-topics strong { color: var(--espresso-deep); font-weight: 500; }

/* About signature — quiet pronunciation note beside the name */
.ab-sig-say {
  font-family: var(--body);
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--taupe);
  margin-left: 12px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .ab-sig-say { display: block; margin-left: 0; margin-top: 8px; }
}

/* Team grid — when the final card is alone on its own row (card count is 3n+1),
   drop it into the centre column instead of leaving it hanging on the left.
   Self-adjusting: if team members are added later, the rule stops applying. */
.ab-team-grid > .ab-member:last-child:nth-child(3n + 1) { grid-column: 2; }
@media (max-width: 900px) {
  .ab-team-grid > .ab-member:last-child:nth-child(3n + 1) { grid-column: auto; }
}

/* ============ LASER TECH BAND — AWARDS ROW ============
   Awards chips moved into the dark ged-band (2026-08-05); science panel removed
   as redundant with the band copy. Dark-surface chip variant. */
.ged-awards { margin-top: 28px; }
.ged-awards-label { font-family: var(--body); font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--champagne); margin-bottom: 12px; }
.ged-band .fd-zone { background: rgba(250, 248, 244, 0.06); border-color: rgba(203, 183, 154, 0.35); color: var(--champagne-soft); }

  /* ============================================================
     IV LOUNGE DAYS BAND + RESERVE CTA  (iv-infusions.html, 2026-08-11)
     Lounge pours Fri–Sun; 7 compounded infusions reserve by call/text.
     ============================================================ */
  .iv-days-band { max-width: 720px; margin: 6px auto 50px; background: linear-gradient(135deg, var(--espresso-deep) 0%, var(--espresso-darkest) 100%); border: 1px solid rgba(203, 183, 154, 0.32); text-align: center; padding: 28px 34px 30px; }
  .iv-days-eyebrow { font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--champagne); font-weight: 500; margin-bottom: 12px; }
  .iv-days-band h3 { font-family: var(--display); font-weight: 400; font-size: 27px; line-height: 1.2; color: var(--ivory); margin: 0 0 10px; }
  .iv-days-band h3 em { font-style: italic; color: var(--champagne); }
  .iv-days-band p { font-size: 13.5px; font-weight: 300; color: rgba(250, 248, 244, 0.8); line-height: 1.8; max-width: 560px; margin: 0 auto; }
  .iv-days-qc { white-space: nowrap; }
  .iv-days-qc .qc-trigger { font-size: 14px; font-weight: 500; letter-spacing: 0.06em; }
  .iv-days-qc .qc-menu { left: 50%; right: auto; transform: translateX(-50%); }
  /* Reserve chooser in the IV modal CTA bar: menu opens upward so it never clips */
  .iv-modal-cta .iv-reserve { flex-shrink: 0; }
  .iv-modal-cta .qc-menu { top: auto; bottom: calc(100% + 8px); right: 0; }
  @media (max-width: 640px) {
    .iv-days-band { padding: 28px 22px 30px; margin-bottom: 38px; }
    .iv-days-band h3 { font-size: 24px; }
    .iv-days-band p { font-size: 13px; }
  }

/* ---- LOCATION UPDATE 2026-08-22: "Closed" centred under the time column; visit-section actions ---- */
/* Hours: one shared grid so the time column is exactly as wide as the time text; "Closed" centres under it */
.footer-hours-block, .visit-hours { display:grid; grid-template-columns:auto max-content; justify-content:space-between; column-gap:12px; align-items:baseline; }
.footer-hours-block > .footer-block-title, .visit-hours > .visit-block-title { grid-column:1 / -1; }
.footer-hours-block p, .visit-hours p { display:contents; }
.footer-day, .visit-day, .footer-time, .visit-time { padding:6px 0; }
.footer-time, .visit-time, .footer-day, .visit-day { white-space:nowrap; }
.footer-time, .visit-time { text-align:right; }
.footer-hours-block { column-gap:10px; }
.footer-hours-block .footer-time { font-size:13px; }
.footer-time-closed, .visit-time-closed { text-align:center !important; font-family:var(--body) !important; font-style:normal !important; }
.visit-time-closed { color:var(--espresso) !important; font-size:14px !important; }
.footer-time-closed { color:rgba(250, 248, 244, 0.78) !important; font-size:13px !important; }
.visit-actions { display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
.visit-link { font-family:var(--body); font-size:12px; letter-spacing:0.16em; text-transform:uppercase; color:var(--taupe); text-decoration:none; border-bottom:1px solid rgba(139,122,104,0.45); padding-bottom:2px; transition:color .25s, border-color .25s; }
.visit-link:hover { color:var(--espresso); border-color:var(--espresso); }

/* Visit section: pre-opening savings nudge */
.visit-offer { display:block; margin:22px 0 0; padding:14px 18px; border:1px solid rgba(203,183,154,0.55); background:rgba(203,183,154,0.12); font-size:15px; line-height:1.6; color:var(--espresso); font-weight:300; }
.visit-offer strong { font-weight:500; }
.visit-offer-tag { display:inline-block; margin:0 0 10px; vertical-align:middle; position:relative; top:-1px; font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--espresso-deep); background:var(--champagne); padding:5px 10px; white-space:nowrap; font-weight:500; }
.visit-offer-link { display:table; margin-top:12px; font-size:12px; letter-spacing:0.16em; text-transform:uppercase; color:var(--espresso-deep); text-decoration:none; border-bottom:1px solid var(--champagne); padding-bottom:2px; font-weight:500; transition:color .25s, border-color .25s; }
.visit-offer-link:hover { color:var(--taupe); border-color:var(--taupe); }
