/* ─── LOCAL FONTS (NO EXTERNAL REQUESTS) ─── */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-regular-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-regular-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── TOKENS ─── */
:root {
  --bg: #F7F3EC;
  --surface: #FDFAF5;
  --dark: #1C1A16;
  --accent: #3D5A3E;
  --warm: #7B3F20;
  --muted: #6B6055;
  --border: #E2D9C8;
  --gold: #C8A96A;
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fs-flow: 16px;
  --fs-flow-compact: 15px;
  --fs-detail: 15px;
  --fs-label: 12px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--dark); font-family: var(--fb); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── SCROLL PROGRESS ─── */
#progress {
  position: fixed; top: 0; left: 0; height: 3px;
  width: 0%; background: var(--bg); z-index: 1000;
}

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 22px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s var(--ease), padding 0.3s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(18,15,10,0.25);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

/* Keep site chrome below the Frame admin bar while editing */
body.frame-admin-active .nav {
  top: var(--frame-admin-offset, 0px);
}

body.frame-admin-active .nav-overlay {
  top: var(--frame-admin-offset, 0px);
}

body.frame-admin-active #progress {
  top: var(--frame-admin-offset, 0px);
}

.nav.scrolled {
  background: rgba(18,15,10,0.55);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  padding: 14px 48px;
  border-color: rgba(255,255,255,0.1);
}
/* Keep nav-light pages visually consistent with homepage glass nav */
.nav.nav-light {
  background: rgba(18,15,10,0.25);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav.nav-light.scrolled {
  background: rgba(18,15,10,0.55);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-color: rgba(255,255,255,0.1);
}
.nav.nav-light .nav-logo { color: #F7F3EC; }
.nav.nav-light .nav-logo span { color: var(--gold); }
.nav.nav-light .nav-links a { color: rgba(247,243,236,0.75); }
.nav.nav-light .nav-links a:hover { color: #F7F3EC; }
.nav.nav-light .lang-btn { color: rgba(247,243,236,0.75); }
.nav.nav-light .lang-btn.active { background: rgba(247,243,236,0.2); color: #F7F3EC; border: 1px solid rgba(247,243,236,0.35); }
.nav.nav-light .toggle span { background: #F7F3EC; }

.nav-logo {
  font-family: var(--fd); font-size: 21px; font-weight: 500;
  letter-spacing: 0.02em; color: #F7F3EC;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(247,243,236,0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: #F7F3EC; }
.nav-right { display: flex; align-items: center; gap: 16px; }

/* Lang switcher */
.lang-sw { display: flex; gap: 2px; }
.lang-btn {
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  padding: 5px 9px; border-radius: 3px; color: rgba(247,243,236,0.75);
  transition: all 0.2s; border: 1px solid transparent;
}
.lang-btn.active { background: rgba(247,243,236,0.2); color: #F7F3EC; border: 1px solid rgba(247,243,236,0.35); }
.lang-btn:hover:not(.active) { color: #F7F3EC; }

/* Mobile toggle */
.toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.toggle span { display: block; width: 22px; height: 1.5px; background: #F7F3EC; transition: transform 0.3s var(--ease), opacity 0.2s; }
.toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.toggle.open span:nth-child(2) { opacity: 0; }
.toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0; background: var(--bg);
  z-index: 450; flex-direction: column; align-items: center;
  justify-content: center; gap: 28px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--fd); font-size: 38px; font-weight: 400;
  color: var(--dark); opacity: 0.65; transition: opacity 0.2s;
}
.nav-overlay a:hover { opacity: 1; }
.nav-overlay .lang-sw .lang-btn { color: var(--muted); }
.nav-overlay .lang-sw .lang-btn.active { background: var(--dark); color: var(--bg); border: none; }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100dvh;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(18,15,10,0.82) 0%,
    rgba(18,15,10,0.35) 55%,
    rgba(18,15,10,0.1) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 80px 100px; width: 100%; max-width: 860px;
  box-sizing: border-box;
}
@media (min-width: 1025px) {
  .hero-content {
    padding: 0 0 100px;
    width: min(860px, calc(100% - 112px));
    margin-left: max(56px, calc((100vw - 1400px) / 2 + 56px));
  }
}
.hero-label {
  font-size: 11px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(247,243,236,0.75); margin-bottom: 22px;
}
.hero-prep .hero-label {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: heroPrepIn 720ms cubic-bezier(0.22, 1, 0.36, 1) 90ms forwards;
}
.hero-prep .hero-h1 {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  animation: heroPrepIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 190ms forwards;
}
.hero-prep .hero-sub {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: heroPrepIn 760ms cubic-bezier(0.22, 1, 0.36, 1) 420ms forwards;
}
.hero-prep .hero-cta {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  animation: heroPrepIn 720ms cubic-bezier(0.22, 1, 0.36, 1) 610ms forwards;
}
.hero-prep .scroll-ind {
  opacity: 0;
  animation: heroPrepFade 800ms ease 950ms forwards;
}
@keyframes heroPrepIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes heroPrepFade {
  to { opacity: 1; }
}
.hero-h1 {
  font-family: var(--fd);
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.02em;
  color: #F7F3EC; margin-bottom: 22px;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 17px; font-weight: 300; color: rgba(247,243,236,0.80);
  line-height: 1.65; max-width: 44ch; margin-bottom: 44px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-proof-badge {
  display: inline-flex; align-items: center; gap: 10px;
  width: fit-content; margin-bottom: 28px;
  padding: 10px 14px; border-radius: 999px;
  border: 1px solid rgba(247,243,236,0.30);
  background: rgba(18,15,10,0.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  color: #F7F3EC; text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.hero-proof-badge:hover {
  border-color: rgba(247,243,236,0.55);
  background: rgba(18,15,10,0.52);
  transform: translateY(-1px);
}
.hero-proof-badge:active { transform: translateY(0) scale(0.98); }
.hero-proof-copy {
  display: flex; flex-direction: column; gap: 2px;
}
.hero-proof-title {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.11em; text-transform: uppercase;
}
.hero-proof-meta {
  font-size: 12px; font-weight: 300;
  color: rgba(247,243,236,0.78);
}
.hero-proof-badge .tripadvisor-award-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 30px;
  flex-shrink: 0;
}
.hero-proof-badge .tripadvisor-award-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ─── PAGE HERO (for subpages without video) ─── */
.page-hero {
  position: relative; padding: 180px 0 100px;
  background: var(--dark); overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.35;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(18,15,10,0.5) 0%, rgba(18,15,10,0.85) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
}
.page-hero-content > * { max-width: 700px; }
.page-hero .hero-label { color: rgba(247,243,236,0.65); }
.page-hero .hero-h1 { font-size: clamp(40px, 5vw, 76px); }
.page-hero .hero-sub { font-size: 16px; margin-bottom: 32px; }

/* Breadcrumb */
.breadcrumb {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(247,243,236,0.45); margin-bottom: 32px;
}
.breadcrumb a { color: rgba(247,243,236,0.45); transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(247,243,236,0.8); }
.breadcrumb span { color: rgba(247,243,236,0.25); }

/* Buttons */
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--accent); color: var(--bg);
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 2px;
  transition: background 0.25s, transform 0.15s;
}
.btn-dark:hover { background: #2e4530; transform: translateY(-1px); }
.btn-dark:active { transform: translateY(0) scale(0.98); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border: 1px solid rgba(247,243,236,0.35); color: #F7F3EC;
  font-size: 12px; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: rgba(247,243,236,0.8); background: rgba(247,243,236,0.08); }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border: 1px solid var(--border); color: var(--dark);
  font-size: 12px; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-dark:hover { border-color: var(--dark); background: rgba(28,26,22,0.04); }

/* Scroll indicator */
.hero-cta-row {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.scroll-ind {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-line {
  width: 6px; height: 96px; background: rgba(247,243,236,0.15);
  border-radius: 3px; position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; left: 0; top: -100%;
  width: 100%; height: 100%; background: #F7F3EC;
  border-radius: 3px; animation: line-pulse 2.4s ease-in-out infinite;
}
@keyframes line-pulse { 0% { top: -100%; } 60%, 100% { top: 110%; } }
.scroll-txt {
  font-size: 9px; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(247,243,236,0.5);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

/* ─── SHARED SECTION STYLES ─── */
section { padding: 116px 56px; max-width: 1400px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.section-title {
  font-family: var(--fd); font-size: clamp(36px, 4vw, 58px);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
  color: var(--dark); margin-bottom: 22px;
}
.therapy-page .section-title {
  margin-bottom: 44px;
}
.children-page .section-title {
  margin-bottom: 44px;
}
.therapy-page .divider,
.children-page .divider {
  display: none;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-intro {
  font-size: 17px; font-weight: 300; color: var(--muted);
  line-height: 1.65; max-width: 54ch;
}
.divider { height: 1px; background: var(--border); }

@media (min-width: 1025px) {
  .therapy-page section {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .therapy-page .section-title {
    margin-bottom: 70px;
  }
}

/* ─── CONTENT TEXT BLOCKS ─── */
.prose {
  font-size: var(--fs-flow-compact); font-weight: 300; color: var(--muted);
  line-height: 1.8; max-width: 64ch;
}
.prose + .prose { margin-top: 20px; }
.prose strong { font-weight: 500; color: var(--dark); }
.content-h2 {
  font-family: var(--fd); font-size: clamp(28px, 3vw, 44px);
  font-weight: 300; line-height: 1.15; color: var(--dark); margin-bottom: 16px;
}
.content-h2 em { font-style: italic; color: var(--accent); }
.content-h3 {
  font-size: 16px; font-weight: 500; color: var(--dark); margin-bottom: 8px;
  letter-spacing: 0.01em;
}

/* Reveal animation */
.reveal-animated .rev { opacity: 0; transform: translateY(32px); }
.reveal-static .rev {
  opacity: 1;
  transform: none;
}

/* ─── STEP LIST ─── */
.step-list { list-style: none; counter-reset: steps; margin-top: 32px; }
.step-list li {
  counter-increment: steps; display: flex; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
  font-size: var(--fs-detail); font-weight: 300; line-height: 1.7; color: var(--muted);
}
.step-list li:first-child { border-top: 1px solid var(--border); }
.step-list li::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--fd); font-size: 22px; font-weight: 300;
  color: var(--accent); flex-shrink: 0; min-width: 32px; padding-top: 2px;
}
.step-list strong { font-weight: 500; color: var(--dark); display: block; margin-bottom: 4px; }

/* ─── INFO TABLE ─── */
.info-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:first-child { border-top: 1px solid var(--border); }
.info-table td {
  padding: 14px 0; font-size: var(--fs-flow); font-weight: 300;
  color: var(--muted); line-height: 1.5; vertical-align: top;
}
.info-table td:first-child {
  font-size: var(--fs-label); font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); width: 40%; padding-right: 20px;
}
.info-table .language-line {
  white-space: nowrap;
  font-size: clamp(13px, 1.28vw, var(--fs-flow));
}

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--accent); border-radius: 3px;
  padding: 24px 28px; margin: 32px 0;
}
.highlight-box p { font-size: var(--fs-flow); font-weight: 300; line-height: 1.7; color: var(--muted); }
.highlight-box strong { font-weight: 500; color: var(--dark); }
.highlight-note {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 18px;
  margin: 30px 0 6px;
}
.highlight-note p { font-size: var(--fs-flow); font-weight: 300; line-height: 1.7; color: var(--muted); }
.highlight-note strong { font-weight: 500; color: var(--dark); }

/* ─── QUOTE BLOCK ─── */
.pull-quote {
  font-family: var(--fd); font-size: 22px; font-weight: 300; font-style: italic;
  line-height: 1.55; color: var(--dark); border-left: 2px solid var(--accent);
  padding-left: 22px; margin: 40px 0;
}

/* ─── INTERNAL LINK CARDS ─── */
.link-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.link-card {
  padding: 24px 22px; border: 1px solid var(--border); border-radius: 3px;
  transition: border-color 0.25s, background 0.25s;
}
.link-card:hover { border-color: var(--accent); background: var(--surface); }
.link-card-label {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.link-card-title {
  font-family: var(--fd); font-size: 21px; font-weight: 300;
  color: var(--dark); margin-bottom: 8px;
}
.link-card-arrow { font-size: 12px; color: var(--accent); margin-top: 14px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ─── ABOUT ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: start; margin-bottom: 104px;
}
.about-brand {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.about-brand-logo {
  width: min(100%, 448px);
  max-height: 252px;
  height: auto;
  object-fit: contain;
  display: block;
}
.about-team-head {
  margin-bottom: 44px;
  text-align: left;
}
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.team-photo-wrap {
  width: 100%; aspect-ratio: 3/4; overflow: hidden;
  border-radius: 3px; margin-bottom: 22px;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  display: block;
}
.team-name { font-family: var(--fd); font-size: 26px; font-weight: 400; margin-bottom: 5px; }
.team-role {
  font-size: 11px; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.team-bio { font-size: var(--fs-flow); font-weight: 300; line-height: 1.75; color: var(--muted); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  padding: 4px 10px; border: 1px solid var(--border); border-radius: 2px;
  font-size: var(--fs-label); font-weight: 400; letter-spacing: 0.07em; color: var(--muted);
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: 3px;
  overflow: hidden; margin-top: 56px;
}
.trust-item {
  background: var(--surface); padding: 28px 24px;
  text-align: center;
}
.trust-num {
  font-family: var(--fd); font-size: 42px; font-weight: 300;
  color: var(--accent); line-height: 1; margin-bottom: 8px;
}
.trust-label { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.4; }

/* ─── SERVICES ─── */
.services-wrap {
  background: var(--offers-section-bg, #DDDAC8);
  max-width: 100%;
  padding: 116px 56px;
}
.services-inner { max-width: 1400px; margin: 0 auto; }
.services-wrap .section-label { color: var(--offers-section-label, rgba(247,243,236,0.65)); }
.services-wrap .section-title { color: var(--offers-section-heading, var(--bg)); }
.services-wrap .section-title em { color: var(--offers-section-heading, var(--bg)); }
.services-wrap .section-intro { color: var(--offers-section-body, rgba(247,243,236,0.82)); }

.svc-header { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: end; margin-bottom: 72px; }
.info-list { margin-top: 32px; }
.info-row {
  display: flex; justify-content: space-between; align-items: start;
  padding: 16px 0; border-bottom: 1px solid var(--offers-info-divider, rgba(247,243,236,0.15));
}
.info-row:first-child { border-top: 1px solid var(--offers-info-divider, rgba(247,243,236,0.15)); }
.info-lbl { font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--offers-info-label, rgba(247,243,236,0.55)); }
.info-val { font-size: var(--fs-flow); font-weight: 300; color: var(--offers-info-value, rgba(247,243,236,0.85)); text-align: right; max-width: 28ch; line-height: 1.5; }

.rides-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.ride-card {
  background: var(--offers-card-bg, #313931);
  padding: 44px 36px;
  border-radius: 3px;
  transition: background 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ride-card:hover { background: var(--offers-card-hover-bg, #2a322b); }
.ride-img {
  width: 100%;
  height: clamp(210px, 24vw, 340px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  margin-bottom: 28px;
  opacity: 0.72;
  transition: opacity 0.35s;
  background: rgba(14, 12, 9, 0.28);
}
.ride-card:hover .ride-img { opacity: 0.88; }
.ride-num { font-size: 11px; letter-spacing: 0.14em; color: var(--offers-card-number, rgba(247,243,236,0.25)); margin-bottom: 14px; }
.ride-title { font-family: var(--fd); font-size: 30px; font-weight: 300; color: var(--offers-card-text, var(--bg)); line-height: 1.15; margin-bottom: 8px; }
.ride-badge {
  display: inline-block; padding: 3px 10px; border: 1px solid var(--offers-card-badge-border, rgba(247,243,236,0.12));
  border-radius: 2px; font-size: 11px; letter-spacing: 0.07em;
  color: var(--offers-card-badge-text, rgba(247,243,236,0.35)); margin-bottom: 18px;
}
.ride-desc { font-size: var(--fs-flow); font-weight: 300; line-height: 1.7; color: var(--offers-card-muted, rgba(247,243,236,0.68)); margin-bottom: 28px; }
.ride-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; border-top: 1px solid var(--offers-card-divider, rgba(247,243,236,0.08));
  gap: 20px;
  margin-top: auto;
}
.ride-price { font-family: var(--fd); font-size: 28px; font-weight: 300; color: var(--offers-card-text, var(--bg)); }
.ride-price small { font-size: 13px; font-weight: 300; color: var(--offers-card-price-small, rgba(247,243,236,0.35)); font-family: var(--fb); }
.ride-seasonal { font-size: 11px; color: var(--offers-card-seasonal, rgba(247,243,236,0.3)); margin-top: 6px; }
.ride-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-ride {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px; border: 1px solid var(--offers-btn-border, rgba(247,243,236,0.18)); border-radius: 2px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--offers-btn-text, var(--bg));
  background: var(--offers-btn-bg, transparent);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  min-height: 42px;
  white-space: nowrap;
}
.btn-ride:hover {
  border-color: var(--offers-btn-hover-border, rgba(247,243,236,0.55));
  background: var(--offers-btn-hover-bg, rgba(247,243,236,0.04));
  color: var(--offers-btn-hover-text, var(--bg));
}

.btn-ride-details {
  cursor: pointer;
}

.btn-ride-booking {
  border-color: var(--offers-btn-hover-border, rgba(247,243,236,0.44));
  background: var(--offers-btn-hover-bg, rgba(247,243,236,0.05));
}

body.offer-modal-open {
  overflow: hidden;
}

.offer-modal[hidden] {
  display: none;
}

.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
}

.offer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 13, 10, 0.62);
  backdrop-filter: blur(4px);
}

.offer-modal-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  background: var(--offers-card-bg, #313931);
  color: var(--offers-card-text, var(--bg));
  border: 1px solid var(--offers-card-divider, rgba(247,243,236,0.1));
  border-radius: 3px;
  padding: 44px 36px 28px;
  box-shadow: 0 34px 84px rgba(12, 9, 7, 0.42);
}

.offer-modal-close {
  position: absolute;
  top: 36px;
  right: 36px;
  border: 1px solid var(--offers-btn-border, rgba(247,243,236,0.18));
  background: rgba(247,243,236,0.02);
  color: var(--offers-card-text, var(--bg));
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
}

.offer-modal-close:hover {
  border-color: var(--offers-btn-hover-border, rgba(247,243,236,0.55));
  background: var(--offers-btn-hover-bg, rgba(247,243,236,0.05));
}

.offer-modal-media {
  margin: 0 0 26px;
  height: clamp(210px, 24vw, 340px);
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(247,243,236,0.08);
}

.offer-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.84;
  filter: saturate(0.9) contrast(1.02);
}

.offer-modal-content {
  padding: 0;
}

.offer-modal-badge {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--offers-card-number, rgba(247,243,236,0.32));
}

.offer-modal-title {
  margin: 0;
  font-family: var(--fd);
  font-weight: 300;
  font-size: clamp(30px, 3.1vw, 40px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--offers-card-text, var(--bg));
}

.offer-modal-price {
  margin: 14px 0 0;
  font-family: var(--fd);
  font-size: clamp(30px, 3.1vw, 40px);
  line-height: 1.15;
  font-weight: 300;
  color: var(--offers-card-text, var(--bg));
}

.offer-modal-text {
  margin: 18px 0 0;
  font-size: var(--fs-flow);
  line-height: 1.7;
  color: var(--offers-card-muted, rgba(247,243,236,0.76));
  white-space: pre-line;
  max-width: 70ch;
}

.offer-modal-actions {
  margin-top: 24px;
  padding: 22px 0 0;
  border-top: 1px solid var(--offers-card-divider, rgba(247,243,236,0.08));
  display: flex;
  justify-content: flex-end;
}

.offer-modal-actions .btn-ride {
  border-color: var(--offers-btn-border, rgba(247,243,236,0.18));
  color: var(--offers-btn-text, var(--bg));
  background: var(--offers-btn-bg, transparent);
}

.offer-modal-actions .btn-ride:hover {
  border-color: var(--offers-btn-hover-border, rgba(247,243,236,0.55));
  background: var(--offers-btn-hover-bg, rgba(247,243,236,0.04));
  color: var(--offers-btn-hover-text, var(--bg));
}

@media (max-width: 780px) {
  .offer-modal {
    padding: 12px;
  }
  .offer-modal-dialog {
    border-radius: 3px;
    padding: 26px 20px 20px;
    max-height: 92vh;
  }
  .offer-modal-media {
    height: 180px;
    margin-bottom: 18px;
  }
  .offer-modal-close {
    top: 16px;
    right: 16px;
  }
  .offer-modal-title,
  .offer-modal-price {
    font-size: clamp(27px, 8vw, 34px);
  }
  .offer-modal-text {
    font-size: 17px;
    line-height: 1.66;
  }
}

/* Video feature + lightbox */
.video-feature {
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(196, 216, 191, 0.08) 0%, rgba(196, 216, 191, 0) 52%),
    linear-gradient(180deg, #171411 0%, #12100d 100%);
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding-top: 102px;
  padding-bottom: 136px;
  padding-inline: 56px;
  overflow: hidden;
  margin-bottom: 54px;
}
.video-feature .section-label {
  color: rgba(247, 243, 236, 0.66);
}
.video-feature .section-title {
  color: #f6f1e8;
}
.video-feature .section-title em {
  color: #c4d8bf;
}
.video-feature .section-intro {
  color: rgba(247, 243, 236, 0.76);
}
.video-feature-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 50px;
  max-width: 1400px;
  margin-inline: auto;
}
.video-feature-head .section-label,
.video-feature-head .section-title {
  transform: translateY(-20px);
}
.video-cinema-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1400px;
  margin-inline: auto;
  overflow: hidden;
}
.video-cinema-item {
  flex: 1 1 0;
  min-width: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0.6;
  transform: scale(0.88);
  transform-origin: center center;
  transition: transform 0.32s var(--ease), opacity 0.32s var(--ease), box-shadow 0.3s var(--ease);
}
.video-cinema-item:hover {
  opacity: 0.8;
}
.video-cinema-item:focus-visible {
  outline: 2px solid rgba(247, 243, 236, 0.82);
  outline-offset: 2px;
}
.video-cinema-item.is-active {
  flex: 1.52 1 0;
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 26px 38px -30px rgba(0, 0, 0, 0.7);
}
.video-cinema-media-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 3px;
  background: transparent;
}
.video-cinema-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  --video-base-scale: 1;
  transform: scale(var(--video-base-scale));
  filter: saturate(0.84) brightness(0.84);
  transition: filter 0.32s var(--ease), transform 0.45s var(--ease);
}
.video-cinema-item:hover .video-cinema-media {
  transform: scale(calc(var(--video-base-scale) + 0.02));
}
.video-cinema-item.is-active .video-cinema-media {
  filter: none;
}
.video-cinema-item[data-video-index="0"] .video-cinema-media {
  --video-base-scale: 1.18;
}
.video-cinema-controls {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.video-cinema-ctrl {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 2px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f6f1e8;
  background: rgba(14, 12, 9, 0.52);
  backdrop-filter: blur(2px);
  cursor: pointer;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), background-color 0.2s var(--ease);
}
.video-cinema-ctrl:hover {
  background: rgba(14, 12, 9, 0.74);
}
.video-cinema-ctrl:focus-visible {
  outline: 2px solid rgba(247, 243, 236, 0.9);
  outline-offset: 2px;
}
.video-cinema-item.is-active .video-cinema-ctrl {
  opacity: 1;
  transform: translateY(0);
}
.video-cinema-ctrl-play {
  top: 12px;
  left: 12px;
}
.video-cinema-ctrl-audio {
  right: 12px;
  bottom: 12px;
}
.video-cinema-ctrl svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}
.video-feature-meta {
  display: block;
  margin-top: 12px;
}
.video-feature-kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.5);
  margin-bottom: 6px;
}
.video-feature-title {
  display: block;
  font-family: var(--fd);
  font-size: 24px;
  line-height: 1.2;
  color: rgba(247, 243, 236, 0.72);
}
.video-cinema-item.is-active .video-feature-kicker { color: rgba(247, 243, 236, 0.7); }
.video-cinema-item.is-active .video-feature-title { color: #f6f1e8; }

/* Browser fallback: hide picture-in-picture button in native controls */
.video-cinema-media::-webkit-media-controls-picture-in-picture-button {
  display: none !important;
}

body.video-lightbox-open {
  overflow: hidden;
}
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-lightbox[hidden] {
  display: none;
}
.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 7, 6, 0.84);
  backdrop-filter: blur(2px);
}
.video-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
}
.video-lightbox-close {
  margin-left: auto;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 2px;
  border: 1px solid rgba(247, 243, 236, 0.48);
  background: rgba(17, 13, 9, 0.62);
  color: #f7f3ec;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.video-lightbox-close:hover {
  background: rgba(17, 13, 9, 0.82);
}
.video-lightbox-close:focus-visible {
  outline: 2px solid #f7f3ec;
  outline-offset: 2px;
}
.video-lightbox-player-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(247, 243, 236, 0.24);
  background: #050404;
}
.video-lightbox-player-wrap iframe,
.video-lightbox-player-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

/* ─── THERAPY ─── */
.therapy-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; }
.therapy-layout.therapy-layout-single { grid-template-columns: 1fr; gap: 0; }
.therapy-media-sticky {
  position: sticky;
  top: 96px;
  align-self: start;
}
.therapy-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 3px; display: block; }
.therapy-quote {
  font-family: var(--fd); font-size: 22px; font-weight: 300; font-style: italic;
  line-height: 1.55; color: var(--dark); border-left: 2px solid var(--accent);
  padding-left: 22px; margin-bottom: 44px;
}
.pillar { padding: 22px 0; border-bottom: 1px solid var(--border); }
.pillar-title { font-size: 15px; font-weight: 500; color: var(--dark); margin-bottom: 7px; }
.pillar-text { font-size: var(--fs-flow); font-weight: 300; line-height: 1.7; color: var(--muted); }
.target-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 32px 0; }
.target {
  padding: 18px; border: 1px solid var(--border); border-radius: 3px;
}
.target-title { font-size: 13px; font-weight: 500; color: var(--dark); margin-bottom: 5px; }
.target-text { font-size: var(--fs-detail); font-weight: 300; line-height: 1.6; color: var(--muted); }
.therapy-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 32px; align-items: start; }
.therapy-info-grid.therapy-info-grid-match {
  align-items: stretch;
}
.therapy-match-image-col {
  min-height: 100%;
}
.therapy-img.therapy-img-match {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}
.program-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 3px; padding: 28px; margin: 28px 0;
}
.program-title { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); margin-bottom: 18px; }
.program-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.program-list li {
  display: flex; gap: 12px; align-items: start;
  font-size: var(--fs-flow); font-weight: 300; line-height: 1.65; color: var(--muted);
}
.program-list li::before { content: '\2014'; color: var(--accent); flex-shrink: 0; }
.flow-list-block {
  margin: 26px 0 8px;
}
.flow-list-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 14px;
}
.therapy-split-text > .prose + .flow-list-block {
  margin-top: 22px !important;
}
.therapy-split-text .program-list + .prose {
  margin-top: 24px;
}
.therapy-split-text .program-list {
  margin-bottom: 2px;
}

.program-list.program-list-effect {
  gap: 16px;
}
.program-list.program-list-effect li {
  display: grid;
  grid-template-columns: 130px 1fr;
  column-gap: 12px;
  align-items: start;
}
.program-list.program-list-effect li::before {
  content: none;
}
.effect-label {
  font-weight: 500;
  font-style: italic;
  color: var(--dark);
  display: inline-block;
  letter-spacing: 0.01em;
}
.effect-label strong,
.effect-label em {
  font-weight: inherit;
  font-style: inherit;
}
.effect-copy {
  display: inline-block;
}
.therapy-split-row {
  display: grid;
  grid-template-columns: minmax(340px, 44%) minmax(0, 1fr);
  gap: clamp(52px, 6vw, 84px);
  align-items: start;
  margin: 40px 0;
}
.therapy-split-text { min-width: 0; }
.therapy-split-text .prose { max-width: 60ch; }
.therapy-split-row.match {
  align-items: stretch;
}
.therapy-split-row.reverse .therapy-split-text {
  order: 1;
}
.therapy-split-row.reverse .therapy-split-image-wrap {
  order: 2;
}
.therapy-split-row.match .therapy-split-image-wrap {
  position: relative;
  min-height: 100%;
  align-self: stretch;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid var(--border);
}
.therapy-split-image-wrap img {
  width: 100%;
  max-width: none;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  border: 1px solid var(--border);
  box-shadow: none;
}
.therapy-split-row.match .therapy-split-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-position: center;
  border: 0;
  border-radius: 0;
}

/* ─── HORSES ─── */
#horses {
  position: relative;
  z-index: 0;
  min-height: calc(100vh - 96px);
  padding-bottom: 72px !important;
}
.horses-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 52px;
}
.horse-carousel {
  position: relative;
  z-index: 3;
  padding: 24px 52px 0;
}
.horse-carousel-viewport {
  position: relative;
  height: 520px;
  overflow: hidden;
  outline: none;
  cursor: grab;
}
.horse-carousel-viewport.is-dragging { cursor: grabbing; }
.horse-carousel-track {
  position: absolute;
  inset: 0;
}
.horse-arc-card {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 220px;
  height: 300px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: inherit;
  pointer-events: none;
  border-radius: 3px;
  overflow: hidden;
  transform-origin: center center;
  transition: transform 520ms var(--ease), opacity 420ms var(--ease), filter 420ms var(--ease);
}
.horse-arc-card:focus-visible {
  outline: 2px solid rgba(49, 57, 49, 0.7);
  outline-offset: 3px;
}
.horse-arc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.horse-carousel-nav {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(49, 57, 49, 0.25);
  background: rgba(247, 243, 236, 0.82);
  color: var(--dark);
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
}
.horse-carousel-nav-prev { left: 2px; }
.horse-carousel-nav-next { right: 2px; }
.horse-carousel-nav:hover { background: #f7f3ec; }
.horse-carousel-nav:focus-visible {
  outline: 2px solid rgba(49, 57, 49, 0.7);
  outline-offset: 2px;
}

.horse-details {
  margin-top: 26px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-bottom: 46px;
}
.horse-details-name {
  font-family: var(--fd);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 12px;
  color: var(--dark);
}
.horse-details-story {
  font-size: 16px;
  font-weight: 300;
  --horse-story-lh: 1.62;
  line-height: var(--horse-story-lh);
  color: var(--muted);
  max-width: 74ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
  min-height: calc(3 * 1em * var(--horse-story-lh));
  max-height: calc(3 * 1em * var(--horse-story-lh));
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.horse-details-meta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px 18px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.horse-details-meta div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.horse-details-meta dt {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  white-space: nowrap;
}
.horse-details-meta dd {
  margin: 0;
  font-size: clamp(12px, 0.85vw, 13px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--dark);
  white-space: nowrap;
}

/* ─── CASITA ─── */
.casita-wrap { background: var(--surface); max-width: 100%; padding: 96px 56px; }
.casita-inner { max-width: 1400px; margin: 0 auto; }
.casita-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
  grid-template-areas:
    "copy gallery"
    "facts gallery"
    "camper gallery";
  align-items: start;
  column-gap: 72px;
  row-gap: 40px;
}
.casita-copy { grid-area: copy; }
.casita-gallery { grid-area: gallery; width: 100%; margin: 108px 0 0; }
.casita-facts { grid-area: facts; }
.casita-facts table { margin-top: 0 !important; }
.casita-main-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(14, 12, 9, 0.1);
}
.casita-gallery-main {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.casita-gallery-main.is-portrait {
  object-fit: contain;
}
.casita-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.casita-thumbs::-webkit-scrollbar { display: none; }
.casita-thumb {
  flex-shrink: 0; width: 86px; height: 60px; object-fit: cover;
  border-radius: 2px; cursor: pointer; opacity: 0.45;
  border: 2px solid transparent; transition: opacity 0.2s, border-color 0.2s;
}
.casita-thumb.active { opacity: 1; border-color: var(--accent); }
.casita-thumb:hover { opacity: 0.8; }
.casita-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(28,26,22,0.65); color: #F7F3EC;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; font-size: 22px; font-weight: 300;
  transition: background 0.2s; z-index: 2; backdrop-filter: blur(4px);
}
.casita-nav-btn { display: none !important; }
.casita-nav-btn:hover { background: rgba(28,26,22,0.9); }
.casita-nav-btn.prev { left: 14px; }
.casita-nav-btn.next { right: 14px; }
.casita-hint { font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.camper-box {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 32px; border: 1px solid var(--border);
  border-radius: 3px; margin-top: 40px;
}
.camper-box.casita-camper {
  grid-area: camper;
  margin-top: 0;
  height: 100%;
}
.camper-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.camper-title { font-size: 14px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.camper-text { font-size: 15px; font-weight: 300; line-height: 1.65; color: var(--muted); }
.camper-actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.casita-lbl { font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.casita-val { font-size: var(--fs-flow); font-weight: 300; color: var(--dark); text-align: right; max-width: 26ch; }
.casita-booking-actions {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
  width: min(100%, 360px);
}
.casita-booking-actions .contact-action-btn {
  min-width: 0;
  width: 100%;
}
.camper-actions .contact-action-btn {
  min-width: 156px;
  flex: 0 0 auto;
}

/* ─── FAQ ─── */
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start; }
.faq-sticky { position: sticky; top: 96px; height: clamp(720px, 55vw, 860px); }
.faq-sticky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}
.faq-list { list-style: none; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0; cursor: pointer; gap: 24px; user-select: none;
}
.faq-q:hover .faq-q-text { color: var(--accent); }
.faq-q-text {
  font-family: var(--fd);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.35;
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease);
}
.faq-item.open .faq-q-text { color: var(--accent); }
.faq-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.faq-icon svg { width: 13px; height: 13px; transition: stroke 0.25s var(--ease); }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--accent); background: var(--accent); }
.faq-item.open .faq-icon svg { stroke: var(--bg); }
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: 0;
}
.faq-item.open .faq-ans { max-height: 600px; padding-bottom: 32px; }
.faq-ans-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--muted);
  max-width: 68ch;
}

/* ─── CONTACT ─── */
.contact-wrap { background: var(--dark); max-width: 100%; padding: 96px 56px; color: var(--bg); }
.contact-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; }
.contact-wrap .section-label { color: rgba(247,243,236,0.55); }
.contact-wrap .section-title { color: var(--bg); }
.contact-info { margin-top: 44px; }
.c-row { display: flex; gap: 24px; align-items: start; padding: 18px 0; border-bottom: 1px solid rgba(247,243,236,0.07); }
.c-row:first-child { border-top: 1px solid rgba(247,243,236,0.07); }
.c-lbl { font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,243,236,0.3); min-width: 72px; padding-top: 2px; }
.c-val { font-size: var(--fs-flow); font-weight: 300; color: rgba(247,243,236,0.75); line-height: 1.65; }
.c-val a { text-decoration: underline; text-decoration-color: rgba(247,243,236,0.18); text-underline-offset: 3px; transition: text-decoration-color 0.2s; }
.c-val a:hover { text-decoration-color: rgba(247,243,236,0.55); }
.contact-booking-block {
  margin-top: 34px;
  display: grid;
  gap: 14px;
  align-items: start;
}
.contact-cta-head {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.68);
}
.contact-book-btn {
  width: fit-content;
}
.contact-inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  max-width: 640px;
}
.c-row-contact .c-val {
  flex: 1;
}
.contact-action-btn {
  min-height: 56px;
  min-width: 156px;
  flex: 1 1 156px;
  padding: 0 14px;
  border: 1px solid rgba(247,243,236,0.2);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--bg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.c-val a.contact-action-btn {
  text-decoration: none;
}
.contact-action-btn:hover {
  border-color: rgba(247,243,236,0.55);
  background: rgba(247,243,236,0.06);
  transform: translateY(-1px);
}
.contact-action-btn:active {
  transform: translateY(0) scale(0.98);
}
.contact-action-btn svg {
  width: 19px;
  height: 19px;
  display: block;
}
.contact-action-btn > span {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
}
.contact-action-btn--light {
  border-color: var(--border);
  color: var(--dark);
  background: transparent;
}
.contact-action-btn--light:hover {
  border-color: var(--dark);
  background: rgba(28,26,22,0.04);
}
.c-row-note {
  padding-top: 10px;
  padding-bottom: 18px;
}
.c-row-note .c-lbl {
  color: transparent;
}
.contact-quick-note {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(247,243,236,0.72);
  max-width: 60ch;
}
.map-note { margin-top: 28px; padding: 20px; border: 1px solid rgba(247,243,236,0.14); border-radius: 3px; }
.map-note p { font-size: var(--fs-detail); font-weight: 300; color: rgba(247,243,236,0.75); line-height: 1.6; margin-bottom: 12px; }
.map-link { font-size: var(--fs-detail); font-weight: 400; color: var(--gold); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.map-link:hover { color: var(--bg); }
.map-frame { margin-top: 20px; aspect-ratio: 16/9; border-radius: 3px; overflow: hidden; border: 1px solid rgba(247,243,236,0.07); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.taxi-box { margin-top: 20px; padding: 18px 20px; border: 1px solid rgba(247,243,236,0.14); border-radius: 3px; }
.taxi-lbl { font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,243,236,0.6); margin-bottom: 8px; }
.taxi-desc { font-size: var(--fs-detail); font-weight: 300; color: rgba(247,243,236,0.6); line-height: 1.6; margin-bottom: 14px; }
.taxi-num { font-size: 20px; font-weight: 300; color: rgba(247,243,236,0.92); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--dark); padding: 80px 56px; text-align: center;
  max-width: 100%;
}
.cta-banner-inner { max-width: 640px; margin: 0 auto; }
.cta-banner .section-label { color: rgba(247,243,236,0.5); justify-content: center; display: block; }
.cta-banner .section-title { color: var(--bg); text-align: center; margin-bottom: 16px; }
.cta-banner .section-intro { color: rgba(247,243,236,0.7); text-align: center; max-width: 48ch; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── INSTAGRAM FEED ─── */
.insta-feed-section {
  background: #16130f;
  max-width: 100%;
  padding: 84px 56px 66px;
  --insta-visible: 5;
  --insta-gap: 12px;
}
.insta-feed-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.insta-feed-head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  text-align: center;
}
.insta-feed-head .insta-title {
  color: #F7F3EC;
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 46px);
}
.insta-cta-row {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.insta-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  border: 1px solid rgba(247,243,236,0.35);
  border-radius: 0;
  color: #F7F3EC;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
}
.insta-cta:hover {
  border-color: rgba(247,243,236,0.75);
  background: rgba(247,243,236,0.08);
}
.insta-slider-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}
.insta-slider-window {
  width: 100%;
  overflow: hidden;
}
.insta-slider-track {
  display: flex;
  gap: var(--insta-gap);
  transform: translateX(0);
  transition: transform 0.42s var(--ease);
}
.insta-card {
  flex: 0 0 calc((100% - (var(--insta-gap) * (var(--insta-visible) - 1))) / var(--insta-visible));
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 1 / 1;
  background: #2a241d;
  border: 1px solid rgba(247,243,236,0.12);
}
.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.insta-card:hover img {
  transform: scale(1.04);
}
.insta-next-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247,243,236,0.35);
  background: transparent;
  color: #F7F3EC;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.insta-next-btn:hover {
  border-color: rgba(247,243,236,0.78);
  background: rgba(247,243,236,0.08);
}
.insta-next-btn.is-disabled {
  opacity: 0.45;
  cursor: default;
}

/* ─── FOOTER ─── */
footer {
  background: #f7f3ec; padding: 56px 56px 44px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.foot-logo-img { height: 144px; width: auto; object-fit: contain; opacity: 0.78; }
.foot-logo-wordmark {
  font-family: var(--fd);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: rgba(43, 32, 22, 0.92);
  margin: 0;
  text-align: center;
}
.foot-copy { font-size: 12px; font-weight: 400; color: rgba(52, 38, 25, 0.72); text-align: center; }
.foot-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.foot-nav a { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(52, 38, 25, 0.68); transition: color 0.2s; }
.foot-nav a:hover { color: rgba(43, 32, 22, 0.95); }

/* ─── FOOTER CURTAIN REVEAL (SITEWIDE) ─── */
body.footer-curtain-enabled {
  background: #f7f3ec;
}

body.footer-curtain-enabled .site-curtain {
  position: relative;
  z-index: 2;
  background: var(--bg);
  margin-bottom: var(--footer-curtain-offset, 0px);
}

body.footer-curtain-enabled footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  box-shadow: 0 -16px 32px rgba(44, 32, 20, 0.14);
}

@media (max-width: 1024px), (prefers-reduced-motion: reduce) {
  body.footer-curtain-enabled .site-curtain {
    margin-bottom: 0;
  }

  body.footer-curtain-enabled footer {
    position: static;
    box-shadow: none;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  section { padding: 72px 40px; }
  .services-wrap, .casita-wrap, .contact-wrap, .cta-banner { padding: 72px 40px; }
  .video-feature { padding: 86px 40px 114px; margin-bottom: 44px; }
  .video-feature-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 44px; }
  .video-cinema-track { gap: 14px; }
  .video-cinema-item.is-active { transform: scale(1); }
  .casita-gallery { width: 100%; }
  .insta-feed-section { padding: 68px 40px 54px; --insta-visible: 2.5; --insta-gap: 10px; }
  .insta-slider-shell { gap: 10px; grid-template-columns: 1fr; }
  .insta-slider-window {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .insta-slider-window::-webkit-scrollbar { display: none; }
  .insta-slider-track {
    transition: none;
    transform: translateX(0) !important;
  }
  .insta-card { scroll-snap-align: start; }
  .insta-next-btn { display: none; }
  .nav, .nav.scrolled { padding-left: 32px; padding-right: 32px; }
  footer { padding: 40px 32px 32px; }
  .foot-logo-img { height: 120px; }
  .foot-logo-wordmark { font-size: clamp(28px, 7vw, 40px); }
  .svc-header { grid-template-columns: 1fr; gap: 40px; }
  .therapy-layout { grid-template-columns: 1fr; gap: 52px; }
  .therapy-media-sticky { position: static; top: auto; }
  .therapy-img { aspect-ratio: 16/9; }
  .therapy-split-row {
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 24px 0;
  }
  .therapy-split-row.match {
    align-items: start;
  }
  .therapy-split-row.match .therapy-split-image-wrap {
    position: static;
    min-height: 0;
    overflow: visible;
    border: 0;
  }
  .therapy-split-row.reverse .therapy-split-text,
  .therapy-split-row.reverse .therapy-split-image-wrap {
    order: initial;
  }
  .therapy-split-image-wrap img {
    max-width: none;
    aspect-ratio: 16 / 9;
    max-height: none;
  }
  .therapy-split-row.match .therapy-split-image-wrap img {
    position: static;
    height: auto;
    border: 1px solid var(--border);
    border-radius: 3px;
  }
  .therapy-info-grid { grid-template-columns: 1fr; gap: 32px; }
  .therapy-info-grid.therapy-info-grid-match {
    align-items: start;
  }
  .info-table .language-line {
    white-space: normal;
    font-size: var(--fs-flow);
  }
  .therapy-img.therapy-img-match {
    height: auto;
    aspect-ratio: 16/9;
  }
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .casita-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "gallery"
      "facts"
      "camper";
    row-gap: 28px;
  }
  .camper-box.casita-camper {
    margin-top: 30px;
  }
  .casita-thumb { width: 72px; height: 52px; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  #faq .faq-sticky { display: none; }
  #horses {
    min-height: auto;
    padding-bottom: 64px !important;
  }
  .horses-header { grid-template-columns: 1fr; gap: 28px; }
  .horse-carousel { padding: 18px 32px 0; }
  .horse-carousel-viewport { height: 440px; }
  .horse-arc-card {
    top: 42px;
    width: 190px;
    height: 262px;
  }
  .horse-details { padding-bottom: 42px; }
  .horse-details-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
    gap: 10px 18px;
  }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-brand-logo {
    width: min(100%, 392px);
  }
  .about-team-head {
    margin-bottom: 36px;
  }
  .casita-gallery { margin-top: 24px; }
  .link-cards { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 160px 0 80px; }
  .page-hero-content { padding: 0 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .toggle { display: flex; }
  .hero-content { padding: 0 28px 72px; }
  .hero-proof-badge { margin-bottom: 22px; padding: 9px 12px; }
  .hero-proof-title { font-size: 10px; letter-spacing: 0.1em; }
  .hero-proof-meta { font-size: 11px; }
  .scroll-ind { display: none; }
  section { padding: 72px 24px; }
  .services-wrap, .casita-wrap, .contact-wrap, .cta-banner { padding: 72px 24px; }
  .insta-feed-section { padding: 62px 24px 46px; --insta-visible: 2.5; --insta-gap: 10px; }
  .insta-feed-head { margin-bottom: 22px; }
  .contact-inline-actions { gap: 12px; }
  .contact-action-btn {
    min-height: 58px;
    min-width: 100%;
    flex-basis: 100%;
  }
  .casita-booking-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .casita-booking-actions .contact-action-btn,
  .camper-actions .contact-action-btn {
    min-height: 56px;
    min-width: 100%;
    flex-basis: 100%;
  }
  .camper-actions {
    width: 100%;
  }
  .rides-grid { grid-template-columns: 1fr; }
  .ride-card { padding: 32px 24px; }
  .ride-foot {
    align-items: stretch;
    flex-direction: column;
  }
  .ride-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .ride-actions .btn-ride {
    flex: 1 1 0;
    min-width: 0;
  }
  .ride-img { height: clamp(200px, 58vw, 260px); }
  .casita-gallery { margin-top: 18px; }
  .video-feature { padding: 68px 24px 98px; margin-bottom: 34px; }
  .video-cinema-track {
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0 24px 2px 0;
    touch-action: pan-x;
  }
  .video-cinema-track::-webkit-scrollbar { display: none; }
  .video-cinema-item {
    flex: 0 0 clamp(280px, 84vw, 520px);
    min-width: clamp(280px, 84vw, 520px);
    max-width: clamp(280px, 84vw, 520px);
    opacity: 1;
    transform: none;
    scroll-snap-align: start;
    transition: opacity 0.28s var(--ease), box-shadow 0.3s var(--ease);
  }
  .video-feature-title { font-size: 22px; }
  .video-cinema-item.is-active {
    flex-basis: clamp(280px, 84vw, 520px);
    min-width: clamp(280px, 84vw, 520px);
    max-width: clamp(280px, 84vw, 520px);
    opacity: 1;
    transform: none;
  }
  .video-lightbox { padding: 14px; }
  .video-lightbox-close { margin-bottom: 10px; min-height: 36px; padding: 0 12px; }
  #horses {
    padding-bottom: 56px !important;
  }
  .horse-carousel { padding: 6px 0 0; }
  .horse-carousel-nav { display: none; }
  .horse-carousel-viewport {
    height: 352px;
    overflow: hidden;
    touch-action: pan-y;
  }
  .horse-arc-card {
    top: 34px;
    width: 68vw;
    height: min(88vw, 300px);
    max-width: 296px;
    max-height: 300px;
  }
  .horse-details {
    margin-top: 18px;
    padding-bottom: 40px;
  }
  .horse-details-name {
    font-size: 34px;
  }
  .horse-details-story {
    font-size: 15px;
    --horse-story-lh: 1.6;
    line-height: var(--horse-story-lh);
  }
  .horse-details-meta {
    position: relative;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "age breed"
      "weight suitability"
      "temperament temperament";
    max-width: 560px;
    gap: 0 20px;
    padding-top: 14px;
  }
  .horse-details-meta::before {
    content: none;
  }
  .horse-details-meta div:nth-child(1) { grid-area: age; }
  .horse-details-meta div:nth-child(2) { grid-area: breed; }
  .horse-details-meta div:nth-child(3) { grid-area: weight; }
  .horse-details-meta div:nth-child(4) { grid-area: suitability; }
  .horse-details-meta div:nth-child(5) { grid-area: temperament; }
  .horse-details-meta div:nth-child(-n+4) {
    min-height: 0;
    padding: 2px 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: transparent;
    border: none;
    border-radius: 0;
  }
  .horse-details-meta div:nth-child(1),
  .horse-details-meta div:nth-child(3) {
    align-items: flex-end;
    text-align: right;
  }
  .horse-details-meta div:nth-child(2),
  .horse-details-meta div:nth-child(4) {
    align-items: flex-start;
    text-align: left;
    border-left: 1px solid rgba(49, 57, 49, 0.14);
    padding-left: 18px;
  }
  .horse-details-meta div:nth-child(5) {
    margin-top: 10px;
    min-height: 0;
    padding: 6px 16px 0;
    align-items: center;
    text-align: center;
    border: none;
    border-radius: 0;
    background: transparent;
  }
  .horse-details-meta div:nth-child(-n+4) dt {
    margin-bottom: 2px;
  }
  .horse-details-meta div:nth-child(-n+4) dd {
    line-height: 1.24;
  }
  .horse-details-meta div:nth-child(5) dt,
  .horse-details-meta div:nth-child(5) dd {
    text-align: center;
  }
  .team-grid { grid-template-columns: 1fr; }
  .target-grid { grid-template-columns: 1fr; }
  footer { padding: 36px 24px 28px; }
  .foot-logo-img { height: 100px; }
  .foot-logo-wordmark { font-size: clamp(24px, 8vw, 34px); }
  .nav, .nav.scrolled { padding: 16px 24px; }
  .link-cards { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 140px 0 72px; }
  .page-hero-content { padding: 0 24px; }
  .casita-main-wrap { aspect-ratio: 16 / 11; }
}
@media (max-width: 640px) {
  .hero-content { padding: 0 28px 78px; }
  .hero-sub { max-width: 340px; }
  .hero-proof-badge { margin-bottom: 34px; }
  .hero-cta-row { width: 100%; }
  .hero-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
    max-width: 340px;
    gap: 10px;
  }
  .hero-cta .btn-dark[data-mobile-label],
  .hero-cta .btn-ghost[data-mobile-label] {
    position: relative;
    min-width: 0;
    min-height: 48px;
    justify-content: center;
    padding: 13px 12px;
    letter-spacing: 0.08em;
    white-space: nowrap;
    overflow: hidden;
    color: transparent;
  }
  .hero-cta .btn-dark[data-mobile-label]::after,
  .hero-cta .btn-ghost[data-mobile-label]::after {
    content: attr(data-mobile-label);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
  }
  .hero-cta .btn-dark[data-mobile-label]::after { color: var(--bg); }
  .hero-cta .btn-ghost[data-mobile-label]::after { color: #F7F3EC; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 40px; }
  .section-title { font-size: 32px; }
  .ride-title { font-size: 26px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
}
