/* ============================================
   TWIN WILLOWS RANCH — Design Tokens
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Rye&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Color */
  --charcoal:      #1c1917;
  --charcoal-soft: #26221f;
  --bone:          #f2ede4;
  --bone-dim:      #e6ddcd;
  --rust:          #c1432e;
  --rust-dark:     #9c3323;
  --amber:         #e0972f;
  --amber-soft:    #f0b968;
  --leather:       #5a3a26;
  --leather-dark:  #3c2718;
  --pine:          #3a4a3c;
  --pine-dark:     #283329;
  --steel:         #3f4548;

  /* Type */
  --font-display: 'Rye', serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width: 1280px;
  --edge: clamp(20px, 5vw, 64px);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bone);
  color: var(--charcoal);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0.01em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--edge);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-top: 14px;
}

.section-body {
  font-size: 1.05rem;
  max-width: 60ch;
  opacity: 0.85;
  margin-top: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--rust);
  color: var(--bone);
  box-shadow: 0 6px 18px rgba(193, 67, 46, 0.35);
}
.btn-primary:hover { background: var(--rust-dark); }

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1.5px solid rgba(242, 237, 228, 0.5);
}
.btn-ghost:hover { border-color: var(--bone); background: rgba(242, 237, 228, 0.08); }

.btn-dark {
  background: var(--charcoal);
  color: var(--bone);
}
.btn-dark:hover { background: var(--leather-dark); }

.btn-outline-dark {
  border: 1.5px solid rgba(28, 25, 23, 0.35);
  color: var(--charcoal);
}
.btn-outline-dark:hover { border-color: var(--charcoal); background: rgba(28,25,23,0.06); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(28,25,23,0.85), transparent);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(28, 25, 23, 0.96);
  backdrop-filter: blur(8px);
  padding: 12px var(--edge);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bone);
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  opacity: 0.65;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--bone);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.25s;
  position: relative;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--amber-soft);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--bone);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.mobile-menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mobile-menu-backdrop.open { opacity: 1; pointer-events: auto; }

.mobile-menu-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, 82vw);
  background: var(--charcoal);
  z-index: 1200;
  padding: 28px 26px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-menu-panel.open { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  color: var(--bone);
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.mobile-menu-panel a {
  color: var(--bone);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(242,237,228,0.1);
}
.mobile-menu-cta { margin-top: 24px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(90,58,38,0.35), transparent 60%),
    linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-soft) 60%, var(--leather-dark) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 90px);
  opacity: 0.6;
}
.hero-mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(60vw, 620px);
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 140px var(--edge) 100px;
  text-align: center;
  color: var(--bone);
}
.hero-eyebrow {
  color: var(--amber-soft);
  justify-content: center;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 22px; height: 2px;
  background: currentColor;
  display: inline-block;
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  margin-top: 24px;
  color: var(--bone);
}
.hero-title em {
  font-style: normal;
  color: var(--amber-soft);
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 300;
  max-width: 620px;
  margin: 26px auto 0;
  opacity: 0.88;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--bone);
  opacity: 0.55;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, currentColor, transparent);
  animation: scrollpulse 2.2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.9; }
}

/* ============================================
   BRAND STRIP (signature element)
   ============================================ */
.brand-strip {
  background: var(--leather-dark);
  padding: 56px var(--edge) 64px;
  text-align: center;
  position: relative;
}
.brand-strip-label {
  color: var(--amber-soft);
  justify-content: center;
  margin-bottom: 28px;
}
.brand-marks {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.brand-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--bone);
  width: 140px;
}
.brand-mark-stamp {
  width: 92px; height: 92px;
  border-radius: 50%;
  border: 2px solid rgba(242,237,228,0.5);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  position: relative;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
  background: radial-gradient(circle at 35% 30%, rgba(242,237,228,0.06), transparent 70%);
}
.brand-mark:hover .brand-mark-stamp {
  transform: rotate(-4deg) scale(1.06);
  border-color: var(--amber-soft);
}
.brand-mark-stamp::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(242,237,228,0.2);
}
.brand-mark-stamp-img {
  padding: 18px;
}
.brand-mark-stamp-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-mark-name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.35;
  opacity: 0.85;
}

/* ============================================
   REGIONAL PARTNERS & SHUTTLE
   ============================================ */
.partners-section {
  background: var(--bone);
  padding: 100px var(--edge);
}
.partners-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.partner-card {
  max-width: 800px;
  margin: 0 auto 26px;
  background: var(--bone-dim);
  border: 1px solid rgba(28,25,23,0.1);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}
.partner-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.partner-card p {
  font-size: 0.92rem;
  opacity: 0.8;
  line-height: 1.55;
  max-width: 56ch;
  margin: 0 auto 20px;
}

.shuttle-card {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(155deg, var(--pine), var(--pine-dark));
  color: var(--bone);
  border-radius: 8px;
  padding: 36px;
  text-align: center;
}
.shuttle-title {
  font-size: 1.5rem;
  margin-top: 8px;
  color: var(--bone);
}
.shuttle-body {
  font-size: 0.92rem;
  opacity: 0.85;
  line-height: 1.6;
  max-width: 56ch;
  margin: 14px auto 24px;
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.1s; }
.reveal-delay-2.in-view { transition-delay: 0.2s; }
.reveal-delay-3.in-view { transition-delay: 0.3s; }

/* ============================================
   ABOUT / INTRO
   ============================================ */
.intro {
  padding: 120px var(--edge);
  max-width: 1280px;
  margin: 0 auto;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--rust);
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 4px;
}

/* ============================================
   EXPERIENCES TAG GRID
   ============================================ */
.experiences {
  background: var(--charcoal);
  color: var(--bone);
  padding: 100px var(--edge);
}
.experiences-header { text-align: center; max-width: 640px; margin: 0 auto; }
.experiences-header .eyebrow { color: var(--amber-soft); justify-content: center; }
.experiences-header .section-body { margin: 16px auto 0; opacity: 0.7; }
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 48px auto 0;
}
.tag-pill {
  padding: 11px 20px;
  border: 1px solid rgba(242,237,228,0.25);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: border-color 0.3s, background 0.3s;
}
.tag-pill:hover { border-color: var(--amber-soft); background: rgba(224,151,47,0.08); }

/* ============================================
   BUSINESS SECTION (shared layout, per-vertical theme)
   ============================================ */
.biz-section {
  padding: 110px var(--edge);
  position: relative;
}
.biz-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.biz-section.reverse .biz-inner { direction: rtl; }
.biz-section.reverse .biz-inner > * { direction: ltr; }

.biz-media {
  aspect-ratio: 4/5;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, rgba(255,255,255,0.06), rgba(0,0,0,0.15));
}
.biz-media::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.09) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.biz-media-photo::before { display: none; }
.biz-media-icon .biz-icon-svg {
  position: relative;
  z-index: 1;
  width: 42%;
  color: rgba(242,237,228,0.85);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.25));
}
.biz-media img {
  position: relative;
  z-index: 1;
  width: 62%;
}
.biz-media-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
}

.biz-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.biz-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}
.biz-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.coming-soon-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* Stables theme (leather) */
.biz-stables { background: var(--leather); color: var(--bone); }
.biz-stables .eyebrow { color: var(--amber-soft); }
.biz-stables .biz-tag { background: rgba(242,237,228,0.12); }
.biz-stables .biz-media-tag { background: var(--amber-soft); color: var(--leather-dark); }
.biz-stables .section-body { color: rgba(242,237,228,0.85); }

/* Brewery theme (cream/amber) */
.biz-brewery { background: var(--bone-dim); color: var(--charcoal); }
.biz-brewery .eyebrow { color: var(--rust-dark); }
.biz-brewery .biz-tag { background: rgba(28,25,23,0.08); }
.biz-brewery .biz-media { background: linear-gradient(155deg, rgba(28,25,23,0.06), rgba(28,25,23,0.02)); }
.biz-brewery .biz-media::before { background-image: radial-gradient(rgba(28,25,23,0.08) 1.5px, transparent 1.5px); }
.biz-brewery .biz-media-tag { background: var(--rust); color: var(--bone); }
.biz-brewery .biz-media img { width: 78%; }

.brewery-header {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto 50px;
}
.brewery-logo-chip {
  display: inline-flex;
  background: var(--bone);
  border-radius: 12px;
  padding: 18px 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.brewery-header-logo {
  width: 300px;
  max-width: 60vw;
  display: block;
}

.menu-btn-pair {
  display: inline-flex;
  gap: 2px;
}
.menu-btn {
  padding: 14px 22px;
}
.menu-btn-pair .menu-btn:first-child {
  border-radius: 2px 0 0 2px;
}
.menu-btn-pair .menu-btn:last-child {
  border-radius: 0 2px 2px 0;
}

/* Trucking theme (steel/charcoal) */
.biz-trucking { background: var(--steel); color: var(--bone); }
.trucking-logo-chip {
  display: inline-flex;
  background: var(--bone);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.trucking-header-logo {
  width: 200px;
  display: block;
}
.biz-trucking .eyebrow { color: var(--rust-dark); }
.biz-trucking .biz-tag { background: rgba(242,237,228,0.1); }
.biz-trucking .biz-media { background: linear-gradient(155deg, rgba(255,255,255,0.05), rgba(0,0,0,0.2)); }
.biz-trucking .biz-media-tag { background: var(--rust); color: var(--bone); }
.biz-trucking .section-body { color: rgba(242,237,228,0.85); }

/* Stay theme (pine) */
.biz-stay { background: var(--pine); color: var(--bone); }
.biz-stay .eyebrow { color: var(--amber-soft); }
.biz-stay .biz-tag { background: rgba(242,237,228,0.12); }
.biz-stay .biz-media { background: linear-gradient(155deg, rgba(255,255,255,0.05), rgba(0,0,0,0.2)); }
.biz-stay .biz-media-tag { background: var(--amber-soft); color: var(--pine-dark); }
.biz-stay .section-body { color: rgba(242,237,228,0.85); }

/* Supply theme (charcoal, coming soon) */
.biz-supply { background: var(--charcoal); color: var(--bone); }
.biz-supply .eyebrow { color: var(--amber-soft); }
.biz-supply .biz-tag { background: rgba(242,237,228,0.1); }
.biz-supply .coming-soon-badge { background: var(--amber-soft); color: var(--charcoal); }
.biz-supply .biz-media { background: var(--charcoal-soft); }
.biz-supply .biz-media img { width: 70%; }
.biz-supply .section-body { color: rgba(242,237,228,0.85); }

/* ============================================
   EVENTS / CALENDAR
   ============================================ */
.events-section { background: var(--bone); padding: 110px var(--edge); }
.events-header { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.events-header .eyebrow { color: var(--rust); justify-content: center; }
.calendar-embed {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 6px;
  border: 1.5px dashed rgba(28,25,23,0.25);
  padding: 60px 30px;
  text-align: center;
  background: var(--bone-dim);
}
.calendar-embed p { opacity: 0.6; font-size: 0.9rem; max-width: 480px; margin: 10px auto 0; }
.calendar-embed code {
  background: rgba(28,25,23,0.06);
  padding: 3px 8px; border-radius: 3px; font-size: 0.82rem;
}

/* ============================================
   EVENT CARDS
   ============================================ */
.event-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.event-card {
  background: var(--bone-dim);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.event-card-image {
  aspect-ratio: 16/10;
  background: linear-gradient(155deg, var(--leather), var(--charcoal));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.event-card-image img { width: 100%; height: 100%; object-fit: cover; }
.event-card-image svg { width: 30%; opacity: 0.3; color: var(--bone); }
.event-card-date {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--rust);
  color: var(--bone);
  border-radius: 4px;
  padding: 6px 10px;
  text-align: center;
  line-height: 1.1;
}
.event-card-date .month {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.event-card-date .day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.event-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.event-card-body h4 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 8px;
}
.event-card-body .event-time {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rust);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.event-card-body p {
  font-size: 0.88rem;
  opacity: 0.75;
  line-height: 1.5;
  margin: 0 0 16px;
  flex: 1;
}
.event-card-body a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rust);
}
.events-cta { text-align: center; margin-top: 40px; }
.events-empty {
  text-align: center;
  opacity: 0.6;
  font-size: 0.95rem;
  padding: 30px;
  grid-column: 1 / -1;
}

/* ============================================
   SHOP
   ============================================ */
.shop-section { background: var(--bone-dim); padding: 110px var(--edge); }
.shop-header { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.shop-header .eyebrow { color: var(--leather); justify-content: center; }
.shop-embed {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 6px;
  border: 1.5px dashed rgba(28,25,23,0.25);
  padding: 60px 30px;
  text-align: center;
  background: var(--bone);
}
.shop-embed p { opacity: 0.6; font-size: 0.9rem; max-width: 480px; margin: 10px auto 0; }
.shop-embed code {
  background: rgba(28,25,23,0.06);
  padding: 3px 8px; border-radius: 3px; font-size: 0.82rem;
}
.shop-live {
  max-width: 1200px;
  margin: 0 auto;
}
.shop-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.shop-preview-card {
  background: var(--bone);
  border-radius: 4px;
  padding: 20px 16px;
  text-align: left;
}
.shop-preview-swatch {
  aspect-ratio: 1;
  border-radius: 3px;
  margin-bottom: 12px;
  background: linear-gradient(140deg, var(--leather), var(--charcoal));
}
.shop-preview-card h4 { font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; }
.shop-preview-card span { font-size: 0.8rem; opacity: 0.55; }

.club-coming-soon {
  max-width: 600px;
  margin: 20px auto 0;
  text-align: center;
  padding: 44px 34px;
  background: rgba(242,237,228,0.05);
  border: 1px dashed rgba(242,237,228,0.25);
  border-radius: 8px;
}
.club-coming-soon .coming-soon-badge {
  background: var(--amber-soft);
  color: var(--charcoal);
  display: inline-block;
  margin-bottom: 16px;
}
.club-coming-soon h3 {
  font-size: 1.4rem;
  color: var(--bone);
  margin-bottom: 10px;
}
.club-coming-soon p {
  font-size: 0.92rem;
  opacity: 0.75;
  margin-bottom: 22px;
}

/* ============================================
   RANCH CLUB
   ============================================ */
.club-section {
  background: var(--charcoal);
  color: var(--bone);
  padding: 110px var(--edge);
}
.club-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.club-intro {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-top: 20px;
  line-height: 1.6;
}
.club-note {
  font-size: 0.85rem;
  opacity: 0.55;
  margin-top: 14px;
  font-style: italic;
}
.household-definition {
  margin-top: 26px;
  display: inline-block;
  font-size: 0.85rem;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(224,151,47,0.1);
  border: 1px solid rgba(224,151,47,0.3);
  color: var(--amber-soft);
}
.household-definition strong { color: var(--bone); }

.club-tier-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.club-card {
  background: rgba(242,237,228,0.05);
  border: 1px solid rgba(242,237,228,0.14);
  border-radius: 8px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
}
.club-card-featured {
  background: rgba(224,151,47,0.07);
  border: 1px solid rgba(224,151,47,0.4);
  transform: scale(1.02);
}
.club-card-icon { font-size: 2rem; margin-bottom: 12px; }
.club-card-name {
  font-size: 1.5rem;
  color: var(--bone);
}
.club-card-tagline {
  font-size: 0.86rem;
  opacity: 0.7;
  margin-top: 8px;
  line-height: 1.5;
  min-height: 42px;
}
.club-card-price {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(242,237,228,0.14);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9rem;
  padding: 5px 0;
}
.price-row span { opacity: 0.65; }
.price-row strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--amber-soft);
}
.price-row.initiation {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px dashed rgba(242,237,228,0.14);
}
.price-row.initiation strong { color: var(--bone); font-size: 0.95rem; font-family: var(--font-body); font-weight: 700; }

.club-card-plus {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--amber-soft);
  margin: 20px 0 10px;
  letter-spacing: 0.02em;
}
.club-card-includes {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  flex: 1;
}
.club-card-includes li {
  font-size: 0.86rem;
  line-height: 1.5;
  padding: 7px 0 7px 22px;
  position: relative;
  opacity: 0.85;
  border-bottom: 1px solid rgba(242,237,228,0.06);
}
.club-card-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber-soft);
  font-weight: 700;
}
.club-card-includes li:last-child { border-bottom: none; }

.club-card-includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.club-special-card {
  max-width: 1280px;
  margin: 40px auto 0;
  background: rgba(242,237,228,0.05);
  border: 1px solid rgba(242,237,228,0.14);
  border-radius: 8px;
  padding: 36px;
  position: relative;
}
.club-special-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 10px;
}
.club-special-header .club-card-name { margin-top: 4px; }
.club-special-card .coming-soon-badge {
  position: absolute;
  top: 24px; right: 36px;
  background: var(--amber-soft);
  color: var(--charcoal);
}
.club-launch-note {
  margin-top: 18px;
  font-size: 0.85rem;
  opacity: 0.6;
  font-style: italic;
}

.club-founders {
  border: 1px solid rgba(193,67,46,0.4);
  background: rgba(193,67,46,0.06);
}
.founders-badge {
  position: absolute;
  top: 24px; right: 36px;
  background: var(--rust);
  color: var(--bone);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.founders-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(242,237,228,0.14);
  border-bottom: 1px solid rgba(242,237,228,0.14);
}
.founders-price span:first-child { font-size: 0.9rem; opacity: 0.7; }
.founders-price strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--rust);
}
.founders-requirement {
  font-size: 0.78rem;
  opacity: 0.55;
  width: 100%;
}

.club-cta { text-align: center; margin-top: 50px; }

/* ============================================
   ABOUT / STORY
   ============================================ */
.about-section {
  background: var(--charcoal);
  color: var(--bone);
  padding: 130px var(--edge);
  text-align: center;
}
.about-section .eyebrow { color: var(--amber-soft); justify-content: center; }
.about-section .section-title { max-width: 820px; margin-left: auto; margin-right: auto; }
.about-section .section-body { margin-left: auto; margin-right: auto; max-width: 66ch; color: rgba(242,237,228,0.8); }
.about-brand-image {
  max-width: 240px;
  margin: 44px auto 0;
  opacity: 0.9;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: var(--bone); padding: 110px var(--edge); }
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact-info .eyebrow { color: var(--rust); }
.contact-detail { margin-top: 28px; }
.contact-detail dt { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.55; margin-bottom: 4px; }
.contact-detail dd { margin: 0 0 22px; font-size: 1.02rem; }

.contact-form {
  background: var(--bone-dim);
  padding: 40px;
  border-radius: 6px;
  display: grid;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid rgba(28,25,23,0.18);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bone);
  color: var(--charcoal);
  transition: border-color 0.25s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rust);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-status { font-size: 0.85rem; margin-top: 4px; display: none; }
.form-status.show { display: block; }
.form-status.success { color: var(--pine); }
.form-status.error { color: var(--rust-dark); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--leather-dark);
  color: var(--bone);
  padding: 70px var(--edge) 30px;
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(242,237,228,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 36px; }
.footer-brand-text { font-family: var(--font-display); font-size: 1.1rem; }
.footer-tagline { font-size: 0.88rem; opacity: 0.6; max-width: 30ch; }
.footer-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 0.88rem; opacity: 0.82; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--amber-soft); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  opacity: 0.55;
}

.video-embed-wrap {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--charcoal);
}
.video-placeholder {
  aspect-ratio: 4/5;
  border-radius: 4px;
  background: linear-gradient(155deg, var(--pine), var(--charcoal));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--bone);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.video-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.video-placeholder svg { position: relative; z-index: 1; transition: transform 0.3s var(--ease); }
.video-placeholder:hover svg { transform: scale(1.08); }
.video-placeholder-label {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.video-placeholder-note {
  position: relative; z-index: 1;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ============================================
   STAY LISTINGS (Airbnb)
   ============================================ */
.stay-listings {
  max-width: 1100px;
  margin: 70px auto 0;
  padding-top: 60px;
  border-top: 1px solid rgba(242,237,228,0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.stay-card {
  background: rgba(242,237,228,0.06);
  border: 1px solid rgba(242,237,228,0.14);
  border-radius: 6px;
  overflow: hidden;
}
.stay-card-photo {
  aspect-ratio: 16/10;
  position: relative;
}
.stay-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.stay-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--amber-soft);
  color: var(--pine-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
}
.stay-card-body { padding: 24px; }
.stay-card-body h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bone);
  margin: 0 0 8px;
}
.stay-card-meta {
  display: block;
  font-size: 0.78rem;
  color: var(--amber-soft);
  font-weight: 600;
  margin-bottom: 12px;
}
.stay-card-body p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(242,237,228,0.8);
  margin: 0 0 20px;
}

/* ============================================
   OWNER BIO
   ============================================ */
.owner-bio {
  max-width: 1100px;
  margin: 70px auto 0;
  display: flex;
  align-items: center;
  gap: 36px;
  background: rgba(242,237,228,0.06);
  border: 1px solid rgba(242,237,228,0.14);
  border-radius: 6px;
  padding: 36px;
}
.owner-bio-photo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--amber), var(--rust));
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.owner-bio-text .eyebrow { color: var(--amber-soft); }
.owner-bio-name {
  font-size: 1.7rem;
  margin-top: 8px;
  color: var(--bone);
}
.owner-bio-title {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--amber-soft);
  margin: 4px 0 14px;
}
.owner-bio-body {
  font-size: 0.94rem;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
}

/* ============================================
   RIDE EXPERIENCES SUB-SECTION
   ============================================ */
.ride-experiences {
  max-width: 1100px;
  margin: 70px auto 0;
  padding-top: 60px;
  border-top: 1px solid rgba(242,237,228,0.15);
  text-align: center;
}
.ride-experiences .eyebrow { color: var(--amber-soft); justify-content: center; }
.ride-experiences-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-top: 10px;
  color: var(--bone);
}
.ride-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
  text-align: left;
}
.ride-card {
  background: rgba(242,237,228,0.06);
  border: 1px solid rgba(242,237,228,0.14);
  border-radius: 5px;
  padding: 22px 20px;
}
.ride-card h4 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--amber-soft);
  margin-bottom: 10px;
}
.ride-card p {
  font-size: 0.86rem;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0;
}

/* ============================================
   HORSE GALLERY MODAL
   ============================================ */
.horse-modal-box {
  max-width: 780px;
  max-height: 82vh;
  overflow-y: auto;
}
.horse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.horse-card {
  background: var(--bone-dim);
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-align: left;
}
.horse-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.15); }
.horse-card-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(155deg, var(--leather), var(--charcoal));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.horse-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.horse-card-photo svg { width: 40%; opacity: 0.35; color: var(--bone); }
.horse-status-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--bone);
}
.horse-status-badge.status-for-sale { background: var(--pine); }
.horse-status-badge.status-sold { background: var(--steel); }
.horse-status-badge.status-prospect { background: var(--amber); }
.horse-card-info { padding: 14px 14px 16px; }
.horse-card-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 4px;
}
.horse-card-info span {
  font-size: 0.78rem;
  opacity: 0.65;
}
.horse-back-btn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rust);
  margin-bottom: 20px;
}
.horse-detail-photos {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 18px 0;
}
.horse-detail-photos img {
  height: 160px;
  border-radius: 4px;
  flex-shrink: 0;
}
.horse-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}
.horse-detail-meta span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(28,25,23,0.07);
}
.horse-video-embed {
  margin-top: 18px;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
}
.horse-video-embed iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   BEER MENU
   ============================================ */
.beer-menu-category {
  margin-top: 26px;
}
.beer-menu-category:first-child { margin-top: 6px; }
.beer-menu-category-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(28,25,23,0.12);
  margin-bottom: 14px;
}
.beer-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(28,25,23,0.06);
}
.beer-item:last-child { border-bottom: none; }
.beer-item-main h4 {
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.beer-tap-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  vertical-align: middle;
}
.beer-tap-badge.core { background: rgba(58,74,60,0.15); color: var(--pine); }
.beer-tap-badge.rotating { background: rgba(224,151,47,0.18); color: var(--leather); }
.beer-item-style {
  font-size: 0.8rem;
  opacity: 0.6;
  font-style: italic;
  margin-bottom: 4px;
}
.beer-item-desc {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 4px 0 0;
  max-width: 46ch;
}
.beer-item-stats {
  flex-shrink: 0;
  text-align: right;
  font-size: 0.78rem;
  opacity: 0.6;
  white-space: nowrap;
}

/* ============================================
   BIRTHDAY PARTY MODAL
   ============================================ */
.birthday-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 16px 0 10px;
}
.birthday-price strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--rust);
}
.birthday-price span {
  font-size: 0.85rem;
  opacity: 0.65;
}
.birthday-includes {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.birthday-includes li {
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid rgba(28,25,23,0.08);
}
.birthday-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--rust);
  font-weight: 700;
}
.birthday-includes li:last-child { border-bottom: none; }
.birthday-note {
  font-size: 0.86rem;
  padding: 14px 18px;
  background: rgba(58,74,60,0.08);
  border-radius: 5px;
  margin-bottom: 18px;
}
.birthday-addons {
  padding: 18px;
  background: rgba(224,151,47,0.08);
  border: 1px solid rgba(224,151,47,0.3);
  border-radius: 5px;
  margin-bottom: 18px;
}
.birthday-addons p {
  font-size: 0.86rem;
  opacity: 0.8;
  margin: 6px 0 0;
}
.birthday-deposit {
  font-size: 0.85rem;
  opacity: 0.7;
  text-align: center;
}

/* ============================================
   KIDS CAMPS
   ============================================ */
.camp-header-icon {
  color: var(--rust);
  margin-bottom: 6px;
}
.camp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.camp-card {
  background: var(--bone-dim);
  border-radius: 6px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.camp-card-photo {
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  margin: -22px -20px 14px;
}
.camp-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.camp-card-status {
  align-self: flex-start;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--bone);
  margin-bottom: 12px;
}
.camp-card-status.status-open { background: var(--pine); }
.camp-card-status.status-few-spots-left { background: var(--amber); }
.camp-card-status.status-full { background: var(--steel); }
.camp-card h4 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 6px;
}
.camp-card-meta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rust);
  margin-bottom: 4px;
}
.camp-card-price {
  font-size: 0.8rem;
  opacity: 0.65;
  margin-bottom: 10px;
}
.camp-card p.camp-card-desc {
  font-size: 0.84rem;
  line-height: 1.5;
  opacity: 0.8;
  margin: 0 0 16px;
  flex: 1;
}
.camp-card-spots {
  font-size: 0.78rem;
  opacity: 0.6;
  margin-bottom: 14px;
}
.camp-card a.btn {
  align-self: flex-start;
  padding: 10px 18px;
  font-size: 0.76rem;
}

.board-coming-soon {
  text-align: center;
  padding: 40px 30px;
  margin-top: 10px;
  background: rgba(28,25,23,0.04);
  border: 1px dashed rgba(28,25,23,0.2);
  border-radius: 6px;
}
.board-coming-soon .coming-soon-badge {
  background: var(--amber-soft);
  color: var(--charcoal);
  display: inline-block;
  margin-bottom: 14px;
}
.board-coming-soon h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 8px;
}
.board-coming-soon p {
  font-size: 0.9rem;
  opacity: 0.7;
  max-width: 50ch;
  margin: 0 auto;
}

/* ============================================
   BOARDING MODAL
   ============================================ */
.board-modal-box {
  max-width: 980px;
  max-height: 86vh;
  overflow-y: auto;
}
.fullservice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 24px 0 6px;
  padding: 20px;
  background: rgba(58,74,60,0.06);
  border: 1px solid rgba(58,74,60,0.2);
  border-radius: 6px;
}
.fullservice-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--pine);
}
.fullservice-item svg { flex-shrink: 0; margin-top: 2px; }
.fullservice-item h5 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.35;
}
.fullservice-item span {
  font-size: 0.72rem;
  opacity: 0.6;
  color: var(--charcoal);
}
.board-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.board-card {
  background: var(--bone-dim);
  border: 1px solid rgba(28,25,23,0.1);
  border-radius: 6px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}
.board-card-featured {
  background: rgba(224,151,47,0.08);
  border: 1px solid rgba(224,151,47,0.4);
}
.board-card-icon { font-size: 1.4rem; margin-bottom: 6px; }
.board-card-name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 6px;
}
.board-card-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--rust);
  margin-bottom: 10px;
}
.board-card-price span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal);
  opacity: 0.6;
}
.board-card-tagline {
  font-size: 0.82rem;
  opacity: 0.7;
  line-height: 1.5;
  margin-bottom: 14px;
}
.board-card-plus {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--rust);
  margin: 14px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.board-card-includes {
  list-style: none;
  margin: 0;
  padding: 0;
}
.board-card-includes li {
  font-size: 0.82rem;
  line-height: 1.5;
  padding: 5px 0 5px 20px;
  position: relative;
  opacity: 0.85;
}
.board-card-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--rust);
  font-weight: 700;
}
.board-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 10px 0;
  padding: 14px;
  background: rgba(28,25,23,0.04);
  border-radius: 4px;
}
.board-checklist-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--rust);
  margin-bottom: 6px;
}
.board-checklist-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.board-checklist-list li {
  font-size: 0.78rem;
  padding: 3px 0 3px 16px;
  position: relative;
  opacity: 0.85;
}
.board-checklist-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--rust);
  font-weight: 700;
  font-size: 0.7rem;
}
.board-addon {
  margin-top: 24px;
  padding: 22px 24px;
  background: rgba(193,67,46,0.06);
  border: 1px solid rgba(193,67,46,0.25);
  border-radius: 6px;
}
.board-addon-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 8px;
}
.board-addon h4 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 6px;
}
.board-addon p {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   TRAIL RIDE MODAL
   ============================================ */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(28,25,23,0.65);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--bone);
  border-radius: 6px;
  padding: 40px 34px;
  max-width: 420px;
  width: 100%;
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s var(--ease);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.modal-backdrop.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--charcoal);
  opacity: 0.5;
}
.modal-close:hover { opacity: 1; }
.modal-title {
  font-size: 1.6rem;
  margin-top: 10px;
  color: var(--charcoal);
}
.modal-body {
  font-size: 0.92rem;
  opacity: 0.8;
  margin-top: 14px;
  line-height: 1.55;
}

/* ============================================
   ABOUT US / MEET THE TEAM PAGE
   ============================================ */
.about-page-header {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--leather-dark) 100%);
  padding: 160px var(--edge) 90px;
  text-align: center;
}
.about-page-header-inner {
  max-width: 700px;
  margin: 0 auto;
}
.about-page-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--bone);
  margin-top: 18px;
}
.about-page-subtitle {
  font-size: 1.05rem;
  color: rgba(242,237,228,0.8);
  margin-top: 20px;
  line-height: 1.6;
}

.team-section {
  background: var(--bone);
  padding: 100px var(--edge);
}
.team-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.team-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.team-card {
  background: var(--bone-dim);
  border-radius: 8px;
  overflow: hidden;
}
.team-card-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.team-card-body { padding: 24px; }
.team-card-body h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 6px;
}
.team-card-role {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}
.team-card-body p {
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
}
.team-card-body p + p { margin-top: 12px; }
.team-card-photo-pending {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, var(--leather), var(--charcoal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242,237,228,0.4);
}
.team-card-photo-pending svg { width: 30%; }

.team-card-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 340px;
  border: 1px dashed rgba(28,25,23,0.2);
  background: transparent;
  color: rgba(28,25,23,0.5);
}
.team-card-placeholder-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px dashed rgba(28,25,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.team-card-placeholder p {
  font-size: 0.88rem;
  text-align: center;
  padding: 0 20px;
}

.history-section {
  background: var(--charcoal);
  padding: 100px var(--edge);
}
.history-coming-soon {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 34px;
  background: rgba(242,237,228,0.05);
  border: 1px dashed rgba(242,237,228,0.25);
  border-radius: 8px;
}
.history-coming-soon .coming-soon-badge {
  background: var(--amber-soft);
  color: var(--charcoal);
  display: inline-block;
  margin-bottom: 16px;
}
.history-coming-soon .section-title { color: var(--bone); }
.history-coming-soon .section-body {
  color: rgba(242,237,228,0.75);
  max-width: 52ch;
  margin: 14px auto 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .biz-inner { grid-template-columns: 1fr; gap: 40px; }
  .biz-section.reverse .biz-inner { direction: ltr; }
  .biz-media { aspect-ratio: 16/9; max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .shop-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .ride-card-grid { grid-template-columns: 1fr 1fr; }
  .horse-grid { grid-template-columns: 1fr 1fr; }
  .event-card-grid { grid-template-columns: 1fr 1fr; }
  .owner-bio { flex-direction: column; text-align: center; padding: 28px; }
}
@media (max-width: 560px) {
  .hero-content { padding-top: 120px; }
  .footer-top { grid-template-columns: 1fr; }
  .brand-marks { gap: 22px 16px; }
  .brand-mark { width: 100px; }
  .brand-mark-stamp { width: 74px; height: 74px; font-size: 1.25rem; }
  .ride-card-grid { grid-template-columns: 1fr; }
  .horse-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .event-card-grid { grid-template-columns: 1fr; }
  .stay-listings { grid-template-columns: 1fr; }
  .club-tier-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .board-tier-grid { grid-template-columns: 1fr; }
  .fullservice-grid { grid-template-columns: 1fr 1fr; }
  .camp-grid { grid-template-columns: 1fr; }
  .club-card-featured { transform: none; }
  .club-card-includes-grid { grid-template-columns: 1fr; }
  .club-special-card .coming-soon-badge,
  .founders-badge { position: static; display: inline-block; margin-bottom: 14px; }
  .club-special-header { flex-direction: column; }
}
