/* ─── Design Tokens ─────────────────────────────────────── */
/* Teal & Grey palette — primary teal #2F6F73 grounds the brand;
   softer teal #4F8A8C carries hover/links; cool greys provide
   structure and a pewter accent replaces the warm gold. */
:root {
  --green-deep:   #2F6F73;
  --green-mid:    #4F8A8C;
  --green-light:  #7AA8AB;
  --gold:         #B8C0C7;       /* light pewter — accents on dark teal backgrounds */
  --gold-light:   #D8DDE2;
  --accent-ink:   #5A6571;       /* dark slate — accents on white/cream backgrounds */
  --cream:        #F1F3F5;
  --cream-dark:   #E5E7EB;
  --white:        #FFFFFF;
  --charcoal:     #2B2D2F;
  --text-mid:     #4A5560;
  --text-muted:   #6B7280;
  --border:       rgba(47,111,115,0.15);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-card: 0 2px 12px rgba(47,111,115,0.08);
  --shadow-lift: 0 8px 32px rgba(47,111,115,0.14);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul { list-style: none; margin: 0; padding: 0; }

/* ─── Utility ────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 0.75rem;
}
.hero .section-label,
.horses .section-label,
footer .section-label { color: var(--gold); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47,111,115,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.btn-outline-dark:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
}
.btn-gold:hover {
  background: var(--cream-dark);
  border-color: var(--cream-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.divider {
  width: 48px;
  height: 2px;
  background: var(--accent-ink);
  margin: 1.25rem 0;
}
.hero .divider,
.horses .divider { background: var(--gold); }
.divider-center {
  margin: 1.25rem auto;
}

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-deep);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links .nav-cta {
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--white);
  color: var(--green-deep);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
}
.nav-links .nav-cta:hover { background: var(--cream-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  background: var(--green-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

/* ─── Hero (base) ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,46,48,0.92) 0%,
    rgba(28,46,48,0.55) 45%,
    rgba(28,46,48,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem 4.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 300;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero h1 em { font-style: italic; font-weight: 400; }
.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: #1E2A2C;
  padding: 3rem 2rem 2rem;
  color: rgba(255,255,255,0.6);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand span { color: var(--gold); }
.footer-nav {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.footer-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,192,199,0.12);
}
.footer-copy {
  font-size: 0.8125rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  width: 100%;
}

/* ─── Scroll Reveal ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  .hero { min-height: 520px; }
}
