/* ═══════════════════════════════════════════
   FREEDOM FARM — Main Stylesheet
   Ashtabula County, Ohio
═══════════════════════════════════════════ */

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

:root {
  --barn-red: #8B1A1A;
  --deep-red: #6B1111;
  --cream: #F5F0E8;
  --warm-white: #FDFAF4;
  --navy: #1C2B4A;
  --deep-navy: #0F1A2E;
  --sky-blue: #4A7BA8;
  --cornflower: #6B93C4;
  --wheat: #C8A96A;
  --straw: #E8D5A3;
  --earth: #7A5C3A;
  --bark: #5C3D1E;
  --sage: #7A9B6C;
  --text-dark: #2A1F14;
  --text-mid: #5A4A38;
  --text-light: #8A7A6A;
}

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

body {
  font-family: 'Crimson Pro', Georgia, serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 26, 46, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--barn-red);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: 0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo span { color: var(--wheat); }

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
}

.nav-links li a {
  display: block;
  padding: 8px 14px;
  color: rgba(245, 240, 232, 0.8);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
  border-radius: 3px;
}

.nav-links li a:hover,
.nav-links li a.active { color: var(--wheat); background: rgba(200,169,106,0.1); }

.nav-cta {
  background: var(--barn-red) !important;
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 3px !important;
}

.nav-cta:hover { background: var(--deep-red) !important; }

/* Mobile nav toggle */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ─── HERO (home) ─── */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep-navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,26,46,0.3) 0%, rgba(15,26,46,0.5) 60%, rgba(15,26,46,0.85) 100%),
    linear-gradient(135deg, #1a3a5c 0%, #2a5c3a 30%, #4a2a1a 60%, #1a2a4a 100%);
}

.hero-landscape {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(15,26,46,0.95) 0%, transparent 100%);
}

.hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 200px 200px, 300px 300px, 150px 150px;
  background-position: 0 0, 100px 50px, 50px 120px;
  opacity: 0.4;
}

.hero-stripe-left {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--barn-red) 33%, white 33%, white 67%, var(--navy) 67%);
}

.hero-stripe-right {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--barn-red) 33%, white 33%, white 67%, var(--navy) 67%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wheat);
  border: 1px solid var(--wheat);
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero h1 em { font-style: italic; color: var(--wheat); }

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(245,240,232,0.85);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 14px;
}

.hero-location {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cornflower);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,232,0.5);
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(245,240,232,0.5), transparent); }

/* ─── INTERIOR PAGE HERO ─── */
.page-hero {
  height: 420px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 48px 60px;
  overflow: hidden;
  margin-top: 64px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12rem;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,26,46,0.92) 30%, rgba(15,26,46,0.4) 100%);
}

.page-hero-content { position: relative; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 10px;
}

.page-hero h1 em { color: var(--wheat); font-style: italic; }

.page-hero p {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.75);
  font-weight: 300;
  font-style: italic;
  max-width: 540px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--barn-red);
  color: white;
  padding: 16px 36px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid var(--barn-red);
  transition: all 0.25s;
  cursor: pointer;
}

.btn-primary:hover { background: var(--deep-red); border-color: var(--deep-red); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,26,26,0.4); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  padding: 16px 36px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid rgba(245,240,232,0.5);
  transition: all 0.25s;
  cursor: pointer;
}

.btn-outline:hover { border-color: var(--cream); background: rgba(245,240,232,0.1); transform: translateY(-2px); }

.btn-card {
  display: block;
  text-align: center;
  background: var(--barn-red);
  color: white;
  padding: 14px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  text-decoration: none;
}

.btn-card:hover { background: var(--deep-red); transform: translateY(-1px); }
.price-card.featured .btn-card { background: var(--navy); }
.price-card.featured .btn-card:hover { background: var(--deep-navy); }

/* ─── SECTION COMMONS ─── */
section { padding: 80px 40px; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--barn-red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--barn-red);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title em { color: var(--barn-red); font-style: italic; }

.section-body {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 640px;
  font-weight: 300;
}

/* ─── LAYOUT ─── */
.content-wrap { max-width: 1200px; margin: 0 auto; }
.inner-wrap { max-width: 1100px; margin: 0 auto; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ─── BACKGROUNDS ─── */
.bg-cream { background: var(--cream); }
.bg-white { background: white; }
.bg-barn-pattern {
  background-color: var(--cream);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(90,74,56,0.03) 20px, rgba(90,74,56,0.03) 40px);
}

/* ─── DIVIDERS ─── */
.patriot-divider {
  height: 3px;
  background: linear-gradient(to right, var(--barn-red) 33%, white 33%, white 67%, var(--navy) 67%);
}

/* ─── EXPERIENCE CARDS ─── */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.exp-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(90,74,56,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.exp-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }

.exp-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.exp-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s;
}

.exp-card:hover .exp-img-inner { transform: scale(1.06); }

.img-farmhouse { background: linear-gradient(160deg, #4a6741 0%, #7a9b6c 30%, #c8a96a 60%, #8B4513 80%, #5c3d1e 100%); }
.img-wedding { background: linear-gradient(160deg, #f5f0e8 0%, #e8d5a3 30%, #c8a96a 50%, #6b93c4 80%, #1c2b4a 100%); }
.img-glamping { background: linear-gradient(160deg, #0f1a2e 0%, #1c2b4a 30%, #4a7ba8 60%, #7a5c3a 80%, #5c3d1e 100%); }
.img-horses { background: linear-gradient(160deg, #7a9b6c 0%, #c8a96a 30%, #e8d5a3 50%, #8B4513 70%, #7a5c3a 100%); }
.img-store { background: linear-gradient(160deg, #5c3d1e 0%, #7a5c3a 30%, #c8a96a 60%, #f5f0e8 100%); }
.img-events { background: linear-gradient(160deg, #8b1a1a 0%, #c8a96a 30%, #1c2b4a 70%, #0f1a2e 100%); }

.exp-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.exp-body { padding: 24px; }

.exp-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.exp-body p {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 300;
}

.exp-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--barn-red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.exp-card:hover .exp-link { gap: 12px; }

/* ─── AREA STRIP ─── */
.area-strip {
  background: var(--navy);
  padding: 60px 40px;
  text-align: center;
}

.area-strip .section-label { justify-content: center; }
.area-strip .section-label::after { display: none; }
.area-strip .section-title { color: var(--cream); }

.area-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,240,232,0.08);
  border: 1px solid rgba(245,240,232,0.2);
  padding: 10px 20px;
  border-radius: 2px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--straw);
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.gal-cell { position: relative; overflow: hidden; }
.gal-cell:first-child { grid-row: span 2; }

.gal-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  transition: transform 0.5s;
}

.gal-cell:hover .gal-img { transform: scale(1.08); }

.gal-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,26,46,0.85), transparent);
  padding: 20px 16px 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--straw);
}

.g1 { background: linear-gradient(145deg, #4a6741, #7a9b6c, #c8a96a, #5c3d1e); }
.g2 { background: linear-gradient(145deg, #0f1a2e, #1c2b4a, #4a7ba8); }
.g3 { background: linear-gradient(145deg, #8b1a1a, #c8a96a, #f5f0e8); }
.g4 { background: linear-gradient(145deg, #7a5c3a, #c8a96a, #7a9b6c); }
.g5 { background: linear-gradient(145deg, #1c2b4a, #6b93c4, #e8d5a3); }

/* ─── QUOTE BAND ─── */
.quote-band {
  background: var(--barn-red);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: '"';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 20rem;
  color: rgba(255,255,255,0.05);
  top: -60px; left: 40px;
  line-height: 1;
}

.quote-band blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: white;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  position: relative;
}

.quote-band cite {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 16px;
}

/* ─── PRICING CARDS ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.price-card {
  background: white;
  border: 1px solid rgba(90,74,56,0.15);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.price-card-accent { height: 5px; background: linear-gradient(to right, var(--barn-red), var(--wheat)); }
.price-card.featured .price-card-accent { background: linear-gradient(to right, var(--navy), var(--cornflower)); }
.price-card.featured { border-color: var(--navy); box-shadow: 0 8px 32px rgba(28,43,74,0.15); }

.price-card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--navy);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.price-card-body { padding: 28px; }

.price-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.price-card-body .price-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
}

.price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }

.price-from {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.price-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--barn-red);
}

.price-per { font-size: 0.85rem; color: var(--text-light); }

.price-range {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.price-features { list-style: none; margin-bottom: 24px; }

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(90,74,56,0.08);
  font-size: 0.95rem;
  color: var(--text-mid);
}

.price-features li:last-child { border-bottom: none; }
.check { color: var(--sage); font-weight: bold; flex-shrink: 0; margin-top: 2px; }

/* ─── FEATURE GRID ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }

.feature-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.feature-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }

/* ─── SCENE BLOCKS (image placeholders) ─── */
.scene-block {
  height: 380px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}

/* ─── INFO BOX ─── */
.info-box {
  background: linear-gradient(135deg, var(--navy), var(--deep-navy));
  color: white;
  padding: 32px 36px;
  border-radius: 4px;
  border-left: 4px solid var(--wheat);
  margin-top: 32px;
}

.info-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--wheat);
  margin-bottom: 8px;
}

.info-box p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.65; }

/* ─── IMG CAPTION ─── */
.img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(15,26,46,0.8);
  padding: 8px 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--straw);
}

/* ─── EVENTS GRID ─── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.event-card {
  background: white;
  border-radius: 4px;
  border: 1px solid rgba(90,74,56,0.12);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

.event-header {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.event-season {
  position: absolute;
  top: 12px; right: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 4px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.event-body { padding: 20px 22px 22px; }

.event-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.event-body p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.55; }

/* ─── PRODUCTS GRID ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.product-card {
  background: white;
  border: 1px solid rgba(90,74,56,0.12);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(0,0,0,0.1); }
.product-icon { font-size: 3rem; margin-bottom: 16px; display: block; }

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; margin-bottom: 16px; }

.product-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--barn-red);
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  border: 1px solid var(--straw);
}

/* ─── STATS ROW ─── */
.stats-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--barn-red);
  display: block;
}

.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--deep-navy));
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '🌾';
  position: absolute;
  font-size: 15rem;
  opacity: 0.04;
  top: -30px; right: -30px;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.7);
  font-style: italic;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-primary,
.cta-band .btn-outline { margin: 0 8px 8px; }

/* ─── CONTACT FORM ─── */
.contact-form {
  background: white;
  border: 1px solid rgba(90,74,56,0.15);
  border-radius: 4px;
  padding: 40px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(90,74,56,0.25);
  border-radius: 2px;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--barn-red); }

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── FOOTER ─── */
footer {
  background: var(--deep-navy);
  padding: 64px 40px 32px;
  color: rgba(245,240,232,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
}

.footer-brand h2 span { color: var(--wheat); }

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  color: rgba(245,240,232,0.6);
  margin-bottom: 20px;
}

.footer-stripe { display: flex; height: 4px; width: 80px; border-radius: 2px; overflow: hidden; }
.stripe-r { flex: 1; background: var(--barn-red); }
.stripe-w { flex: 1; background: white; }
.stripe-b { flex: 1; background: var(--cornflower); }

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--wheat); }

.footer-contact p { font-size: 0.9rem; color: rgba(245,240,232,0.6); line-height: 1.8; }
.footer-contact strong { color: var(--straw); font-weight: 400; }
.footer-contact a { color: var(--cornflower); text-decoration: none; }
.footer-contact a:hover { color: var(--wheat); }

.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(245,240,232,0.35); }

/* ─── 404 PAGE ─── */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--deep-navy), var(--navy));
  padding: 40px;
}

.not-found-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--wheat);
  opacity: 0.3;
  line-height: 1;
}

.not-found-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 16px;
}

.not-found-content p {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.65);
  font-style: italic;
  margin-bottom: 32px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--deep-navy); flex-direction: column; padding: 16px; border-bottom: 2px solid var(--barn-red); }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 12px 16px; font-size: 0.85rem; }
  .nav-hamburger { display: flex; }
  section { padding: 60px 24px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse { direction: ltr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-cell:first-child { grid-row: auto; }
  .gal-img { height: 180px; }
  .page-hero { padding: 32px 24px; height: 320px; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; max-width: 280px; text-align: center; }
  .stats-row { gap: 20px; }
}
