/* ============================================================
   ORCHARD PARK STABLES — Global Stylesheet
   Palette: Deep Forest, Warm Cream, Antique Gold, Earth Brown
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --forest:    #2C3E2D;   /* deep evergreen */
  --cream:     #F7F3EC;   /* warm parchment */
  --gold:      #B8922A;   /* antique gold */
  --gold-lt:   #D4AA4A;   /* lighter gold for hovers */
  --earth:     #6B4C35;   /* saddle brown */
  --charcoal:  #1A1A1A;
  --muted:     #7A7A6E;
  --white:     #FFFFFF;
  --border:    #DDD5C4;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;

  --max-w: 1160px;
  --section-pad: 90px;
}

/* ── Logo image ── */
.nav-logo img {
  width: 56px;
  height: auto;
  mix-blend-mode: normal;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 0 12px 4px rgba(247, 243, 236, 0.25), 0 0 24px 8px rgba(184, 146, 42, 0.15);
}

.nav-logo:hover img {
  box-shadow: 0 0 16px 6px rgba(247, 243, 236, 0.35), 0 0 32px 12px rgba(184, 146, 42, 0.25);
}
*, *::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(--charcoal);
  font-size: 17px;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.4rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: var(--section-pad) 0; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--forest); }
.btn-dark { background: var(--forest); color: var(--white); border-color: var(--forest); }
.btn-dark:hover { background: var(--gold); border-color: var(--gold); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(44, 62, 45, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(184,146,42,0.3);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.35); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.25;
}
.nav-logo img { width: 44px; height: auto; }
.nav-logo span { font-style: italic; color: var(--gold-lt); font-size: 0.7rem; letter-spacing: 0.1em; display: block; }

.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 2px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 4px; left: 12px; right: 12px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links .btn-primary { padding: 9px 20px; font-size: 0.78rem; }
.nav-links .btn-primary::after { display: none; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--cream); transition: all 0.3s;
}

/* ============================================================
   PAGE HERO (shared across pages)
   ============================================================ */
.page-hero {
  height: 340px;
  background: var(--forest);
  display: flex; align-items: flex-end;
  padding-bottom: 52px;
  position: relative;
  overflow: hidden;
  margin-top: 72px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.35;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); }
.page-hero .eyebrow { color: var(--gold-lt); }

/* ============================================================
   HOME HERO
   ============================================================ */
#hero {
  height: 100vh; min-height: 620px;
  background: var(--forest);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  margin-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://static.wixstatic.com/media/faa49a_883a0ec842c24397b399849a75467985~mv2.jpg') center/cover no-repeat;
  opacity: 0.38;
}
/* Vignette */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(44,62,45,0.9) 40%, rgba(44,62,45,0.1));
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 620px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-tagline {
  color: rgba(247,243,236,0.85);
  font-size: 1.15rem;
  margin-bottom: 38px;
  font-weight: 300;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Decorative vertical rule */
.hero-rule {
  position: absolute; right: 10%; top: 50%; transform: translateY(-50%);
  width: 1px; height: 140px; background: rgba(184,146,42,0.5);
  display: flex; align-items: center; justify-content: center;
}
.hero-rule::before, .hero-rule::after {
  content: ''; position: absolute;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
.hero-rule::before { top: 0; }
.hero-rule::after { bottom: 0; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; text-align: center;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '↓'; display: block;
  font-size: 1.2rem; margin-top: 4px; color: var(--gold);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SECTION — ABOUT STRIP (Home)
   ============================================================ */
.about-strip {
  background: var(--forest);
  color: var(--cream);
  padding: 60px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184,146,42,0.2);
}
.strip-item {
  padding: 40px 36px;
  background: var(--forest);
  text-align: center;
}
.strip-item .icon { font-size: 2.2rem; margin-bottom: 14px; }
.strip-item h3 { color: var(--gold-lt); margin-bottom: 8px; }
.strip-item p { font-size: 0.9rem; color: rgba(247,243,236,0.75); line-height: 1.6; }

/* ============================================================
   SECTION — WHO WE ARE (Home)
   ============================================================ */
.who-we-are { background: var(--cream); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col.reversed { direction: rtl; }
.two-col.reversed > * { direction: ltr; }
.two-col img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  border: 4px solid var(--cream);
  box-shadow: 12px 12px 0 var(--gold);
}
.two-col-text h2 { color: var(--forest); margin-bottom: 20px; }
.two-col-text p { color: #444; margin-bottom: 16px; }

/* ============================================================
   SECTION — OFFERINGS (Home)
   ============================================================ */
.offerings { background: var(--earth); color: var(--white); }
.offerings h2 { color: var(--cream); margin-bottom: 12px; }
.offerings > .container > p { color: rgba(247,243,236,0.8); margin-bottom: 52px; max-width: 560px; }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.offer-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 36px 28px;
  transition: background 0.25s;
}
.offer-card:hover { background: rgba(255,255,255,0.13); }
.offer-card .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-style: italic;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 12px;
}
.offer-card h3 { color: var(--cream); margin-bottom: 10px; }
.offer-card p { font-size: 0.9rem; color: rgba(247,243,236,0.75); }

/* ============================================================
   SECTION — OPEN RIDING HIGHLIGHT (Home)
   ============================================================ */
.open-riding-highlight {
  background: var(--cream);
  border-top: 4px solid var(--gold);
}
.riding-banner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.riding-banner img {
  width: 100%; aspect-ratio: 3/2;
  object-fit: cover;
  box-shadow: -12px 12px 0 var(--forest);
}
.riding-banner h2 { color: var(--forest); margin-bottom: 16px; }
.riding-banner p { color: #444; margin-bottom: 28px; }

/* ============================================================
   SECTION — FEATURED HORSES (Home)
   ============================================================ */
.featured-horses { background: #F0EBE1; }
.featured-horses h2 { color: var(--forest); margin-bottom: 8px; }
.featured-horses > .container > p { color: var(--muted); margin-bottom: 48px; }
.horse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.horse-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.horse-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.13); }
.horse-card img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
}
.horse-card-body { padding: 22px 24px; }
.horse-card-body h3 { color: var(--forest); margin-bottom: 4px; }
.horse-card-body .badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold); color: var(--white);
  padding: 3px 10px; margin-bottom: 10px;
}
.horse-card-body p { font-size: 0.9rem; color: var(--muted); }

/* ============================================================
   SECTION — TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--forest); color: var(--cream); }
.testimonials h2 { color: var(--cream); margin-bottom: 48px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  border-left: 3px solid var(--gold);
  padding: 28px 24px;
  background: rgba(255,255,255,0.05);
}
.testi-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(247,243,236,0.9);
  margin-bottom: 18px;
  line-height: 1.6;
}
.testi-author { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; color: var(--gold-lt); }
.testi-location { font-size: 0.8rem; color: rgba(247,243,236,0.5); }

/* ============================================================
   SECTION — CONTACT (shared)
   ============================================================ */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { color: var(--forest); margin-bottom: 16px; }
.contact-info p { color: #444; margin-bottom: 28px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.contact-detail .icon {
  font-size: 1.3rem; margin-top: 2px; flex-shrink: 0;
  color: var(--gold);
}
.contact-detail h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact-detail p { color: var(--charcoal); margin: 0; font-size: 0.95rem; }

.social-links { display: flex; gap: 14px; margin-top: 28px; }
.social-links a {
  width: 42px; height: 42px;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: border-color 0.2s, background 0.2s;
}
.social-links a:hover { border-color: var(--gold); background: var(--gold); color: var(--white); }
.social-links a.fb-icon svg { width: 19px; height: 19px; fill: var(--muted); transition: fill 0.2s; }
.social-links a.fb-icon:hover svg { fill: var(--white); }
.social-links a.ig-icon svg { width: 19px; height: 19px; transition: opacity 0.2s; }
.social-links a.ig-icon { position: relative; }
footer .social-links a { border-color: rgba(247,243,236,0.25); }
footer .social-links a.fb-icon svg { fill: rgba(247,243,236,0.8); }
footer .social-links a.fb-icon:hover svg { fill: var(--white); }
footer .social-links a.ig-icon svg { opacity: 0.85; }
footer .social-links a.ig-icon:hover svg { opacity: 1; }

/* Contact Form */
.contact-form { background: var(--white); padding: 40px; box-shadow: 0 4px 30px rgba(0,0,0,0.07); }
.contact-form h3 { font-family: var(--font-display); color: var(--forest); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 110px; }
#form-success {
  display: none;
  background: #e8f5e9; border: 1px solid #a5d6a7;
  padding: 16px; color: #2e7d32; margin-top: 16px; font-size: 0.9rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  color: rgba(247,243,236,0.65);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: var(--font-display);
  color: var(--cream); font-size: 1.4rem; margin-bottom: 8px;
}
.footer-brand p { font-size: 0.88rem; max-width: 280px; }
.footer-col h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-lt); margin-bottom: 16px;
}
.footer-col a {
  display: block; color: rgba(247,243,236,0.65);
  font-size: 0.9rem; margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--gold-lt); }
.footer-hashtag { color: var(--gold); font-style: italic; }

/* ============================================================
   PAGE: FOR SALE / INVENTORY
   ============================================================ */
.filter-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 0; }
.filters { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.filters label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.filters select { padding: 9px 16px; border: 1px solid var(--border); background: var(--cream); font-family: var(--font-body); font-size: 0.9rem; cursor: pointer; }

.horses-listing { background: var(--cream); }
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.listing-card {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.listing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.13); }
.listing-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.listing-card-body { padding: 22px 24px 28px; }
.listing-card-body h3 { color: var(--forest); font-size: 1.25rem; margin-bottom: 4px; }
.listing-card-body .tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.listing-details { margin: 14px 0; }
.listing-details dt, .listing-details dd { display: inline; font-size: 0.88rem; }
.listing-details dt { font-weight: 700; color: var(--muted); }
.listing-details dd { color: var(--charcoal); margin-left: 4px; margin-right: 14px; }
.listing-card-body p { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }
.listing-card-body .btn { font-size: 0.78rem; padding: 10px 22px; }

/* ============================================================
   PAGE: OPEN RIDING
   ============================================================ */
.riding-intro { background: var(--cream); }
.riding-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.riding-intro-grid img { width: 100%; aspect-ratio: 3/2; object-fit: cover; box-shadow: 12px 12px 0 var(--gold); }

.riding-features { background: var(--forest); color: var(--cream); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.feature-item { padding: 32px 28px; border: 1px solid rgba(184,146,42,0.25); }
.feature-item .icon { font-size: 2rem; margin-bottom: 14px; }
.feature-item h3 { color: var(--gold-lt); margin-bottom: 8px; }
.feature-item p { font-size: 0.9rem; color: rgba(247,243,236,0.75); }

.pricing-section { background: #F0EBE1; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.price-card {
  background: var(--white); padding: 40px 32px; text-align: center;
  border-top: 4px solid var(--border);
  transition: border-color 0.25s;
}
.price-card.featured { border-top-color: var(--gold); }
.price-card h3 { color: var(--forest); margin-bottom: 8px; }
.price-card .price {
  font-family: var(--font-display); font-size: 2.6rem;
  color: var(--gold); line-height: 1; margin: 16px 0 4px;
}
.price-card .price-note { font-size: 0.82rem; color: var(--muted); margin-bottom: 20px; }
.price-card ul { text-align: left; margin-bottom: 28px; }
.price-card ul li { font-size: 0.9rem; color: #444; padding: 6px 0; border-bottom: 1px solid var(--border); }
.price-card ul li::before { content: '✓ '; color: var(--gold); font-weight: 700; }

/* ============================================================
   PAGE: STALLIONS & ABOUT
   ============================================================ */
.stallions-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 48px; margin-top: 48px;
}
.stallion-card { background: var(--white); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.stallion-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.stallion-card-body { padding: 28px 32px; }
.stallion-card-body h2 { color: var(--forest); margin-bottom: 4px; }
.stallion-card-body .breed { font-size: 0.82rem; color: var(--gold); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.stallion-card-body p { color: #444; font-size: 0.93rem; }
.stallion-stats { display: flex; gap: 28px; margin: 20px 0; flex-wrap: wrap; }
.stallion-stats span { font-size: 0.82rem; }
.stallion-stats strong { display: block; font-size: 1rem; color: var(--forest); }

/* About page */
.team-section { background: var(--cream); }
.timeline { max-width: 700px; margin: 48px auto 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 2px; background: var(--gold); opacity: 0.3; }
.timeline-item { display: flex; gap: 32px; margin-bottom: 40px; }
.timeline-dot { flex-shrink: 0; width: 58px; height: 58px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; color: var(--white); font-style: italic; }
.timeline-body h3 { color: var(--forest); margin-bottom: 4px; }
.timeline-body p { font-size: 0.9rem; color: #555; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  cursor: pointer; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--forest);
}
.faq-q .icon { font-size: 1.3rem; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 24px; color: #444; font-size: 0.95rem; }
.faq-a.show { display: block; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mt-8 { margin-top: 8px; }
.divider { width: 60px; height: 2px; background: var(--gold); margin: 20px 0; }
.divider.center { margin: 20px auto; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  :root { --section-pad: 64px; }
  .two-col, .riding-banner, .contact-grid, .riding-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reversed { direction: ltr; }
  .strip-grid, .offerings-grid, .horse-grid, .testimonials-grid,
  .features-grid, .pricing-grid, .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stallions-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-pad: 48px; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 72px 0 0; background: var(--forest); padding: 32px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-toggle { display: flex; }
  .strip-grid, .offerings-grid, .horse-grid, .testimonials-grid,
  .features-grid, .pricing-grid, .listing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-rule { display: none; }
  .riding-banner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
