/* ═══════════════════════════════════════════════════
   Ovation Homepage v12 — homepage.css
   All classes prefixed ovh- to isolate from LL theme
═══════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --ovh-navy:   #0d1b2a;
  --ovh-gold:   #b8965a;
  --ovh-gold-lt:#d4b07a;
  --ovh-cream:  #faf9f7;
  --ovh-white:  #ffffff;
  --ovh-slate:  #6b7280;
  --ovh-border: rgba(0,0,0,.06);
  --ovh-serif:  'Cormorant Garamath', Georgia, serif;
  --ovh-sans:   'Montserrat', sans-serif;
  --ovh-ease:   cubic-bezier(.22,.68,0,1);
}

/* ── BODY RESET — only when homepage template active ── */
body.ovh-homepage {
  font-family: var(--ovh-sans);
  color: var(--ovh-navy);
  background: var(--ovh-white);
  overflow-x: hidden;
}
body.ovh-homepage img,
body.ovh-homepage video { display: block; max-width: 100%; }
body.ovh-homepage a { text-decoration: none; color: inherit; }

/* ── SCROLL PROGRESS ── */
#ovh-progress {
  position: fixed; top: 0; left: 0; height: 1px; width: 0;
  background: var(--ovh-gold); z-index: 9999;
  transition: width .1s linear; opacity: .7;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.ovh-hero {
  position: relative; width: 100%;
  min-height: calc(100vh - 80px); /* subtract LL theme header height */
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--ovh-navy);
  overflow: hidden !important; /* belt */
  isolation: isolate;
  z-index: 0;
}
.ovh-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  z-index: 0;
  transform: translateZ(0); /* promote to own compositor layer */
}
.ovh-hero-fallback {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg,#000 0%,#001833 30%,#002244 65%,#001122 100%);
}
.ovh-hero-scrim {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top,rgba(6,15,24,.88) 0%,rgba(6,15,24,.42) 55%,rgba(6,15,24,.18) 100%);
  pointer-events: none;
}
.ovh-hero-body {
  position: relative; z-index: 4;
  padding: 0 72px 80px; max-width: 680px;
  width: 100%;
  align-self: flex-end; /* anchor to bottom of hero */
}
.ovh-hero-location {
  font-size: 9px; font-weight: 500; letter-spacing: .38em;
  text-transform: uppercase; color: rgba(184,150,90,.75);
  margin-bottom: 20px;
  opacity: 0; animation: ovhRise .9s var(--ovh-ease) forwards .2s;
}
.ovh-hero-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px,5.5vw,76px); font-weight: 300;
  line-height: 1.05; color: #fff; margin-bottom: 26px;
  opacity: 0; animation: ovhRise .9s var(--ovh-ease) forwards .38s;
}
.ovh-hero-h1 em { font-style: italic; color: var(--ovh-gold-lt); font-weight: 300; }
.ovh-hero-p {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,.5);
  line-height: 1.9; max-width: 440px; margin-bottom: 34px;
  opacity: 0; animation: ovhRise .9s var(--ovh-ease) forwards .54s;
}
.ovh-hero-actions {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: ovhRise .9s var(--ovh-ease) forwards .68s;
}
@keyframes ovhRise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero stats strip — removed, now a standalone trust bar section */

/* Scroll cue */
.ovh-scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.ovh-scroll-cue span {
  font-size: 8px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.25); font-weight: 300;
}
.ovh-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom,rgba(184,150,90,.6),transparent);
  animation: ovhBreathe 2.8s ease-in-out infinite;
}
@keyframes ovhBreathe {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50%       { opacity: .8; transform: scaleY(1); }
}


/* ════════════════════════════════════════
   TRUST BAR — standalone below hero
════════════════════════════════════════ */
.ovh-trust-bar {
  background: var(--ovh-white);
  border-bottom: 1px solid var(--ovh-border);
  position: relative; z-index: 10;
  width: 100%; display: block;
}
.ovh-trust-inner {
  /* Full-width flex row — classed so LL theme cannot strip display:flex */
  display: flex !important;
  flex-direction: row !important;
  justify-content: center;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.ovh-trust-stat {
  flex: 1;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 20px;
  position: relative;
  min-width: 0;
}
.ovh-trust-stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 40%;
  background: var(--ovh-border);
}
.ovh-trust-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem; font-weight: 300; color: var(--ovh-navy);
  line-height: 1; margin-bottom: 6px;
  display: block;
}
.ovh-trust-label {
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ovh-slate); font-weight: 400;
  display: block;
}
/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.ovh-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ovh-gold); color: var(--ovh-navy);
  padding: 14px 28px; border: none; border-radius: 0;
  font-family: var(--ovh-sans); font-size: 9px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; cursor: pointer;
  transition: background .25s ease, transform .2s ease;
}
.ovh-btn-primary:hover { background: var(--ovh-gold-lt); transform: translateY(-1px); }

.ovh-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.5); border: none; border-radius: 0;
  font-family: var(--ovh-sans); font-size: 9px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase; cursor: pointer; transition: color .2s;
}
.ovh-btn-ghost:hover { color: var(--ovh-gold-lt); }

.ovh-btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ovh-navy); color: #fff;
  padding: 14px 28px; border: none; border-radius: 0;
  font-family: var(--ovh-sans); font-size: 9px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; cursor: pointer;
  transition: background .25s ease;
}
.ovh-btn-dark:hover { background: #1e3048; }

/* ════════════════════════════════════════
   LAYOUT HELPERS
════════════════════════════════════════ */
.ovh-max { max-width: 1280px; margin: 0 auto; }
.ovh-center { text-align: center; }

/* ════════════════════════════════════════
   TYPOGRAPHY — SECTION HEADERS
════════════════════════════════════════ */
.ovh-section-label {
  display: block;
  font-size: 9px; font-weight: 500; letter-spacing: .38em;
  text-transform: uppercase; color: var(--ovh-gold); margin-bottom: 14px;
}
.ovh-label-dim { color: rgba(184,150,90,.65); }
.ovh-section-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px,3.5vw,50px); font-weight: 300;
  line-height: 1.1; color: var(--ovh-navy); margin-bottom: 18px;
}
.ovh-section-h2 em { font-style: italic; }
.ovh-h2-light { color: #fff; }
.ovh-h2-light em { color: var(--ovh-gold-lt); }
.ovh-section-p {
  font-size: 14px; font-weight: 300; color: var(--ovh-slate); line-height: 1.85;
}
.ovh-p-dim { color: rgba(255,255,255,.38); }
.ovh-photo-label {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.18); text-align: center; padding: 20px;
}

/* ════════════════════════════════════════
   CONCERN NAVIGATOR
════════════════════════════════════════ */
.ovh-concerns { background: var(--ovh-cream); padding: 120px 72px; }
.ovh-concerns .ovh-section-h2 { text-align: center; }

.ovh-tab-bar {
  display: flex; justify-content: center;
  border-bottom: 1px solid var(--ovh-border);
  margin: 48px 0 0; overflow-x: auto; scrollbar-width: none;
}
.ovh-tab-bar::-webkit-scrollbar { display: none; }

.ovh-tab {
  padding: 14px 28px; background: none; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  font-family: var(--ovh-sans); font-size: 10px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ovh-slate); cursor: pointer; white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.ovh-tab:hover { color: var(--ovh-navy); }
.ovh-tab.on   { color: var(--ovh-navy); border-bottom-color: var(--ovh-gold); }

.ovh-panel { display: none; padding: 36px 0 0; }
.ovh-panel.on { display: block; }

.ovh-pill-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.ovh-pill {
  display: inline-block; padding: 10px 20px;
  background: var(--ovh-white); border: 1px solid var(--ovh-border);
  border-radius: 40px; font-size: 13px; font-weight: 400; color: var(--ovh-navy);
  cursor: pointer; transition: all .22s ease; white-space: nowrap;
}
.ovh-pill:hover { background: var(--ovh-navy); color: var(--ovh-white); border-color: var(--ovh-navy); }
.ovh-pill-cta {
  background: var(--ovh-gold); color: var(--ovh-white) !important;
  border-color: var(--ovh-gold); font-weight: 500;
}
.ovh-pill-cta:hover { background: var(--ovh-gold-lt); border-color: var(--ovh-gold-lt); }

/* Laser & Wellness cards */
.ovh-laser-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.ovh-laser-card {
  display: block; padding: 36px 32px;
  border: 1px solid var(--ovh-border); background: var(--ovh-white);
  transition: all .28s ease; color: var(--ovh-navy);
}
.ovh-laser-card:hover {
  border-color: var(--ovh-gold);
  box-shadow: 0 12px 48px rgba(0,0,0,.08); transform: translateY(-3px);
}
.ovh-lc-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px; font-weight: 300; color: var(--ovh-gold);
  line-height: 1; margin-bottom: 16px; opacity: .4;
}
.ovh-lc-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 300; margin-bottom: 6px; line-height: 1.2;
}
.ovh-lc-sub {
  font-size: 10px; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ovh-gold); margin-bottom: 14px;
}
.ovh-lc-desc {
  font-size: 13px; font-weight: 300; color: var(--ovh-slate);
  line-height: 1.7; margin-bottom: 20px;
}
.ovh-lc-arrow {
  font-size: 9px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ovh-navy);
  transition: color .2s;
}
.ovh-laser-card:hover .ovh-lc-arrow { color: var(--ovh-gold); }

/* ════════════════════════════════════════
   PHILOSOPHY
════════════════════════════════════════ */
.ovh-philosophy { background: var(--ovh-white); padding: 0; }
.ovh-phil-grid { display: grid; grid-template-columns: 1fr 1fr; }

.ovh-phil-img {
  position: relative; height: 660px; overflow: hidden;
  background: var(--ovh-navy);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  display: flex; align-items: center; justify-content: center;
  transition: background-size 8s ease;
}
.ovh-phil-img:hover { background-size: 104% !important; }

.ovh-phil-badge {
  position: absolute; bottom: 32px; left: 32px;
  background: rgba(13,27,42,.82); backdrop-filter: blur(16px);
  padding: 18px 24px; border-left: 2px solid var(--ovh-gold); z-index: 1;
}
.ovh-pb-year {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px; font-weight: 300; color: #fff;
}
.ovh-pb-label {
  font-size: 8px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ovh-gold); margin-top: 3px;
}

.ovh-phil-text {
  padding: 96px 80px; display: flex; flex-direction: column;
  justify-content: center; background: var(--ovh-cream);
}
.ovh-phil-text .ovh-section-label { margin-bottom: 10px; }
.ovh-phil-text .ovh-section-h2   { margin-bottom: 30px; }
.ovh-phil-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px; font-weight: 300; font-style: italic; color: var(--ovh-navy);
  line-height: 1.6; margin-bottom: 26px;
  padding-left: 20px; border-left: 2px solid var(--ovh-gold);
}
.ovh-phil-body {
  font-size: 14px; font-weight: 300; color: var(--ovh-slate);
  line-height: 1.85; margin-bottom: 36px;
}

/* ════════════════════════════════════════
   FOUR PILLARS
════════════════════════════════════════ */
.ovh-pillars { background: var(--ovh-navy) !important; padding: 120px 72px; position: relative; z-index: 1; }


/* Per-card gradient backgrounds — always visible behind/around the image */
.ovh-p-skin   { background: linear-gradient(160deg,#1e3a5c,#0d2035) !important; }
.ovh-p-body   { background: linear-gradient(160deg,#213850,#102030) !important; }
.ovh-p-mens   { background: linear-gradient(160deg,#182535,#0d1c2c) !important; }
.ovh-p-womens { background: linear-gradient(160deg,#1c2e42,#0d1a28) !important; }
.ovh-pillars .ovh-section-h2 { text-align: center; }
.ovh-pillars .ovh-section-p { text-align: center; margin: 0 auto; max-width: 500px; }

.ovh-pillars-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,.05); margin-top: 72px;
}
.ovh-p-card {
  /* min-height set inline — survives LL theme stripping of height property */
  position: relative; overflow: hidden;
  cursor: pointer; transition: transform .4s ease;
  background: var(--ovh-navy);
  /* flex column layout set inline — content flows to bottom naturally */
}
.ovh-p-card:hover { transform: translateY(-4px); }

/* Media: background-image set inline per card — no <img> tag, no absolute child */
/* Hover scale effect via pseudo-element overlay scale */
.ovh-p-card::before {
  content: ''; position: absolute; inset: -5%;
  background: inherit; background-size: cover; background-position: center center;
  transition: transform .7s var(--ovh-ease);
  z-index: 0;
}
.ovh-p-card:hover::before { transform: scale(1.08); }

.ovh-p-num {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 13px; font-weight: 300;
  letter-spacing: .18em; color: rgba(184,150,90,.5);
}
.ovh-p-body {
  /* In normal flow at bottom of flex column */
}
.ovh-p-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 300; color: #fff; line-height: 1.15;
  margin-bottom: 0; transition: margin .35s var(--ovh-ease);
}
.ovh-p-card:hover .ovh-p-title { margin-bottom: 14px; }

.ovh-p-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .4s var(--ovh-ease), opacity .35s ease, margin .35s ease;
}
.ovh-p-card:hover .ovh-p-tags { max-height: 60px; opacity: 1; margin-bottom: 14px; }
.ovh-p-tag {
  font-size: 9px; padding: 3px 9px;
  background: rgba(184,150,90,.15); color: var(--ovh-gold-lt);
  border: 1px solid rgba(184,150,90,.2); letter-spacing: .06em;
}
.ovh-p-link {
  display: block; font-size: 9px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ovh-gold);
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .4s var(--ovh-ease), opacity .35s ease;
  cursor: pointer;
}
.ovh-p-card:hover .ovh-p-link { max-height: 30px; opacity: 1; }
.ovh-p-link-sec {
  display: block; font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-top: 7px;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .4s .05s var(--ovh-ease), opacity .35s .05s ease;
  position: relative; pointer-events: auto;
}
.ovh-p-card:hover .ovh-p-link-sec { max-height: 30px; opacity: 1; }
.ovh-p-link-sec:hover { color: rgba(255,255,255,.75); }

/* ════════════════════════════════════════
   RESULTS
════════════════════════════════════════ */
.ovh-results { background: var(--ovh-white); padding: 120px 72px; }
.ovh-results .ovh-section-label,
.ovh-results .ovh-section-h2 { text-align: center; }

.ovh-results-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 64px;
}
.ovh-r-card {
  border-top: 1px solid var(--ovh-border);
  transition: border-color .2s;
}
.ovh-r-card:hover { border-top-color: var(--ovh-gold); }
.ovh-r-img {
  height: 280px; background: var(--ovh-cream);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ovh-ba-pair { display: flex; width: 100%; height: 100%; }
.ovh-ba-side {
  flex: 1; position: relative; overflow: hidden;
}
.ovh-ba-side img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ovh-ba-side:first-child { border-right: 1px solid rgba(255,255,255,.15); }
.ovh-ba-empty {
  width: 100%; height: 100%; background: #1a2035;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.2);
}
.ovh-ba-label {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.55); color: #fff;
  font-size: 8px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
  white-space: nowrap;
}
.ovh-r-placeholder {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(0,0,0,.2); text-align: center; line-height: 1.8; padding: 20px;
}
.ovh-r-placeholder em { font-style: normal; font-size: .85em; opacity: .7; }
.ovh-r-ba-strip {
  position: absolute; bottom: 0; left: 0; right: 0; display: flex;
}
.ovh-r-ba-strip span {
  flex: 1; text-align: center; padding: 6px;
  font-size: 8px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
}
.ovh-r-before { background: rgba(13,27,42,.55); color: rgba(255,255,255,.6); }
.ovh-r-after  { background: rgba(184,150,90,.7); color: var(--ovh-navy); }
.ovh-r-body { padding: 20px 0 28px; }
.ovh-r-treatment {
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ovh-gold); font-weight: 600; margin-bottom: 8px;
}
.ovh-r-desc {
  font-size: 13px; font-weight: 300; color: var(--ovh-slate); line-height: 1.7;
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.ovh-testimonials { background: var(--ovh-cream); padding: 120px 72px; }
.ovh-testimonials .ovh-section-label { text-align: center; }
.ovh-testimonials .ovh-section-h2 { text-align: center; margin-bottom: 60px; }

.ovh-test-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 48px; max-width: 1100px; margin: 0 auto;
}
.ovh-t-card { border-top: 1px solid var(--ovh-border); padding-top: 30px; }
.ovh-t-stars {
  font-size: 11px; color: var(--ovh-gold); letter-spacing: 3px; margin-bottom: 16px;
}
.ovh-t-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px; font-weight: 300; font-style: italic; color: var(--ovh-navy);
  line-height: 1.65; margin-bottom: 22px;
}
.ovh-t-author {
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ovh-navy); margin-bottom: 3px;
}
.ovh-t-detail { font-size: 10px; color: var(--ovh-slate); letter-spacing: .06em; }

/* ════════════════════════════════════════
   LOCATION
════════════════════════════════════════ */
.ovh-location { background: var(--ovh-white); padding: 0; }
.ovh-loc-grid { display: grid; grid-template-columns: 1fr 1fr; }
.ovh-loc-map {
  height: 540px; background: var(--ovh-navy); position: relative;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.ovh-loc-map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block;
}
.ovh-loc-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(13,27,42,.85); backdrop-filter: blur(16px);
  padding: 16px 20px; border-left: 2px solid var(--ovh-gold); z-index: 1;
}
.ovh-lb-addr { font-size: 12px; color: #fff; line-height: 1.5; font-weight: 300; }
.ovh-lb-sub {
  font-size: 9px; color: var(--ovh-gold); letter-spacing: .18em;
  text-transform: uppercase; margin-top: 4px;
}
.ovh-loc-info {
  padding: 96px 80px; display: flex; flex-direction: column;
  justify-content: center; background: var(--ovh-cream);
}
.ovh-loc-info .ovh-section-h2 { margin-bottom: 20px; }
.ovh-loc-p {
  font-size: 13px; font-weight: 300; color: var(--ovh-slate);
  line-height: 1.85; margin-bottom: 28px;
}
.ovh-loc-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px;
}
.ovh-loc-feat {
  font-size: 12px; font-weight: 300; color: var(--ovh-slate);
  display: flex; align-items: center; gap: 8px;
}
.ovh-loc-feat::before {
  content: ''; width: 4px; height: 4px;
  background: var(--ovh-gold); border-radius: 50%; flex-shrink: 0;
}
.ovh-loc-hours {
  font-size: 12px; color: var(--ovh-slate); font-weight: 300; margin-bottom: 28px;
}
.ovh-loc-hours strong { color: var(--ovh-navy); font-weight: 500; }

/* ════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════ */
.ovh-cta {
  background: var(--ovh-navy); padding: 140px 72px; text-align: center; position: relative;
}
.ovh-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 900px 600px at 50% 50%,rgba(184,150,90,.04),transparent 70%);
}
.ovh-cta-inner { position: relative; z-index: 1; }
.ovh-cta .ovh-section-label { color: rgba(184,150,90,.55); }
.ovh-cta .ovh-section-h2 { max-width: 680px; margin: 0 auto 20px; }
.ovh-cta-p {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,.42);
  line-height: 1.85; max-width: 460px; margin: 0 auto 44px;
}
.ovh-cta-btns { display: flex; gap: 14px; justify-content: center; margin-bottom: 20px; }
.ovh-cta-note {
  font-size: 10px; color: rgba(255,255,255,.22); font-style: italic; letter-spacing: .06em;
}

/* ════════════════════════════════════════
   MOBILE STICKY CTA
════════════════════════════════════════ */
.ovh-sticky {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  background: var(--ovh-navy); border-top: 1px solid rgba(184,150,90,.2);
  display: none; transform: translateY(100%); transition: transform .3s ease;
}
.ovh-sticky.show { transform: translateY(0); }
.ovh-sticky a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 16px;
  font-family: var(--ovh-sans); font-size: 9px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; transition: background .2s;
}
.ovh-sticky-call { color: rgba(255,255,255,.65); border-right: 1px solid rgba(255,255,255,.06); }
.ovh-sticky-book { background: var(--ovh-gold); color: var(--ovh-navy); }
.ovh-sticky-book:hover { background: var(--ovh-gold-lt); }

/* ════════════════════════════════════════
   REVEAL ANIMATION
════════════════════════════════════════ */
.ovh-reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s var(--ovh-ease), transform .8s var(--ovh-ease);
}
.ovh-reveal.ovh-visible { opacity: 1; transform: none; }
.ovh-reveal-d1 { transition-delay: .1s; }
.ovh-reveal-d2 { transition-delay: .2s; }
.ovh-reveal-d3 { transition-delay: .3s; }

/* ════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .ovh-hero-location,
  .ovh-hero-h1,
  .ovh-hero-p,
  .ovh-hero-actions,
  /* hero strip removed */
  .ovh-scroll-line { animation: none; }
  .ovh-p-media { transition: none; }
  .ovh-reveal { transition: none; }
}

/* ════════════════════════════════════════
   RESPONSIVE — 1024px (tablet landscape)
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ovh-concerns, .ovh-pillars, .ovh-results,
  .ovh-testimonials, .ovh-cta { padding: 96px 48px; }
  .ovh-hero-body  { padding-left: 48px; padding-right: 48px; padding-bottom: 64px; }
  /* hero strip removed */
  .ovh-phil-grid, .ovh-loc-grid { grid-template-columns: 1fr; }
  .ovh-phil-img, .ovh-loc-map { height: 400px; }
  .ovh-phil-text, .ovh-loc-info { padding: 72px 48px; }
  .ovh-pillars-grid { grid-template-columns: repeat(2,1fr); }
  .ovh-p-card { min-height: 440px; }
  /* On tablet, show pillar content without hover (no hover on touch) */
  .ovh-p-tags, .ovh-p-link, .ovh-p-link-sec { max-height: 80px; opacity: 1; }
  .ovh-p-title { margin-bottom: 12px; }
  .ovh-laser-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ovh-sticky { display: flex; }
  /* Results 2-col on tablet */
  .ovh-results-grid { grid-template-columns: repeat(2,1fr); }
  /* Testimonials 2-col on tablet */
  .ovh-test-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — 768px (phone landscape / tablet portrait)
════════════════════════════════════════ */
@media (max-width: 768px) {
  .ovh-trust-stat { flex: 0 0 50%; }
  .ovh-trust-stat:nth-child(2)::after { display: none; }
  .ovh-trust-num { font-size: 1.6rem; }

  /* Section spacing */
  .ovh-concerns, .ovh-pillars, .ovh-results,
  .ovh-testimonials, .ovh-cta { padding: 72px 24px; }

  /* Hero */
  .ovh-hero { height: 100svh; }  /* use svh so mobile browser chrome doesn't clip */
  .ovh-hero-body { padding: 0 24px 48px; max-width: 100%; }

  .ovh-hero-h1 { font-size: clamp(32px, 8vw, 42px); }
  .ovh-hero-p { font-size: 13px; max-width: 100%; }
  .ovh-hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .ovh-btn-primary, .ovh-btn-ghost { width: 100%; justify-content: center; }
  .ovh-scroll-cue { display: none; } /* hide scroll cue on mobile */

  /* Tabs — horizontal scroll, no wrap */
  .ovh-tab-bar { justify-content: flex-start; }
  .ovh-tab { padding: 12px 16px; font-size: 9px; flex-shrink: 0; }
  /* Pills — slightly smaller */
  .ovh-pill { font-size: 12px; padding: 8px 14px; }
  .ovh-pill-wrap { justify-content: flex-start; }

  /* Laser cards — single column */
  .ovh-laser-cards { grid-template-columns: 1fr; gap: 12px; }
  .ovh-laser-card { padding: 28px 24px; }

  /* Philosophy & Location — single column (already set at 1024, keep) */
  .ovh-phil-text, .ovh-loc-info { padding: 52px 24px; }
  .ovh-phil-img { height: 320px; }
  .ovh-loc-map { height: 300px; }

  /* Pillar cards — single column, aspect ratio instead of fixed height */
  .ovh-pillars-grid { grid-template-columns: 1fr; gap: 1px; }
  .ovh-p-card { height: auto; aspect-ratio: 4/3; }
  .ovh-p-tags, .ovh-p-link, .ovh-p-link-sec { max-height: 80px; opacity: 1; }
  .ovh-p-title { margin-bottom: 10px; }

  /* Results — single column */
  .ovh-results-grid { grid-template-columns: 1fr; gap: 28px; }
  .ovh-r-img { height: 240px; }

  /* Testimonials — single column */
  .ovh-test-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Location features — single column */
  .ovh-loc-features { grid-template-columns: 1fr; gap: 8px; }
  .ovh-loc-badge { left: 12px; right: 12px; bottom: 12px; padding: 12px 16px; }

  /* CTA */
  .ovh-cta { padding: 80px 24px; }
  .ovh-cta-btns { flex-direction: column; align-items: stretch; }
  .ovh-cta .ovh-btn-primary { width: 100%; justify-content: center; }

  /* Sticky CTA — visible on mobile */
  .ovh-sticky { display: flex; }
  /* Add bottom padding to final section so sticky bar doesn't cover content */
  .ovh-cta { padding-bottom: calc(80px + 56px); }
}

/* ════════════════════════════════════════
   RESPONSIVE — 480px (phone portrait)
════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Hero */
  .ovh-hero-h1 { font-size: 28px; line-height: 1.1; }
  .ovh-hero-p  { font-size: 12px; }
  .ovh-hero-location { font-size: 8px; letter-spacing: .25em; }

  /* Typography */
  .ovh-section-h2 { font-size: 26px; }
  .ovh-section-label { font-size: 8px; letter-spacing: .28em; }

  /* Pillar cards — taller aspect on small phones */
  .ovh-p-card { aspect-ratio: 3/4; }
  .ovh-p-body { padding: 20px 18px; }
  .ovh-p-title { font-size: 18px; }

  /* Philosophy */
  .ovh-phil-img { height: 260px; }
  .ovh-phil-quote { font-size: 17px; }
  .ovh-phil-badge { bottom: 14px; left: 14px; padding: 12px 16px; }
  .ovh-pb-year { font-size: 22px; }

  /* Laser cards */
  .ovh-lc-title { font-size: 18px; }
  .ovh-lc-num   { font-size: 28px; }

  /* Testimonials */
  .ovh-t-quote { font-size: 15px; }

  /* Before/After */
  .ovh-r-img { height: 200px; }

  /* Location */
  .ovh-loc-map { height: 260px; }

  /* Concerns padding */
  .ovh-concerns { padding: 64px 20px; }

  /* Buttons — full width in all contexts */
  .ovh-btn-dark { width: 100%; justify-content: center; }
}
