/* ════════════════════════════════════════════════
   ROSEBUD EQUESTRIAN — shared design system
   ════════════════════════════════════════════════ */

:root {
  --cream:       #FBF7F0;
  --cream-deep:  #F2EBDC;
  --cream-warm:  #EFE6D2;
  --moss:        #3B4A3A;
  --moss-deep:   #2A372A;
  --sage:        #7E8C6D;
  --clay:        #C6745A;
  --clay-deep:   #A35A45;
  --rose-dust:   #D9A99A;
  --walnut:      #2D241D;
  --walnut-soft: #4F4239;
  --gold:        #B8924E;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--walnut);
  overflow-x: hidden;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── UTILITY ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.eyebrow {
  font-family: var(--font-body);
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.eyebrow-left::after { display: none; }
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--moss-deep);
  border-bottom: 1px solid rgba(251,247,240,0.08);
  transition: background 0.3s;
}
nav .nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 2rem;
  height: 78px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.85rem;
}
.nav-logo img {
  height: 56px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.nav-wordmark {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-wordmark .mark-name {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 80, 'SOFT' 0, 'wght' 500;
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.nav-wordmark .mark-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-dust);
  margin-top: 0.35rem;
  font-weight: 500;
}

.nav-links {
  display: flex; gap: 2.2rem; list-style: none; align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(251,247,240,0.78);
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 50%; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--rose-dust);
  transition: all 0.25s ease;
  transform: translateX(-50%);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--cream); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--clay);
  color: var(--cream) !important;
  padding: 0.6rem 1.3rem;
  border-radius: 2px;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--clay-deep); }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none; position: fixed; top: 78px; left: 0; right: 0;
  background: var(--moss-deep); z-index: 99;
  flex-direction: column; padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(251,247,240,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; padding: 1rem 0; color: rgba(251,247,240,0.85);
  border-bottom: 1px solid rgba(251,247,240,0.08);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--rose-dust); }

/* ─── HOMEPAGE HERO ─── */
.hero {
  padding-top: 78px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 2rem 5rem;
  min-height: calc(100vh - 78px);
}
.hero-text { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.9rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(59,74,58,0.15);
  flex-wrap: wrap;
}
.hero-eyebrow .est {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'wght' 400;
  font-size: 1.05rem;
  color: var(--clay);
  letter-spacing: 0.01em;
}
.hero-eyebrow .divider {
  width: 1px; height: 16px;
  background: rgba(59,74,58,0.25);
}
.hero-eyebrow .place {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 600;
}

.hero-headline {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 0, 'wght' 450;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.04;
  color: var(--moss-deep);
  letter-spacing: -0.015em;
  margin-bottom: 1.6rem;
}
.hero-headline em {
  font-style: normal;
  color: inherit;
  background-image: linear-gradient(to right, var(--clay), var(--clay));
  background-size: 100% 1.5px;
  background-position: 0 calc(100% - 0.12em);
  background-repeat: no-repeat;
  padding-bottom: 0.18em;
}

.hero-sub {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--walnut-soft);
  max-width: 510px;
  margin-bottom: 2.2rem;
  font-weight: 400;
}
.hero-buttons {
  display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--moss);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.8rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.btn-primary:hover { background: var(--moss-deep); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-accent {
  background: var(--clay);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.8rem;
  border-radius: 2px;
  transition: background 0.2s;
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.btn-accent:hover { background: var(--clay-deep); }
.btn-accent svg { transition: transform 0.2s; }
.btn-accent:hover svg { transform: translateX(3px); }

.btn-ghost {
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.6rem;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid rgba(59,74,58,0.3);
}
.btn-ghost:hover { background: var(--moss); color: var(--cream); border-color: var(--moss); }

/* hero meta + collage */
.hero-meta {
  margin-top: 2.8rem;
  display: flex; gap: 2.5rem; flex-wrap: wrap;
}
.hero-meta-item .num {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 500;
  font-size: 2rem;
  color: var(--moss);
  line-height: 1;
  display: block;
}
.hero-meta-item .lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sage);
  margin-top: 0.3rem;
  font-weight: 500;
}

.hero-collage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  max-width: 580px;
  margin-left: auto;
}
.hero-photo {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(45, 36, 29, 0.18);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main { top: 0; right: 0; width: 78%; height: 78%; }
.hero-photo-second {
  bottom: 0; left: 0; width: 52%; height: 48%;
  border: 6px solid var(--cream);
}
.hero-collage::before {
  content: '';
  position: absolute;
  bottom: 14%; right: 8%;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--cream-warm);
  z-index: -1;
}
.hero-locator {
  position: absolute;
  bottom: -1.5rem; right: -1rem;
  background: var(--cream);
  padding: 1.1rem 1.4rem;
  box-shadow: 0 12px 30px rgba(45,36,29,0.14);
  border-left: 3px solid var(--clay);
  max-width: 240px;
  z-index: 3;
}
.hero-locator .lat {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}
.hero-locator .addr {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 80, 'SOFT' 80, 'wght' 500;
  font-size: 1rem;
  color: var(--moss-deep);
  line-height: 1.3;
  display: block;
}
.hero-locator .addr em {
  font-style: italic;
  color: var(--clay);
  font-weight: 400;
}

.hero::before {
  content: '';
  position: absolute;
  top: 15%; right: -8%;
  width: 320px; height: 320px;
  background: var(--cream-warm);
  border-radius: 50%;
  opacity: 0.55;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -5%; left: -3%;
  width: 220px; height: 220px;
  background: var(--rose-dust);
  border-radius: 50%;
  opacity: 0.18;
  z-index: 0;
}

/* ─── INNER PAGE HERO ─── */
.page-hero {
  padding: 9rem 2rem 5rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}
.page-hero .eyebrow {
  margin-bottom: 1.1rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 0, 'wght' 450;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  color: var(--moss-deep);
  letter-spacing: -0.015em;
  margin-bottom: 1.2rem;
  max-width: 850px;
}
.page-hero-title em {
  font-style: normal;
  color: inherit;
  background-image: linear-gradient(to right, var(--clay), var(--clay));
  background-size: 100% 1.5px;
  background-position: 0 calc(100% - 0.12em);
  background-repeat: no-repeat;
  padding-bottom: 0.18em;
}
.page-hero-lede {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--walnut-soft);
  max-width: 640px;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 35%; right: -6%;
  width: 280px; height: 280px;
  background: var(--cream-warm);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}

/* page-hero with split layout — text + desaturated photo accent */
.page-hero-split {
  padding: 8rem 2rem 0;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.page-hero-split .page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 0 5rem;
}
.page-hero-split-photo {
  position: relative;
  aspect-ratio: 4 / 4.6;
  border-radius: 4px;
  overflow: hidden;
  background: var(--moss-deep);
  box-shadow: 0 22px 55px rgba(45,36,29,0.25);
}
.page-hero-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(0.95);
}
.page-hero-split-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(42,55,42,0.05), rgba(45,36,29,0.18));
  pointer-events: none;
}
.page-hero-split-strip {
  background: var(--moss-deep);
  color: var(--cream);
  margin: 0 -2rem;
  padding: 1.2rem 2rem;
}
.page-hero-split-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.page-hero-split-strip-inner > span:first-child {
  color: var(--rose-dust);
}
.page-hero-split-strip-inner em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 400;
  color: var(--cream);
}
.page-hero-split-caption {
  position: absolute;
  bottom: 1.4rem; left: 1.4rem;
  z-index: 2;
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'wght' 400;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
  max-width: 200px;
}
.page-hero-split-caption::before {
  content: '';
  display: block;
  width: 26px; height: 1px;
  background: var(--rose-dust);
  margin-bottom: 0.5rem;
}
@media (max-width: 980px) {
  .page-hero-split .page-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-hero-split-photo { max-width: 460px; margin: 0 auto; aspect-ratio: 4/3; }
}

/* page-hero with photo */
.page-hero-photo {
  padding: 0;
  background: var(--moss-deep);
  min-height: 60vh;
  display: flex; align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.page-hero-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.page-hero-photo .page-hero-inner {
  padding: 7rem 2rem 4rem;
  position: relative; z-index: 2;
  width: 100%;
}
.page-hero-photo .page-hero-title { color: var(--cream); }
.page-hero-photo .page-hero-lede { color: rgba(251,247,240,0.85); }
.page-hero-photo .eyebrow { color: var(--rose-dust); }

/* page nav (in-page anchor strip) */
.page-nav {
  background: var(--cream-deep);
  border-top: 1px solid rgba(59,74,58,0.08);
  border-bottom: 1px solid rgba(59,74,58,0.08);
}
.page-nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 1rem 2rem;
  display: flex; gap: 2rem; flex-wrap: wrap;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--walnut-soft);
  overflow-x: auto;
}
.page-nav-inner a {
  position: relative;
  padding: 0.25rem 0;
  white-space: nowrap;
  transition: color 0.2s;
}
.page-nav-inner a:hover { color: var(--clay); }
.page-nav-inner a.active { color: var(--moss); }

/* ─── DISCIPLINE BANNER ─── */
.banner {
  background: var(--moss);
  color: var(--cream);
  padding: 1.4rem 2rem;
}
.banner-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem; flex-wrap: wrap;
}
.banner-lead {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-dust);
  font-weight: 600;
}
.banner-items {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  list-style: none;
}
.banner-items li {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'wght' 400;
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: 0.01em;
}

/* ─── SECTION SHELL ─── */
.section { padding: 7rem 2rem; }
.section-head {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-head .eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 400;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: var(--moss-deep);
  letter-spacing: -0.012em;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: normal;
  color: inherit;
}
.section-lede {
  font-size: 1.05rem;
  color: var(--walnut-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── OFFERINGS ─── */
.offerings { background: var(--cream); }
.offerings-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.offering-card {
  background: var(--cream-deep);
  border-radius: 16px;
  padding: 2.2rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(45,36,29,0.08);
}
.offering-icon {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--clay);
}
.offering-icon svg { width: 28px; height: 28px; }
.offering-card h3 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 80, 'SOFT' 80, 'wght' 500;
  font-size: 1.45rem;
  color: var(--moss-deep);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}
.offering-card p {
  font-size: 0.95rem;
  color: var(--walnut-soft);
  line-height: 1.65;
  margin-bottom: 1.3rem;
}
.offering-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--clay);
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: gap 0.2s;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
}
.offering-link:hover { gap: 0.6rem; }

.offering-featured { background: var(--moss); color: var(--cream); }
.offering-featured h3 { color: var(--cream); }
.offering-featured p { color: rgba(251,247,240,0.78); }
.offering-featured .offering-icon { background: var(--moss-deep); color: var(--rose-dust); }
.offering-featured .offering-link { color: var(--rose-dust); }

/* ─── STORY / SPLIT ─── */
.story {
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.story-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-visual { position: relative; aspect-ratio: 4 / 5; }
.story-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.story-visual::before {
  content: '';
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  width: 110px; height: 110px;
  background: var(--clay);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
}
.story-credit {
  position: absolute;
  bottom: -1.2rem; right: -1rem;
  background: var(--cream);
  padding: 1.1rem 1.4rem;
  max-width: 230px;
  box-shadow: 0 12px 30px rgba(45,36,29,0.1);
  border-left: 3px solid var(--clay);
}
.story-credit .num {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 80, 'SOFT' 30, 'wght' 400;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--clay);
  display: block;
  margin-bottom: 0.4rem;
}
.story-credit .txt {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 80, 'SOFT' 80, 'wght' 500;
  font-size: 0.95rem;
  color: var(--moss-deep);
  line-height: 1.35;
  display: block;
}

.story-content .section-title { text-align: left; }
.story-content .eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.7rem;
}
.story-content .section-lede { text-align: left; margin: 0 0 1.5rem 0; }
.story-content p {
  font-size: 1rem; color: var(--walnut-soft);
  line-height: 1.75; margin-bottom: 1.2rem;
}
.story-content p em {
  font-style: italic; color: var(--moss-deep);
  font-variation-settings: 'opsz' 14, 'SOFT' 30, 'wght' 400;
  font-family: var(--font-display);
}
.story-content .btn-primary { margin-top: 1rem; }

/* ─── PROPERTY CALLOUT ─── */
.property {
  background: var(--moss-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.property-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.property-content .eyebrow { color: var(--rose-dust); }
.property-content .section-title { color: var(--cream); text-align: left; }
.property-content .section-title em { color: inherit; }
.property-content p {
  color: rgba(251,247,240,0.78);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 500px;
}
.property-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
  margin: 1.5rem 0 2rem;
}
.property-features li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.92rem; color: rgba(251,247,240,0.88);
}
.property-features li svg {
  width: 14px; height: 14px; color: var(--clay);
  flex-shrink: 0;
}

.property-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  aspect-ratio: 1 / 0.95;
}
.property-photo { border-radius: 10px; overflow: hidden; }
.property-photo img { width: 100%; height: 100%; object-fit: cover; }
.property-photo:nth-child(1) { grid-row: span 2; }

/* ─── SHOW TEAM CTA ─── */
.show-team { padding: 5rem 2rem; background: var(--cream); }
.show-team-inner {
  max-width: 1100px; margin: 0 auto;
  background: var(--cream-warm);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.show-team-inner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 220px; height: 220px;
  background: var(--rose-dust);
  border-radius: 50%;
  opacity: 0.25;
}
.show-team-content { position: relative; z-index: 1; }
.show-team-content .eyebrow { margin-bottom: 0.7rem; display: inline-block; }
.show-team-content h2 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 400;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--moss-deep);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.show-team-content h2 em {
  font-style: normal;
  color: inherit;
}
.show-team-content p {
  color: var(--walnut-soft);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 540px;
}
.show-team-illustration {
  position: relative;
  z-index: 1;
  width: 180px;
  color: var(--moss);
  opacity: 0.85;
}

/* ─── CONTACT / CTA ─── */
.contact {
  background: var(--cream-deep);
  padding: 6rem 2rem;
}
.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-content .section-title { text-align: left; font-size: clamp(2rem, 3.5vw, 2.8rem); }
.contact-content .section-lede { text-align: left; margin: 0 0 2rem 0; }
.contact-details {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
.contact-details li {
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-icon {
  width: 38px; height: 38px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--clay);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-details .label {
  display: block;
  margin-bottom: 0.25rem;
}
.contact-details a, .contact-details span {
  color: var(--moss-deep);
  font-size: 1rem;
  font-weight: 500;
}
.contact-details a:hover { color: var(--clay); }

.contact-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(45,36,29,0.06);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 80, 'SOFT' 80, 'wght' 500;
  font-size: 1.5rem;
  color: var(--moss-deep);
  margin-bottom: 0.6rem;
}
.contact-card p {
  color: var(--walnut-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.contact-card .btn-primary,
.contact-card .btn-accent {
  width: 100%;
  justify-content: center;
}
.contact-card .small {
  font-size: 0.78rem;
  color: var(--sage);
  margin-top: 1rem;
  text-align: center;
}

/* ─── FOOTER ─── */
footer {
  background: var(--moss-deep);
  color: rgba(251,247,240,0.7);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(251,247,240,0.1);
}
.footer-brand img {
  height: 64px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin-bottom: 1rem;
}
.footer-brand .mark-name {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 80, 'SOFT' 80, 'wght' 500;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(251,247,240,0.6);
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-dust);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.92rem;
  color: rgba(251,247,240,0.75);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--rose-dust); }
.footer-bottom {
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem;
  color: rgba(251,247,240,0.5);
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(251,247,240,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--clay); }
.footer-social svg { width: 16px; height: 16px; color: var(--cream); }

/* ─── INNER PAGE LAYOUTS ─── */

/* Trainer / Person cards */
.trainer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.trainer-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: var(--cream-deep);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.trainer-card.trainer-card-featured {
  background: var(--moss-deep);
  color: var(--cream);
}
.trainer-card-featured .trainer-role { color: var(--rose-dust); }
.trainer-card-featured .trainer-name { color: var(--cream); }
.trainer-card-featured .trainer-bio { color: rgba(251,247,240,0.85); }
.trainer-card-featured .trainer-pill {
  background: rgba(251,247,240,0.08); color: var(--cream);
  border-color: rgba(251,247,240,0.2);
}
.trainer-photo {
  aspect-ratio: 4 / 5;
  background: var(--cream-warm);
  border-radius: 12px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.trainer-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.trainer-photo-placeholder {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--sage);
  text-align: center;
  padding: 1rem;
}
.trainer-photo-placeholder svg {
  width: 64px; height: auto; margin: 0 auto 1rem;
  display: block; color: var(--sage); opacity: 0.6;
}
.trainer-role {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.trainer-name {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 450;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--moss-deep);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.trainer-affiliation {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'wght' 400;
  font-size: 1rem;
  color: var(--clay);
  margin-bottom: 1.2rem;
}
.trainer-bio {
  font-size: 1rem;
  color: var(--walnut-soft);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.trainer-bio + .trainer-bio { margin-top: 0; }
.trainer-pills {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-top: 1.2rem;
}
.trainer-pill {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.85rem;
  background: var(--cream);
  border: 1px solid rgba(59,74,58,0.12);
  border-radius: 999px;
  color: var(--moss);
  font-weight: 500;
}
.trainer-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.4rem;
  font-size: 0.84rem;
  color: var(--clay);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
  font-weight: 500;
}
.trainer-link:hover { gap: 0.7rem; }

/* Rates / pricing tables */
.rates {
  background: var(--cream);
}
.rates-stack {
  max-width: 980px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 2.5rem;
}
.rates-card {
  background: var(--cream-deep);
  border-radius: 14px;
  padding: 2.5rem;
}
.rates-card h3 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 80, 'SOFT' 80, 'wght' 500;
  font-size: 1.5rem;
  color: var(--moss-deep);
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(59,74,58,0.12);
}
.rates-card .rate-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(59,74,58,0.12);
}
.rates-card .rate-row:last-child { border-bottom: none; }
.rates-card .rate-row .label-text {
  font-size: 1rem;
  color: var(--walnut-soft);
  flex: 1;
}
.rates-card .rate-row .price {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 80, 'SOFT' 80, 'wght' 500;
  font-size: 1.1rem;
  color: var(--moss-deep);
  white-space: nowrap;
}
.rates-card .rate-row .price em {
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'wght' 400;
  font-size: 0.85rem;
  color: var(--sage);
}
.rates-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--walnut-soft);
  line-height: 1.6;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 14, 'wght' 400;
}

/* Program / camp item cards */
.program-list {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 4rem;
}
.program-item {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.program-item:nth-child(even) {
  direction: rtl;
}
.program-item:nth-child(even) > * { direction: ltr; }
.program-item .program-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream-deep);
}
.program-item .program-visual img {
  width: 100%; height: auto; display: block;
}
.program-item .program-visual-placeholder {
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--sage);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  padding: 1rem;
}
.program-item .program-num {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 80, 'SOFT' 30, 'wght' 400;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  background: rgba(45,36,29,0.65);
  padding: 0.45rem 0.85rem;
  backdrop-filter: blur(4px);
}
.program-content .program-tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
  margin-bottom: 0.7rem;
  display: block;
}
.program-content h3 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 450;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  color: var(--moss-deep);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.program-content h3 em {
  font-style: normal;
  color: inherit;
}
.program-content .program-meta {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.program-content p {
  font-size: 1rem;
  color: var(--walnut-soft);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.program-content .program-prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(59,74,58,0.12);
}
.program-content .program-price {
  display: flex; flex-direction: column;
  font-size: 0.88rem;
}
.program-content .program-price .pp-lbl {
  color: var(--sage);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.program-content .program-price .pp-val {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 80, 'SOFT' 80, 'wght' 500;
  color: var(--moss-deep);
  font-size: 1.05rem;
}
.program-dates {
  list-style: none;
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  margin: 1rem 0;
}
.program-dates li {
  font-size: 0.82rem;
  color: var(--walnut-soft);
  padding: 0.35rem 0.85rem;
  background: var(--cream);
  border: 1px solid rgba(59,74,58,0.1);
  border-radius: 2px;
  font-weight: 500;
}

/* Schedule list (for team show dates) */
.schedule-list {
  max-width: 880px; margin: 0 auto;
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(59,74,58,0.1);
}
.schedule-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.4rem 2rem;
  border-bottom: 1px solid rgba(59,74,58,0.08);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-date {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 80, 'SOFT' 80, 'wght' 500;
  font-size: 1.15rem;
  color: var(--moss-deep);
  min-width: 130px;
}
.schedule-name {
  font-size: 0.95rem;
  color: var(--walnut-soft);
  font-weight: 500;
}
.schedule-venue {
  font-size: 0.82rem;
  color: var(--sage);
  font-style: italic;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 14, 'wght' 400;
}

/* Content prose block (for paragraphs of body copy on inner pages) */
.prose {
  max-width: 720px; margin: 0 auto;
}
.prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--walnut-soft);
  margin-bottom: 1.3rem;
}
.prose p em {
  font-style: italic;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 14, 'SOFT' 30, 'wght' 400;
  color: var(--moss-deep);
}
.prose h3 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 80, 'SOFT' 80, 'wght' 500;
  font-size: 1.5rem;
  color: var(--moss-deep);
  margin: 2.4rem 0 0.8rem;
  line-height: 1.2;
}
.prose ul {
  list-style: none;
  margin: 1.2rem 0;
}
.prose ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--walnut-soft);
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6rem;
  width: 6px; height: 6px;
  background: var(--clay);
  border-radius: 50%;
}

/* Compact feature grid (for property features on About) */
.feature-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.feature-card {
  background: var(--cream-deep);
  border-radius: 14px;
  padding: 2rem;
  display: flex; flex-direction: column;
  gap: 0.8rem;
}
.feature-card .feature-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  color: var(--clay);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feature-card .feature-icon svg { width: 22px; height: 22px; }
.feature-card h4 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 80, 'SOFT' 80, 'wght' 500;
  font-size: 1.2rem;
  color: var(--moss-deep);
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--walnut-soft);
  line-height: 1.6;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem; min-height: auto; }
  .hero-collage { margin: 0 auto; max-width: 480px; }
  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .property-inner { grid-template-columns: 1fr; gap: 3rem; }
  .show-team-inner { grid-template-columns: 1fr; text-align: center; }
  .show-team-content .eyebrow,
  .show-team-content h2,
  .show-team-content p { text-align: center; }
  .show-team-content p { margin-left: auto; margin-right: auto; }
  .show-team-illustration { margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trainer-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .program-item { grid-template-columns: 1fr; gap: 1.5rem; }
  .program-item:nth-child(even) { direction: ltr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .banner-inner { justify-content: center; text-align: center; }
  .banner-items { justify-content: center; gap: 1.4rem; }
  .schedule-row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.2rem 1.5rem; }
  .schedule-date { min-width: auto; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 5rem 1.5rem; }
  .hero { padding-top: 78px; }
  .hero-headline { font-size: clamp(2.2rem, 9vw, 3rem); }
  .offerings-grid { grid-template-columns: 1fr; }
  .property-features { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .nav-wordmark .mark-name { font-size: 1.1rem; }
  .nav-wordmark .mark-sub { font-size: 0.55rem; }
  .nav-logo img { height: 44px; }

  /* hero locator: pull out of absolute positioning so it isn't clipped */
  .hero-locator {
    position: relative;
    bottom: auto; right: auto; left: auto;
    margin-top: 1rem;
    max-width: none;
  }

  /* story credit: same — flow it below the image on mobile */
  .story-credit {
    position: relative;
    bottom: auto; right: auto;
    margin-top: 1.2rem;
    max-width: none;
  }

  /* split strip: match 1.5rem side padding used on mobile */
  .page-hero-split-strip { margin: 0 -1.5rem; }

  .page-hero { padding: 7rem 1.5rem 3rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .rates-card { padding: 1.5rem; }
  .rates-card .rate-row { flex-wrap: wrap; }
}

/* ─── VERY SMALL PHONES (< 480px) ─── */
@media (max-width: 480px) {
  .section { padding: 4rem 1.25rem; }
  .hero-inner { padding: 2.5rem 1.25rem 3rem; }
  .hero-headline { font-size: clamp(2rem, 10vw, 2.6rem); }
  .hero-sub { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-ghost,
  .hero-buttons .btn-accent { justify-content: center; }
  .hero-meta { gap: 1.5rem; }
  .contact-card { padding: 1.5rem; }
  .rates-card { padding: 1.25rem; }
  .show-team-inner { padding: 2.5rem 1.5rem; }
  .page-hero { padding: 6rem 1.25rem 2.5rem; }
  .page-hero-split { padding: 7rem 1.25rem 0; }
  .page-hero-split-strip { margin: 0 -1.25rem; padding: 1rem 1.25rem; }
  .schedule-row { padding: 1rem 1.25rem; }
  .trainer-card { padding: 1.5rem 1.25rem; }
  nav .nav-inner { padding: 0.85rem 1.25rem; }
  .mobile-menu { padding: 1.5rem 1.25rem; }
  footer { padding: 3rem 1.25rem 1.5rem; }
}
