/*
Theme Name: Lifespan Edge 2.0
Version: 1.0
Author: ManDeo Consultancy Services
*/

@import url('colors_and_type.css');

/* ==========================================================================
    1. VARIABLES — v2.1 Design System (teal tertiary) tokens
========================================================================== */
:root {
  /* --- Midnight (Primary Dark) --- */
  --midnight:       #0D1B2E;
  --midnight-light: #162236;
  --midnight-mid:   #1A2940;

  /* --- Dawn / Gold (Brand Accent) --- */
  /* On DARK backgrounds */
  --dawn-on-dark:     #D4A843;
  --sunlight-on-dark: #E8C35A;
  /* On LIGHT backgrounds */
  --dawn-text:        #8E7123;
  --dawn-text-large:  #B28D2C;
  /* Decorative only — NOT for text */
  --dawn-decorative:  #B8922E;
  --dawn-ui:          #D4A843;
  --sunlight-ui:      #E8C35A;
  /* Gold transparency */
  --dawn-glow:        rgba(212,168,67,0.12);
  --dawn-glow-strong: rgba(212,168,67,0.18);
  --dawn-subtle:      rgba(212,168,67,0.06);

  /* --- Teal (Tertiary Accent — v2.1) --- */
  --teal-on-dark:     #6DC4B2;   /* 8.40:1 AAA */
  --teal-bright:      #78CCBA;   /* 9.12:1 AAA */
  --teal-on-light:    #1A6B5A;   /* 6.37:1 AA */
  --teal-decorative:  #2A7E66;

  /* --- Neutrals --- */
  --white:         #FFFFFF;
  --offwhite:      #FAFAF8;
  --ink:           #111111;
  --gray:          #3D3D3D;
  --gray-light:    #666666;
  --gray-faint:    #E5E5E5;
  --gray-hairline: #EEEEEE;

  /* --- Gradients --- */
  --gradient-accent: linear-gradient(135deg, #B28D2C 0%, #9A7629 25%, #2A7E66 60%, #1A6B5A 100%);
  --gradient-accent-on-dark: linear-gradient(135deg, #E8C35A 0%, #D4A843 25%, #78CCBA 65%, #6DC4B2 100%);
  --gradient-gold: linear-gradient(135deg, #E8C35A 0%, #D4A843 40%, #B28D2C 100%);
  --gradient-sunrise: linear-gradient(90deg, transparent, #B8922E, transparent);
  --gradient-gold-fill: linear-gradient(135deg, #E8C35A 0%, #D4A843 100%);
  --gradient-gold-decorative: linear-gradient(135deg, #E8C35A 0%, #D4A843 25%, #2A7E66 65%, #1A6B5A 100%);

  /* --- Typography --- */
  --font-heading: 'Manrope', sans-serif;
  --font-body:    'Source Serif 4', serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* --- Spacing --- */
  --gutter: 2rem;
  --container: 1200px;
  --container-narrow: 900px;
  --section-pad: 6rem;
  --card-pad: 2rem;
  --card-radius: 12px;
  --btn-radius: 10px;

  /* --- Shared --- */
  --border-card: 1.5px solid var(--midnight);
  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
    2. RESET
    ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); line-height: 1.6; background: var(--white); }
img { max-width: 100%; display: block; }
/* a{ color: #fff; text-decoration: none; } */
a:hover{ color: var(--midnight); text-decoration: none; }
a.wp-block-button__link{ color: #fff; text-decoration: none; }
a.wp-block-button__link:hover{
  color: inherit;
  /* background: #fff; */
  font-weight: bold;
}
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
p { margin: 0; }
dl, ol, ul{
  margin-bottom:0px;
}
:root :where(.is-layout-flow) > *,:root :where(.is-layout-constrained) > *{
  margin-top:0px;
}

figure{
  margin:0;
}

/* ==========================================================================
    3. UTILITIES
    ========================================================================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* Label / Eyebrow — v2: weight 600, size 1.05rem */
.label {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
/* Default label on light bg */
.label { color: var(--dawn-text); }
.label--light { color: var(--dawn-text); }
.label--dark  { color: rgba(255,255,255,0.85); }

.label--sm { font-size: 0.95rem; }
/* Hero eyebrow variant — bolder, larger so it reads as subtitle not meta */
.label--hero {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.sub {
  color: var(--gray);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
}

/* Gold period — v2: context-dependent */
.gold-period-light { color: var(--dawn-text); }
.gold-period-dark  { color: var(--dawn-on-dark); }

/* Gradient accent text — v2: with @supports fallback */
.gradient-accent {
  color: var(--teal-on-light);
  font-weight: 800;
}
@supports (-webkit-background-clip: text) {
  .gradient-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}
.gradient-accent-dark {
  color: var(--teal-on-dark);
  font-weight: 800;
}
@supports (-webkit-background-clip: text) {
  .gradient-accent-dark {
    background: var(--gradient-accent-on-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

/* Badge */
.badge {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dawn-text);
  background: rgba(142,113,35,0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  display: inline-block;
}
.badge a{
  color: var(--dawn-text);
}

/* Sunrise line */
.sunrise-line {
  height: 2px;
  background: var(--gradient-sunrise);
}

/* ==========================================================================
    4. SUN-CARD SYSTEM
    ========================================================================== */
/* .sun-card {
  position: relative;
  border: var(--border-card);
  border-radius: var(--card-radius);
  background: var(--white);
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.sun-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, var(--dawn-glow), rgba(232,195,90,0.06) 40%, transparent);
  pointer-events: none;
  transition: all 0.5s ease;
}
.sun-card:hover {
  border-color: var(--dawn-decorative);
  box-shadow: 0 4px 24px rgba(212,168,67,0.15), 0 0 0 1px rgba(212,168,67,0.2);
}
.sun-card:hover::after {
  height: 60%;
  background: linear-gradient(to top, var(--dawn-glow-strong), rgba(232,195,90,0.1) 50%, transparent);
} */

.box-shadow-sun {
    box-shadow: 0 4px 28px rgba(212, 168, 67, 0.14), 0 0 0 1px rgba(212, 168, 67, 0.18), 0 24px 60px rgba(13, 27, 46, 0.07);
}

.sun-card {
  position: relative;
  border: 1.5px solid var(--midnight);
  border-radius: var(--card-radius);
  background: var(--white);
  padding: var(--card-pad);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  min-height: stretch;
}

.sun-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, var(--dawn-glow), rgba(232,195,90,0.06) 40%, transparent);
  pointer-events: none;
  transition: all 0.5s ease;
}

.sun-card:hover {
    border-color: var(--dawn-decorative);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.12);
    transform: translateY(-2px);
}

.sun-card:hover::after {
  height: 60%;
  background: linear-gradient(to top, var(--dawn-glow-strong), rgba(232,195,90,0.1) 50%, transparent);
}
.sun-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(212,168,67,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  margin-left:0px !important;
}
.sun-card__icon svg {
  width: 20px;
  height: 20px;
  fill: var(--dawn-ui);
}
.sun-card__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 1;
}

.sun-card__label2  a:hover {
	color: #8E7123;
}


.sun-card__value {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--midnight);
  line-height: 1.4;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.sun-card__detail {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
  margin-top: 0.35rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.sun-card:hover .ecard__icon {
    border-color: var(--dawn-decorative);
    background: rgba(212, 168, 67, 0.07);
}

.sun-card:hover .pcard__link>a .arrow {
    transform: translateX(2px);
}

@media (max-width: 600px) {
	.box-shadow-sun{
		padding: 4rem 2rem !important;
	}
}



/* POST cards */

.sun-card-nopadding{
	padding: 0;
}

.box-width-content {
	display: inline-block;
	padding: 2.4px 8px;
}

.category-post-card{
	font-size: 0.78rem;
}

.extract-post-card{
	font-size: 14.4px !important;
}

/* .author-post-card{
	font-size: 0.82rem !important;
} */

.date-post-card{
	font-size: 0.82rem;
}

.post-details-author-name{
	font-style: italic;
}

.post-details-featured-image{
	max-width: 960px;
}

/* Researchcards */

.research-cards > div > div{
	height: 100%;
}

/* Research cards */


/* ==========================================================================
    5. BUTTON SYSTEM
    ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none; padding: 1.1rem 2.5rem; border: none; cursor: pointer;
  transition: all 0.4s var(--ease-out-expo); border-radius: var(--btn-radius);
}

/* PRIMARY — midnight fill, sun-card hover */
.btn--primary {
  background: var(--midnight); color: var(--white);
  position: relative; overflow: hidden;
  border: 1.5px solid var(--midnight);
  box-shadow: 0 2px 4px rgba(13,27,46,0.15), 0 6px 20px rgba(13,27,46,0.1);
}
.btn--primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--white); opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo); z-index: 0;
}
.btn--primary::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 65%;
  background: linear-gradient(to top, rgba(212,168,67,0.14) 0%, rgba(232,195,90,0.06) 45%, transparent 100%);
  opacity: 0; transition: opacity 0.4s var(--ease-out-expo); z-index: 0;
}
.btn--primary:hover {
  color: var(--midnight); border-color: var(--dawn-ui);
  box-shadow: 0 0 12px rgba(212,168,67,0.18), 0 4px 20px rgba(212,168,67,0.08);
  transform: translateY(-2px);
}
.btn--primary:hover a{
  color: var(--midnight);
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary:hover::after { opacity: 1; }
.btn--primary span { position: relative; z-index: 1; }

/* OUTLINE — white with border, sun-card glow on hover */
.btn--outline {
  border: 1.5px solid var(--midnight); color: var(--midnight); background: var(--white);
  position: relative; overflow: hidden;
  box-shadow: 0 1px 3px rgba(13,27,46,0.06);
}
.btn--outline::before {
  position: absolute; left: 0; right: 0; bottom: 0; height: 65%;
  background: linear-gradient(to top, rgba(212,168,67,0.14) 0%, rgba(232,195,90,0.06) 45%, transparent 100%);
  opacity: 0; transition: opacity 0.4s var(--ease-out-expo); z-index: 0;
}
.btn--outline:hover {
  border-color: var(--dawn-ui);
  box-shadow: 0 0 12px rgba(212,168,67,0.18), 0 4px 20px rgba(212,168,67,0.08);
  transform: translateY(-2px);
}
.btn--outline:hover::before { opacity: 1; }
.btn--outline span { position: relative; z-index: 1; }

/* GHOST — text link with gold underline draw */
.btn--ghost {
  background: transparent; color: var(--midnight); padding: 1rem 0;
  font-weight: 600; position: relative;
}
.btn--ghost::after {
  content: ''; position: absolute; bottom: 0.7rem; left: 0; width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--dawn-ui), var(--sunlight-ui));
  transition: width 0.3s ease;
}
.btn--ghost:hover { color: var(--dawn-ui); }
.btn--ghost:hover::after { width: 100%; }

/* DAWN — gold gradient fill (CTA on dark bg) */
.btn--dawn {
  background: linear-gradient(135deg, var(--sunlight-ui) 0%, var(--dawn-ui) 100%);
  color: var(--midnight); font-weight: 800;
  border: 1.5px solid var(--dawn-on-dark);
  position: relative; overflow: hidden;
  box-shadow: 0 2px 4px rgba(212,168,67,0.12), 0 6px 20px rgba(212,168,67,0.08);
}
.btn--dawn:hover, .footer a.btn--dawn:hover {
  color:var(--midnight) !important;
  box-shadow: 0 0 14px rgba(212,168,67,0.25), 0 4px 20px rgba(212,168,67,0.12);
  transform: translateY(-2px);
}
.btn--dawn span {
   position: relative; 
   z-index: 1; 
}

.btn--dawn a.wp-block-button__link {
  color: var(--midnight) !important;
  font-family: var(--font-heading);
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}

.btn--dawn a.wp-block-button__link:hover {
  color: var(--midnight) !important;
  background: linear-gradient(135deg, var(--sunlight-ui) 0%, var(--dawn-ui) 100%);
}

/* WHITE OUTLINE — on dark backgrounds */
.btn--white-outline {
  border: 1.5px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.85);
  background: transparent; border-radius: var(--btn-radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: relative; overflow: hidden;
}
.btn--white-outline::before {
/*   content: '';  */
  position: absolute; inset: 0;
  background: var(--white); opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo); z-index: 0;
}
.btn--white-outline::after {
/*   content: '';  */
  position: absolute; left: 0; right: 0; bottom: 0; height: 65%;
  background: linear-gradient(to top, rgba(212,168,67,0.14) 0%, rgba(232,195,90,0.06) 45%, transparent 100%);
  opacity: 0; transition: opacity 0.4s var(--ease-out-expo); z-index: 0;
}
.btn--white-outline span { position: relative; z-index: 1; }
.btn--white-outline:hover {
  color: var(--midnight); border-color: var(--dawn-ui);
  box-shadow: 0 0 12px rgba(212,168,67,0.18), 0 4px 20px rgba(212,168,67,0.08);
  transform: translateY(-2px);
  background: rgb(255,255,255);
}
.btn--white-outline:hover a{
  color: var(--midnight);
}
.btn--white-outline > a.wp-element-button:hover{
  color: var(--midnight);
}
.btn--white-outline a:hover{
  color: var(--midnight);
}
/* .btn--white-outline:hover::before { opacity: 1; } */
.btn--white-outline:hover::after { opacity: 1; }

/* Global button hover customization */
/* .wp-block-button__link:hover {
    color: #fff; 
} */
/* ==========================================================================
    6. ANNOUNCEMENT BAR
    ========================================================================== */
/* Announcement bar — flexbox centering is more robust than text-align
    when the bar contains mixed elements (plain text + <strong> + <a>)
    that can have subtly different line-heights or tracking. */
.announce {
  background: var(--midnight); color: rgba(255,255,255,0.7);
  padding: 0.55rem var(--gutter);
  font-family: var(--font-heading); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  text-align: center;
}
.announce strong { color: var(--white); font-weight: 700; }
.announce a { color: var(--dawn-on-dark); font-weight: 600; }

/* ==========================================================================
    7. HEADER
    ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-hairline);
}
.header__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.header__logo {
  font-family: var(--font-heading); font-size: 0.95rem; font-weight: 800;
  color: var(--midnight); letter-spacing: 0.03em;
}
.header__logo img { max-width:250px;}
.nav { display: none; }
.nav__toggle {
  background: none; border: 1.5px solid var(--midnight); border-radius: 6px;
  padding: 8px 10px; cursor: pointer; display: flex; flex-direction: column; gap: 4px;
}
.nav__toggle span { width: 18px; height: 1.5px; background: var(--midnight); display: block; }
.header__cta { display: none; }
.is-content-justification-space-between{
  justify-content: space-between;
}
@media (min-width: 900px) {
  .nav { display: flex; align-items: center; }
  .nav__list { display: flex; list-style: none; gap: 2rem; }
  .nav__link {
    font-family: var(--font-heading); font-size: 0.95rem; font-weight: 500;
    color: var(--gray); transition: color 0.2s; letter-spacing: 0.01em;
  }
  .nav__link:hover { color: var(--midnight); }
  .nav__toggle { display: none; }
  .header__cta { display: inline-flex; font-size: 0.82rem; padding: 0.6rem 1.5rem; }
}

/* ==========================================================================
    8. HERO
    ========================================================================== */
.hero { background: var(--white); position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -20%; right: -15%; width: 70%; height: 130%;
  background: radial-gradient(ellipse, rgba(232,195,90,0.08) 0%, rgba(212,168,67,0.04) 30%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2; padding: 3.5rem var(--gutter) 0;
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: end;
}
.hero__text { padding-bottom: 3.5rem; }
.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  margin-bottom: 1.25rem; color: var(--midnight);
}
/* Hero subtitle — v2 weight-contrast pattern */
.hero__sub {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--gray);
  display: block;
  margin-top: 0.65rem;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hero__sub-accent {
  font-weight: 800;
}
/* Hero tagline — sits between H1 and body; Manrope 500, the brand line */
.hero__tagline {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: var(--gray);
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin: 1.25rem 0 1.75rem;
  max-width: 480px;
}
/* Hero body — upgraded for short "promise" copy. Weight 500 + larger size
    gives it enough visual mass to sit between eyebrow and CTA without fading.
    text-wrap: pretty prevents single-word widows (Chrome 117+, Safari 17.4+,
    graceful fallback elsewhere). */
.hero__body {
  color: var(--ink);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.5;
  max-width: 520px;
  margin-bottom: 2.25rem;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

/* Hero subline — italic Source Serif tagline placed under H1.
    Soft editorial "deck" that carries the brand tagline once the eyebrow
    is reserved for TPE/SEO orientation. */
.hero__subline {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  color: var(--gray);
  line-height: 1.4;
  margin: 0.9rem 0 0;
  max-width: 520px;
  letter-spacing: -0.005em;
}
@media (max-width: 767px) {
  .hero__subline { font-size: 1.1rem; margin-top: 0.75rem; }
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__img { position: relative; align-self: end; }
.hero__img img { width: 100%; max-width: 520px; height: auto; display: block; margin: 0 auto; }
.hero__img-mobile { display: none; }
.hero__img-mobile img { width: 100%; max-width: 320px; height: auto; display: block; margin: 0.75rem auto 1rem; }
/* Gold sunrise line at bottom of hero */
.hero::after {
  /* content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; */
  background: var(--gradient-sunrise);
}
@media (min-width: 768px) {
  .hero__inner { grid-template-columns: 1fr 1fr; padding: 4.5rem var(--gutter) 0; gap: 3rem; }
  .hero__text { padding-bottom: 4.5rem; }
}
@media (min-width: 1024px) {
  .hero__inner { padding: 5.5rem var(--gutter) 0; }
  .hero__text { padding-bottom: 5.5rem; }
}

/* ==========================================================================
    9. EVIDENCE HUB (NEW — between hero and treatment cards)
    ========================================================================== */
.evidence { background: var(--white); position: relative; }
.evidence__inner {
  max-width: var(--container); margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.evidence__card {
  border: var(--border-card);
  border-radius: var(--card-radius);
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}
/* Subtle sunrise glow on the evidence card */
.evidence__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, var(--dawn-glow), rgba(232,195,90,0.04) 40%, transparent);
  pointer-events: none;
}
.evidence__label-wrap {
  display: flex;
  align-items: center;
}
.evidence__label-wrap .label {
  margin-bottom: 0;
  font-size: 1.05rem;
}
.evidence__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.evidence__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: var(--border-card);
  border-radius: var(--btn-radius);
  padding: 1.15rem 1.5rem;
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.evidence__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, var(--dawn-glow), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
  pointer-events: none;
}
.evidence__link:hover {
  border-color: var(--dawn-decorative);
  box-shadow: 0 4px 20px rgba(212,168,67,0.12), 0 0 0 1px rgba(212,168,67,0.15);
  transform: translateY(-1px);
}
.evidence__link:hover::after { opacity: 1; }
.evidence__link-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1.5px solid var(--gray-faint); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--gray);
  background: var(--offwhite);
}
.evidence__link-icon svg {
  width: 20px; height: 20px;
  stroke: var(--midnight); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.evidence__link-text {
  flex: 1;
  position: relative;
  z-index: 1;
}
.evidence__link-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--midnight);
  display: block;
  line-height: 1.2;
}
.evidence__link-sub {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-light);
  display: block;
  margin-top: 0.15rem;
}
.evidence__link-arrow {
  font-size: 1.15rem;
  color: var(--gray-light);
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  z-index: 1;
}
.evidence__link:hover .evidence__link-arrow {
  color: var(--dawn-text);
  transform: translateX(3px);
}
@media (min-width: 768px) {
  .evidence__card {
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    padding: 3rem 3.5rem;
    align-items: center;
  }
  .evidence__links {
    max-width: 440px;
    margin-left: auto;
  }
}

/* ==========================================================================
    9b. LIFESTYLE IMAGE BREAK
    ========================================================================== */
.lifestyle-break {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.lifestyle-break__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
}
.lifestyle-break__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
@media (max-width: 767px) {
  .lifestyle-break__img { height: 260px; }
}
@media (min-width: 768px) {
  .lifestyle-break__inner { padding: 0 var(--gutter); }
  .lifestyle-break__img { border-radius: var(--card-radius); }
}

/* ==========================================================================
    9c. TRAILER TEASER
    ========================================================================== */
.trailer {
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}
.trailer::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%; transform: translateX(-50%);
  width: 100%; height: 160%;
  background: radial-gradient(ellipse, rgba(212,168,67,0.14) 0%, rgba(212,168,67,0.04) 35%, transparent 60%);
  pointer-events: none;
}
.trailer::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-sunrise);
}
.trailer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 5.5rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.trailer__video {
/*   aspect-ratio: 16/9; */
	width:100%;
	height:100%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--card-radius);
  transition: all 0.4s var(--ease-out-expo);
}

.trailer__video video{
	height: 100%;
	width: 100%;
}

.trailer__video:hover {
  border-color: var(--dawn-ui);
  box-shadow: 0 0 24px rgba(212,168,67,0.2);
}
.trailer__video-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--midnight), var(--midnight-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
.trailer__video-play {
  width: 80px; height: 80px;
  background: var(--gradient-gold-fill);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--midnight);
  box-shadow: 0 8px 32px rgba(212,168,67,0.3);
  transition: all 0.3s;
}
.trailer__video-play svg {
  width: 26px; height: 26px;
  fill: var(--midnight);
  stroke: none;
  margin-left: 3px;
}
.trailer__video:hover .trailer__video-play {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(212,168,67,0.4);
}
.trailer__video-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.testimony{
	border: none;
	border-radius: 0;
}

.test_vid_cover{
	background: none !important;
}


.trailer__text {
  text-align: center;
}
.trailer__text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.trailer__text p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}
.trailer__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dawn-on-dark);
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.2);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
}
.trailer__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.trailer_youtube{
	width:100%;
	height:100%;
}

.trailer__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1.25rem;
}
.trailer__study-link {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s;
}
.trailer__study-link:hover {
  color: var(--dawn-on-dark);
}
/* @media (min-width: 768px) { */
@media (min-width: 1080px) {
  .trailer__inner {
    grid-template-columns: 1.3fr 1fr;
    gap: 3.5rem;
    padding: 6rem var(--gutter);
  }
  .trailer__text { text-align: left; }
  .trailer__text p { margin: 0 0 1.5rem; }
  .trailer__actions { align-items: flex-start; }
}
@media (max-width: 767px) {
  .trailer__inner { padding: 3.5rem var(--gutter); gap: 2rem; }
  .trailer__text h3 { font-size: 1.25rem; }
  .trailer__text p { font-size: 0.95rem; margin-bottom: 1rem; }
  .trailer__video-play { width: 50px; height: 50px; }
  .trailer__video-play svg { width: 17px; height: 17px; }
  .trailer__actions .btn { width: 100%; justify-content: center; }
}

.treatments { background: var(--offwhite); position: relative; border-top: 1px solid var(--gray-hairline); }
.treatments__inner {
  max-width: var(--container); margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  position: relative; z-index: 2;
}
.treatments__header { text-align: center; max-width: 620px; margin: 0 auto 4rem; }
.treatments__header h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); margin-bottom: 1.25rem; }
.treatments__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 600px) { .treatments__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .treatments__grid { grid-template-columns: 1fr 1fr 1fr; } }

.tcard {
  display: flex; flex-direction: column; text-decoration: none;
  position: relative; border: var(--border-card); border-radius: var(--card-radius);
  background: var(--white); overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.tcard::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(to top, rgba(212,168,67,0.1), rgba(232,195,90,0.04) 40%, transparent);
  pointer-events: none; transition: all 0.5s ease;
}
.tcard:hover {
  border-color: var(--dawn-decorative);
  box-shadow: 0 4px 24px rgba(212,168,67,0.15), 0 0 0 1px rgba(212,168,67,0.2);
}
.tcard:hover::after {
  height: 60%;
  background: linear-gradient(to top, var(--dawn-glow-strong), rgba(232,195,90,0.08) 50%, transparent);
}
.tcard__top {
  padding: var(--card-pad) var(--card-pad) 0.75rem;
  display: flex; align-items: center; gap: 0.85rem;
  position: relative; z-index: 1;
}
.tcard__icon {
  font-size: 1.25rem; flex-shrink: 0; width: 48px; height: 48px;
  border: 1.5px solid var(--gray-faint); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--offwhite);
}
.tcard__icon svg {
  width: 22px; height: 22px;
  stroke: var(--midnight); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.tcard__name {
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
  color: var(--midnight); letter-spacing: -0.01em;
}
.tcard__body {
  padding: 0.25rem var(--card-pad) var(--card-pad);
  flex: 1; display: flex; flex-direction: column;
  position: relative; z-index: 1;
}
.tcard__desc {
  font-size: 0.95rem; color: var(--gray); font-weight: 400; line-height: 1.7; flex: 1;
}
.tcard__link {
  font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--midnight);
  margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.35rem;
  transition: gap 0.2s;
}
.tcard__link .arrow { color: var(--dawn-text); transition: transform 0.2s; }
.tcard:hover .tcard__link { gap: 0.6rem; }
.tcard:hover .tcard__link .arrow { transform: translateX(2px); }

/* ==========================================================================
    11. DOCUMENTARY
    ========================================================================== */
.doc { background: var(--white); position: relative; overflow: hidden; border-top: 1px solid var(--gray-hairline); }
.doc__inner {
  max-width: var(--container); margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  position: relative; z-index: 2;
}
.doc__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.doc__video {
  aspect-ratio: 16/9; position: relative; cursor: pointer; overflow: hidden;
  border: var(--border-card); border-radius: var(--card-radius);
}
.doc__video::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,168,67,0.08) 0%, transparent 50%, rgba(212,168,67,0.06) 100%);
  pointer-events: none; z-index: 1;
}
.doc__video-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--midnight), var(--midnight-mid));
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.75rem;
}
.doc__video-play {
  width: 72px; height: 72px;
  background: var(--gradient-gold-fill);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--midnight);
  transition: all 0.3s; box-shadow: 0 8px 32px rgba(212,168,67,0.3);
  position: relative; z-index: 2;
}
.doc__video:hover .doc__video-play {
  transform: scale(1.1); box-shadow: 0 12px 40px rgba(212,168,67,0.4);
}
.doc__video-label {
  font-family: var(--font-mono); font-size: 0.88rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  position: relative; z-index: 2;
}
.doc__text h2 {
  color: var(--midnight); font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1.25rem;
}
.doc__quote {
  font-family: var(--font-body); font-style: italic; color: var(--midnight);
  font-size: 1.05rem; line-height: 1.7; font-weight: 400; margin-bottom: 1.5rem;
  padding-left: 1.5rem; position: relative;
}
.doc__quote::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--dawn-decorative), rgba(212,168,67,0.3));
}
.doc__quote cite {
  font-family: var(--font-mono); font-style: normal; font-size: 0.88rem;
  color: var(--gray-light); display: block; margin-top: 0.65rem;
  letter-spacing: 0.03em; text-transform: uppercase;
}
@media (min-width: 768px) { .doc__grid { grid-template-columns: 1.15fr 1fr; gap: 4rem; } }

/* ==========================================================================
    12. TESTIMONIALS
    ========================================================================== */
.test { background: var(--offwhite); position: relative; overflow: hidden; border-top: 1px solid var(--gray-hairline); }
.test__inner {
  max-width: var(--container); margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  position: relative; z-index: 2;
}
.test__header { text-align: center; max-width: 540px; margin: 0 auto 3.5rem; }
.test__header h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); }
.test__videos { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2rem; }
.test__vid {
  border: var(--border-card); border-radius: var(--card-radius); overflow: hidden;
  transition: all 0.3s; background: var(--white); position: relative;
}
.test__vid::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 30%;
  background: linear-gradient(to top, rgba(212,168,67,0.08), transparent);
  pointer-events: none;
}
.test__vid:hover { border-color: var(--dawn-ui); box-shadow: 0 4px 20px rgba(212,168,67,0.12); }
.test__vid-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--midnight), var(--midnight-mid));
  display: flex; align-items: center; justify-content: center;
  color: var(--dawn-on-dark); font-size: 2rem; cursor: pointer;
}
.test__vid-info { padding: 1.5rem 1.75rem; position: relative; z-index: 1; }

.test__vid-info h4 {
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
  color: var(--midnight); margin-bottom: 0.15rem; letter-spacing: -0.01em;
}
.test__vid-info p { font-size: 0.95rem; color: var(--gray-light); font-weight: 400; }
.test__quotes { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.test__card {
  border: var(--border-card); border-radius: var(--card-radius);
  padding: var(--card-pad) var(--card-pad) var(--card-pad) 2.25rem;
  position: relative; background: var(--white); overflow: hidden;
  transition: all 0.3s;
}
.test__card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--dawn-decorative), rgba(212,168,67,0.2));
  border-radius: 3px 0 0 3px;
}
.test__card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(212,168,67,0.08), transparent);
  pointer-events: none;
}
.test__card:hover { border-color: var(--dawn-ui); box-shadow: 0 4px 16px rgba(212,168,67,0.1); }
.test__card blockquote {
  font-family: var(--font-body); font-style: italic; color: var(--midnight);
  font-weight: 400; line-height: 1.7; font-size: 1.05rem;
  position: relative; z-index: 1;
}
.test__card-attr {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  font-style: normal;
  position: relative;
  z-index: 1;
}
.test--dark .test__card-attr { color: rgba(255,255,255,0.5); }
.test__more { text-align: center; margin-top: 2.5rem; }
@media (min-width: 600px) {
  .test__videos { grid-template-columns: 1fr 1fr; }
  .test__quotes { grid-template-columns: 1fr 1fr; max-width: 880px; margin-left: auto; margin-right: auto; }
}

/* ==========================================================================
    13. TPE EXPLAINER
    ========================================================================== */
.tpe { background: var(--white); position: relative; overflow: hidden; border-top: 1px solid var(--gray-hairline); }
.tpe::before {
  content: ''; position: absolute; bottom: -20%; left: -10%; width: 60%; height: 80%;
  background: radial-gradient(ellipse, rgba(212,168,67,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.tpe__inner {
  max-width: var(--container); margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  position: relative; z-index: 2;
}
.tpe__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.tpe__img-wrap { position: relative; }
.tpe__img-wrap img {
  max-height: 480px; margin: 0 auto; display: block;
  border-radius: 8px; width: 100%; object-fit: cover;
}
.tpe__img-frame {
  border: var(--border-card); border-radius: var(--card-radius);
  background: var(--white); padding: 1rem; position: relative; overflow: hidden;
  box-shadow: 0 16px 48px rgba(13,27,46,0.06);
}
.tpe__img-frame::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 30%;
  background: linear-gradient(to top, rgba(212,168,67,0.1), transparent);
  pointer-events: none;
}
.tpe__caption {
  font-family: var(--font-mono); font-size: 0.88rem; color: var(--gray-light);
  margin-top: 1.25rem; text-align: center; letter-spacing: 0.01em;
}
.tpe__text h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); margin-bottom: 1.25rem; color: var(--midnight); }
.tpe__inline-img {
  margin: 0 0 1.5rem;
  border-radius: var(--card-radius);
  overflow: hidden;
}
.tpe__inline-img img {
  width: 100%; height: auto; display: block;
  border-radius: var(--card-radius);
}
.tpe__text p { color: var(--gray); font-weight: 400; line-height: 1.7; margin-bottom: 1rem; font-size: 1.05rem; }
.tpe__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 768px) { .tpe__grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; } }

/* ==========================================================================
    14. STATS
    ========================================================================== */
.stats { background: var(--midnight); position: relative; overflow: hidden; }
.stats::before {
  content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 120%; height: 200%;
  background: radial-gradient(ellipse, rgba(212,168,67,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.stats::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-sunrise);
}
.stats__inner {
  max-width: var(--container); margin: 0 auto; padding: 3.5rem var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; text-align: center;
  position: relative; z-index: 2;
}
.stat { position: relative; }
.stat::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px;
  background: rgba(255,255,255,0.08);
}
.stat:last-child::after { display: none; }
.stats__num {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800;
  color: var(--white); display: block; letter-spacing: -0.03em;
}
.stats__label {
  font-family: var(--font-mono); font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-top: 0.35rem; display: block;
}
@media (min-width: 600px) { .stats__inner { grid-template-columns: 1fr 1fr 1fr 1fr; } }
@media (max-width: 599px) { .stat:nth-child(2)::after { display: none; } }

/* ==========================================================================
    15. PROCESS
    ========================================================================== */
.process { background: var(--midnight); position: relative; overflow: hidden; }
.process__inner {
  max-width: var(--container-narrow); margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  position: relative; z-index: 2;
}
.process__header { text-align: center; max-width: 540px; margin: 0 auto 3.5rem; }
.process__header h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); }
.process__steps { position: relative; }
.process__steps::before {
  content: ''; position: absolute; left: 25px; top: 26px; bottom: 26px; width: 2px;
  background: linear-gradient(180deg, #B28D2C 0%, #9A7629 30%, #2A7E66 70%, #1A6B5A 100%);
  opacity: 0.65;
}
.step {
  display: grid; grid-template-columns: 52px 1fr; gap: 1.5rem;
  padding: 1.75rem 0; position: relative;
}
.step__num {
  width: 52px; height: 52px; border: var(--border-card); border-radius: var(--btn-radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.88rem; font-weight: 600;
  color: var(--dawn-text); background: var(--white); position: relative; z-index: 2;
}
.step__content h4 {
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
  color: var(--midnight); margin-bottom: 0.35rem; letter-spacing: -0.01em;
}
.step__content p { font-size: 1.05rem; color: var(--gray); font-weight: 400; line-height: 1.7; }

/* ==========================================================================
    16. RESEARCH
    ========================================================================== */
.research { background: var(--white); position: relative; border-top: 1px solid var(--gray-hairline); }
.research__inner {
  max-width: var(--container); margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.research__header { text-align: center; max-width: 560px; margin: 0 auto 3.5rem; }
.research__header h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); }
.research__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.rcard {
  display: flex; flex-direction: column; text-decoration: none;
  border: var(--border-card); border-radius: var(--card-radius); 
  background: var(--white); position: relative; overflow: hidden;
  transition: all 0.3s;
  height:stretch;
  min-height: 525px !important;
}
.rcard__img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-bottom: 1px solid var(--gray-hairline);
}
.rcard__body { padding: 2.25rem; flex: 1; display: flex; flex-direction: column; }
.rcard::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(212,168,67,0.08), transparent);
  pointer-events: none;
}
.rcard:hover {
  border-color: var(--dawn-decorative);
  box-shadow: 0 4px 20px rgba(212,168,67,0.12);
}
.rcard .label { font-size: 0.88rem; }
.rcard h4 {
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
  color: var(--midnight); line-height: 1.25; margin-bottom: 0.5rem;
  position: relative; z-index: 1; letter-spacing: -0.01em; flex: 1;
}
.rcard p {
  font-size: 0.95rem; color: var(--gray); font-weight: 400; line-height: 1.7;
  position: relative; z-index: 1;
}
.rcard .rcard__body { position: relative; z-index: 1; }
.research__more { text-align: center; margin-top: 2.5rem; }
/* Merged super-section: Evidence Hub card sits above the Featured Research
    grid with a gold sunrise divider + eyebrow as transition. */
.research__evidence-card { margin-bottom: 3.5rem; }
.research__featured-header {
  text-align: center;
  margin: 0 auto 2.5rem;
  position: relative;
}
.research__featured-header::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gradient-sunrise);
  margin: 0 auto 1.5rem;
  opacity: 0.9;
}
@media (max-width: 767px) {
  .research__evidence-card { margin-bottom: 2.5rem; }
  .research__featured-header { margin-bottom: 2rem; }
  .research__featured-header::before { width: 44px; margin-bottom: 1.1rem; }
}
/* Matches .research__more / .locations__more / .test__more — centers the
    "view all" CTA below the card grid with consistent vertical rhythm. */
.treatments__more { text-align: center; margin-top: 3rem; }
@media (max-width: 767px) {
  .treatments__more { margin-top: 2rem; }
}
@media (min-width: 600px) { .research__grid { grid-template-columns: 1fr 1fr 1fr; } }

/* ==========================================================================
    17. LOCATIONS
    ========================================================================== */
.locations { background: var(--offwhite); position: relative; border-top: 1px solid var(--gray-hairline); }
.locations__inner {
  max-width: var(--container); margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.locations__header { text-align: center; max-width: 560px; margin: 0 auto 3.5rem; }
.locations__header h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); }
.locations__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.locations__grid .post_title{
  color: var(--midnight);
}
 .loc{
  border: var(--border-card); border-radius: var(--card-radius); overflow: hidden;
  background: var(--white); position: relative; transition: all 0.3s;
  min-height: 380px;
}
.loc::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(to top, rgba(212,168,67,0.08), transparent);
  pointer-events: none;
}
.loc:hover { border-color: var(--dawn-ui); box-shadow: 0 4px 16px rgba(212,168,67,0.1); }
.loc--soon { opacity: 0.6; }
.loc__img {
  background: var(--offwhite);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gray-light); border-bottom: 1px solid var(--gray-hairline);
}
.loc__img img { width: 100%; height: 100%; object-fit: cover; }
.loc__info { padding: 1.5rem 1.75rem; position: relative; z-index: 1; }
.loc__info h4 a{
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
  color: var(--midnight); margin-bottom: 0.15rem; letter-spacing: -0.01em;
}
.loc__info p { font-size: 0.95rem; color: var(--gray); font-weight: 400; }
.locations__more { text-align: center; margin-top: 2.5rem; }

@media (min-width: 600px) { .locations__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .locations__grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

/* ==========================================================================
    18. FINAL CTA
    ========================================================================== */
.cta-final {
  background: var(--midnight); color: var(--white);
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; bottom: -40%; right: -20%; width: 70%; height: 120%;
  background: radial-gradient(ellipse, rgba(212,168,67,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.cta-final::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-sunrise);
}
.cta-final__inner {
  max-width: 640px; margin: 0 auto; padding: 5.5rem var(--gutter);
  text-align: center; position: relative; z-index: 2;
}
.cta-final h2 {
  color: var(--white); font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1.25rem;
}
.cta-final p {
  color: rgba(255,255,255,0.65); font-weight: 400; line-height: 1.7;
  margin-bottom: 2.5rem; font-size: 1.1rem;
}
.cta-final__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ==========================================================================
    19. FOOTER
    ========================================================================== */
.footer {
  background: linear-gradient(180deg, var(--midnight-light), var(--midnight));
  color: rgba(255,255,255,0.65);
}
.footer__inner {
  max-width: var(--container); margin: 0 auto; padding: var(--section-pad) var(--gutter) 2rem;
}
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer h5 {
  font-family: var(--font-mono); color: var(--white); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer a {
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.95rem;
  transition: color 0.2s; font-weight: 400;
}
.footer a:hover { color: var(--dawn-ui); }
.footer__brand-name {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 800;
  color: var(--white); letter-spacing: 0.03em; margin-bottom: 1rem; display: block;
}
.footer__brand p { font-size: 0.95rem; line-height: 1.6; max-width: 280px; font-weight: 400; color:rgba(255, 255, 255, 0.65); }
.footer__grid p{ color:rgba(255, 255, 255, 0.65); }
.footer__social { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.footer__social a {
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; transition: all 0.2s;
}
.footer__social a:hover { border-color: var(--dawn-ui); color: var(--dawn-ui); }
.footer .btn--dawn { color: var(--midnight); }
.footer__legal {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem;
}
.footer__legal p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; font-weight: 400; }
.footer__legal-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
.footer__legal-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
@media (min-width: 600px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

/* ═══════════════════════════════════════════
   FOOTER CTA
   ═══════════════════════════════════════════ */
.footer-cta {
  padding: var(--section-pad) 0;
  background: var(--midnight);
  color: var(--white);
  text-align: center;
  position: relative;
}
.footer-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dawn-on-dark), transparent);
}
.footer-cta__headline {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.footer-cta__sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-style: italic;
}

/* ==========================================================================
    NEW — PULL-QUOTE STRIP (between hero and pillars)
    ========================================================================== */
.pullquote-strip {
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}
.pullquote-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-sunrise);
}
.pullquote-strip::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-sunrise);
}
.pullquote-strip__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 3.5rem var(--gutter);
  text-align: center;
  position: relative;
  z-index: 2;
}
.pullquote-strip blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  line-height: 1.55;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  position: relative;
  padding: 0 1.5rem;
}
.pullquote-strip blockquote::before,
.pullquote-strip blockquote::after {
  content: '"';
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dawn-on-dark);
  opacity: 0.5;
  font-size: 1.5em;
  line-height: 0;
  position: relative;
  top: 0.15em;
}
.pullquote-strip__attr {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dawn-on-dark);
  display: inline-block;
}

/* ==========================================================================
    NEW — THREE PILLARS (Physician-Led · Data-Driven · Tailored)
    ========================================================================== */
.pillars {
  background: var(--white);
  position: relative;
}
.pillars__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.pillars__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.pillars__header h2 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  margin-bottom: 1rem;
}
.pillars__header .sub {
  font-size: 1.05rem;
}
.pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.pillar {
  position: relative;
  border: var(--border-card);
  border-radius: var(--card-radius);
  background: var(--white);
  padding: 2.25rem var(--card-pad);
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, var(--dawn-glow), rgba(232,195,90,0.06) 40%, transparent);
  pointer-events: none;
  transition: all 0.5s ease;
}
@media (hover: hover) {
  .pillar:hover {
    border-color: var(--dawn-decorative);
    box-shadow: 0 4px 24px rgba(212,168,67,0.15), 0 0 0 1px rgba(212,168,67,0.2);
  }
  .pillar:hover::after {
    height: 60%;
    background: linear-gradient(to top, var(--dawn-glow-strong), rgba(232,195,90,0.1) 50%, transparent);
  }
}
.pillar__icon {
  width: 52px; height: 52px;
  border: 1.5px solid var(--gray-faint);
  border-radius: 8px;
  background: var(--offwhite);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}
.pillar__icon svg {
  width: 24px; height: 24px;
  stroke: var(--midnight); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.pillar__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dawn-text);
  display: block;
  margin-bottom: 0.5rem;
  position: relative; z-index: 1;
}
.pillar h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--midnight);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  position: relative; z-index: 1;
}
.pillar p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 400;
  position: relative; z-index: 1;
}
@media (min-width: 600px) {
  .pillars__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .pillars__grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ==========================================================================
    NEW — FOUNDERS / LEADERSHIP (Roizen + Mauldin cards)
    ========================================================================== */
.founders {
  background: var(--offwhite);
  position: relative;
  border-top: 1px solid var(--gray-hairline);
}
.founders__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.founders__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.founders__header h2 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}
.founders__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.founder {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  border: var(--border-card);
  border-radius: var(--card-radius);
  background: var(--white);
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.founder::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(212,168,67,0.1), rgba(232,195,90,0.04) 40%, transparent);
  pointer-events: none;
  transition: all 0.5s ease;
}
@media (hover: hover) {
  .founder:hover {
    border-color: var(--dawn-decorative);
    box-shadow: 0 4px 24px rgba(212,168,67,0.15), 0 0 0 1px rgba(212,168,67,0.2);
  }
  .founder:hover::after {
    height: 55%;
    background: linear-gradient(to top, var(--dawn-glow-strong), rgba(232,195,90,0.08) 50%, transparent);
  }
}
/* Founder portrait crop — 1:1 square matches portrait-orientation source
    photos better than landscape 4:3. Face dominates, body language still
    visible. Adjust object-position per photo if faces sit off-center. */
.founder__img-wrap {
  aspect-ratio: 1/1;
  background: var(--midnight-light);
  overflow: hidden;
  position: relative;
}
.founder__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.founder__body {
  padding: 2rem var(--card-pad) 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}
.founder__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dawn-text);
}
.founder__name {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: var(--midnight);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.founder__credential {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray-light);
  text-transform: uppercase;
}
.founder__hook {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 400;
  margin-top: 0.35rem;
}
.founder__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dawn-text);
  background: rgba(142,113,35,0.08);
  border: 1px solid rgba(142,113,35,0.15);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  align-self: flex-start;
  margin-top: 0.5rem;
}
.founder__link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--midnight);
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
}
.founder__link .arrow { color: var(--dawn-text); transition: transform 0.2s; }
.founder:hover .founder__link { gap: 0.65rem; }
.founder:hover .founder__link .arrow { transform: translateX(2px); }
@media (min-width: 768px) {
  .founders__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ==========================================================================
    COMBINED — WHAT MAKES US DIFFERENT (merges old Pillars + Standard)
    Three-pillar declaration lives in H2; intro blurb sets up Dr. Roizen;
    4 numbered steps demonstrate the pillars concretely. Light background
    to preserve hero → section rhythm.
    ========================================================================== */
.standard {
  background: var(--white);
  position: relative;
  border-bottom: 1px solid var(--gray-hairline);
}
.standard__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.standard__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}
.standard__header h2 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  margin-bottom: 1.25rem;
  color: var(--midnight);
}
.standard__intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 1.25rem;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}
.standard__intro strong { color: var(--midnight); font-weight: 700; }
.standard .process__steps {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.standard .process__steps::before {
  content: '';
  position: absolute;
  left: 25px; top: 26px; bottom: 26px; width: 2px;
  background: linear-gradient(180deg, #B28D2C 0%, #9A7629 30%, #2A7E66 70%, #1A6B5A 100%);
  opacity: 0.55;
}
.standard .step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  position: relative;
}
.standard .step__num {
  width: 52px; height: 52px;
  border: var(--border-card);
  border-radius: var(--btn-radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dawn-text);
  background: var(--white);
  position: relative;
  z-index: 2;
}
.standard .step__content h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}
.standard .step__content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--gray);
  font-weight: 400;
  line-height: 1.65;
}
@media (max-width: 767px) {
  .standard__header { margin-bottom: 2.5rem; }
  .standard__header h2 { font-size: 1.35rem; }
  .standard__intro { font-size: 0.95rem; margin-top: 1rem; }
  .standard .step { grid-template-columns: 44px 1fr; gap: 1rem; padding: 1.25rem 0; }
  .standard .step__num { width: 44px; height: 44px; font-size: 0.82rem; }
  .standard .process__steps::before { left: 21px; }
  .standard .step__content h4 { font-size: 1.05rem; }
  .standard .step__content p { font-size: 0.95rem; }
}

/* ==========================================================================
    20. RESPONSIVE OVERRIDES
    ========================================================================== */

/* --- Mobile (max-width: 767px) --- */
@media (max-width: 767px) {
  :root { --gutter: 1.25rem; --section-pad: 3rem; --card-pad: 1.25rem; }

  /* Global label size reduction on mobile */
  .label { font-size: 0.75rem; margin-bottom: 0.65rem; }

  /* Hero — hide the image on mobile, tighten spacing */
  .hero__inner { padding: 2.5rem var(--gutter) 0; }
  .hero__text { padding-bottom: 2rem; }
  .hero__img { display: none; }
  .hero__img-mobile { display: block; }
  .hero h1 { font-size: 2.75rem; line-height: 1.05; margin-bottom: 0.85rem; }
  .hero__sub { font-size: 1.5rem; margin-top: 0.5rem; font-weight: 700; }
  .hero__body { font-size: 1.15rem; line-height: 1.5; margin-bottom: 1.75rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Evidence hub — tighten everything */
  .evidence__inner { padding: 2.5rem var(--gutter); }
  .evidence__card { padding: var(--card-pad); gap: 1.25rem; }
  .evidence__label-wrap { margin-bottom: 0; }
  .evidence__label-wrap h2 { font-size: 1.35rem; }
  .evidence__links { gap: 0.75rem; }
  .evidence__link { padding: 0.85rem 1rem; gap: 0.75rem; }
  .evidence__link-icon { width: 38px; height: 38px; }
  .evidence__link-icon svg { width: 17px; height: 17px; }
  .evidence__link-title { font-size: 0.88rem; }
  .evidence__link-sub { font-size: 0.82rem; }

  /* Treatment cards */
  .treatments__inner { padding: var(--section-pad) var(--gutter); }
  .treatments__header { margin-bottom: 2.5rem; }
  .treatments__header h2 { font-size: 1.35rem; }
  .treatments__header .sub { font-size: 0.95rem; }
  .treatments__grid { gap: 1rem; }
  .tcard__top { padding: var(--card-pad) var(--card-pad) 0.5rem; gap: 0.65rem; }
  .tcard__icon { width: 40px; height: 40px; }
  .tcard__icon svg { width: 18px; height: 18px; }
  .tcard__body { padding: 0 var(--card-pad) var(--card-pad); }
  .tcard__desc { font-size: 0.95rem; }
  .tcard__name { font-size: 1rem; }

  /* Documentary */
  .doc__inner { padding: var(--section-pad) var(--gutter); }
  .doc__grid { gap: 1.75rem; }
  .doc__text h2 { font-size: 1.35rem; }
  .doc__quote { font-size: 0.95rem; padding-left: 1.25rem; }
  .doc__quote cite { font-size: 0.82rem; }

  /* Testimonials */
  .test__inner { padding: var(--section-pad) var(--gutter); }
  .test__header { margin-bottom: 2.5rem; }
  .test__header h2 { font-size: 1.35rem; }
  .test__videos { gap: 1rem; }
  .test__vid-info { padding: 1rem 1.25rem; }
  .test__vid-info h4 { font-size: 1rem; }
  .test__quotes { gap: 1rem; }
  .test__card { padding: var(--card-pad) var(--card-pad) var(--card-pad) 1.5rem; }
  .test__card blockquote { font-size: 0.95rem; }

  /* TPE */
  .tpe__inner { padding: var(--section-pad) var(--gutter); }
  .tpe__grid { gap: 2rem; }
  .tpe__text h2 { font-size: 1.35rem; }
  .tpe__text p { font-size: 0.95rem; }
  .tpe__caption { font-size: 0.82rem; }
  .tpe__actions { flex-direction: column; }
  .tpe__actions .btn { width: 100%; justify-content: center; }
  .tpe__actions .btn--ghost { width: auto; }

  /* Stats */
  .stats__num { font-size: 1.75rem; }
  .stats__label { font-size: 0.82rem; }
  .stats__inner { padding: 2rem var(--gutter); gap: 1.25rem; }

  /* Process */
  .process__inner { padding: var(--section-pad) var(--gutter); }
  .process__header { margin-bottom: 2.5rem; }
  .process__header h2 { font-size: 1.35rem; }
  .step { grid-template-columns: 40px 1fr; gap: 0.85rem; padding: 1.25rem 0; }
  .step__num { width: 40px; height: 40px; font-size: 0.82rem; }
  .step__content h4 { font-size: 1rem; }
  .step__content p { font-size: 0.95rem; }
  .process__steps::before { left: 19px; }

  /* Research */
  .research__inner { padding: var(--section-pad) var(--gutter); }
  .research__header { margin-bottom: 2.5rem; }
  .research__header h2 { font-size: 1.35rem; }
  .research__grid { gap: 1rem; }
  .rcard__body { padding: var(--card-pad); }
  .rcard h4 { font-size: 0.95rem; }
  .rcard p { font-size: 0.88rem; }

  /* Locations */
  .locations__inner { padding: var(--section-pad) var(--gutter); }
  .locations__header { margin-bottom: 2.5rem; }
  .locations__header h2 { font-size: 1.35rem; }
  .locations__grid { gap: 1rem; }
  .loc__info { padding: 1rem 1.25rem; }
  .loc__info h4 { font-size: 1rem; }

  /* Final CTA */
  .cta-final__inner { padding: 3rem var(--gutter); }
  .cta-final h2 { font-size: 1.35rem; }
  .cta-final p { font-size: 1rem; margin-bottom: 2rem; }
  .cta-final__actions { flex-direction: column; }
  .cta-final__actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer__inner { padding: 2.5rem var(--gutter) 1.5rem; }
  .footer__grid { gap: 2rem; margin-bottom: 2rem; }
  .footer__brand p { max-width: 100%; }
  .footer__legal-links { flex-direction: column; gap: 0.5rem; }

  /* Pull-quote strip (mobile) */
  .pullquote-strip__inner { padding: 2.25rem var(--gutter); }
  .pullquote-strip blockquote { padding: 0 0.5rem; font-size: 1.1rem; }
  .pullquote-strip__attr { font-size: 0.72rem; }

  /* Pillars (mobile) */
  .pillars__inner { padding: var(--section-pad) var(--gutter); }
  .pillars__header { margin-bottom: 2.5rem; }
  .pillars__header h2 { font-size: 1.35rem; }
  .pillars__header .sub { font-size: 0.95rem; }
  .pillars__grid { gap: 1rem; }
  .pillar { padding: 1.75rem var(--card-pad); }
  .pillar__icon { width: 44px; height: 44px; margin-bottom: 1rem; }
  .pillar__icon svg { width: 20px; height: 20px; }
  .pillar h3 { font-size: 1.1rem; }
  .pillar p { font-size: 0.95rem; }

  /* Founders (mobile) */
  .founders__inner { padding: var(--section-pad) var(--gutter); }
  .founders__header { margin-bottom: 2.5rem; }
  .founders__header h2 { font-size: 1.35rem; }
  .founders__grid { gap: 1rem; }
  .founder__body { padding: 1.5rem var(--card-pad) 1.75rem; gap: 0.5rem; }
  .founder__name { font-size: 1.25rem; }
  .founder__credential { font-size: 0.82rem; }
  .founder__hook { font-size: 0.95rem; }
}

/* --- Tablets (768px–899px) --- */
@media (min-width: 768px) and (max-width: 899px) {
  .nav__list { gap: 1.25rem; }
  .treatments__grid { grid-template-columns: 1fr 1fr; }
}

/* --- Touch devices: ensure 44px+ targets --- */
@media (pointer: coarse) {
  .btn { min-height: 48px; }
  .nav__link { padding: 0.5rem 0; }
  .tcard { cursor: pointer; }
  .footer__social a { width: 44px; height: 44px; }
}

.tcard2{
	cursor: default;
}

/* --- Accessibility: reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Dark testimonials variant */
.test--dark {
  background: var(--midnight);
}
.test--dark .test__header h2 {
  color: var(--white);
}
.test--dark .test__header .label {
  color: var(--teal-on-dark);
}
.test--dark .test__card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.test--dark .test__card blockquote {
  color: rgba(255,255,255,0.85);
}
.test--dark .test__vid-info h4 {
  color: var(--white);
}
.test--dark .test__vid-info p {
  color: rgba(255,255,255,0.6);
}
.test--dark .test__vid-thumb {
  background: rgba(255,255,255,0.06);
  color: var(--dawn-on-dark);
  border-color: rgba(255,255,255,0.1);
}
.test--dark .btn--outline {
  border-color: var(--teal-on-dark);
  color: var(--teal-on-dark);
  background: transparent;
}
.test--dark .btn--outline:hover {
  background: rgba(109,196,178,0.1);
}

/* Process dark variant */
.process .process__header h2 { color: var(--white); }
.process .process__header .label { color: var(--teal-on-dark); }

.process .step__num { color: var(--dawn-on-dark); background: var(--midnight); border-color: rgba(255,255,255,0.12); }
.process .process__steps::before { opacity: 0.85; }
.process .step__content h4 { color: var(--white); }
.process .step__content p { color: rgba(255,255,255,0.7); }
.process .step::before { background: rgba(255,255,255,0.08); }
/* Stats bar: 3-column override */
@media (min-width: 600px) {
  .stats__inner { grid-template-columns: 1fr 1fr 1fr; }
}


/* Dr. Roizen Page */




/* ==========================================================================
   HERO — light, compact, fixed height
   ========================================================================== */
.hero {
  background: var(--offwhite);
  border-bottom: 1px solid var(--gray-hairline);
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  overflow: hidden;
}

.hero__content {
  padding: 3rem var(--gutter) 3rem max(var(--gutter), calc((100vw - 1200px) / 2 + var(--gutter)));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero__eyebrow-line {
  width: 28px; height: 1.5px;
  background: var(--gradient-accent);
  flex-shrink: 0;
}
.hero__eyebrow-text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dawn-text);
}

.hero__name {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--midnight);
  margin-bottom: 0.6rem;
}
.hero__credential {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--dawn-text);
  margin-bottom: 2rem;
}

.hero__quote {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--gray);
  border-left: 2px solid var(--dawn-text);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__stats {
  display: flex; gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--gray-hairline);
}
.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.3rem;
  color: var(--dawn-text-large);
}
.hero__stat-num--teal { color: var(--teal-on-light); }
.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  line-height: 1.4;
}

.hero__actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.hero__photo-col {
  position: relative;
  height: 620px;
  border-left: 1px solid var(--gray-hairline);
  overflow: hidden;
  flex-shrink: 0;
}
.hero__photo-img {
  height: 100%;
 }
.hero__photo-overlay {
  display: none;
}
.hero__photo-tag {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gray-hairline);
  border-left: 2px solid var(--dawn-decorative);
  border-radius: 8px;
}
.hero__photo-tag-text {
  font-family: var(--font-mono);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dawn-text); line-height: 1.5;
}

/* ==========================================================================
   AUTHORITY STRIP — dark, matches homepage credential bar pattern
   ========================================================================== */
.authority {
  background: var(--midnight-light);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.75rem 0;
}
.authority__inner {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0; justify-content: center;
}
.authority__item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.authority__item:last-child { border-right: none; }
.authority__icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.authority__icon svg { width: 18px; height: 18px;  fill: none; stroke-width: 1.5; }
.authority__label {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block; margin-bottom: 0.15rem;
}
.authority__value {
  font-family: var(--font-heading);
  font-size: 0.85rem; font-weight: 700;
  color: var(--white);
}

.authority__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(232,195,90,0.1);
  border: 1px solid rgba(232,195,90,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.authority__icon svg {
  width: 16px;
  height: 16px;
  fill: var(--dawn-on-dark);
}

/* ==========================================================================
   BIO — light/offwhite, split layout
   ========================================================================== */
.bio {
  background: var(--offwhite);
  padding: var(--section-pad) 0;
}
.bio__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem; align-items: start;
}
.bio__sticky { position: sticky; top: 100px; }

.bio__photo-stack { position: relative; }
.bio__photo-main {
  width: 100%; border-radius: var(--card-radius);
  aspect-ratio: 3/4; object-fit: cover; object-position: center top;
  display: block; border: var(--border-card);
}
.bio__photo-accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 52%; aspect-ratio: 4/3;
  border-radius: var(--card-radius);
  object-fit: cover; object-position: center;
  border: 3px solid var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.bio__headline {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--midnight);
  margin-bottom: 1.75rem;
  line-height: 1.1;
}
.bio__body {
  font-family: var(--font-body);
  font-size: 1.05rem; line-height: 1.75;
  color: var(--gray); margin-bottom: 1.5rem;
}

.bio__credentials {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2.5rem;
}
/* Use sun-card for credential items */
.bio__cred-item {
  padding: 1.25rem 1.5rem;
}
.bio__cred-org {
  font-family: var(--font-mono);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-on-light);
  margin-bottom: 0.4rem; display: block;
}
.bio__cred-role {
  font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 700;
  color: var(--midnight); line-height: 1.3;
}

/* ==========================================================================
   PULL QUOTE — dark section
   ========================================================================== */
.pullquote {
  background: var(--midnight);
  padding: 5rem 0;
}
.pullquote__inner {
  max-width: var(--container-narrow);
  margin: 0 auto; padding: 0 var(--gutter);
  text-align: center;
}
.pullquote__text {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300; font-style: italic;
  line-height: 1.55; color: var(--white);
  margin-bottom: 2rem;
}
.pullquote__attribution {
  font-family: var(--font-mono);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ==========================================================================
   WHY — light, split
   ========================================================================== */
.why {
  background: var(--white);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--gray-hairline);
}
.why__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.why__headline {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: var(--midnight); margin-bottom: 1.5rem;
}
.why__body {
  font-family: var(--font-body);
  font-size: 1.05rem; line-height: 1.75;
  color: var(--gray); margin-bottom: 1.25rem;
}
.why__points { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.why__point { display: flex; gap: 1rem; align-items: flex-start; }
.why__point-num {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(26,107,90,0.08);
  border: 1px solid rgba(26,107,90,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600;
  color: var(--teal-on-light); letter-spacing: 0.05em;
}
.why__point-text {
  font-family: var(--font-body);
  font-size: 1rem; line-height: 1.65; color: var(--gray);
}
.why__point-text strong {
  font-family: var(--font-heading); font-weight: 700;
  color: var(--midnight);
}

.why__photo-col { position: relative; }
.why__photo {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--card-radius);
  object-fit: cover; object-position: center top;
  display: block; border: var(--border-card);
}
.why__photo-caption {
  position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  padding: 0.85rem 1.1rem;
  background: rgba(13,27,46,0.88); backdrop-filter: blur(8px);
  border-radius: 8px; border: 1px solid rgba(212,168,67,0.2);
}
.why__photo-caption-text {
  font-family: var(--font-mono);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dawn-on-dark); line-height: 1.5;
}

/* ==========================================================================
   PUBLICATIONS — offwhite, sun-card grid
   ========================================================================== */
.pubs {
  background: var(--offwhite);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--gray-hairline);
}
.pubs__header { text-align: center; margin-bottom: 3.5rem; }
.pubs__headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--midnight); margin-bottom: 0.5rem;
}
.pubs__sub {
  font-family: var(--font-body); font-size: 1rem;
  color: var(--gray-light); font-style: italic;
}
.pubs__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
/* sun-card inner content */
/* .pub-card__inner { padding: var(--card-pad); } */
.pub-card__type { display: block; margin-bottom: 0.75rem; }
.pub-card__title {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  color: var(--midnight); line-height: 1.4; margin-bottom: 0.5rem;
}
.pub-card__detail {
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--gray-light); font-style: italic;
}

/* ==========================================================================
   BLOG INTRO — white, sun-card grid, mirrors pubs structure but date-led
   ========================================================================== */
.blog-intro {
  background: var(--white);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--gray-hairline);
}
.blog-intro__header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
}
.blog-intro__headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--midnight);
  margin-bottom: 1rem;
}
.blog-intro__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
}
.blog-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card__inner {
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
}
.blog-card--featured { grid-column: 1 / -1; }
.blog-card--featured .blog-card__inner {
  padding: 2.75rem;
  max-width: 860px;
}
.wp-block-post-featured-image :where(img){
  min-height: 225px;
}
.blog-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dawn-text);
  margin-bottom: 1.25rem;
  display: block;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.blog-card__date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--midnight);
  margin-bottom: 0.85rem;
}
.blog-card--featured .blog-card__title {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  line-height: 1.2;
  margin-bottom: 1.1rem;
}
.blog-card__excerpt {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.blog-card--featured .blog-card__excerpt {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
}
.blog-card__readmore {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dawn-text);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s var(--ease-out-expo);
}
.sun-card:hover .blog-card__readmore { gap: 0.7rem; }

.blog-intro__actions {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   CTA — dark, gold button
   ========================================================================== */
.cta-section {
  background: var(--midnight);
  padding: 5rem 0;
}
.cta-section__inner {
  text-align: center; max-width: 640px;
  margin: 0 auto; padding: 0 var(--gutter);
}
.cta-section__headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white); margin-bottom: 1rem;
}
.cta-section__body {
  font-family: var(--font-body); font-size: 1.05rem;
  line-height: 1.6; color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem; font-style: italic;
}
.cta-section__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #07111d;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  align-items: center; justify-content: space-between;
}
.footer__logo {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 0.95rem; color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a {
  font-family: var(--font-mono);
  font-size: 0.72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--dawn-ui); }
.footer__note {
  font-family: var(--font-mono); font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
}

/* ==========================================================================
   THE PATH — dark, 3 steps
   ========================================================================== */
.path { background: var(--midnight); position: relative; overflow: hidden; }
.path::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 120%; height: 200%; background: radial-gradient(ellipse, rgba(212,168,67,0.08) 0%, transparent 50%); pointer-events: none; }
.path::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-sunrise); }
.path__inner { max-width: var(--container); margin: 0 auto; padding: var(--section-pad) var(--gutter); position: relative; z-index: 2; }
.path__header { text-align: center; max-width: 560px; margin: 0 auto 3.5rem; }
.path__header h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); color: var(--white); }
.path__steps { display: grid; grid-template-columns: 1fr; gap: 2rem; counter-reset: step; position: relative; }
.path__step { position: relative; padding-top: 0.5rem; }
.path__step-num { width: 52px; height: 52px; border: 1.5px solid rgba(255,255,255,0.16); border-radius: var(--btn-radius); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 0.9rem; font-weight: 600; color: var(--dawn-on-dark); background: var(--midnight-mid); margin-bottom: 1.25rem; }
.path__step h4 { font-family: var(--font-heading); font-size: 1.18rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.path__step p { font-family: var(--font-body); font-size: 1.02rem; color: rgba(255,255,255,0.7); line-height: 1.65; }
.path__cta { text-align: center; margin-top: 3.5rem; }
.path__finepoint { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1.25rem; font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.path__finepoint span { width: 4px; height: 4px; border-radius: 50%; background: var(--dawn-on-dark); }
@media (min-width: 760px) {
  .path__steps { grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; }
  .path__steps::before { content: ''; position: absolute; top: 26px; left: 0%; right: 0%; height: 2px; background: linear-gradient(90deg, #B28D2C, #2A7E66); opacity: 0.4; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--white); position: relative; border-top: 1px solid var(--gray-hairline); }
.faq__inner { max-width: 760px; margin: 0 auto; padding: var(--section-pad) var(--gutter); }
.faq__header { text-align: center; margin-bottom: 3rem; }
.faq__header h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); color: var(--midnight); }
.faq__list { display: flex; flex-direction: column; gap: 15px; }
.faq__item { border-bottom: 1px solid var(--gray-hairline); }
.faq__q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; font-family: var(--font-heading); font-size: 1.12rem; font-weight: 700; color: var(--midnight); letter-spacing: -0.01em; line-height: 1.3; }
.faq__icon { flex: none; width: 24px; height: 24px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; background: var(--dawn-text-large); border-radius: 2px; transition: transform 0.3s var(--ease-out-expo); }
.faq__icon::before { top: 11px; left: 3px; right: 3px; height: 2px; }
.faq__icon::after { left: 11px; top: 3px; bottom: 3px; width: 2px; }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease-out-expo); }
.faq__a-inner { padding: 0 0.25rem 1.7rem; font-family: var(--font-body); font-size: 1.05rem; line-height: 1.75; color: var(--gray); }
.faq__a-inner a { color: var(--dawn-text); font-weight: 600; border-bottom: 1px solid rgba(142,113,35,0.3); }

/* ==========================================================================
   FINAL CTA — dark
   ========================================================================== */
.cta-final { background: var(--midnight); color: var(--white); position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; bottom: -40%; right: -20%; width: 70%; height: 120%; background: radial-gradient(ellipse, rgba(212,168,67,0.12) 0%, transparent 55%); pointer-events: none; }
.cta-final::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-sunrise); }
.cta-final__inner { max-width: 660px; margin: 0 auto; padding: var(--section-pad) var(--gutter); text-align: center; position: relative; z-index: 2; }
.cta-final h2 { color: var(--white); font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 1.25rem; }
.cta-final p { color: rgba(255,255,255,0.68); font-weight: 400; line-height: 1.7; margin-bottom: 2.5rem; font-size: 1.12rem; }
.cta-final__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ==========================================================================
   SOFT CAPTURE — subordinate
   ========================================================================== */
.capture { background: var(--midnight); position: relative; overflow: hidden; }
.capture__inner { max-width: var(--container); margin: 0 auto; padding: 3.5rem var(--gutter); position: relative; z-index: 1; }
.capture__band { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: center; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--card-radius); background: rgba(255,255,255,0.04); padding: 1.85rem 2.1rem; }
.capture__text h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.capture__text p { font-family: var(--font-body); font-size: 1rem; color: rgba(255,255,255,0.62); line-height: 1.6; max-width: 440px; }
.capture__form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.capture__form input { flex: 1; min-width: 200px; font-family: var(--font-body); font-size: 1rem; padding: 0.9rem 1.1rem; border: 1.5px solid rgba(255,255,255,0.16); border-radius: var(--btn-radius); background: rgba(255,255,255,0.06); color: var(--white); transition: border-color 0.25s; }
.capture__form input::placeholder { color: rgba(255,255,255,0.4); }
.capture__form input:focus { outline: none; border-color: var(--dawn-ui); background: rgba(255,255,255,0.1); }
.capture__form .btn { white-space: nowrap; }
@media (min-width: 720px) { .capture__band { grid-template-columns: 1fr 1fr; } }




/* ==========================================================================
   PROOF (From our patients) — dark
   ========================================================================== */
.proof { background: var(--midnight); position: relative; overflow: hidden; }
.proof::before { content: ''; position: absolute; top: -40%; left: 60%; width: 90%; height: 160%; background: radial-gradient(ellipse, rgba(212,168,67,0.12) 0%, rgba(212,168,67,0.04) 35%, transparent 60%); pointer-events: none; }
.proof::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-sunrise); }
.proof__inner { max-width: var(--container); margin: 0 auto; padding: var(--section-pad) var(--gutter); position: relative; z-index: 2; }
.proof__header { max-width: 640px; margin-bottom: 3rem; }
.proof__header h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); color: var(--white); }
.proof__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; }
.proof__video { position: relative; cursor: pointer; overflow: hidden; border: 1.5px solid rgba(255,255,255,0.1); border-radius: var(--card-radius); transition: all 0.4s var(--ease-out-expo); min-height: 320px; }
.proof__video:hover { border-color: var(--dawn-ui); box-shadow: 0 0 28px rgba(212,168,67,0.2); }
.proof__video-inner { position: absolute; inset: 0; background: linear-gradient(135deg, var(--midnight-mid), var(--midnight-light)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; }
.proof__video-inner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.proof__video-play { width: 80px; height: 80px; background: var(--gradient-gold-fill); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 32px rgba(212,168,67,0.3); transition: all 0.3s; position: relative; z-index: 2; }
.proof__video-play svg { width: 26px; height: 26px; fill: var(--midnight); stroke: none; margin-left: 4px; }
.proof__video:hover .proof__video-play { transform: scale(1.08); box-shadow: 0 12px 40px rgba(212,168,67,0.45); }
.proof__video-cap { position: relative; z-index: 2; text-align: center; }
.proof__video-cap .n { font-family: var(--font-heading); font-weight: 800; color: var(--white); font-size: 1.15rem; display: block; }
.proof__video-cap .r { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.25rem; display: block; }
.proof__quotes { display: flex; flex-direction: column; gap: 1.5rem; }
.proof__card { border: 1.5px solid var(--midnight); background: rgb(255,255,255); border-radius: var(--card-radius); padding: 1.85rem 1.85rem 1.85rem 2.1rem; position: relative; overflow: hidden; flex: 1; display: flex; flex-direction: column; justify-content: center; transition: all 0.3s; }
.proof__card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--dawn-on-dark), var(--teal-on-dark)); }
.proof__card blockquote { font-family: var(--font-body); font-style: italic; color: #000; font-weight: 400; line-height: 1.65; font-size: 1.18rem; }
.proof__card cite { font-family: var(--font-mono); font-style: normal; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dawn-on-dark); display: block; margin-top: 1rem; }
@media (min-width: 860px) { .proof__grid { grid-template-columns: 1.2fr 1fr; } }

/* proof can be toggled to light (offwhite) via tweak */
body[data-proof="light"] .proof { background: var(--offwhite); border-top: 1px solid var(--gray-hairline); }
body[data-proof="light"] .proof::after { display: none; }
body[data-proof="light"] .proof::before { background: radial-gradient(ellipse, rgba(212,168,67,0.06) 0%, transparent 55%); }
body[data-proof="light"] .proof__header h2 { color: var(--midnight); }
body[data-proof="light"] .proof .label--dark { color: var(--dawn-text); }
body[data-proof="light"] .proof__header .gradient-accent-dark { color: var(--teal-on-light); }
@supports (-webkit-background-clip: text) {
  body[data-proof="light"] .proof__header .gradient-accent-dark { background: var(--gradient-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
}
body[data-proof="light"] .proof__header .gold-period-dark { color: var(--dawn-text); }
body[data-proof="light"] .proof__video { border-color: var(--midnight); }
body[data-proof="light"] .proof__card { background: var(--white); border-color: var(--midnight); }
body[data-proof="light"] .proof__card blockquote { color: var(--midnight); }
body[data-proof="light"] .proof__card cite { color: var(--dawn-text); }


/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow  { animation: fadeUp 0.5s ease both 0.1s; }
.hero__name     { animation: fadeUp 0.5s ease both 0.2s; }
.hero__credential { animation: fadeUp 0.5s ease both 0.27s; }
.hero__quote    { animation: fadeUp 0.5s ease both 0.35s; }
.hero__stats    { animation: fadeUp 0.5s ease both 0.42s; }
.hero__actions  { animation: fadeUp 0.5s ease both 0.5s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
html { overflow-x: hidden; }

/* Mobile header — hamburger below 900px per style guide */
@media (max-width: 899px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-hairline);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem var(--gutter) 1rem;
    box-shadow: 0 8px 24px rgba(13,27,46,0.08);
  }
  .header__nav.is-open { display: flex; }
  .header__nav a {
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--gray-hairline);
    width: 100%;
    font-size: 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .header__nav a:last-child { border-bottom: none; }
  .header__nav-cta {
    display: flex !important;
    margin-top: 0.75rem;
    padding: 1rem 1.5rem !important;
    background: var(--midnight);
    color: var(--white) !important;
    border-radius: var(--btn-radius);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    justify-content: center;
    border-bottom: none !important;
  }
  .header__mobile-toggle { display: flex; }
  .header .header__inner > .btn--primary { display: none; }
}
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .hero__photo-col { height: 320px; border-left: none; border-top: 1px solid var(--gray-hairline); }
  .hero__content { padding: 2.5rem var(--gutter); }
  .bio__inner, .why__inner { grid-template-columns: 1fr; gap: 3rem; }
  .bio__sticky { position: static; }
  .bio__photo-accent { display: none; }
  .pubs__grid { grid-template-columns: 1fr 1fr; }
  .authority__item { padding: 0.5rem 1.25rem; }
}
@media (max-width: 600px) {
  :root {
    --gutter: 1.25rem;
    --section-pad: 3rem;
    --card-pad: 1.25rem;
  }
  body { overflow-x: hidden; }
  .label { font-size: 0.82rem; letter-spacing: 0.08em; }
  .hero__eyebrow { margin-bottom: 1.25rem; }
  .hero__eyebrow-line { width: 20px; }
  .hero__eyebrow-text { font-size: 0.72rem; letter-spacing: 0.1em; }
  .hero__name { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .hero__credential { font-size: 0.78rem; letter-spacing: 0.05em; margin-bottom: 1.5rem; }
  .hero__quote { font-size: 1rem; padding-left: 1rem; margin-bottom: 1.5rem; }
  .hero__stats { gap: 1.25rem; flex-wrap: wrap; }
  .hero__stat-num { font-size: 1.6rem; }
  .hero__stat-label { font-size: 0.6rem; letter-spacing: 0.08em; }
  .hero__actions { gap: 0.75rem; }
  .hero__actions .btn { padding: 0.9rem 1.5rem; font-size: 0.78rem; }
  .hero__photo-tag-text { font-size: 0.62rem; }
  .bio__credentials { grid-template-columns: 1fr; }
  .bio__cred-org { font-size: 0.68rem; }
  .pubs__grid { grid-template-columns: 1fr; }
  .pullquote__text { font-size: 1.25rem; }
  .pullquote__attribution { font-size: 0.7rem; letter-spacing: 0.08em; }
  .why__photo-caption-text { font-size: 0.6rem; letter-spacing: 0.06em; }
  .why__point-num { width: 28px; height: 28px; }
  .blog-intro__grid { grid-template-columns: 1fr; }
  .blog-card--featured { grid-column: auto; }
  .blog-card--featured .blog-card__inner { padding: 1.5rem; max-width: none; }
  .blog-card--featured .blog-card__title { font-size: 1.25rem; }
  .blog-card--featured .blog-card__excerpt { font-size: 1rem; max-width: none; }
  .blog-intro__actions { flex-direction: column; align-items: stretch; }
  .blog-intro__actions .btn { justify-content: center; }
  .cta-section__actions { flex-direction: column; align-items: stretch; }
  .cta-section__actions .btn { justify-content: center; }
  .authority__inner { flex-direction: column; }
  .authority__item { border-right: none; width: 100%; justify-content: center; padding: 0.6rem 1rem; }
  .authority__value { font-size: 0.78rem; }
  .footer__inner { flex-direction: column; gap: 1rem; text-align: center; }
}



/* ==========================================================================
   LOCATION DETAIL PAGE
   ========================================================================== */


    /* ==========================================================================
       4. HERO
       ========================================================================== */
    .hero { background:var(--white); position:relative; overflow:hidden; }
    .hero::before { content:''; position:absolute; top:-20%; right:-15%; width:70%; height:130%; background:radial-gradient(ellipse, rgba(232,195,90,0.08) 0%, rgba(212,168,67,0.04) 30%, transparent 65%); pointer-events:none; }
    .hero::after { content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background:var(--gradient-sunrise); }
    .hero__inner { position:relative; z-index:2; padding:2.5rem var(--gutter) 0; max-width:var(--container); margin:0 auto; display:grid; grid-template-columns:1fr; gap:2rem; align-items:end; }
    .hero__text { padding-bottom:3.5rem; }
    .breadcrumb { display:flex; background-color: transparent; gap:0.5rem; align-items:center; font-family:var(--font-mono); font-size:0.82rem; font-weight:500; letter-spacing:0.08em; text-transform:uppercase; color:var(--gray-light); margin-bottom:1.5rem; }
    .breadcrumb a { color:var(--gray-light); transition:color 0.2s; }
    .breadcrumb a:hover { color:var(--dawn-text); }
    .breadcrumb__sep { color:var(--dawn-decorative); }
    .breadcrumb__current { color:var(--midnight); font-weight:600; }
    .hero h1 { font-size:clamp(2.5rem, 6vw, 4rem); margin-bottom:1.25rem; line-height:1.04; }
    .status-pill { display:inline-flex; align-items:center; gap:0.5rem; font-family:var(--font-mono); font-size:0.82rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:var(--teal-on-light); background:rgba(26,107,90,0.08); border:1px solid rgba(26,107,90,0.18); padding:0.4rem 0.85rem; border-radius:20px; margin-bottom:1.5rem; }
    .status-pill__dot { width:8px; height:8px; border-radius:50%; background:var(--teal-on-light); position:relative; }
    .status-pill__dot::after { content:''; position:absolute; inset:-3px; border-radius:50%; background:var(--teal-on-light); opacity:0.25; animation:pulse 2s var(--ease-out-expo) infinite; }
    @keyframes pulse { 0%,100% { transform:scale(1); opacity:0.25; } 50% { transform:scale(1.6); opacity:0; } }
    .hero__body { color:var(--gray); font-weight:400; font-size:1.15rem; line-height:1.7; max-width:520px; margin-bottom:2rem; font-family:var(--font-body); }
    .hero__actions { display:flex; flex-wrap:wrap; gap:1rem; align-items:center; }
    .hero__img { position:relative; align-self:stretch; display:flex; }
    .hero__img-frame { border:var(--border-card); border-radius:var(--card-radius); overflow:hidden; width:100%; aspect-ratio:5/6; box-shadow:0 16px 48px rgba(13,27,46,0.08); }
    .hero__img-frame img { width:100%; height:100%; object-fit:cover; }
    @media (min-width:768px){
      .hero__inner { grid-template-columns:1.05fr 0.95fr; padding:4rem var(--gutter) 0; gap:3.5rem; }
      .hero__text { padding-bottom:5rem; }
    }

    /* ==========================================================================
       5. KEY INFO + MAP
       ========================================================================== */
    .info { background:var(--offwhite); position:relative; border-top:1px solid var(--gray-hairline); }
    .info__inner { max-width:var(--container); margin:0 auto; padding:5rem var(--gutter); }
    .info__header { display:flex; flex-direction:column; gap:0.5rem; max-width:680px; margin:0 auto 3rem; text-align:center; }
    .info__header h2 { font-size:clamp(1.5rem, 3vw, 2.15rem); }
    .info__grid { display:grid; grid-template-columns:1fr; gap:1.5rem; align-items:stretch; }
    .info__card { background:var(--white); border:var(--border-card); border-radius:var(--card-radius); padding:0; position:relative; overflow:hidden; display:flex; flex-direction:column; }
    .info__card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:35%; background:linear-gradient(to top, var(--dawn-glow), rgba(232,195,90,0.04) 50%, transparent); pointer-events:none; z-index:0; }
    .info__rows { padding:2rem 2.25rem 1.25rem; flex:1; position:relative; z-index:1; }
    .info__row { display:flex; align-items:flex-start; gap:1rem; padding:1rem 0; border-top:1px solid var(--gray-hairline); }
    .info__row:first-child { border-top:none; padding-top:0; }
    .info__icon { width:42px; height:42px; flex:none; border:1.5px solid var(--gray-faint); border-radius:8px; background:var(--offwhite); display:flex; align-items:center; justify-content:center; }
    .info__icon svg { width:20px; height:20px; stroke:var(--midnight); fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
    .info__row-text { flex:1; padding-top:2px; }
    .info__k { font-family:var(--font-mono); font-size:0.75rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:var(--gray-light); display:block; margin-bottom:0.2rem; }
    .info__v { font-family:var(--font-heading); font-size:1rem; font-weight:600; color:var(--midnight); display:block; letter-spacing:-0.01em; line-height:1.35; }
    .info__v a { color:var(--midnight); }
    .info__v a:hover { color:var(--dawn-text); }
    .info__v-sub { font-family:var(--font-body); font-size:0.9rem; font-weight:400; color:var(--gray-light); display:block; margin-top:0.15rem; line-height:1.45; }
    .info__cta { padding:0 2.25rem 2rem; position:relative; z-index:1; display:flex; flex-direction:column; gap:0.5rem; }
    .info__cta .btn { justify-content:center; width:100%; }
    .info__fineprint { font-family:var(--font-mono); font-size:0.75rem; font-weight:500; letter-spacing:0.06em; color:var(--gray-light); text-align:center; text-transform:uppercase; margin-top:0.25rem; }

    /* Map */
    .map { border:var(--border-card); border-radius:var(--card-radius); overflow:hidden; background:var(--offwhite); position:relative; min-height:380px; display:flex; flex-direction:column; }
    .map__embed { flex:1; position:relative; background:#E8EDE7; overflow:hidden; min-height:300px; }
    .map__embed::before { content:''; position:absolute; inset:0; background-image:
      linear-gradient(rgba(13,27,46,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(13,27,46,0.06) 1px, transparent 1px);
      background-size: 48px 48px, 48px 48px; }
    .map__embed::after { content:''; position:absolute; inset:0; background:
      radial-gradient(circle at 28% 38%, rgba(178,141,44,0.08), transparent 18%),
      radial-gradient(circle at 70% 62%, rgba(178,141,44,0.06), transparent 20%);
    }
    .map__roads { position:absolute; inset:0; }
    .map__roads svg { width:100%; height:100%; }
    .map__pin { position:absolute; left:50%; top:50%; transform:translate(-50%, -100%); z-index:3; display:flex; flex-direction:column; align-items:center; }
    .map__pin-icon { width:42px; height:42px; background:var(--gradient-gold-fill); border:1.5px solid var(--dawn-decorative); border-radius:50% 50% 50% 0; transform:rotate(-45deg); box-shadow:0 6px 20px rgba(212,168,67,0.4), 0 0 0 6px rgba(212,168,67,0.12); display:flex; align-items:center; justify-content:center; }
    .map__pin-icon svg { width:18px; height:18px; transform:rotate(45deg); stroke:var(--midnight); fill:none; stroke-width:2; }
    .map__pin-label { margin-top:0.85rem; background:var(--midnight); color:var(--white); font-family:var(--font-heading); font-size:0.78rem; font-weight:700; letter-spacing:0.04em; padding:0.4rem 0.75rem; border-radius:6px; white-space:nowrap; box-shadow:0 4px 12px rgba(13,27,46,0.25); }
    .map__pin-label::before { content:''; position:absolute; top:-6px; left:50%; transform:translateX(-50%); border:6px solid transparent; border-bottom-color:var(--midnight); border-top:0; }
    .map__pin-label { position:relative; }
    .map__footer { border-top:1px solid var(--gray-hairline); padding:1rem 1.5rem; background:var(--white); display:flex; align-items:center; justify-content:space-between; gap:1rem; }
    .map__addr { font-family:var(--font-mono); font-size:0.8rem; color:var(--gray); letter-spacing:0.02em; }
    .map__addr strong { font-family:var(--font-heading); display:block; color:var(--midnight); font-size:0.92rem; letter-spacing:-0.01em; margin-bottom:0.15rem; font-weight:700; }
    .map__link { font-family:var(--font-heading); font-size:0.82rem; font-weight:700; letter-spacing:0.05em; text-transform:uppercase; color:var(--midnight); white-space:nowrap; display:inline-flex; align-items:center; gap:0.35rem; }
    .map__link:hover { color:var(--dawn-text); }
    .map__link .arrow { color:var(--dawn-text); }

    @media (min-width:768px){
      .info__grid { grid-template-columns:1fr 1.2fr; gap:2rem; }
    }

    /* ==========================================================================
       6. INSIDE THE CLINIC
       ========================================================================== */
    .inside { background:var(--white); border-top:1px solid var(--gray-hairline); }
    .inside__inner { max-width:var(--container); margin:0 auto; padding:var(--section-pad) var(--gutter); }
    .inside__top { display:flex; flex-direction:column; gap:1rem; max-width:780px; margin:0 auto 3rem; text-align:center; }
    .inside h2 { font-size:clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom:0; }
    .inside__lede { color:var(--gray); font-size:1.1rem; line-height:1.7; margin:0 auto; max-width:640px; font-family:var(--font-body); }
    .inside__grid { display:grid; grid-template-columns:1fr; gap:1.25rem; }
    .inside__photo { border:var(--border-card); border-radius:var(--card-radius); overflow:hidden; aspect-ratio:4/3; position:relative; background:var(--offwhite); }
    .inside__photo img { width:100%; height:100%; object-fit:cover; }
    .inside__slider-hint { display:none; }
    @media (min-width:768px){
      .inside__grid { grid-template-columns:1.4fr 1fr; grid-template-rows:1fr 1fr; gap:1.5rem; }
      .inside__photo--feature { grid-row:1 / span 2; grid-column:1; aspect-ratio:auto; }
    }

    /* ==========================================================================
       7. DR ROIZEN ATTRIBUTION
       ========================================================================== */
    .roizen { background:var(--midnight); position:relative; overflow:hidden; }
    .roizen::before { content:''; position:absolute; top:-40%; right:-10%; width:55%; height:180%; background:radial-gradient(ellipse, rgba(212,168,67,0.14) 0%, rgba(212,168,67,0.04) 35%, transparent 60%); pointer-events:none; }
    .roizen::after { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:var(--gradient-sunrise); }
    .roizen__inner { max-width:var(--container); margin:0 auto; padding:5rem var(--gutter); display:grid; grid-template-columns:1fr; gap:2.5rem; align-items:center; position:relative; z-index:2; }
    .roizen__portrait { display:block; position:relative; border-radius:var(--card-radius); overflow:hidden; aspect-ratio:4/5; max-width:420px; width:100%; border:1.5px solid rgba(212,168,67,0.35); box-shadow:0 0 0 8px rgba(212,168,67,0.06), 0 24px 60px rgba(0,0,0,0.4); transition:all 0.4s var(--ease-out-expo); }
    .roizen__portrait:hover { border-color:var(--dawn-ui); box-shadow:0 0 0 8px rgba(212,168,67,0.12), 0 24px 60px rgba(0,0,0,0.45), 0 0 24px rgba(212,168,67,0.2); transform:translateY(-2px); }
    .roizen__portrait img { width:100%; height:100%; object-fit:cover; object-position:center top; display:block; transition:transform 0.6s var(--ease-out-expo); }
    .roizen__portrait:hover img { transform:scale(1.02); }
    .roizen__portrait::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg, transparent 55%, rgba(13,27,46,0.35) 100%); pointer-events:none; }
    .roizen__credentials { font-family:var(--font-mono); font-size:0.78rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--dawn-on-dark); display:block; margin-bottom:1rem; }
    .roizen__text h3 { color:var(--white); font-family:var(--font-heading); font-size:clamp(1.5rem, 2.8vw, 2rem); font-weight:800; line-height:1.15; letter-spacing:-0.025em; margin-bottom:1.25rem; max-width:560px; }
    .roizen__text p { color:rgba(255,255,255,0.72); font-size:1.05rem; line-height:1.7; margin-bottom:1.5rem; max-width:560px; }
    .roizen__cta { padding:0.95rem 1.85rem; border-color:rgba(212,168,67,0.35); color:var(--dawn-on-dark); box-shadow:0 0 0 4px rgba(212,168,67,0.06); }
    .roizen__cta:hover { border-color:var(--dawn-ui); color:var(--midnight); box-shadow:0 0 0 4px rgba(212,168,67,0.12), 0 0 14px rgba(212,168,67,0.22), 0 4px 20px rgba(212,168,67,0.1); }
    @media (min-width:768px){
      .roizen__inner { grid-template-columns:minmax(0, 380px) 1fr; gap:4rem; padding:6rem var(--gutter); }
    }
    @media (min-width:1024px){
      .roizen__inner { grid-template-columns:minmax(0, 420px) 1fr; gap:5rem; }
    }

    /* ==========================================================================
       8. PLAN YOUR VISIT
       ========================================================================== */
    .plan { background:var(--white); border-top:1px solid var(--gray-hairline); }
    .plan__inner { max-width:var(--container); margin:0 auto; padding:var(--section-pad) var(--gutter); }
    .plan__head { max-width:680px; margin:0 auto 3.5rem; text-align:center; }
    .plan__head h2 { font-size:clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom:0.85rem; }
    .plan__head p { color:var(--gray); font-size:1.05rem; line-height:1.7; }
    .plan__grid { display:grid; grid-template-columns:1fr; gap:1.5rem; }
    .plan__card { background:var(--white); border:var(--border-card); border-radius:var(--card-radius); padding:2.25rem; position:relative; overflow:hidden; transition:all 0.4s var(--ease-out-expo); }
    .plan__card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:40%; background:linear-gradient(to top, var(--dawn-glow), rgba(232,195,90,0.04) 50%, transparent); pointer-events:none; z-index:0; }
    .plan__card:hover { border-color:var(--dawn-decorative); box-shadow:0 4px 24px rgba(212,168,67,0.12), 0 0 0 1px rgba(212,168,67,0.2); }
    .plan__card > * { position:relative; z-index:1; }
    .plan__card-icon { width:48px; height:48px; border:1.5px solid var(--gray-faint); border-radius:8px; display:flex; align-items:center; justify-content:center; background:var(--offwhite); margin-bottom:1.25rem; }
    .plan__card-icon svg { width:24px; height:24px; stroke:var(--midnight); fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
    .plan__card h3 { font-family:var(--font-heading); font-size:1.25rem; font-weight:800; color:var(--midnight); letter-spacing:-0.02em; line-height:1.2; margin-bottom:0.85rem; }
    .plan__card p { font-family:var(--font-body); color:var(--gray); font-size:1rem; line-height:1.7; margin-bottom:1rem; }
    .plan__card ul { list-style:none; display:flex; flex-direction:column; gap:0.5rem; margin-top:0.65rem; }
    .plan__card li { display:flex; gap:0.65rem; align-items:flex-start; font-family:var(--font-body); font-size:0.95rem; color:var(--gray); line-height:1.55; }
    .plan__card li::before { content:'→'; color:var(--dawn-text); font-weight:700; flex:none; padding-top:1px; }
    @media (min-width:768px){
      .plan__grid { grid-template-columns:1fr 1fr; gap:1.75rem; }
    }

    /* ==========================================================================
       9. WHAT TO EXPECT (midnight, step-based)
       ========================================================================== */
    .expect { background:var(--midnight); position:relative; overflow:hidden; }
    .expect::before { content:''; position:absolute; top:-30%; left:-10%; width:60%; height:160%; background:radial-gradient(ellipse, rgba(212,168,67,0.1) 0%, transparent 50%); pointer-events:none; }
    .expect::after { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:var(--gradient-sunrise); }
    .expect__inner { max-width:var(--container); margin:0 auto; padding:var(--section-pad) var(--gutter); position:relative; z-index:2; }
    .expect__head { text-align:center; max-width:640px; margin:0 auto 3.5rem; }
    .expect__head .label { color:var(--teal-on-dark); }
    .expect__head h2 { color:var(--white); font-size:clamp(1.75rem, 3.5vw, 2.5rem); }
    .expect__head p { color:rgba(255,255,255,0.7); font-size:1.05rem; line-height:1.7; margin-top:1rem; }
    .expect__steps { display:grid; grid-template-columns:1fr; gap:1.25rem; }
    .estep { background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08); border-radius:var(--card-radius); padding:2rem; position:relative; overflow:hidden; transition:all 0.4s var(--ease-out-expo); }
    .estep::after { content:''; position:absolute; bottom:0; left:0; right:0; height:35%; background:linear-gradient(to top, rgba(212,168,67,0.1), transparent); pointer-events:none; z-index:0; }
    .estep:hover { border-color:rgba(212,168,67,0.3); background:rgba(255,255,255,0.05); }
    .estep__num { font-family:var(--font-mono); font-size:0.75rem; font-weight:600; letter-spacing:0.12em; color:var(--dawn-on-dark); margin-bottom:1rem; display:flex; align-items:center; gap:0.75rem; position:relative; z-index:1; }
    .estep__num::after { content:''; flex:1; height:1px; background:linear-gradient(to right, rgba(212,168,67,0.4), transparent); }
    .estep h4 { font-family:var(--font-heading); font-size:1.15rem; font-weight:800; color:var(--white); margin-bottom:0.6rem; letter-spacing:-0.02em; position:relative; z-index:1; }
    .estep p { font-family:var(--font-body); color:rgba(255,255,255,0.72); font-size:0.95rem; line-height:1.65; position:relative; z-index:1; }
    @media (min-width:600px){ .expect__steps { grid-template-columns:1fr 1fr; } }
    @media (min-width:1000px){ .expect__steps { grid-template-columns:repeat(4, 1fr); } }

    /* ==========================================================================
       10. PATIENT STORY
       ========================================================================== */
    .story { background:var(--offwhite); border-top:1px solid var(--gray-hairline); }
    .story__inner { max-width:var(--container-narrow); margin:0 auto; padding:5rem var(--gutter); }
    .story__card { background:var(--white); border:var(--border-card); border-radius:var(--card-radius); padding:3.5rem 3rem; position:relative; overflow:hidden; }
    .story__card::before { content:''; position:absolute; left:0; top:0; bottom:0; width:3px; background:linear-gradient(180deg, var(--dawn-decorative), var(--teal-decorative)); }
    .story__card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:40%; background:linear-gradient(to top, var(--dawn-glow), rgba(232,195,90,0.04) 50%, transparent); pointer-events:none; }
    .story__lead { display:flex; flex-direction:column; gap:0.85rem; margin-bottom:1.5rem; align-items:flex-start; position:relative; z-index:1; }
    .story__label { font-family:var(--font-mono); font-size:0.82rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--dawn-text); }
    .story__quote { font-family:var(--font-body); font-style:italic; font-weight:300; font-size:clamp(1.5rem, 2.8vw, 2rem); line-height:1.4; color:var(--midnight); position:relative; z-index:1; max-width:780px; }
    .story__cite { margin-top:1.75rem; display:flex; align-items:center; gap:1rem; position:relative; z-index:1; }
    .story__avatar { width:48px; height:48px; border-radius:50%; background:var(--midnight); border:1.5px solid var(--dawn-decorative); box-shadow:0 0 0 4px var(--dawn-subtle); flex:none; display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-size:0.78rem; font-weight:600; letter-spacing:0.08em; color:var(--dawn-on-dark); }
    .story__cite-text { font-family:var(--font-heading); font-size:0.95rem; font-weight:700; color:var(--midnight); letter-spacing:-0.005em; }
    .story__cite-sub { font-family:var(--font-mono); font-size:0.78rem; font-weight:500; letter-spacing:0.06em; text-transform:uppercase; color:var(--gray-light); margin-top:0.15rem; }

    /* ==========================================================================
       11. FAQS
       ========================================================================== */
    .faq { background:var(--white); border-top:1px solid var(--gray-hairline); }
    .faq__inner { max-width:var(--container); margin:0 auto; padding:var(--section-pad) var(--gutter); }
    .faq__head { display:grid; grid-template-columns:1fr; gap:1rem; max-width:780px; margin:0 auto 3.5rem; text-align:center; }
    .faq__head h2 { font-size:clamp(1.75rem, 3.5vw, 2.5rem); }
    .faq__head p { color:var(--gray); font-size:1.05rem; line-height:1.7; }
    .faq__grid { display:grid; grid-template-columns:1fr; gap:0; max-width:880px; margin:0 auto; border-top:1px solid var(--gray-hairline); }
    .faq__item { border-bottom:1px solid var(--gray-hairline); }
    .faq__item summary { 
      list-style:none; 
      cursor:pointer; 
      display:flex; 
      align-items:center; 
      gap:1.25rem; 
      /* transition:padding 0.3s var(--ease-out-expo);  */

      color: var(--midnight);
      cursor: pointer;
      padding: 1rem 2rem 1rem 2rem;
      transition: .4s;
    }
    .faq__item summary::-webkit-details-marker { display:none; }
    .faq__num { font-family:var(--font-mono); font-size:0.78rem; font-weight:600; letter-spacing:0.08em; color:var(--dawn-text); flex:none; min-width:2rem; }
    .faq__q { font-family:var(--font-heading); font-size:1.1rem; font-weight:700; color:var(--midnight); letter-spacing:-0.01em; flex:1; line-height:1.3; }
    .faq__toggle { 
      width:32px; 
      height:32px; 
      border-radius:8px; 
      display:flex; 
      align-items:center; 
      justify-content:center; 
      flex:none; 
      transition:all 0.3s var(--ease-out-expo); 
      background:var(--white); 
    }
    .faq__toggle::before, .faq__toggle::after { content:''; position:absolute; background:var(--dawn-text); transition:transform 0.3s var(--ease-out-expo); }
    .faq__toggle { position:relative; }
    .faq__toggle::before {     width: 18px;
    height: 3px; }
    .faq__toggle::after {     width: 3px;
    height: 18px; }
    /* .faq__item[open] .faq__toggle { background:var(--midnight); border-color: var(--dawn-on-dark); } */
    .faq__item[open] .faq__toggle::before { background:var(--dawn-text); }
    .faq__item[open] .faq__toggle::after { transform:scaleY(0); background:var(--dawn-text); }
    .faq__item:hover summary .faq__q { color:var(--dawn-text); }
    .faq__item:hover .faq__toggle { border-color:var(--dawn-ui); }
    .faq__a { 
      padding:0 0 1.75rem 3.25rem; 
      font-family:var(--font-body); 
      font-size:1rem; 
      line-height:1.7; 
      color:var(--gray); 

      cursor: default;
      font-size: 14px;
      line-height: 1.6;

      margin-top: 13px;
      padding: 1rem 2rem 2rem 2rem;
      padding-top: 0;
      max-height: unset;
      position: relative;

      font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray);
    }
    .faq__a a { color:var(--midnight); border-bottom:1px solid var(--dawn-decorative); font-weight:500; }
    .faq__a a:hover { color:var(--dawn-text); }

    /* ==========================================================================
       12. FINAL CTA
       ========================================================================== */
    .cta-final { background:var(--midnight); color:var(--white); position:relative; overflow:hidden; }
    .cta-final::before { content:''; position:absolute; bottom:-40%; right:-20%; width:70%; height:120%; background:radial-gradient(ellipse, rgba(212,168,67,0.14) 0%, transparent 55%); pointer-events:none; }
    .cta-final::after { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:var(--gradient-sunrise); }
    .cta-final__inner { max-width:720px; margin:0 auto; padding:5.5rem var(--gutter); text-align:center; position:relative; z-index:2; }
    .cta-final__eyebrow { color:var(--teal-on-dark); }
    .cta-final h2 { color:var(--white); font-size:clamp(2rem, 4.5vw, 3rem); margin-bottom:1.25rem; line-height:1.05; }
    .cta-final p { color:rgba(255,255,255,0.72); font-weight:400; line-height:1.7; margin-bottom:2.5rem; font-size:1.15rem; max-width:560px; margin-left:auto; margin-right:auto; }
    .cta-final__actions { display:flex; flex-wrap:wrap; justify-content:center; gap:1rem; margin-bottom:1.75rem; }
    .cta-final__fineprint { font-family:var(--font-mono); font-size:0.82rem; font-weight:500; letter-spacing:0.08em; text-transform:uppercase; color:rgba(255,255,255,0.5); }



    /* ==========================================================================
    HOW IT WORKS
    ========================================================================== */
    /* ==========================================================================
   HOW IT WORKS — Page-specific styles
   Add to your theme's style.css or enqueue as how-it-works.css.
   All global tokens (--midnight, --dawn-text, sun-card, .btn, etc.)
   are already declared in styles.css — only new classes are here.
   ========================================================================== */

/* ── OPENER SECTION ──────────────────────────────────────────────────────── */
.how--opener {
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
}
.how--opener::before {
  content: '';
  position: absolute;
  top: -20%; right: -15%;
  width: 70%; height: 130%;
  background: radial-gradient(ellipse, rgba(232,195,90,0.08) 0%, rgba(212,168,67,0.04) 30%, transparent 65%);
  pointer-events: none;
}
.how__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  position: relative;
  z-index: 2;
}

/* Two-column intro + media */
.opener-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .opener-top { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
}

/* Eyebrow row */
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.eyebrow-line {
  width: 28px; height: 1.5px;
  background: var(--gradient-accent);
  flex-shrink: 0;
  display: block;
}
.eyebrow-line--dark { background: var(--gradient-accent-on-dark); }
.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dawn-text);
}
.eyebrow-text--dark { color: var(--dawn-on-dark); }

/* H1 */
.how__title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  color: var(--midnight);
  margin-bottom: 1.25rem;
  line-height: 1.04;
}

/* Intro paragraph */
.how__intro {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 560px;
}
.how__intro .oil {
  font-style: italic;
  color: var(--midnight);
  font-weight: 500;
}

/* Byline */
.how__byline {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--dawn-decorative);
}

/* Image frame */
.how__img-frame {
  border: var(--border-card);
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 48px rgba(13,27,46,0.08);
}
.how__img-frame img,
.how__img {
  width: 100%; height: auto;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.how__caption {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gray-light);
  text-align: center;
  margin-top: 1rem;
}

/* Step-by-step panel */
.opener-steps--panel {
  background: linear-gradient(165deg, var(--midnight-mid) 0%, var(--midnight) 70%);
  border: 1px solid rgba(212, 168, 67, 0.16);
  border-top: 1px solid rgba(212, 168, 67, 0.16);
  border-radius: 16px;
  padding: 3.25rem 3.25rem 2.9rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13, 27, 46, 0.14);
}
.opener-steps--panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-sunrise);
}
.opener-steps__head { margin-bottom: 1.75rem; }
.opener-steps__foot { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }

/* Procedure flow: horizontal on desktop, vertical on mobile */
.pflow {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.pflow::before {
  content: '';
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 25px;
  width: 2px;
  background: linear-gradient(180deg, #D4A843 0%, #C9A24A 32%, #3FA383 72%, #2A8A72 100%);
  opacity: 0.4;
  z-index: 0;
}

@media (min-width: 640px) {
  .pflow { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pflow { grid-template-columns: repeat(4, 1fr); }
}

.pstep {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1.4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}
.pstep__num {
    width: 52px;
    height: 52px;
    border-radius: var(--btn-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--midnight);
    background: var(--gradient-gold-fill);
    border: 1.5px solid var(--sunlight-ui);
    box-shadow: 0 6px 18px rgba(212, 168, 67, 0.22);
}
.pstep__body h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.pstep__body p {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Time note */
.how__note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.6;
  background: linear-gradient(135deg, rgba(15, 28, 48, 0.85), rgba(13, 27, 46, 0.85)) padding-box, linear-gradient(90deg, #B28D2C 0%, #9A7629 32%, #2A7E66 72%, #1A6B5A 100%) border-box;
  border: 1.5px solid transparent;
  margin: 0;
  padding: 1.2rem 1.4rem;
  border-radius: var(--btn-radius);
}
.how__note--dark { color: rgba(255,255,255,0.65); }
.how__note svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  stroke: var(--dawn-on-dark);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  margin-top: 2px;
}

.how__note p {
  font-family: var(--font-heading);
}
/* ── WHY LIFESPAN EDGE ───────────────────────────────────────────────────── */
.why {
  /* background: var(--offwhite); */
  position: relative;
  border-top: 1px solid var(--gray-hairline);
}
.why__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .why__inner { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
}

.why__media {
  position: relative;
}
.why__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  object-fit: cover;
  object-position: center top;
  border: none;
  box-shadow: 0 18px 50px rgba(13, 27, 46, 0.16);
}
.why__photo-scrim {
  position: absolute;
  inset: 0;
  border-radius: var(--card-radius);
  background: linear-gradient(180deg, transparent 55%, rgba(13,27,46,0.35) 100%);
  pointer-events: none;
}
.why__photo-tag {
  position: absolute;
  left: 1.75rem;
  right: 1.75rem;
  bottom: 1.6rem;
  z-index: 2;
}
.why__photo-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 0.28rem;
}
.why__photo-role {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.why__headline {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--midnight);
  margin-bottom: 1.25rem;
}
.why__body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.why__creds ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.75rem 0 2rem;
}
.why__cred {
  font-size: 0.95rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  /*updated*/
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray);
  background: var(--offwhite);
  border: 1px solid var(--gray-faint);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
}
.why__cred::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--dawn-decorative);
  flex-shrink: 0;
}

.why__cred .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--dawn-decorative);
  flex-shrink: 0;
}
.textlink {
  gap: 0.45rem !important;
}
/* Text link */
.textlink a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dawn-text);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem !important;
  transition: gap 0.3s var(--ease-out-expo);
}
.textlink .arrow {
    transition: transform 0.3s var(--ease-out-expo);
    color: var(--dawn-text);
    padding-top: 1px;
}
.textlink:hover .arrow {
    transform: translateX(3px);
}
/* .textlink .arrow { color: var(--dawn-text); transition: transform 0.2s; } */
.textlink:hover { color: var(--dawn-text); }
.textlink:hover .arrow { transform: translateX(3px); }
.textlink-wrap { margin: 0; }


/* ── EXPLORE TPE GRID ────────────────────────────────────────────────────── */
.explore {
  background: var(--offwhite);
  border-top: 1px solid var(--gray-hairline);
}
.explore__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.explore__header {
  /* text-align: center; */
  max-width: 680px;
  margin-left:0px !important;
  margin-right:0px !important;
  margin: 0 auto 3.5rem;
}
.explore__header h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.explore__header .sub { margin-top: 1rem; font-size: 1.05rem; }

/* Align eyebrow-row to center for header */
/* .explore__header .eyebrow-row { justify-content: center; } */

/* 6-card grid — mirrors .treatments__grid */
.explore__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (min-width: 600px) { .explore__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .explore__grid { grid-template-columns: repeat(3, 1fr); } }

/* Each indication card */
.ecard .ecard__inner { position: relative; z-index: 1; }
.ecard__icon {
  width: 48px; 
  height: 48px;
  border: 1.5px solid var(--gray-faint);
  border-radius: 8px;
  background: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
  margin-left:0px !important;
}
.ecard__icon svg {
  width: 22px; 
  height: 22px;
  stroke: var(--midnight);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ecard__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--midnight);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.ecard__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}


.explore__grid .sun-card {
  min-width: 22rem;
}


/* ── VISIT SECTION ───────────────────────────────────────────────────────── */
.visit {
  background: var(--midnight);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.visit::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 60%; height: 160%;
  background: radial-gradient(ellipse, rgba(212,168,67,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.visit::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-sunrise);
}
.visit__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .visit__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* Label on dark */
.visit .label { color: var(--dawn-on-dark);}

.visit h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 2rem;
}

.visit__points {
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
  margin-bottom: 3rem;
}
.vpoint {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.vpoint__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vpoint__icon svg {
  width: 20px; height: 20px;
  stroke: var(--dawn-on-dark);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vpoint h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.vpoint p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.visit__media { position: relative; }
.visit__photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--card-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.visit__photo-glow {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  right: -1.5rem;
  height: 50%;
  background: radial-gradient(ellipse, rgba(212,168,67,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}


.reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}


/* ── FAQ (how-it-works variant) ──────────────────────────────────────────── */
/* The .faq section base styles exist in styles.css; these are additive tweaks
   for the specific layout patterns of this page's FAQ header. */
.faq__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.faq__header h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.faq__header p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 0.85rem;
}

/* FAQ item styles — supplement/align with styles.css .faq-* rules */
.faq__list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-hairline); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0.25rem;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--midnight);
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--dawn-text); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1.5px solid var(--gray-faint);
  border-radius: 6px;
  position: relative;
  background: var(--white);
  transition: all 0.3s var(--ease-out-expo);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--midnight);
  transition: transform 0.3s var(--ease-out-expo);
  border-radius: 2px;
}
.faq-icon::before { top: 12px; left: 5px; right: 5px; height: 1.5px; }
.faq-icon::after  { left: 12px; top: 5px; bottom: 5px; width: 1.5px; }

.faq-item.is-open .faq-icon {
  background: var(--midnight);
  border-color: var(--midnight);
}
.faq-item.is-open .faq-icon::before { background: var(--white); }
.faq-item.is-open .faq-icon::after  { transform: scaleY(0); background: var(--white); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out-expo);
}
.faq-a__inner {
  padding: 0 0.25rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray);
}
.faq-a__inner a {
  color: var(--midnight);
  border-bottom: 1px solid var(--dawn-decorative);
  font-weight: 500;
}
.faq-a__inner a:hover { color: var(--dawn-text); }

.faq__item {
  background-color: var(--white);
  border: 2px solid #0d1b2e;
  border-radius: 12px 12px 12px 12px;
  cursor: pointer;
  margin: 0 !important;
}
.faq__item[open] .faq__a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, var(--dawn-glow), transparent);
    pointer-events: none;
    z-index: 0;
    height: 60%;
}
.faq__item[open] {
    position: relative;
    border-color: var(--dawn-decorative);
    box-shadow: 0 4px 24px rgba(212, 168, 67, 0.1);
}

.faq-item .gutena-accordion-block__panel-title-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--midnight);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.gutena-accordion-block__panel-title-inner:hover strong{
  color: var(--dawn-text) !important;
}
.gutena-accordion-block>.gutena-accordion-block__panel>.gutena-accordion-block__panel-title>.gutena-accordion-block__panel-title-inner>.trigger-plus-minus {
  height: 32px;
  width: 32px;
}

.gutena-accordion-block>.gutena-accordion-block__panel>.gutena-accordion-block__panel-title>.gutena-accordion-block__panel-title-inner>.trigger-plus-minus>.horizontal{
  background-color: var(--dawn-text) !important;
}
.gutena-accordion-block>.gutena-accordion-block__panel>.gutena-accordion-block__panel-title>.gutena-accordion-block__panel-title-inner>.trigger-plus-minus>.vertical{
  background-color: var(--dawn-text) !important;
}


.faq-item.active{
  position: relative;
  border-color: var(--dawn-decorative);
  box-shadow: 0 4px 24px rgba(212, 168, 67, 0.1);
}

.faq-item.active::after{
  height: 55%;
}

.faq-item::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to top, var(--dawn-glow), transparent);
  pointer-events: none;
  /* transition: height 0.4s ease; */
  z-index: 0;
}

.gutena-accordion-block__panel-content-inner a {
    color: var(--teal-on-light);
    font-weight: 600;
    border-bottom: 1px solid rgba(26, 107, 90, 0.3);
    transition: border-color 0.2s;
}

/* ── MOBILE OVERRIDES ────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .opener-top  { gap: 2rem; margin-bottom: 2.5rem; }
  .how__title  { font-size: 2.4rem; }
  .how__intro  { font-size: 1rem; }
  .opener-steps--panel { padding: 1.5rem; }
  .pflow       { gap: 1rem; }
  .pstep__body h4 { font-size: 0.95rem; }

  .why__inner  { gap: 2rem; }
  .why__photo  { aspect-ratio: 4/3; }
  .why__headline { font-size: 1.5rem; }

  .explore__header { margin-bottom: 2rem; }
  .explore__grid   { gap: 1rem; }

  .visit__inner { gap: 2rem; }
  .visit h2     { margin-bottom: 1.5rem; }
  .vpoint       { gap: 0.75rem; }
  .vpoint__icon { width: 38px; height: 38px; }
  .visit__photo { aspect-ratio: 3/2; }

  .faq__header  { margin-bottom: 2rem; }
  .faq-q        { font-size: 0.95rem; padding: 1.25rem 0.25rem; }
}

/* ==========================================================================
   LOCATIONS LIST V2
========================================================================== */

.locations-list {
    border: 1.5px solid #0D1B2E;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
}

.locations-list__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    border-bottom: 1.5px solid #0D1B2E !important;
}
.locations-list__row:hover {
    background: rgba(212, 168, 67, 0.06);
}

.locations-list__row:last-child {
    border-bottom: 0;
}

.locations-list__content {
    flex: 1;
    padding-right: 2rem;
}

.locations-list__content h3 {
    margin-bottom: .5rem;
}

.locations-list__content p {
    margin-bottom: .5rem;
}

.locations-list__meta {
    display: flex;
    gap: .75rem;

    font-size: .95rem;
    letter-spacing: .08em;
    text-transform: uppercase;

    opacity: .7;
}

.locations-list__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;

    min-width: 220px;
    gap: .75rem;
}

.locations-list__actions .wp-block-button__link {
    min-width: 110px;
    text-align: center;

    transition:
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.btn-cont:hover {
    transform: translateY(-2px);
}

.locations-list__link {
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
}

/* Gutenberg Query Loop Fixes */

.locations-list .wp-block-post-template {
    margin: 0;
    padding: 0;
    gap: 0 !important;
}

.locations-list .wp-block-post {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}



.Test-book-class a {
    font-family: var(--font-heading);
    border: 1.5px solid var(--midnight);
    font-weight: 700;
    padding: 0.7rem 1.4rem;
    box-shadow: 0 2px 4px rgba(13, 27, 46, 0.15), 0 6px 20px rgba(13, 27, 46, 0.1);
    background: var(--midnight);
    color: var(--white);
}

.Test-book-class a:hover{
    /* color: #0D1B2E !important;
    border: 1.5px solid var(--dawn-ui);
    font-family: var(--font-heading);
    padding: 0.7rem 1.4rem; */
    color: var(--midnight);
    border-color: var(--dawn-ui);
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.18), 0 4px 20px rgba(212, 168, 67, 0.08);
    transform: translateY(-2px);
    background: var(--white);
}


/* Mobile */

@media (max-width: 768px) {

    .locations-list__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .locations-list__actions {
        width: 100%;
        align-items: flex-start;
        min-width: auto;
    }
}
/* ==========================================================================
   FAQ SECTION
========================================================================== */

.faq {
    padding: 2rem 0;
}

.faq__inner {
    max-width: 1040px;
    margin: 0 auto;
    width: 100%;
    padding-top: 1rem;
}

.faq__head {
    text-align: center;
}

.faq__head .label {
    display: block;
    margin-bottom: 1rem;

    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.95rem;
    font-weight: 600;
}

.faq__head h2 {
    margin: 0;
}


/* --------------------------------------------------------------------------
   FAQ Items
-------------------------------------------------------------------------- */

.faq .wp-block-details {
    margin: 0;
    padding: 0;

    border: 0;
    border-top: 1px solid rgba(13, 27, 46, 0.08);

    background: transparent;

    transition: background-color .25s ease;
}

.faq .wp-block-details:last-child {
    border-bottom: 1px solid rgba(13, 27, 46, 0.08);
}

/* Remove default browser marker */
.faq .wp-block-details summary::-webkit-details-marker {
    display: none;
}

.faq .wp-block-details summary::marker {
    display: none;
}

/* --------------------------------------------------------------------------
   Question Row
-------------------------------------------------------------------------- */

.faq .wp-block-details summary {
    position: relative;

    list-style: none;
    cursor: pointer;

    margin: 0;
    padding: 2rem 5rem 2rem 0;

    color: var(--midnight);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;

    transition: color .25s ease;
}

/* Gold text on hover and when open */
.faq .wp-block-details:hover summary,
.faq .wp-block-details[open] summary {
    color: var(--gold);
}

/* --------------------------------------------------------------------------
   Plus / Minus Button
-------------------------------------------------------------------------- */

.faq .wp-block-details summary::after {
    content: "+";

    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border: 1px solid #d9d9d9;
    border-radius: 12px;

    background: #fff;
    color: var(--midnight);

    font-size: 2rem;
    font-weight: 300;
    line-height: 1;

    box-sizing: border-box;

    transition:
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

/* Hover state */
.faq .wp-block-details:hover summary::after {
    border-color: var(--gold);
    background: #fff;
    color: var(--midnight);

    transform: translateY(-50%) scale(1.03);

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Open state */
.faq .wp-block-details[open] summary::after {
    content: "−";

    background: var(--midnight);
    border-color: var(--gold);
    color: #fff;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Hover while open */
.faq .wp-block-details[open]:hover summary::after {
    background: #04172d;
}

/* --------------------------------------------------------------------------
   Answer Content
-------------------------------------------------------------------------- */

.faq .wp-block-details__content {
    margin-top: 0;
    overflow: hidden;

    animation: faqFadeIn .25s ease;
}

.faq .wp-block-details p {
    max-width: 900px;

    margin: 0;
    padding: 0 0 2rem;

    color: var(--body);
    font-size: 1.35rem;
    line-height: 1.8;
}

.faq .wp-block-details a {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

/* --------------------------------------------------------------------------
   Animation
-------------------------------------------------------------------------- */

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------------------
   Mobile
-------------------------------------------------------------------------- */

@media (max-width: 768px) {

    .faq {
        padding: 4rem 0;
    }

    .faq__head {
        margin-bottom: 3rem;
    }

    .faq .wp-block-details summary {
        padding: 1.5rem 4rem 1.5rem 0;

        font-size: 1.4rem;
        line-height: 1.4;
    }

    .faq .wp-block-details summary::after {
        width: 38px;
        height: 38px;

        font-size: 1.75rem;
    }

    .faq .wp-block-details p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

.wp-block-button__link .wp-element-button {
  background-color: var(--midnight);
  border-color: var(--midnight);
}
.how__cta .btn--primary a {
  font-weight: bold;
}

.faq-section {
    background: var(--offwhite);
    position: relative;
    border-top: 1px solid var(--gray-hairline);
}
.faq__group-label::after {
    content: '';
    display: inline-block;
    flex: 1;
    height: 1px;
    background: var(--gray-faint);
}
.faq__group-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.faq__group-label>p{
    font-family: var(--font-mono);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    color: var(--dawn-text);
}

.faq__group {
    margin-bottom: 3.5rem;
    scroll-margin-top: 90px;
}

.faq-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-sunrise);
}

.more__link {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    border: var(--border-card);
    border-radius: var(--card-radius);
    padding: 1.75rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.more__link:hover {
    border-color: var(--dawn-decorative);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 168, 67, 0.14), 0 0 0 1px rgba(212, 168, 67, 0.18);
}

.more__link-arrow {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dawn-text);
    position: relative;
    z-index: 1;
    transition: gap 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.more__link-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--midnight);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}
.more__link-icon {
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--gray-faint);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--offwhite);
    position: relative;
    z-index: 1;
}

.cta-final::before {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -20%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(212, 168, 67, 0.12) 0%, transparent 55%);
    pointer-events: none;
}
.faq-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--midnight);
    margin: 0 auto 1.5rem;
    max-width: 16ch;
}

.chip {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--midnight);
    border: 1.5px solid var(--gray-faint);
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    background: var(--white);
    transition: all 0.3s var(--ease-out-expo);
    cursor: pointer;
}
.chip:hover {
    border-color: var(--dawn-decorative);
    color: var(--dawn-text);
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.12);
    transform: translateY(-2px);
}


.subnav {
    position: sticky;
    top: 60px;
    z-index: 90;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-hairline);
    display: none;
}

@media (min-width: 900px) {
    .subnav {
        display: block;
    }
}

.subnav__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 52px;
    display: flex;
    align-items: center;
    gap: 1.75rem;
}
.subnav__label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-light);
    white-space: nowrap;
    margin-right: 0px !important;
    margin-left: 0px !important;
}

.subnav__list {
    display: flex;
    gap: 0.35rem;
    list-style: none;
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.subnav__link a{
    display:block;
    font-family:var(--font-heading);
    font-size:.82rem;
    font-weight:600;
    color:var(--gray);
    padding:.42rem .85rem;
    border-radius:7px;
    text-decoration:none;
    transition:all .2s ease;
}

.subnav__link a:hover{
    background:var(--offwhite);
    color:var(--midnight);
}

.subnav__link.active a{
    background:rgba(212,168,67,.14);
    color:var(--midnight);
    border: 1px solid #C9A227;

}

.line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-sunrise);
}


.approach__img-frame {
    border: var(--border-card);
    border-radius: var(--card-radius);
    background: var(--white);
    padding: 0.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(13, 27, 46, 0.06);
}
.approach__img-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top, rgba(212, 168, 67, 0.1), transparent);
    pointer-events: none;
}

/** Card Piller pattern CSS **/
.approach__pillars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}


.approach__pillar {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--midnight);
    background: var(--white);
    border: 1px solid var(--gray-faint);
    border-radius: var(--btn-radius);
    padding: 0.85rem 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s var(--ease-out-expo);
    margin-left:0px !important;
    margin-right:0px !important;
}
.approach__pillar:hover {
    border-color: var(--dawn-decorative);
    box-shadow: 0 4px 18px rgba(212, 168, 67, 0.12);
    transform: translateY(-1px);
}

.approach__pillar .pillar-span {
    position: relative;
    z-index: 1;
}

.approach__pillar-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1.5px solid var(--gray-faint);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--offwhite);
    position: relative;
    z-index: 1;
    transition: border-color 0.35s var(--ease-out-expo);
}

.approach__pillar-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--dawn-decorative);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/** DARK CARD **/
.apart__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.apart__grid2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.apart__grid2 > div{
	height: 100%
}

.acard {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
    padding: 1.75rem;
    transition: all .4s var(--ease-out-expo);
/*     max-height: max-content !important; */
	width:100%;
}

.acard::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(212, 168, 67, 0.1), rgba(232, 195, 90, 0.03) 45%, transparent);
    pointer-events: none;
    transition: all .5s ease;
}


.acard:hover {
    border-color: var(--dawn-ui);
    box-shadow: 0 0 0 1px rgba(212, 168, 67, 0.2), 0 8px 30px rgba(212, 168, 67, 0.12);
    transform: translateY(-2px);
}

.acard__icon svg {
    width: 23px;
    height: 23px;
    stroke: var(--dawn-on-dark);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.acard__icon {
    width: 48px;
    height: 48px;
    border: 1.5px solid rgba(212, 168, 67, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 195, 90, 0.1);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.acard__name {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.acard__desc {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    position: relative;
    z-index: 1;
    margin: 0;
}

@media (min-width: 620px) {
    .apart__grid2 {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 900px) {
    .acard {
        grid-column: span 2;
    }
	
	.acard2{
		grid-column: span 1;
	}
	
	.apart__grid2 {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.1rem;
	}
}

@media (min-width: 900px) {
    .apart__grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/** FOUNDER CARDS*/

.founders__grid {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 760px) {
    .founders__grid {
        grid-template-columns: 1fr 1fr;
    }
}
.fcard {
    position: relative;
    border: var(--border-card);
    border-radius: var(--card-radius);
    background: var(--white);
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}
.fcard:hover {
    border-color: var(--dawn-decorative);
    box-shadow: 0 4px 24px rgba(212, 168, 67, 0.15), 0 0 0 1px rgba(212, 168, 67, 0.2);
}

.fcard__body {
    padding: 1.75rem var(--card-pad) var(--card-pad);
    position: relative;
    z-index: 1;
}

.fcard__photo {
    margin-left: 0px !important;
    margin-right: 0px !important;
/* 	height: 300px; */
}
.fcard__photo img{
    width: 100%;
/*     height: 300px; */
    display: block;
    border-bottom: 1px solid var(--gray-hairline);
    background: var(--offwhite);
	object-fit: fill;
}

@media (min-width: 760px) {
    .fcard__photo img {
        height: 700px;
    }
}

.fcard__name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--midnight);
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}
.fcard__role {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--dawn-text);
    margin-bottom: 1.15rem;
}

.fcard__bio {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--gray);
    font-weight: 400;
}
.fcard__link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--midnight);
    background: rgba(212, 168, 67, 0.1);
    border: 1.5px solid rgba(212, 168, 67, 0.4);
    padding: 0.62rem 1.15rem;
    border-radius: var(--btn-radius);
    margin-top: 1.6rem;
    position: relative;
    z-index: 1;
    transition: all 0.35s var(--ease-out-expo);
}

.fcard__link a {
    color: var(--dawn-text);
    transition: transform 0.25s var(--ease-out-expo);
}
.fcard__link a:hover {
    background: rgba(212, 168, 67, 0.18);
    border-color: var(--dawn-ui);
    box-shadow: 0 4px 18px rgba(212, 168, 67, 0.2);
    transform: translateY(-2px);
}

fcard:hover::after {
    height: 48%;
}

.fcard::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top, var(--dawn-glow), rgba(232, 195, 90, 0.05) 45%, transparent);
    pointer-events: none;
    transition: all 0.5s ease;
}

/** SUN CARD button */
.pcard__link a{
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--midnight);
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
    transition: gap 0.2s;
}

.pcard__link>a .arrow {
    color: var(--dawn-text);
    transition: transform 0.2s;
}


/**RESEARCH LOOP IN ABOUT PAGE **/

.research-query .wp-block-post-template{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.5rem;
  list-style:none;
  padding:0;
  margin:0;
}
.research-query .wp-block-post-template > li:first-child{
  grid-column:1 / -1;
}

.research-card{
  height:100%;
  display:flex;
  flex-direction:column;

  background:#fff;
  border:1px solid #1d2b43;
  border-radius:18px;
  overflow:hidden;
}

.research-card__image{
  display:none;
}

.research-card__content{
  padding:2rem;
  display:flex;
  flex-direction:column;
  height:100%;
}

.research-query .wp-block-post-template > li:first-child .research-card{
  padding:0;
}

.research-query .wp-block-post-template > li:first-child .research-card__content{
  padding:2.5rem;
}

.research-query .wp-block-post-template{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:1.5rem;
    list-style:none;
    padding:0;
    margin:0;
}

.research-query .wp-block-post-template > li:first-child{
    grid-column:1/-1;
}

.location-card{
	height:100%;
}

@media(max-width:768px){

    .research-query .wp-block-post-template{
        grid-template-columns:1fr;
    }

    .research-query .wp-block-post-template > li:first-child{
        grid-column:auto;
    }

}

.research-card{
    height:100%;
    border:1px solid #22324b;
    border-radius:18px;
    background:#fff;
}

.research-card__content{
    padding:2rem;
    display:flex;
    flex-direction:column;
    height:100%;
}

.research-query .wp-block-post-template>li:first-child .research-card__content{

    padding:2.5rem;
}

.research-card .wp-block-post-title{

    margin:0 0 18px;

    text-align:left;
}

.research-card .wp-block-post-title a{

    color:#17253d;

    font-size:30px;

    font-weight:700;

    text-decoration:none;
}

.research-query .wp-block-post-template>li:not(:first-child)
.wp-block-post-title a{

    font-size:22px;
}

.research-card .wp-block-post-excerpt{

    color:#555;

    line-height:1.8;
}

/* Featured card - show full excerpt */
.research-query .wp-block-post-template > li:first-child .wp-block-post-excerpt__excerpt{
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
}

/* Remaining cards - show only 6 lines */
.research-query .wp-block-post-template > li:not(:first-child) .wp-block-post-excerpt__excerpt{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6; /* Change to 4 or 5 if needed */
    overflow: hidden;
}

research__disclaimer {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--gray-light);
    text-align: center;
    max-width: 680px;
    margin: 2rem auto 0;
    letter-spacing: 0.01em;
}
.story__portrait {
  display: flex;
  justify-content: end;
}

.story__portrait img {
    width: 100%;
    aspect-ratio: 4 / 5;
    display: block;
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--card-radius);
    background: var(--midnight-mid);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32);
}
.story__caption {
    display: flex;
    justify-content: center;
    padding-left: 5rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}
.story::before {
    content: '';
    position: absolute;
    top: -22%;
    left: -12%;
    width: 62%;
    height: 90%;
    background: radial-gradient(ellipse, rgba(212, 168, 67, 0.12) 0%, transparent 58%);
    pointer-events: none;
}


/* BOOK YOUR CALL */

.gform_wrapper{
	font-family: var(--font-mono);
}

.gform_title{
	font-family: var(--font-mono);
	font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
	color: var(--dawn-text);
}

.gsection_title{
	font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.45rem;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--midnight);
    margin: 0px 0px 0.5rem;
}

.gsection_description{
	font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--gray-light);
    margin: 0px;
}

.bookings-headings{
    padding-bottom: 1.5rem !important;
}

.gform_fields{
	row-gap: 1.125rem !important;
}

.gform-field-label{
    font-family: var(--font-mono) !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    color: var(--gray) !important;
}

.ginput_container{
	border: none !important;
}

.ginput_container > input{
    padding: 0.72rem 0.875rem;
    border: 1.5px solid var(--gray-hairline);
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    color: var(--ink) !important;
}

.gfield--input-type-checkbox{
	padding: 0.875rem !important;
    background: var(--offwhite) !important;
    border-radius: 8px !important;
    border: 1px solid var(--gray-hairline) !important;
}

.gfield--input-type-checkbox > label{
	font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--gray-light);
}

#gform_submit_button_11{
	width: 100%;
    padding: 0.95rem 2rem;
    background: var(--gradient-gold-fill);
    color: var(--midnight);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    border-radius: var(--btn-radius);
    cursor: pointer;
    margin-top: 0.25rem;
}

@media (min-width: 782px) {
	.booking-formbox{
		max-width: 503px;
	}
}

.bookings-steps{
	width:52px;
	height:52px;
	display:flex;
	justify-content:center;
	align-items:center;
	background: #FAFAF8
}

.icon_box{
	width:22px;
	height:22px;
	border-radius:50%;
	display:flex;
	justify-content:center;
	align-items:center;
	border: 1px solid rgba(212, 168, 67, 0.28);
	margin-top:5px;
}

/* BOOK YOUR CALL */


.proof__video-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	background: none;
}

.about_page_trailer .trailer__inner{
	grid-template-columns: 1fr;
}

.about_page_trailer{
	padding:0;
	width:100%;
	display:block;
}

.about_page_trailer .trailer__inner{
	margin:0;
	padding:0;
	height: 100%;
	width: 100%;
}

.wp-block-navigation__container .current-menu-item{
	background: rgba(212, 168, 67, .14);
    color: var(--midnight);
    border: 1px solid #C9A227;
    padding: 5px 10px;
    border-radius: 20px;
}

/* footer */

.footer .current-menu-item{
	color: white;
}

/* footer */

/* Newsletter Popup */

#popmake-17142{
	border-radius: 12px;
	background: white;
}

#popmake-17142 .gform_required_legend{
	display: none;
}

/* #popmake-17142 .gform_title{
	padding-bottom: 24px;
	border-block-end: 1px solid rgba(104, 110, 119, 0.35);
	margin-bottom: 16px;
} */

#popmake-17142 .gform-footer{
	margin-top: 14px;
}

#popmake-17142 .gform_button{
	width: 100%;
    padding: 0.95rem 2rem;
    background: var(--gradient-gold-fill);
    color: var(--midnight);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    border-radius: var(--btn-radius);
    cursor: pointer;
    margin-top: 0.25rem;
}

#popmake-17142 .pum-close{
	top:18px;
	right:10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#popmake-17142 .gform-field-label--type-sub::after {
    content: " *";
    color: #C02B0A; /* Change to your preferred shade of red */
    font-weight: bold;
}

.name-field > legend{
	display: none !important;
}

/* Newsletter Popup 18 10 */


