/* ==========================================================================
   Peak Prime Health — site stylesheet
   Single stylesheet, no build step. Tokens first, then base, then components.

   Palette, radii and spacing are taken verbatim from the approved wireframe
   canvas ("Peak Prime Website.dc.html"). Change a value here and it changes
   everywhere — never hard-code a hex in a page.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Ink + neutrals ------------------------------------------------------- */
  --ink:            #14120f;   /* headings, primary buttons, footer ground   */
  --ink-80:         #3d3a33;   /* strong body text                           */
  --ink-60:         #6a655c;   /* body copy                                  */
  --ink-45:         #8d8779;   /* captions, meta, helper text                */
  --ink-30:         #b3ac9e;   /* input placeholders                         */
  --ink-20:         #cfc8ba;   /* disabled                                   */

  /* Grounds -------------------------------------------------------------- */
  --paper:          #ffffff;   /* card + page surface                        */
  --cream:          #faf7f1;   /* tinted band                                */
  --cream-warm:     #fbf7ee;   /* gold-tinted callout                        */
  --cream-chip:     #f7f2e7;   /* pill chip fill                             */
  --cream-flat:     #f4f1ea;   /* inert / locked control                     */
  --canvas:         #e8e4dc;   /* outermost page ground                      */

  /* Lines ---------------------------------------------------------------- */
  --line:           #ece7dd;   /* hairline inside cards                      */
  --line-strong:    #ded8cb;   /* card + input border                        */
  --line-soft:      #f0ece3;   /* faintest divider                           */
  --line-gold:      #ece2cc;   /* border on gold-tinted surfaces             */
  --border-soft:    #ece2cc;   /* safe warm gold border line                 */
  --cream-card:     #ffffff;   /* safe card surface                          */
  --bar:            #eee9df;   /* skeleton bar                               */

  /* Gold ----------------------------------------------------------------- */
  --gold:           #a8823c;   /* the accent                                 */
  --gold-deep:      #7a6430;   /* accent text on light                       */
  --gold-deeper:    #5c4b21;   /* pressed                                    */
  --gold-light:     #d3b473;   /* accent on the dark ground                  */

  /* On the dark ground --------------------------------------------------- */
  --on-dark:        #f4efe4;
  --on-dark-75:     rgba(244, 239, 228, .75);
  --on-dark-60:     rgba(244, 239, 228, .60);
  --on-dark-line:   rgba(244, 239, 228, .14);

  /* Type ----------------------------------------------------------------- */
  /* Display face. The canvas inherited "Caprasimo" from a stock design
     system; it reads playful, which fights the restrained ink-and-gold
     palette the wireframes actually chose. Fraunces keeps the warmth and
     adds the clinical seriousness this brand needs.
     TO REVERT TO THE CANVAS FACE: swap the line below for
       --font-display: "Caprasimo", Georgia, serif;
     and add Caprasimo to the Google Fonts <link> in each page's <head>. */
  --font-display: "Plus Jakarta Sans", "Figtree", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body:    "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Geometry ------------------------------------------------------------- */
  --radius:       16px;
  --radius-sm:     10px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-pill:  999px;
  --shell:       1200px;   /* max content width                             */
  --gutter:        40px;
  --header-h:      70px;

  --shadow-sm: 0 1px 3px rgba(20, 18, 15, .07);
  --shadow-md: 0 6px 24px rgba(20, 18, 15, .09);
  --shadow-lg: 0 18px 48px rgba(20, 18, 15, .14);

  /* The striped block that stands in for photography you have not supplied
     yet. Replace a `.ph` element with a real <img> and it disappears. */
  --stripe: repeating-linear-gradient(135deg, #f2eee5, #f2eee5 9px, #e9e3d6 9px, #e9e3d6 18px);
}

/* --------------------------------------------------------------------------
   2. RESET + BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-60);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
}
h1 { font-size: clamp(30px, 4.4vw, 48px); }
h2 { font-size: clamp(24px, 3.2vw, 32px); }
h3 { font-size: clamp(18px, 2.2vw, 22px); }
h4 { font-size: 18px; }

p  { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold-deep); text-decoration: none; text-underline-offset: 3px; }
a:hover { color: var(--gold-deeper); text-decoration: underline; }

img, svg, video { display: block; max-width: 100%; }
ul, ol { margin: 0 0 14px; padding-left: 20px; }
li { margin-bottom: 6px; }

button, input, select, textarea { font: inherit; color: inherit; }

:focus { outline: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
::selection { background: rgba(168, 130, 60, .22); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--radius) 0; font-weight: 600; font-size: 14px;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell-narrow { max-width: 820px; }
.shell-mid    { max-width: 980px; }

.section      { padding-block: 64px; }
.section-tight{ padding-block: 44px; }
.section-cream{ background: var(--cream); }

.stack   { display: flex; flex-direction: column; }
.stack-2 { gap: 8px;  } .stack-3 { gap: 12px; } .stack-4 { gap: 16px; }
.stack-5 { gap: 22px; } .stack-6 { gap: 30px; }

.row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.row-tight { gap: 8px; }
.push { margin-left: auto; }

.grid   { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.divider { height: 1px; background: var(--line-soft); border: 0; margin: 0; }

/* --------------------------------------------------------------------------
   4. TYPE HELPERS
   -------------------------------------------------------------------------- */
.kicker {
  font: 500 11px/1.4 var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.kicker-muted { color: var(--ink-45); }

.lede    { font-size: 15px; line-height: 1.7; color: var(--ink-60); max-width: 34em; }
.muted   { color: var(--ink-45); }
.small   { font-size: 13px; line-height: 1.6; }
.tiny    { font-size: 12px; line-height: 1.6; color: var(--ink-45); }
.strong  { font-weight: 600; color: var(--ink); }
.gold    { color: var(--gold-deep); font-weight: 600; }
.label   { font-size: 12px; font-weight: 600; letter-spacing: .04em;
           text-transform: uppercase; color: var(--ink-60); }
.numeral { font-family: var(--font-display); font-weight: 400; color: var(--ink); }

/* The bracketed placeholders that still need real content. Visible but not
   alarming — remove the class once the value is real. */
.tbd {
  background: rgba(168, 130, 60, .10);
  box-shadow: 0 0 0 1px rgba(168, 130, 60, .22) inset;
  border-radius: 4px;
  padding: 0 4px;
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px; line-height: 1.2;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: background-color .16s ease, border-color .16s ease,
              color .16s ease, transform .16s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn[disabled], .btn.is-disabled { cursor: not-allowed; transform: none; }

.btn-primary  { background: var(--ink); color: #fff; }
.btn-primary:hover  { background: #2a251d; color: #fff; }
.btn-primary:active { background: #000; }

.btn-gold     { background: var(--gold); color: #fff; }
.btn-gold:hover  { background: #967232; color: #fff; }
.btn-gold:active { background: var(--gold-deep); }

.btn-outline  { border-color: var(--line-strong); color: var(--ink); background: var(--paper); }
.btn-outline:hover  { background: var(--cream); border-color: var(--ink-30); color: var(--ink); }
.btn-outline:active { background: var(--cream-flat); }

.btn-dark-outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.btn-dark-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}
.btn-dark-outline:active {
  background: rgba(255, 255, 255, 0.24);
}

.btn-ghost { color: var(--gold-deep); padding-inline: 6px; }
.btn-ghost:hover { color: var(--gold-deeper); text-decoration: underline; }

.btn-locked {
  background: var(--cream-flat); border-color: #e6e1d8; color: var(--ink-30);
  cursor: not-allowed;
}
.btn-locked:hover { background: var(--cream-flat); color: var(--ink-30); }

.btn-sm    { padding: 11px 22px; font-size: 13px; }
.btn-xs    { padding: 9px 18px;  font-size: 12.5px; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   6. CHIPS, TAGS, PILLS
   -------------------------------------------------------------------------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--radius-pill);
  background: var(--cream-chip); border: 1px solid var(--line-gold);
  font-size: 12px; font-weight: 600; color: var(--gold-deep);
}
.badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
}
.badge-quiet {
  background: var(--paper); border: 1px solid var(--line-strong);
  color: var(--ink-45);
}
.badge-gold-quiet {
  background: var(--paper); border: 1px solid var(--line-gold);
  color: var(--gold-deep);
}

/* The thin gold ring used throughout the canvas in place of an icon. */
.ring {
  width: 24px; height: 24px; flex: none;
  border-radius: var(--radius-pill);
  border: 2.75px solid var(--gold);
}
.ring-lg { width: 36px; height: 36px; }
.ring-sm { width: 18px; height: 18px; border-width: 2.25px; }

.stars { color: var(--gold); font-size: 13px; letter-spacing: .06em; }

/* --------------------------------------------------------------------------
   7. PLACEHOLDER IMAGERY
   Swap any `.ph` for a real <img class="media"> when photography lands.
   -------------------------------------------------------------------------- */
.ph {
  background: var(--stripe);
  border-radius: var(--radius);
  display: flex; align-items: flex-end;
  padding: 16px;
  font: 400 11px var(--font-mono);
  color: var(--ink-45);
}
.ph-round { border-radius: var(--radius-pill); }
.media { border-radius: var(--radius); object-fit: cover; width: 100%; }

/* --------------------------------------------------------------------------
   8. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 28px;
  min-height: var(--header-h);
  padding-block: 12px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 14.5px;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.brand:hover { color: var(--ink); text-decoration: none; }
.brand svg { width: 22px; height: 22px; flex: none; color: var(--gold); }
.brand-name {
  display: inline-flex; align-items: baseline; letter-spacing: .16em;
  font-weight: 800;
}
.brand-peak {
  color: var(--gold);
  font-weight: 900;
  display: inline-block;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--ink-45);
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid var(--line-strong);
}

.nav { display: flex; align-items: center; gap: 20px; flex: 1; }
.nav > a:not(.btn),
.nav-services-btn {
  font-size: 13.5px; font-weight: 500; color: var(--ink-60);
  text-decoration: none; padding-block: 6px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav > a:not(.btn):hover,
.nav-services-btn:hover { color: var(--ink); text-decoration: none; }
.nav > a:not(.btn)[aria-current="page"],
.nav-services-btn.is-active,
.nav-services-btn[aria-current="true"] { color: var(--ink); font-weight: 600; border-bottom-color: var(--gold); }

/* Services Dropdown in Main Nav */
.nav-services-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-inline-start: auto;
  margin-left: auto;
}

.nav-services-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-60);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color .16s ease, border-color .16s ease;
}

.nav-services-btn:hover,
.nav-services-wrap:hover .nav-services-btn,
.nav-services-btn[aria-expanded="true"] {
  color: var(--ink);
}

.nav-services-btn.is-active,
.nav-services-btn[aria-current="true"] {
  color: var(--ink);
  font-weight: 600;
  border-bottom-color: var(--gold);
}

.nav-services-chevron {
  transition: transform .2s ease;
  color: var(--ink-45);
}

.nav-services-btn:hover .nav-services-chevron,
.nav-services-wrap:hover .nav-services-chevron,
.nav-services-btn[aria-expanded="true"] .nav-services-chevron {
  color: var(--gold-deep);
}

.nav-services-btn[aria-expanded="true"] .nav-services-chevron,
.nav-services-wrap:hover .nav-services-chevron {
  transform: rotate(180deg);
}

.nav-services-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #14120f;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  padding: 8px 6px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: servicesFadeIn .15s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 861px) {
  .nav-services-wrap:hover .nav-services-dropdown {
    display: flex !important;
  }
}

.nav-services-dropdown[hidden] {
  display: none;
}

@keyframes servicesFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-service-item {
  display: block;
  padding: 9px 14px !important;
  border-radius: 6px;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #e5dfd5 !important;
  text-decoration: none !important;
  border-bottom: none !important;
  white-space: nowrap !important;
  transition: background .15s ease, color .15s ease, padding-left .15s ease;
}

.nav-service-item:hover {
  background: rgba(212, 175, 55, 0.14) !important;
  color: var(--gold-deep) !important;
  padding-left: 17px !important;
}

.nav-service-item.is-active,
.nav-service-item[aria-current="page"] {
  background: rgba(212, 175, 55, 0.2) !important;
  color: #fff !important;
  font-weight: 600 !important;
}

.nav a.btn,
.site-header .btn {
  border-bottom: none !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  padding: 10px 22px !important;
  text-decoration: none !important;
  line-height: 1.2;
}
.nav a.btn-primary,
.site-header .btn-primary {
  background: var(--ink) !important;
  color: #ffffff !important;
  border: 1px solid var(--ink) !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all .2s ease;
}
.nav a.btn-primary:hover,
.site-header .btn-primary:hover {
  background: #2a251d !important;
  color: #ffffff !important;
  border-color: var(--gold) !important;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
  transform: translateY(-1px);
}
.nav a.btn-primary:active,
.site-header .btn-primary:active {
  background: #000000 !important;
  color: #ffffff !important;
  transform: translateY(0);
}

.nav-toggle {
  display: none; margin-left: auto;
  width: 42px; height: 42px; padding: 0;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill); cursor: pointer;
}
.nav-toggle span {
  display: block; width: 17px; height: 1.75px; background: var(--ink);
  position: relative; transition: transform .2s ease, background-color .2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.75px;
  background: var(--ink); transition: transform .2s ease, top .2s ease;
}
.nav-toggle span::before { top: -5.5px; }
.nav-toggle span::after  { top:  5.5px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* Progress header used by cart / checkout / booking */
.flow-steps {
  display: flex; align-items: center; gap: 12px; margin-left: auto;
  font-size: 12px; font-weight: 500; color: var(--ink-45); flex-wrap: wrap;
}
.flow-steps .is-current { color: var(--ink); font-weight: 600; }

/* Language & Country / Region Selectors */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px !important;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong) !important;
  background: var(--paper);
  font-size: 12.5px !important; font-weight: 600 !important;
  color: var(--ink) !important;
  transition: all .16s ease;
  white-space: nowrap;
}
.lang-toggle:hover {
  background: var(--cream) !important;
  border-color: var(--gold) !important;
  color: var(--gold-deep) !important;
  text-decoration: none !important;
}

.region-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav .region-select-wrap {
  margin-inline-start: auto;
  margin-left: auto;
}
.region-toggle-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px !important;
  border-radius: var(--radius-pill) !important;
  border: 1px solid var(--line-strong) !important;
  background: var(--paper) !important;
  font-family: inherit;
  font-size: 12.5px !important; font-weight: 600 !important;
  color: var(--ink) !important;
  cursor: pointer;
  transition: all .16s ease;
  white-space: nowrap;
}
.region-toggle-btn:hover,
.region-toggle-btn[aria-expanded="true"] {
  background: var(--cream) !important;
  border-color: var(--gold) !important;
  color: var(--gold-deep) !important;
}
.region-toggle-btn.region-badge-static {
  cursor: default !important;
  user-select: none;
}
.region-toggle-btn.region-badge-static:hover {
  background: var(--paper) !important;
  border-color: var(--line-strong) !important;
  color: var(--ink) !important;
}
.region-flag {
  font-size: 14px;
  line-height: 1;
}
.region-chevron {
  transition: transform .2s ease;
  color: var(--ink-45);
}
.region-toggle-btn[aria-expanded="true"] .region-chevron {
  transform: rotate(180deg);
  color: var(--gold-deep);
}
.region-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 215px;
  background: #14120f;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  padding: 6px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 3px;
  animation: regionFadeIn .15s cubic-bezier(0.16, 1, 0.3, 1);
}
.region-dropdown-menu[hidden] {
  display: none !important;
}
@keyframes regionFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.region-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 12px;
  border: 0;
  background: transparent;
  border-radius: var(--radius-sm);
  color: var(--on-dark);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background .14s ease, color .14s ease;
}
.region-option:hover {
  background: rgba(197, 160, 89, 0.15);
  color: #fff;
}
.region-option.is-active {
  background: rgba(197, 160, 89, 0.22);
  color: var(--gold-light);
  font-weight: 600;
}
.region-option .opt-flag {
  font-size: 16px;
  line-height: 1;
}
.region-option .opt-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.region-option .opt-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}
.region-option .opt-cur {
  font-size: 11px;
  color: var(--on-dark-60);
  font-family: var(--font-mono);
}
.region-option.is-active .opt-cur {
  color: var(--gold-light);
}

/* BNPL Badges (Tabby & Tamara) */
.bnpl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 12px;
  color: var(--ink);
  line-height: 1.4;
  margin-top: 6px;
}
.bnpl-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 4px;
  letter-spacing: .02em;
}
.bnpl-tabby {
  background: #2ee099;
  color: #0d3625;
}
.bnpl-tamara {
  background: #ff6e40;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   9. HERO
   -------------------------------------------------------------------------- */
.hero {
  display: grid; grid-template-columns: .95fr 1.05fr;
  gap: 48px; align-items: center;
  padding-block: 64px 52px;
}
.hero-copy { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.hero .ph, .hero-photo { height: 340px; }
.hero-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-sub { font-size: 15px; line-height: 1.65; color: var(--ink-60); max-width: 32em; }

/* Clean, modern typography-focused hero */
.hero-clean {
  display: block;
  padding-block: 72px 52px;
}
.hero-clean .hero-copy {
  max-width: 820px;
  gap: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}
.rotator-wrap {
  display: inline-block;
  color: var(--gold);
  position: relative;
  min-width: 4ch;
  vertical-align: baseline;
}
.rotator-word {
  display: inline-block;
  color: var(--gold);
  transition: opacity .25s ease, transform .25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.rotator-word.is-exiting {
  opacity: 0;
  transform: translateY(-8px);
}
.rotator-word.is-entering {
  opacity: 0;
  transform: translateY(8px);
}
.rotator-word.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-check-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg {
  width: 13px;
  height: 13px;
  display: block;
}
.hero-actions {
  margin-top: 8px;
  gap: 14px;
}

/* --------------------------------------------------------------------------
   Hero Two-Column & Treatment Showcase Overhaul
   -------------------------------------------------------------------------- */
.hero-two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  padding-block: 56px 64px;
}

/* License Pill Badge (Above Headline) */
.hero-license-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulseGreen 2.2s infinite;
  flex-shrink: 0;
}
.pulse-dot-sm {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulseGreen 2.2s infinite;
  flex-shrink: 0;
}
@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-lead {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-70, #4b4b52);
  margin: 0;
  max-width: 480px;
}

/* Hero Showcase Container (Right Column) */
.hero-showcase {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin-inline-start: auto;
}

/* Floating DHA License Accreditation Box */
.hero-floating-dha {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
  border: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow: 0 12px 30px rgba(20, 20, 22, 0.07), 0 2px 6px rgba(212, 175, 55, 0.1);
  margin-bottom: 16px;
  animation: floatHeroBadge 5.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes floatHeroBadge {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

.float-dha-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-dha-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.float-dha-body {
  flex: 1;
  min-width: 0;
}
.float-dha-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.float-dha-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.float-dha-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #927218;
  background: rgba(212, 175, 55, 0.14);
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}
.float-dha-sub {
  font-size: 12px;
  color: var(--ink-60, #71717a);
  margin: 3px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Category Grid on Right */
.hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hero-card-tile {
  background: #ffffff;
  border: 1px solid rgba(20, 20, 22, 0.08);
  border-radius: 18px;
  padding: 16px 16px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  min-height: 155px;
  box-shadow: 0 4px 18px rgba(20, 20, 22, 0.04);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s ease;
}
.hero-card-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20, 20, 22, 0.08), 0 2px 8px rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.45);
}

.hero-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.hero-tile-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-soft, #a3821a);
  background: rgba(212, 175, 55, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
}
.hero-tag-gold {
  color: #876510;
  background: rgba(212, 175, 55, 0.16);
}
.hero-tile-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream, #fbf9f5);
  border: 1px solid rgba(20, 20, 22, 0.08);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.hero-card-tile:hover .hero-tile-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
  transform: translate(2px, -2px);
}

.hero-tile-info {
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.hero-tile-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.015em;
}
.hero-tile-sub {
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-60, #71717a);
  margin: 0;
}

.hero-tile-img {
  align-self: flex-end;
  max-height: 85px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.07));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}
.hero-tile-img-pen {
  max-height: 78px;
}
.hero-tile-img-kit {
  max-height: 80px;
}
.hero-tile-img-skincare {
  max-height: 82px;
}
.hero-card-tile:hover .hero-tile-img {
  transform: scale(1.06) translateY(-3px);
}

/* Longevity custom flagship banner */
.hero-card-tile.hero-card-longevity {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 98px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.08);
  gap: 16px;
}
.hero-card-tile.hero-card-longevity:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
}
.hero-longevity-content {
  flex: 1;
  min-width: 0;
}
.hero-longevity-content .hero-tile-top {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.hero-longevity-content .hero-tile-info {
  margin-bottom: 0;
}
.hero-card-longevity .hero-tile-badge-graphic {
  align-self: center;
  margin-top: 0;
  width: auto;
  flex: none;
}
.hero-card-longevity .bio-age-pill {
  padding: 8px 16px;
}
.bio-age-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.25) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  padding: 10px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-card-tile:hover .bio-age-pill {
  transform: scale(1.06) translateY(-2px);
  border-color: var(--gold);
}
.bio-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #8c6b12;
  line-height: 1;
}
.bio-lbl {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-top: 3px;
}

@media (max-width: 1023px) {
  .hero-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 44px 52px;
  }
  .hero-showcase {
    max-width: 540px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-clean { padding-block: 36px 28px; }
  .hero-clean .hero-copy { gap: 20px; }
  .hero-title { font-size: clamp(28px, 7.5vw, 36px); line-height: 1.18; }
  .hero-check-item { font-size: 14.5px; }
  .hero-actions { flex-direction: column; width: 100%; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .hero-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-card-tile {
    min-height: 145px;
    padding: 16px;
  }
  .hero-card-tile.hero-card-longevity {
    grid-column: 1;
    flex-direction: column;
    align-items: flex-start;
    min-height: 145px;
    padding: 16px;
  }
  .hero-card-longevity .hero-longevity-content {
    width: 100%;
  }
  .hero-card-longevity .hero-longevity-content .hero-tile-top {
    width: 100%;
    justify-content: space-between;
  }
  .hero-card-longevity .hero-tile-badge-graphic {
    align-self: flex-end;
    margin-top: 10px;
    width: 100%;
  }
  .hero-floating-dha {
    padding: 12px 14px;
  }
  .float-dha-title {
    font-size: 12.5px;
  }
  .float-dha-sub {
    white-space: normal;
  }
}

.page-head { padding-block: 56px 32px; }
.page-head h1 { max-width: 16em; }

/* --------------------------------------------------------------------------
   10. TRUST BAR
   -------------------------------------------------------------------------- */
.trust {
  background: var(--cream);
  border-block: 1px solid var(--line);
}
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding-block: 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-80);
}
.trust-item .ring { width: 22px; height: 22px; }

/* --------------------------------------------------------------------------
   11. CARDS
   -------------------------------------------------------------------------- */
.card {
  display: flex; flex-direction: column; gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.card-flush { padding: 0; overflow: hidden; }
.card-cream { background: var(--cream); border-color: var(--line); }
.card-gold  { background: var(--cream-warm); border-color: var(--line-gold); }
.card-focus { background: var(--cream-warm); border: 2px solid var(--gold); }
.card-inert { background: var(--cream); border-color: var(--line-soft); }
.card-lg    { padding: 24px; }
.card-title { font-family: var(--font-display); font-weight: 700; font-size: 20px;
              line-height: 1.25; letter-spacing: -.015em; color: var(--ink); margin: 0; }
.title-accent { color: var(--gold); }
.card-note  { font-size: 12.5px; line-height: 1.6; color: var(--ink-60); margin: 0; }
.card-foot  { margin-top: auto; }

/* Link cards lift a little on hover so they read as clickable. */
a.card { color: inherit; }
a.card:hover { text-decoration: none; border-color: var(--line-strong); box-shadow: var(--shadow-sm); }

/* Pillar card (homepage "What we treat") */
.pillar .ph { height: 150px; }
.pillar .card-title { font-size: 20px; }
.pillar-media-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--cream);
  height: 165px;
  margin-bottom: 4px;
}
.pillar .media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
}
a.pillar:hover .media {
  transform: scale(1.04);
}
.pillar-soon { background: var(--cream); border-color: var(--line-soft); }
.pillar-soon .card-title, .pillar-soon .card-note { color: var(--ink-45); }

/* Medication card */
.card.med {
  display: flex;
  flex-direction: column;
}
.med-photo-wrap {
  height: 156px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: transparent;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: visible;
  position: relative;
  border: none;
  box-shadow: none;
  padding: 28px 8px 6px;
}
.med-photo-wrap .media {
  max-height: 114px;
  max-width: 96%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.25s ease;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.08));
}
.card.med:hover .med-photo-wrap .media {
  transform: scale(1.03);
}
.card.med .card-title {
  margin-top: 0;
  margin-bottom: 8px;
}
.card.med .card-note {
  margin-bottom: 16px;
}
.card.med .med-price {
  margin-top: auto;
  margin-bottom: 14px;
}
.card.med .rx-disclaimer {
  margin-top: 8px;
}
.med .ph { height: 132px; position: relative; }
.med-price { display: flex; align-items: baseline; gap: 7px; margin-top: auto; }
.med-price .amount { font-family: var(--font-display); font-size: 26px; color: var(--ink); }
.med-price .unit   { font-size: 12px; color: var(--ink-45); }
.lock-note {
  display: flex; align-items: center; gap: 7px; justify-content: center;
  font-size: 11.5px; font-weight: 600; color: var(--gold-deep);
}
.ph-flag {
  position: absolute; top: 0; left: 0;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: var(--paper); border: 1px solid var(--line-gold);
  font-size: 10px; font-weight: 600; letter-spacing: .04em;
  color: var(--gold-deep); text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
}
[dir="rtl"] .ph-flag {
  left: auto;
  right: 0;
}
.ph-flag-neutral { border-color: #e6e1d8; color: var(--ink-45); }

/* Skeleton bars — the canvas used these where copy is still to be written. */
.bar { height: 8px; border-radius: var(--radius-pill); background: var(--bar); }

/* Team cards (Leadership & medical team) */
.team-card {
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}
.team-photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--cream-warm);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s ease;
}
.team-card:hover .team-photo-wrap img {
  transform: scale(1.03);
}
.team-photo-wrap:has(img)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  background: linear-gradient(to top, var(--paper) 0%, rgba(255, 255, 255, 0.75) 45%, transparent 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}
.team-placeholder-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink-45);
}
.team-placeholder-avatar .avatar-monogram {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--gold);
}
.team-body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.team-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.team-cred {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold-deep);
  background: var(--cream-warm);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid var(--line-gold);
}
.team-role {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0;
}
.team-bio {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-60);
  margin: 6px 0 0;
}

/* --------------------------------------------------------------------------
   12. STEPS / NUMBERED LIST
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { display: flex; flex-direction: column; gap: 10px; }
.step-n { font-family: var(--font-display); font-size: 38px; line-height: 1; color: var(--gold); }
.step h3 { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--ink); }
.step p { font-size: 13px; line-height: 1.6; color: var(--ink-60); margin: 0; }

.checklist { display: flex; flex-direction: column; gap: 16px; }
.checklist-item { display: flex; gap: 14px; align-items: flex-start; }
.checklist-item .ring { width: 22px; height: 22px; margin-top: 2px; }
.checklist-item h4 { font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--ink); }
.checklist-item p { font-size: 12.5px; line-height: 1.65; color: var(--ink-60); margin: 4px 0 0; }

/* --------------------------------------------------------------------------
   13. STATS
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 26px; }
.stat-n { font-family: var(--font-display); font-size: 30px; line-height: 1.1; color: var(--ink); }
.stat-l { font-size: 12.5px; font-weight: 600; color: var(--ink-60); }

/* --------------------------------------------------------------------------
   14. FAQ ACCORDION  (native <details> — works with JS disabled)
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px 2px; cursor: pointer; list-style: none;
  font-size: 14.5px; font-weight: 600; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none; font-size: 17px; font-weight: 400;
  color: var(--ink-45); line-height: 1; transition: transform .18s ease, color .18s ease;
}
.faq details[open] > summary::after { content: "\2212"; color: var(--gold); }
.faq summary:hover { color: var(--gold-deep); }
.faq .faq-body {
  padding: 0 2px 20px; max-width: 60em;
  font-size: 13.5px; line-height: 1.8; color: var(--ink-60);
}
.faq-layout {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 36px; align-items: start;
}
.contact-layout {
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 36px; align-items: start;
}

/* --------------------------------------------------------------------------
   15. CTA BAND
   -------------------------------------------------------------------------- */
.cta {
  background: radial-gradient(ellipse at 50% 30%, #24201a 0%, #11100e 100%);
  border-top: 1px solid rgba(168, 130, 60, 0.15);
  border-radius: var(--radius);
  padding: 42px 40px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.cta-full { border-radius: 0; }
.cta-copy { flex: 1 1 320px; display: flex; flex-direction: column; gap: 8px; }
.cta h2 { color: var(--on-dark); font-size: clamp(24px, 3vw, 30px); }
.cta p  { color: var(--on-dark-60); font-size: 13px; margin: 0; }

/* --------------------------------------------------------------------------
   16. REVIEWS
   -------------------------------------------------------------------------- */
.review-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.review-head .score { font-family: var(--font-display); font-size: 32px; color: var(--ink); }

/* --------------------------------------------------------------------------
   17. FOOTER (Glossy Piano-Black)
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #181512 0%, #0d0c0a 90px, #040404 100%);
  border-top: 1px solid rgba(211, 180, 115, 0.35);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.18), 0 -12px 36px rgba(0, 0, 0, 0.6);
  color: var(--on-dark-75);
  margin-top: 0;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.015) 55%, transparent 75%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid; grid-template-columns: 1.4fr 0.9fr 1.1fr 1.3fr;
  gap: 36px; padding-block: 52px 36px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800; font-size: 14.5px; color: var(--on-dark);
  display: inline-flex; align-items: center; gap: 10px;
}
.footer-brand svg { width: 22px; height: 22px; color: var(--gold-light); }
.footer-brand .brand-sub {
  color: var(--on-dark-60);
  border-left-color: var(--on-dark-line);
}
.site-footer p { font-size: 13px; line-height: 1.75; color: var(--on-dark-60); max-width: 30em; }
.footer-heading {
  font: 600 11px var(--font-mono); letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-light); margin: 0 0 6px;
}
.footer-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 13px; color: var(--on-dark-75); }
.footer-list li { font-size: 13px; line-height: 1.5; color: var(--on-dark-75); }
.footer-list a, .site-footer a { color: var(--on-dark-75); font-size: 13px; text-decoration: none; }
.footer-list a:hover, .site-footer a:hover { color: var(--on-dark); text-decoration: underline; }
.footer-license { font-size: 12.5px; font-weight: 600; color: var(--gold-light); }
.footer-licensed { font-size: 12.5px; font-weight: 600; color: var(--on-dark); }

.footer-subscribe {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.footer-input-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  padding: 4px 4px 4px 14px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.footer-input-wrap:focus-within {
  border-color: var(--gold-light);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(211, 180, 115, 0.25);
  background: rgba(255, 255, 255, 0.08);
}
.footer-input {
  background: transparent;
  border: 0;
  color: var(--on-dark);
  font-size: 13px;
  flex: 1;
  outline: none;
  min-width: 0;
}
.footer-input::placeholder {
  color: var(--on-dark-60);
}
.footer-subscribed {
  color: var(--gold-light);
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 0;
}

.social { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.social a {
  width: 34px; height: 34px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12), 0 2px 6px rgba(0, 0, 0, 0.4);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--on-dark-75);
  transition: all .2s cubic-bezier(0.16, 1, 0.3, 1);
}
.social a:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(211, 180, 115, 0.12);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 4px 12px rgba(0, 0, 0, 0.5);
}
.social svg { width: 15px; height: 15px; }

.footer-disclaimer {
  display: none !important;
}

/* Style C: Subtle Modern Architectural Watermark (Enlarged) */
.footer-wordmark-strip {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  margin: 16px 0 6px;
  padding: 30px 0 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.4);
  user-select: none;
  pointer-events: none;
  line-height: 0.88;
  box-sizing: border-box;
  container-type: inline-size;
}
.footer-wordmark {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 13.6vw, 11rem);
  font-size: clamp(2.8rem, 14.6cqw, 11.2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.38) 0%, rgba(212, 175, 55, 0.09) 85%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.2px rgba(212, 175, 55, 0.28);
  filter: drop-shadow(0 4px 28px rgba(212, 175, 55, 0.10));
  transition: all 0.4s ease;
}
.footer-wordmark .brand-peak {
  display: inline-block;
  color: inherit;
  background: linear-gradient(180deg, rgba(245, 215, 110, 0.55) 0%, rgba(212, 175, 55, 0.18) 85%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.2px rgba(245, 215, 110, 0.36);
}
.site-footer:hover .footer-wordmark {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.50) 0%, rgba(212, 175, 55, 0.14) 85%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.2px rgba(212, 175, 55, 0.40);
  filter: drop-shadow(0 6px 36px rgba(212, 175, 55, 0.20));
}
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.6);
  padding-block: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--on-dark-60);
}
.footer-bottom nav { margin-left: auto; display: flex; gap: 18px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   18. FORMS
   -------------------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field > label, .field-label {
  font-size: 12.5px; font-weight: 600; color: var(--ink);
}
.field-hint { font-size: 11.5px; color: var(--ink-45); }

.input, .select, .textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 18px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.textarea { border-radius: var(--radius); min-height: 96px; resize: vertical; line-height: 1.6; }
.input::placeholder, .textarea::placeholder { color: var(--ink-30); }
.input:hover, .textarea:hover, .select:hover { border-color: var(--ink-30); }
.input:focus-visible, .textarea:focus-visible, .select:focus-visible {
  border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(168, 130, 60, .18);
}
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%236a655c' stroke-width='1.75' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 20px center;
  padding-right: 44px; cursor: pointer;
}
.input.is-error, .textarea.is-error, .select.is-error { border-color: #b5462f; }
.error-msg { font-size: 12px; font-weight: 600; color: #b5462f; }
.error-msg:empty { display: none; }

/* Checkbox / radio rows drawn as tappable cards */
.opt {
  display: flex; align-items: center; gap: 11px;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
  font-size: 13px; font-weight: 500; color: var(--ink-80);
  transition: border-color .14s ease, background-color .14s ease;
}
.opt:hover { border-color: var(--gold); background: var(--cream-warm); }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt .box {
  width: 18px; height: 18px; flex: none;
  border-radius: 6px; border: 2.75px solid var(--line-strong);
  display: grid; place-items: center;
  transition: border-color .14s ease, background-color .14s ease;
}
.opt .box::after {
  content: ""; width: 8px; height: 4px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0); transition: transform .14s ease;
  margin-top: -2px;
}
.opt input:checked ~ .box { border-color: var(--gold); background: var(--gold); }
.opt input:checked ~ .box::after { transform: rotate(-45deg) scale(1); }
.opt:has(input:checked) { border-color: var(--gold); background: var(--cream-warm); }
.opt input:focus-visible ~ .box { outline: 2px solid var(--gold); outline-offset: 2px; }

.opt-radio .box { border-radius: var(--radius-pill); }
.opt-radio .box::after {
  content: ""; width: 8px; height: 8px; border: 0; border-radius: 50%;
  background: #fff; transform: scale(0); margin: 0;
}
.opt-radio input:checked ~ .box::after { transform: scale(1); }

/* Pill-style single choices */
.choices { display: flex; flex-wrap: wrap; gap: 9px; }
.choice {
  display: inline-flex; align-items: center;
  padding: 11px 22px; border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong); background: var(--paper);
  font-size: 12.5px; font-weight: 600; color: var(--ink);
  cursor: pointer; transition: all .14s ease;
}
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice:hover { border-color: var(--gold); background: var(--cream-warm); }
.choice:has(input:checked) { border-color: var(--gold); background: var(--gold); color: #fff; }
.choice input:focus-visible ~ span { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 4px; }

/* Fallback for browsers without :has() — the checkbox/radio marks above
   already work via the sibling combinator, but the pill fills do not. This
   block only applies where :has() is unsupported, so it can never double up. */
@supports not selector(:has(*)) {
  .choice input:checked ~ span {
    display: inline-block;
    margin: -11px -22px; padding: 11px 22px;
    border-radius: var(--radius-pill);
    background: var(--gold); color: #fff;
  }
  .opt input:checked ~ .box { border-color: var(--gold); background: var(--gold); }
  .opt-card input:checked ~ .box { border-color: var(--gold); background: var(--gold); }
}

/* Radio card used for refill cadence / delivery choices */
.opt-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--paper); cursor: pointer;
  transition: border-color .14s ease, background-color .14s ease;
}
.opt-card:hover { border-color: var(--gold); }
.opt-card:has(input:checked) { border: 2px solid var(--gold); background: var(--cream-warm); padding: 15px; }
.opt-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt-card .box {
  width: 20px; height: 20px; flex: none; border-radius: var(--radius-pill);
  border: 2.75px solid var(--line-strong); display: grid; place-items: center;
}
.opt-card:has(input:checked) .box { border-color: var(--gold); background: var(--gold); }
.opt-card:has(input:checked) .box::after {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff;
}
.opt-card .opt-main { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.opt-card .opt-title { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.opt-card .opt-sub   { font-size: 12px; color: var(--ink-45); }
.opt-card .opt-price { font-size: 13.5px; font-weight: 600; color: var(--ink); }

/* Upload dropzones */
.dropzone {
  flex: 1; min-height: 96px;
  border: 1.5px dashed var(--line-strong); border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 14px; text-align: center; cursor: pointer;
  background: var(--paper); transition: border-color .14s ease, background-color .14s ease;
}
.dropzone:hover { border-color: var(--gold); background: var(--cream-warm); }
.dropzone strong { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.dropzone span { font-size: 11.5px; color: var(--ink-45); }
.dropzone input { position: absolute; opacity: 0; width: 0; height: 0; }
.dropzone.has-file { border-style: solid; border-color: var(--gold); background: var(--cream-warm); }

/* --------------------------------------------------------------------------
   19. ASSESSMENT
   -------------------------------------------------------------------------- */
.assessment-shell {
  max-width: 800px; margin-inline: auto;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.assessment-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 16px;
  font: 500 11px var(--font-mono); letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-45);
}
.assessment-meta .actions { display: flex; gap: 14px; text-transform: none; letter-spacing: 0; }
.progress { display: flex; gap: 6px; margin-bottom: 26px; }
.progress span { flex: 1; height: 5px; border-radius: var(--radius-pill); background: #e0d9c9; }
.progress span.is-done { background: var(--gold); }

.safety-panel {
  border: 2px solid var(--gold); background: var(--cream-warm);
  border-radius: var(--radius); padding: 26px;
  display: flex; flex-direction: column; gap: 22px;
}
.q { display: flex; flex-direction: column; gap: 11px; }
.q > .field-label { font-size: 14.5px; }

.step-panel { display: none; }
.step-panel.is-active { display: block; }

/* Result screens */
.result-card {
  max-width: 660px; margin-inline: auto;
  background: var(--paper); border: 1px solid var(--line-strong);
  border-radius: var(--radius); padding: 34px;
  box-shadow: var(--shadow-sm);
}
.option-row {
  display: flex; gap: 16px; align-items: center;
  padding: 20px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--paper);
}
.option-row.is-recommended { border: 2px solid var(--gold); background: var(--cream-warm); padding: 19px; }
.option-row.is-blocked { background: var(--cream); border-color: var(--line-soft); }
.option-row.is-blocked .option-name { color: var(--ink-45); }
.option-thumb {
  width: 72px; height: 72px; flex: none; border-radius: var(--radius);
  background: var(--stripe);
}
.option-main { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.option-name { font-size: 14px; font-weight: 600; color: var(--ink); }

.notice {
  padding: 17px 20px; border-radius: var(--radius);
  background: var(--cream); border: 1px solid var(--line);
  font-size: 12.5px; line-height: 1.7; color: var(--ink-60);
}
.notice-gold { background: var(--cream-warm); border-color: var(--line-gold); }

/* Category selection screen */
.category-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.cat-card {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all .25s ease;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.07);
}
.cat-card.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
  background: var(--cream-warm);
}
.cat-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cat-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--cream-warm);
  border: 1px solid var(--line-gold);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
}
.cat-icon-wrap svg {
  width: 22px;
  height: 22px;
}
.cat-badge {
  font: 600 11px var(--font-mono);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-60);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.cat-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 8px;
}
.cat-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-80);
  margin: 0 0 16px;
}
.cat-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12.5px;
  color: var(--ink-60);
}
.cat-highlights li {
  position: relative;
  padding-left: 16px;
}
.cat-highlights li::before {
  content: "•";
  position: absolute;
  left: 2px;
  color: var(--gold-deep);
  font-size: 14px;
}
.cat-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cat-price {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-deep);
}

/* Category header bar on assessment stage */
.assess-category-bar {
  max-width: 800px;
  margin: 0 auto 24px;
  padding: 12px 20px;
  background: var(--cream-warm);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.assess-cat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.assess-cat-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.btn-change-cat {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-80);
  cursor: pointer;
  transition: all .2s ease;
}
.btn-change-cat:hover {
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

/* Pillar questions visibility */
.pillar-questions {
  display: none;
}
.pillar-questions.is-active {
  display: block;
}

/* Live BMI Calculator Box */
.bmi-live-box {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--cream-warm);
  border: 1.5px solid var(--gold);
  animation: fadeIn .3s ease;
}
#wl-bmi-badge {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}


/* --------------------------------------------------------------------------
   20. CART / CHECKOUT
   -------------------------------------------------------------------------- */
.commerce { display: grid; grid-template-columns: 1.4fr .9fr; gap: 36px; align-items: start; }
.summary-rail { display: flex; flex-direction: column; gap: 14px; position: sticky; top: calc(var(--header-h) + 20px); }
.summary {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; flex-direction: column; gap: 12px;
  background: var(--paper);
}
.summary-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
               font-size: 13px; color: var(--ink-80); }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 6px;
}
.summary-total strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.summary-total .amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
}

.line-item {
  display: flex; gap: 18px; padding: 20px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper);
}
.line-item .thumb {
  width: 80px; height: 80px; flex: none; border-radius: var(--radius);
  background: var(--stripe);
}
.line-item .thumb-consult {
  display: grid; place-items: center; background: transparent;
  border: 2.75px solid var(--gold);
  font: 600 10px var(--font-mono); color: var(--gold-deep);
}
.line-item .body { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.line-item .name { font-size: 14px; font-weight: 600; color: var(--ink); }

.qty {
  display: inline-flex; align-items: center; gap: 4px;
  border: 1px solid var(--line-strong); border-radius: var(--radius-pill);
  padding: 4px;
}
.qty button {
  width: 28px; height: 28px; border: 0; background: transparent; cursor: pointer;
  border-radius: 50%; font-size: 15px; line-height: 1; color: var(--ink);
}
.qty button:hover { background: var(--cream); }
.qty output { min-width: 22px; text-align: center; font-size: 13px; font-weight: 600; color: var(--ink); }

.pay-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .pay-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.pay-tab {
  height: 52px;
  padding: 8px 14px;
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  position: relative;
  outline: none;
}
.pay-tab:hover {
  border-color: var(--gold);
  background: var(--cream-warm);
}
.pay-tab.active,
.pay-tab[aria-pressed="true"] {
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 0 0 1px var(--gold), 0 3px 10px rgba(184, 146, 74, 0.15);
}
.pay-tab svg {
  display: block;
  max-width: 100%;
  max-height: 26px;
  transition: transform 0.18s ease;
}
.pay-tab:hover svg {
  transform: scale(1.04);
}

/* Delivery Speed Options */
.delivery-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 860px) {
  .delivery-options {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.delivery-card {
  padding: 13px 14px;
  background: var(--paper);
  border: 1.5px solid var(--line-gold, #e6dac0);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, transform 0.15s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  user-select: none;
  position: relative;
}
.delivery-card:hover {
  border-color: var(--gold);
  background: var(--cream-warm);
}
.delivery-card.active {
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 0 0 1px var(--gold), 0 3px 12px rgba(184, 146, 74, 0.14);
}
.delivery-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 26px;
}
.delivery-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.delivery-card .badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  flex: none !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  padding: 3px 10px !important;
  border-radius: 999px !important;
  line-height: 1.3 !important;
  box-sizing: border-box !important;
}
.delivery-badge-gold {
  background: var(--gold-soft, #fbf7ee) !important;
  color: var(--gold-deep, #8b6b29) !important;
  border: 1px solid var(--gold, #b8924a) !important;
  box-shadow: 0 1px 2px rgba(184, 146, 74, 0.08);
}
.delivery-badge-free {
  background: #eef7ee !important;
  color: #1e6b2d !important;
  border: 1px solid #b8e0bf !important;
  box-shadow: 0 1px 2px rgba(30, 107, 45, 0.06);
}

.slot-reserved {
  padding: 20px; border: 1px dashed var(--line-strong); border-radius: var(--radius);
  display: flex; align-items: center; gap: 18px;
  font-size: 12.5px; line-height: 1.6; color: var(--ink-45);
}
.slot-reserved .box { width: 44px; height: 44px; flex: none; border-radius: var(--radius); background: var(--cream-flat); }

.empty-state { text-align: center; padding: 60px 20px; }

/* --------------------------------------------------------------------------
   21. BOOKING
   -------------------------------------------------------------------------- */
.booking { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; }
.calendar { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
            display: flex; flex-direction: column; gap: 16px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-strong);
  background: var(--paper); cursor: pointer; color: var(--ink-60); line-height: 1;
}
.cal-nav button:hover:not([disabled]) { border-color: var(--gold); color: var(--gold-deep); }
.cal-nav button[disabled] { opacity: .35; cursor: not-allowed; }
.cal-dow, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; }
.cal-dow div { font: 600 10px var(--font-mono); color: var(--ink-45); text-align: center; }
.cal-grid button, .cal-grid span {
  aspect-ratio: 1; display: grid; place-items: center;
  border-radius: 50%; border: 0; background: transparent;
  font-size: 13px; font-weight: 600; color: var(--ink-20); cursor: default;
}
.cal-grid button { background: var(--cream); color: var(--ink); cursor: pointer; }
.cal-grid button:hover { background: var(--cream-flat); }
.cal-grid button[aria-pressed="true"] { background: var(--ink); color: #fff; }
.cal-legend { display: flex; align-items: center; gap: 16px; font-size: 11px; color: var(--ink-45); flex-wrap: wrap; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

.slots { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.slot {
  padding: 13px; border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong); background: var(--paper);
  font-size: 13px; font-weight: 600; color: var(--ink); cursor: pointer;
  transition: all .14s ease;
}
.slot:hover:not([disabled]) { border-color: var(--gold); background: var(--cream-warm); }
.slot[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: #fff; }
.slot[disabled] { background: var(--cream); border-color: var(--line-soft); color: var(--ink-20); cursor: not-allowed; }

/* --------------------------------------------------------------------------
   22. ACCOUNT
   -------------------------------------------------------------------------- */
.account { display: grid; grid-template-columns: 220px 1fr; min-height: 620px; }
.account-nav {
  border-right: 1px solid var(--line); background: var(--cream);
  padding: 24px 18px; display: flex; flex-direction: column; gap: 5px;
}
.account-nav a {
  padding: 11px 16px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500; color: var(--ink-80); text-decoration: none;
}
.account-nav a:hover { background: rgba(20, 18, 15, .05); color: var(--ink); text-decoration: none; }
.account-nav a[aria-current="page"] { background: var(--ink); color: #fff; font-weight: 600; }
.account-main { padding: 30px 32px; display: flex; flex-direction: column; gap: 22px; }
.account-panel { display: flex; flex-direction: column; gap: 22px; animation: fadeIn 0.15s ease-out; }
.account-panel[hidden] { display: none !important; }

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

.avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: var(--cream-flat); display: grid; place-items: center;
  font-size: 12px; font-weight: 600; color: var(--ink-60);
}
.avatar-ink { background: var(--ink); color: #fff; }

.table-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table th {
  text-align: left; padding: 13px 20px; background: var(--cream);
  font-size: 11.5px; font-weight: 600; color: var(--ink-60);
  text-transform: uppercase; letter-spacing: .04em;
}
.table td { padding: 15px 20px; border-top: 1px solid var(--line-soft); color: var(--ink-80); }

.msg-row { display: flex; gap: 12px; align-items: flex-start; }
.msg-row .body { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.unread { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: none; margin-top: 6px; }

/* --------------------------------------------------------------------------
   23. BLOG
   -------------------------------------------------------------------------- */
.post-lead .ph { height: 300px; border-radius: var(--radius) var(--radius) 0 0; }
.post-lead { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
             display: flex; flex-direction: column; }
.post-lead .body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.post-mini { display: flex; gap: 14px; padding: 16px; border: 1px solid var(--line);
             border-radius: var(--radius); }
.post-mini .thumb { width: 88px; height: 88px; flex: none; border-radius: var(--radius); background: var(--stripe); }
.post-card .ph { height: 170px; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   24. LEGAL / LONG-FORM
   -------------------------------------------------------------------------- */
.prose { max-width: 46em; }
.prose h2 { font-size: 25px; margin: 40px 0 12px; }
.prose h3 { font-family: var(--font-body); font-weight: 600; font-size: 16px;
            color: var(--ink); margin: 26px 0 8px; }
.prose p, .prose li { font-size: 14px; line-height: 1.85; color: var(--ink-60); }
.prose ul { padding-left: 22px; }
.prose > :first-child { margin-top: 0; }

.toc {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.toc a { font-size: 13px; }

/* --------------------------------------------------------------------------
   24.5. LONGEVITY PROGRAM
   -------------------------------------------------------------------------- */
.longevity-hero-card {
  background: radial-gradient(ellipse at 70% 30%, #221e17 0%, #0c0b09 100%);
  border: 1px solid rgba(168, 130, 60, 0.28);
  border-radius: var(--radius-lg, 16px);
  padding: 56px 44px;
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
.longevity-hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.longevity-hero-copy h1 {
  color: #ffffff;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.15;
  margin: 14px 0 16px;
}
.longevity-hero-copy p.lede {
  color: var(--on-dark-75);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 34em;
  margin-bottom: 26px;
}
.longevity-pill-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 130, 60, 0.15);
  border: 1px solid rgba(168, 130, 60, 0.35);
  color: var(--gold-light);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: .04em;
}
.longevity-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 239, 228, 0.12);
}
.longevity-stat-item h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
}
.longevity-stat-item p {
  font-size: 11.5px;
  color: var(--on-dark-60);
  margin: 0;
  line-height: 1.4;
}

/* Age Visualizer */
.bio-age-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.bio-age-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bio-age-gauge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  position: relative;
}
.bio-age-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(168,130,60,0.18) 0%, transparent 70%);
  box-shadow: 0 0 30px rgba(168,130,60,0.25);
}
.bio-age-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.bio-age-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.bio-age-compare {
  display: flex;
  justify-content: space-around;
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
}
.bio-age-compare .val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.bio-age-compare .lbl {
  font-size: 11px;
  color: var(--on-dark-60);
}

/* Biomarker Category Grid */
.biomarker-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s, border-color .2s;
}
.biomarker-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}
.biomarker-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.biomarker-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.biomarker-list li {
  font-size: 13px;
  color: var(--ink-75);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.biomarker-list li::before {
  content: "•";
  color: var(--gold);
  font-weight: bold;
}

/* Comparison Section */
.longevity-compare-section {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 56px;
  align-items: start;
}
.longevity-compare-copy {
  position: sticky;
  top: 100px;
}
.longevity-compare-copy h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.15;
  margin: 0 0 28px;
  color: var(--ink);
}
.longevity-compare-table {
  width: 100%;
  border-collapse: collapse;
}
.longevity-compare-table th, .longevity-compare-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  vertical-align: middle;
}
.longevity-compare-table th {
  font-weight: 700;
  color: var(--ink);
  padding-bottom: 20px;
  font-size: 14px;
}
.longevity-compare-table th:nth-child(2),
.longevity-compare-table td:nth-child(2) {
  text-align: center;
  width: 140px;
}
.longevity-compare-table th:nth-child(3),
.longevity-compare-table td:nth-child(3) {
  text-align: center;
  width: 140px;
}
.comp-feature {
  color: var(--ink-75);
  font-weight: 500;
}
/* Circular gold checkmark */
.comp-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-deep);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}
.comp-check svg {
  width: 13px;
  height: 13px;
}
/* Muted cross */
.comp-cross {
  font-size: 19px;
  color: #a8a49e;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  line-height: 1;
}

/* Steps Centered */
.steps-centered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 36px;
}
.step-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-num-pill {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-centered h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.step-centered p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-60);
  max-width: 290px;
  margin: 0 auto;
}

/* NAD+ Card */
.nad-card-wrap {
  text-align: center;
  margin-top: 24px;
}
.nad-card-wrap h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 24px;
  color: var(--ink);
}
.nad-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 840px;
  margin-inline: auto;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
  text-align: left;
}
.nad-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.nad-card-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nad-card-left {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
}
.nad-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d8bf97 0%, #a67c52 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.nad-card-info h4 {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}
.nad-card-info p {
  font-size: 13.5px;
  color: var(--ink-60);
  margin: 0;
  line-height: 1.4;
}
.nad-card-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nad-arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.nad-expanded-content {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  animation: nadFadeIn .25s ease-out;
}
@keyframes nadFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.nad-science-intro {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-75);
  margin-bottom: 20px;
}
.nad-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}
.nad-benefit-box {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 16px 18px;
}
.nad-benefit-box h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nad-benefit-box p {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-60);
  margin: 0;
}
.nad-expanded-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 24px;
}
.pricing-tier-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg, 16px);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.pricing-tier-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 14px 32px rgba(0,0,0,0.06);
}
.pricing-tier-featured {
  background: linear-gradient(to bottom, #ffffff 0%, #faf8f4 100%);
  border: 2px solid var(--gold);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  right: 28px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
}
.tier-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
}
.tier-unit {
  font-size: 13px;
  color: var(--ink-45);
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.tier-features li {
  font-size: 13.5px;
  color: var(--ink-75);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tier-features li svg {
  width: 16px;
  height: 16px;
  color: var(--gold-deep);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   24.6 INTERACTIVE TREATMENT SELECTOR
   ========================================================================== */
.rx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.rx-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 24px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  text-align: center;
}
.rx-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.rx-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream-chip);
  border: 1px solid var(--line-gold);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  white-space: nowrap;
}
.rx-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}
.rx-clinical-note {
  font-size: 12px;
  color: var(--gold-deep);
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 14px;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rx-pill-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.rx-pill-img {
  max-height: 64px;
  max-width: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
}
/* Luxury Clinical Bottle Packaging Showcase */
.rx-bottle-wrap {
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0 16px;
  position: relative;
}
.rx-bottle-img {
  max-height: 165px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.1));
}
.rx-card:hover .rx-bottle-img {
  transform: scale(1.03);
}
.rx-molecule-note {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-45);
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.rx-features-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.rx-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-75);
}
.rx-features-list svg {
  color: var(--gold-deep);
  flex-shrink: 0;
  margin-top: 2px;
}
.rx-features-list strong {
  color: var(--ink);
  font-weight: 600;
}
.rx-dosage {
  font-size: 12px;
  color: var(--ink-45);
  font-weight: 600;
  margin-bottom: 0;
}
.rx-section {
  text-align: left;
  margin-bottom: 16px;
}
.rx-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
  display: block;
}
.rx-sublabel {
  font-size: 11.5px;
  color: var(--ink-45);
  margin-bottom: 8px;
  line-height: 1.35;
  display: block;
}
.rx-toggle-group {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  background: var(--cream-flat);
  padding: 3px;
  border-radius: 10px;
  gap: 3px;
}
.rx-toggle-btn {
  border: none;
  background: transparent;
  padding: 8px 10px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-60);
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, box-shadow .15s ease;
  letter-spacing: .04em;
}
.rx-toggle-btn.is-active {
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.rx-count-group {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  background: var(--cream-flat);
  padding: 3px;
  border-radius: 10px;
  gap: 3px;
}
.rx-count-btn {
  border: none;
  background: transparent;
  padding: 9px 8px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-60);
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.rx-count-btn.is-active {
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.rx-cta-wrap {
  margin-top: auto;
  padding-top: 18px;
}

.rx-price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.rx-price-box-libido {
  max-width: 480px;
  width: 100%;
  margin: 0 auto 12px;
}

.rx-price-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.rx-price-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
}

.rx-price-sub {
  font-size: 11px;
  color: var(--ink-45);
  font-weight: 500;
}

.rx-price-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Luxury Glossy Piano-Black CTA Buttons */
.rx-btn-glossy,
.rx-select-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, #2c2925 0%, #161412 52%, #0a0908 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.28), 0 4px 14px rgba(0, 0, 0, 0.26) !important;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
}

.rx-btn-glossy::after,
.rx-select-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: var(--radius-pill) var(--radius-pill) 0 0;
  pointer-events: none;
}

.rx-btn-glossy:hover,
.rx-select-btn:hover {
  background: linear-gradient(180deg, #38342e 0%, #1f1c18 52%, #110f0d 100%) !important;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.42), 0 6px 20px rgba(0, 0, 0, 0.36) !important;
  transform: translateY(-1px);
  color: #ffffff !important;
}

.rx-btn-glossy:active,
.rx-select-btn:active {
  background: #0d0c0a !important;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.6), 0 2px 6px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(1px);
}

.rx-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-60);
  margin: 10px 0 0;
  text-align: center;
  line-height: 1.4;
}

.rx-disclaimer svg {
  display: inline-block;
  flex: none;
  color: var(--gold-deep);
}

/* ==========================================================================
   Diagnostic Biomarker Panel Card (Low Libido & Endocrine Panels)
   ========================================================================== */
.rx-diagnostic-card {
  background: var(--paper);
  border: 1.5px solid var(--line-gold);
  border-radius: 20px;
  padding: 40px 36px 36px;
  box-shadow: var(--shadow-sm);
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-sizing: border-box;
}

.rx-diagnostic-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.rx-diagnostic-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.rx-diagnostic-title-wrap {
  max-width: 540px;
}

.rx-diagnostic-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}

.rx-diagnostic-desc {
  font-size: 13.5px;
  color: var(--ink-60);
  line-height: 1.55;
  margin: 0;
}

.rx-diagnostic-price-wrap {
  text-align: right;
}

[dir="rtl"] .rx-diagnostic-price-wrap {
  text-align: left;
}

.rx-diagnostic-price-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.rx-diagnostic-price-sub {
  font-size: 12px;
  color: var(--ink-45);
  margin-top: 4px;
}

.rx-diagnostic-biomarkers {
  background: var(--cream-chip);
  border: 1px solid var(--line-gold);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 28px;
}

.rx-diagnostic-biomarkers-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.rx-diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.rx-diagnostic-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.rx-diagnostic-item svg {
  color: var(--gold-deep);
  flex-shrink: 0;
}

.rx-diagnostic-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
  font-size: 12.5px;
  color: var(--ink-60);
  line-height: 1.5;
}

.rx-diagnostic-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.rx-diagnostic-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-flat);
  border: 1px solid var(--line-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 12.5px;
  flex-shrink: 0;
}

.rx-diagnostic-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media (max-width: 640px) {
  .rx-diagnostic-card {
    padding: 28px 20px 24px;
  }
  .rx-diagnostic-price-wrap {
    text-align: left;
  }
  [dir="rtl"] .rx-diagnostic-price-wrap {
    text-align: right;
  }
}

/* --------------------------------------------------------------------------
   CHECKOUT OVERHAUL: VALIDATION, LUXURY MAP & PAYMENT METHODS
   -------------------------------------------------------------------------- */
.req {
  color: #dc2626;
  font-weight: 700;
  margin-left: 2px;
}
.opt-label {
  font-size: 11.5px;
  font-weight: normal;
  color: var(--ink-45);
  margin-left: 4px;
}

.dropzone.has-error {
  border-color: #dc2626 !important;
  background: #fef2f2 !important;
}
.dropzone.has-file {
  border-color: var(--gold) !important;
  background: var(--cream-warm) !important;
  border-style: solid !important;
}
.dropzone.has-file strong {
  color: var(--gold-deep) !important;
}
.field.has-error .input,
.field.has-error .select {
  border-color: #dc2626 !important;
  background: #fffdfd !important;
}

/* Luxury Interactive UAE Map */
.checkout-map-card {
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #1a1917;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.map-visual-wrap {
  position: relative;
  width: 100%;
  height: 170px;
  background: #14120f;
  cursor: crosshair;
  overflow: hidden;
  user-select: none;
}
.map-bg-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.map-pin-indicator {
  position: absolute;
  transform: translate(-50%, -100%);
  pointer-events: none;
  transition: top 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), left 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}
.pin-pulse {
  position: absolute;
  bottom: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(168, 130, 60, 0.4);
  animation: pinPulse 2s infinite ease-out;
  transform: translateY(50%);
}
@keyframes pinPulse {
  0% { transform: translateY(50%) scale(0.4); opacity: 1; }
  100% { transform: translateY(50%) scale(2.4); opacity: 0; }
}
.pin-head {
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #d4af37, #a8823c);
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
  border: 2px solid #ffffff;
}
.pin-head svg {
  transform: rotate(45deg);
}
.pin-callout {
  position: absolute;
  bottom: 36px;
  background: rgba(20, 18, 15, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.pin-title {
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
}
.pin-coords {
  font-size: 9.5px;
  font-family: var(--font-mono);
  color: var(--gold-light);
}
.map-overlay-hint {
  position: absolute;
  bottom: 8px;
  right: 12px;
  background: rgba(20, 18, 15, 0.75);
  color: rgba(255, 255, 255, 0.75);
  font-size: 10.5px;
  padding: 3px 8px;
  border-radius: 4px;
  pointer-events: none;
}
.map-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--paper);
  border-top: 1px solid var(--line-gold);
  flex-wrap: wrap;
  gap: 10px;
}
.map-gps-status {
  font-size: 11.5px;
  color: var(--ink-60);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Payment Panels */
.btn-applepay:hover {
  background: #1c1c1c !important;
}
.btn-gpay:hover {
  background: #1c1c1c !important;
}

/* --------------------------------------------------------------------------
   25. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1240px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  :root { --gutter: 28px; }
  .hero { grid-template-columns: 1fr; gap: 32px; padding-block: 44px 36px; }
  .hero .ph, .hero-photo { height: 260px; order: -1; }
  .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .steps  { grid-template-columns: repeat(2, 1fr); }
  .commerce { grid-template-columns: 1fr; }
  .summary-rail { position: static; }
  .booking { grid-template-columns: 1fr; }
  .account { grid-template-columns: 1fr; }
  .account-nav {
    border-right: 0; border-bottom: 1px solid var(--line);
    flex-direction: row; overflow-x: auto; padding: 14px 18px;
  }
  .account-nav a { white-space: nowrap; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 12px 28px 26px;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    margin-left: 0;
    flex: none;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav-services-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line-soft);
    margin-inline-start: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .nav-services-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: none;
    color: var(--ink);
    background: transparent;
  }
  .nav-services-btn.is-active,
  .nav-services-btn[aria-current="true"] {
    color: var(--gold-deep);
  }
  .nav-services-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: var(--radius-sm);
    background: #191612;
    margin: 0 0 10px 0;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .nav-services-dropdown[hidden] {
    display: none !important;
  }
  .nav a.nav-service-item {
    padding: 10px 14px !important;
    font-size: 14.5px !important;
    color: #e5dfd5 !important;
    border-bottom: none !important;
    border-radius: var(--radius-sm);
  }
  .nav a.nav-service-item:hover,
  .nav a.nav-service-item.is-active,
  .nav a.nav-service-item[aria-current="page"] {
    background: rgba(212, 175, 55, 0.18) !important;
    color: #fff !important;
  }
  .nav a {
    padding: 14px 0; font-size: 16px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav a[aria-current="page"] { border-bottom-color: var(--line-soft); color: var(--gold-deep); }
  .nav .region-select-wrap {
    margin-inline-start: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 14px;
  }
  .nav .btn { margin-top: 16px; width: 100%; }
  .header-inner { min-height: 60px; }
  :root { --header-h: 60px; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding-block: 48px; }
  .assessment-shell, .result-card { padding: 24px; }
  .longevity-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .longevity-hero-card { padding: 36px 24px; }
  .longevity-stats-strip { grid-template-columns: 1fr; gap: 14px; }
  .longevity-compare-section { grid-template-columns: 1fr; gap: 36px; }
  .longevity-compare-copy { position: static; }
  .steps-centered { grid-template-columns: 1fr; gap: 28px; }
  .nad-card { flex-direction: column; text-align: center; }
  .nad-card-left { flex-direction: column; text-align: center; }
  .nad-card-right { width: 100%; justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; gap: 24px; }
  .faq-layout, .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --gutter: 20px; }
  .grid-2, .grid-3, .grid-4, .grid-5, .steps, .stats { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta { padding: 28px 24px; flex-direction: column; align-items: stretch; }
  .cta .btn { width: 100%; }
  .hero-copy .btn, .page-head .btn { width: 100%; }
  .hero-copy .row, .page-head .row { width: 100%; }
  .line-item { flex-direction: column; align-items: flex-start; }
  .line-item .thumb { width: 100%; height: 120px; }
  .option-row { flex-direction: column; align-items: flex-start; }
  .option-row .btn { width: 100%; }
  .slots { grid-template-columns: 1fr 1fr; }
  .assessment-shell, .result-card { padding: 20px; border-radius: var(--radius); }
  .safety-panel { padding: 18px; }
  .table th, .table td { padding: 11px 14px; }
  .footer-bottom nav { margin-left: 0; }
  h1 { font-size: 32px; }
}

/* --------------------------------------------------------------------------
   25. WEIGHT LOSS PROJECTION CALCULATOR
   -------------------------------------------------------------------------- */
.wl-calc-card {
  background: var(--cream-warm);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 20px rgba(20, 18, 15, 0.04);
}

.wl-calc-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 32px;
  align-items: center;
}

.wl-range-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e4ddcf;
  outline: none;
  cursor: pointer;
  transition: background .15s ease;
  margin: 8px 0;
}

.wl-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-deep);
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(168, 130, 60, 0.4);
  cursor: grab;
  transition: transform .15s ease, box-shadow .15s ease;
}

.wl-range-input::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(168, 130, 60, 0.55);
}

.wl-range-input::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-deep);
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(168, 130, 60, 0.4);
  cursor: grab;
}

.wl-protocol-btn {
  border: 1px solid var(--border-soft);
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: all .2s ease;
  flex: 1;
  min-width: 200px;
}

.wl-protocol-btn:hover {
  border-color: var(--line-gold);
}

.wl-protocol-btn.is-active {
  border-color: var(--gold-deep);
  background: #ffffff;
  box-shadow: 0 0 0 1.5px var(--gold-deep), 0 4px 12px rgba(168, 130, 60, 0.08);
}

.wl-milestone-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 18px 20px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.wl-milestone-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

@media (max-width: 860px) {
  .wl-calc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wl-calc-card {
    padding: 24px 20px;
  }
}

/* --------------------------------------------------------------------------
   27. THE PEAK PRIME CLINICAL REPORT & SHOWCASE
   -------------------------------------------------------------------------- */
.report-hero {
  background: linear-gradient(135deg, #18181b 0%, #121214 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 20px;
  padding: 36px 32px;
  color: #ffffff;
  margin-bottom: 28px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.report-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.report-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.report-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.report-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 10px 0 6px;
  letter-spacing: -0.01em;
}
.report-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 46em;
  line-height: 1.5;
  margin: 0;
}
.report-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.report-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
}
.report-meta-item .meta-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3px;
}
.report-meta-item .meta-val {
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
}

/* Sticky Report Navigation */
.report-nav-sticky {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 10px 0;
  margin-bottom: 32px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}
.report-nav-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px;
  margin: 0;
  list-style: none;
}
.report-nav-list::-webkit-scrollbar {
  display: none;
}
.report-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-75);
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.report-nav-btn:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}
.report-nav-btn.is-active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}
.report-nav-btn .pill-count {
  font-size: 10.5px;
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold-deep);
  padding: 1px 6px;
  border-radius: 999px;
  font-weight: 700;
}
.report-nav-btn.is-active .pill-count {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Big Picture / Biological Age Score Card */
.report-overview-box {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.bio-score-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: center;
}
.bio-gauge-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 60%, #faf8f5 100%);
  border: 7px solid #e5e7eb;
  border-top-color: var(--gold-deep);
  border-right-color: var(--gold-deep);
  border-bottom-color: #22c55e;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(168, 130, 60, 0.12);
}
.bio-gauge-kicker {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-45);
}
.bio-gauge-val {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin: 2px 0;
}
.bio-gauge-unit {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-60);
}
.bio-score-details h3 {
  font-size: 24px;
  margin: 0 0 10px;
  color: var(--ink);
}
.bio-score-details .bio-lede {
  font-size: 14.5px;
  color: var(--ink-75);
  line-height: 1.6;
  margin-bottom: 20px;
}
.bio-stat-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.bio-stat-pill {
  flex: 1;
  min-width: 140px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
}
.bio-stat-pill.pill-optimal {
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.bio-stat-pill.pill-below {
  background: #fffbeb;
  border-color: #fde68a;
}
.bio-stat-pill.pill-above {
  background: #fef2f2;
  border-color: #fecaca;
}
.bio-stat-pill .stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  display: block;
  line-height: 1.1;
}
.bio-stat-pill.pill-optimal .stat-num { color: #15803d; }
.bio-stat-pill.pill-below .stat-num { color: #b45309; }
.bio-stat-pill.pill-above .stat-num { color: #b91c1c; }
.bio-stat-pill .stat-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* Category Sections & Biomarker Cards Grid */
.report-category-wrap {
  margin-bottom: 44px;
  scroll-margin-top: 140px;
}
.report-category-header {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 12px;
}
.report-category-header h2 {
  font-size: 22px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.report-category-desc {
  font-size: 13.5px;
  color: var(--ink-60);
  max-width: 48em;
  line-height: 1.5;
  margin-top: 6px;
}
.report-marker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 18px;
}
.report-marker-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.report-marker-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}
.marker-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.marker-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.marker-func {
  font-size: 11px;
  color: var(--ink-45);
  margin-top: 2px;
}
.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}
.badge-status-optimal {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}
.badge-status-elevated {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
.badge-status-low {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
}
.marker-val-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}
.marker-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.marker-unit {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-60);
}
.marker-target {
  font-size: 11px;
  color: var(--ink-45);
  margin-inline-start: auto;
}

/* Range Spectrum Meter */
.range-meter-wrap {
  margin-bottom: 12px;
}
.range-meter-track {
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  position: relative;
  overflow: visible;
}
.range-meter-band {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 999px;
}
.band-low {
  left: 0;
  width: 25%;
  background: #fde68a;
}
.band-optimal {
  left: 25%;
  width: 50%;
  background: #86efac;
}
.band-high {
  left: 75%;
  width: 25%;
  background: #fca5a5;
}
.range-pin {
  position: absolute;
  top: -4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transform: translateX(-50%);
  z-index: 2;
}
.pin-optimal { background: #16a34a; }
.pin-elevated { background: #dc2626; }
.pin-low { background: #d97706; }

.marker-desc {
  font-size: 12px;
  color: var(--ink-75);
  line-height: 1.45;
  margin: 0;
  background: #faf8f5;
  padding: 8px 10px;
  border-radius: 8px;
}

/* Physician Action Plan */
.action-plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}
.action-plan-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 22px 24px;
  position: relative;
}
.action-plan-card.plan-priority {
  border-inline-start: 4px solid var(--gold-deep);
}
.action-plan-card.plan-monitor {
  border-inline-start: 4px solid #3b82f6;
}
.action-plan-type {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.plan-priority .action-plan-type { color: var(--gold-deep); }
.plan-monitor .action-plan-type { color: #2563eb; }

.action-plan-card h4 {
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--ink);
}
.action-plan-card p {
  font-size: 13.5px;
  color: var(--ink-75);
  line-height: 1.5;
  margin: 0 0 14px;
}
.action-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.action-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-90);
  line-height: 1.45;
}
.action-checklist li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #16a34a;
}

/* Showcase Section on longevity.html */
.report-showcase-box {
  background: linear-gradient(135deg, #1c1917 0%, #121214 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  padding: 36px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}
.showcase-preview-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 860px) {
  .bio-score-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .report-marker-grid {
    grid-template-columns: 1fr;
  }
  .report-showcase-box {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }
  .report-hero {
    padding: 26px 20px;
  }
}

/* --------------------------------------------------------------------------
   28. PRINT STYLESHEET (PDF MEDICAL EXPORT)
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .cta, .nav-toggle, .btn, .report-nav-sticky, .report-actions {
    display: none !important;
  }
  body {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 11pt;
  }
  .report-hero {
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #cccccc !important;
    box-shadow: none !important;
    padding: 20px !important;
    page-break-after: avoid;
  }
  .report-hero .report-title {
    color: #000000 !important;
  }
  .report-hero .report-subtitle,
  .report-hero .meta-label,
  .report-hero .meta-val {
    color: #333333 !important;
  }
  .report-meta-grid {
    background: #f9f9f9 !important;
    border: 1px solid #ddd !important;
  }
  .report-overview-box,
  .report-marker-card,
  .action-plan-card {
    border-color: #cccccc !important;
    box-shadow: none !important;
    background: #ffffff !important;
  }
  .report-category-wrap {
    page-break-inside: avoid;
  }
  .bio-gauge-circle {
    box-shadow: none !important;
    border-color: #666666 !important;
  }
  .card, .assessment-shell, .result-card {
    border-color: #999;
    box-shadow: none;
  }
}

/* --------------------------------------------------------------------------
   29. SKINCARE & ROUTINE COMPONENTS
   -------------------------------------------------------------------------- */
.routine-nav-pills {
  display: inline-flex;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 4px;
  gap: 6px;
  margin-bottom: 28px;
}
.routine-pill {
  border: none;
  background: transparent;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-70);
  cursor: pointer;
  transition: all .16s ease;
}
.routine-pill.is-active {
  background: var(--ink);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}
.routine-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px) {
  .routine-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .routine-steps-grid { grid-template-columns: 1fr; }
}
.routine-step-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.routine-step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.4);
}
.routine-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(212, 175, 55, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  width: fit-content;
}
.skin-pill-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: var(--cream);
  color: var(--ink-70);
  border: 1px solid var(--line-soft);
  margin-right: 4px;
  margin-bottom: 4px;
}

/* ==========================================================================
   Floating WhatsApp Conversion Button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  box-sizing: border-box;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28), 0 2px 6px rgba(0, 0, 0, 0.16);
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38), 0 3px 8px rgba(0, 0, 0, 0.22);
  color: #ffffff;
}

.whatsapp-float:active {
  transform: translateY(0) scale(0.96);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.whatsapp-float-icon {
  width: 34px;
  height: 34px;
  display: block;
  fill: #ffffff;
  flex-shrink: 0;
}

/* Tooltip on Desktop Hover */
.whatsapp-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: #111815;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 7px 13px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  margin-top: -5px;
  border-width: 5px 0 5px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #111815;
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-float-icon {
    width: 30px;
    height: 30px;
  }
  .whatsapp-float-tooltip {
    display: none;
  }
}

/* ==========================================================================
   How It Works — Compact 4-Card Luxury Tray
   ========================================================================== */
.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.how-step-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.how-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.45);
}

.how-step-header {
  padding: 22px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.how-step-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.how-step-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.how-step-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(212, 175, 55, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.how-step-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.35;
}

.how-step-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-70);
  margin: 0;
}

/* Visual Chamber Under Each Step (Warm Studio Graphics) */
.how-step-visual {
  height: 205px;
  background: #f8f7f4;
  border-top: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
  display: block;
}

.how-step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.how-step-card:hover .how-step-img {
  transform: scale(1.06);
}


/* Responsive Grid Adapters */
@media (max-width: 990px) {
  .how-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .how-step-visual {
    height: 195px;
  }
}

@media (max-width: 640px) {
  .how-steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .how-step-visual {
    height: 185px;
  }
}

/* ==========================================================================
   MAMO PAY INLINE MODAL & CHECKOUT
   ========================================================================== */
.mamo-modal-wrap {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: mamoFadeIn .2s cubic-bezier(0.16, 1, 0.3, 1);
}
.mamo-modal-wrap[hidden] {
  display: none !important;
}
.mamo-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 6, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mamo-dialog {
  position: relative;
  z-index: 100001;
  width: 100%;
  max-width: 530px;
  max-height: 94vh;
  background: #14120f;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mamo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  background: #181512;
}
.mamo-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
}
.mamo-header-amount {
  font-size: 13.5px;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--line-gold);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.mamo-close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: all .15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mamo-close-btn:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}
.mamo-body {
  position: relative;
  flex: 1;
  min-height: 560px;
  max-height: 78vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #f6f7f9;
  padding: 6px 4px;
}
.mamo-body::-webkit-scrollbar {
  width: 6px;
}
.mamo-body::-webkit-scrollbar-track {
  background: #f6f7f9;
}
.mamo-body::-webkit-scrollbar-thumb {
  background: #d5d9e2;
  border-radius: 3px;
}
.mamo-body::-webkit-scrollbar-thumb:hover {
  background: #b1bbc8;
}
.mamo-iframe-host {
  width: 100%;
  min-height: 560px;
  height: 100%;
  border: none;
  display: block;
  background: transparent;
}
.mamo-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #f6f7f9;
  z-index: 2;
  transition: opacity .25s ease;
}
.mamo-loader .tiny {
  color: #3f4753 !important;
  font-weight: 500;
  font-size: 13px;
}
.mamo-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.mamo-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(212, 175, 55, 0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: mamoSpin .8s linear infinite;
}
@keyframes mamoSpin {
  to { transform: rotate(360deg); }
}
@keyframes mamoFadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
.mamo-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  background: #181512;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
}
.mamo-footer svg {
  color: var(--gold);
  flex-shrink: 0;
}
.mamo-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  font-size: 12.5px;
  color: var(--ink);
  margin-top: 14px;
}




