/* ========================================
   Mountain Valley Farms
   Ranch-badge brand system
   Black Iron / Bone / Brass with a pasture-green cue
   ======================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand palette */
  --black-iron: #171614;
  --black-top: #100f0d;
  --iron-2: #211d18;
  --bone: #e7d9bf;
  --paper: #f1e6d2;
  --paper-2: #f7eedd;
  --brass: #b88a3f;
  --brass-bright: #d2a45c;
  --brass-ink: #876326;      /* darkened brass for text on light */
  --pasture: #78905b;
  --deep-pasture: #293927;
  --leather: #85765f;
  --barn: #732e24;

  /* Functional tokens */
  --ink: #1c1a16;            /* headings on light */
  --body-ink: #423a2c;       /* body text on light */
  --body-soft: #6b6151;      /* secondary text on light */
  --line-dark: rgba(231, 217, 191, 0.16);   /* hairlines on dark */
  --line-light: #ddccae;     /* hairlines on light */
  --bone-muted: rgba(231, 217, 191, 0.74);  /* body text on dark */
  --bone-faint: rgba(231, 217, 191, 0.55);
  --panel-dark: rgba(16, 15, 13, 0.72);
  --shadow-dark: 0 26px 70px rgba(0, 0, 0, 0.45);
  --shadow-light: 0 18px 44px rgba(40, 30, 12, 0.10);

  --font-display: "Rokkitt", Rockwell, "Roboto Slab", Georgia, serif;
  --font-cond: "Oswald", "Bahnschrift", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", system-ui, -apple-system, sans-serif;

  --max-width: 1200px;
  --nav-height: 76px;
  --radius: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--body-ink);
  background: var(--paper);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brass-ink);
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover {
  color: var(--ink);
}

p {
  margin-bottom: 1rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: 0.005em;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 4.7rem);
  text-transform: uppercase;
  letter-spacing: 0.012em;
  line-height: 0.98;
  max-width: 15ch;
}

h2 {
  font-size: clamp(1.95rem, 4vw, 3.3rem);
  text-transform: uppercase;
  letter-spacing: 0.012em;
  line-height: 1.0;
}

h3 {
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

strong { color: inherit; }

.container {
  width: min(92vw, var(--max-width));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 2000;
  background: var(--brass);
  color: var(--black-iron);
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.7rem 1rem;
  border-radius: 4px;
}

.skip-link:focus { top: 1rem; }

/* Eyebrows / kickers */
.section-label,
.small-kicker,
.answer-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--brass-ink);
  margin-bottom: 0.9rem;
}

.section-label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brass);
  display: inline-block;
}

.lead {
  font-size: clamp(1.06rem, 1.7vw, 1.24rem);
  color: var(--body-ink);
  max-width: 60ch;
}

.local-signal {
  color: var(--deep-pasture);
  font-weight: 600;
  max-width: 60ch;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(20, 18, 15, 0.86);
  border-bottom: 1px solid rgba(184, 138, 63, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  line-height: 1;
}

.logo-badge {
  width: 50px;
  height: 50px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(184, 138, 63, 0.45);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.02;
  color: var(--bone);
}

.logo-text small {
  font-family: var(--font-cond);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--brass);
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: var(--font-cond);
  color: var(--bone-muted);
  font-size: 0.86rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-block: 0.4rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--bone);
  border-color: var(--brass);
}

.hamburger {
  display: none;
  border: 1px solid rgba(184, 138, 63, 0.55);
  background: transparent;
  border-radius: 6px;
  width: 46px;
  height: 42px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--bone);
  transition: background 0.2s ease;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 5px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease,
    border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: var(--black-iron);
  background: var(--brass);
  border-color: var(--brass);
  box-shadow: 0 10px 24px rgba(184, 138, 63, 0.28);
}

.btn-primary:hover {
  color: var(--black-iron);
  background: var(--brass-bright);
  border-color: var(--brass-bright);
}

.btn-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--brass);
}

.btn-outline:hover {
  color: var(--black-iron);
  background: var(--brass);
}

/* outline button when it sits on a dark field */
.on-dark .btn-outline,
.hero .btn-outline,
.cta-banner .btn-outline {
  color: var(--bone);
}

.on-dark .btn-outline:hover,
.hero .btn-outline:hover,
.cta-banner .btn-outline:hover {
  color: var(--black-iron);
  background: var(--brass);
}

.btn-light {
  color: var(--black-iron);
  background: var(--bone);
  border-color: var(--bone);
}

.btn-light:hover {
  color: var(--black-iron);
  background: #fff;
  border-color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.84rem;
  color: var(--brass-ink);
  border-bottom: 2px solid var(--brass);
  padding-bottom: 2px;
}

.text-link::after { content: "\2192"; }
.text-link:hover { color: var(--ink); }

/* ===== Dark surface helper ===== */
.on-dark {
  position: relative;
  color: var(--bone);
  background:
    linear-gradient(90deg, rgba(231,217,191,0.03) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(0deg, rgba(231,217,191,0.022) 1px, transparent 1px) 0 0 / 46px 46px,
    radial-gradient(circle at 16% 6%, rgba(120,144,91,0.22), transparent 32rem),
    linear-gradient(135deg, var(--black-top), var(--black-iron) 50%, #221c16);
}

.on-dark h1,
.on-dark h2,
.on-dark h3 { color: var(--bone); }

.on-dark p { color: var(--bone-muted); }

.on-dark .section-label,
.on-dark .small-kicker,
.on-dark .answer-label { color: var(--brass); }

/* ===== Hero ===== */
.hero {
  padding: calc(var(--nav-height) + 4.5rem) 0 5rem;
  border-bottom: 1px solid var(--line-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero-content h1 { margin-bottom: 1.25rem; }
.hero-content .lead { margin-bottom: 1rem; }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

/* Hero brand mark (badge in a rotated double frame) */
.farm-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
}

.farm-visual::before,
.farm-visual::after {
  content: "";
  position: absolute;
  inset: 8% 6%;
  border: 1px solid rgba(184, 138, 63, 0.36);
  border-radius: 6px;
  transform: rotate(5deg);
}

.farm-visual::after {
  inset: 14% 12%;
  border-color: rgba(231, 217, 191, 0.16);
  transform: rotate(-4deg);
}

.hero-badge {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  filter: drop-shadow(0 26px 50px rgba(0, 0, 0, 0.55));
}

.farm-visual-card {
  position: relative;
  z-index: 2;
  margin-top: 1.4rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1.4rem;
  text-align: center;
  background: rgba(16, 15, 13, 0.65);
  border: 1px solid rgba(184, 138, 63, 0.4);
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.farm-visual-card .small-kicker { margin-bottom: 0.1rem; }

.farm-visual-card strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--bone);
  letter-spacing: 0.02em;
}

.farm-visual-card span:last-child {
  color: var(--bone-faint);
  font-size: 0.86rem;
}

.ridge-lines { display: none; }

/* ===== Photo treatments ===== */
.has-photo { position: relative; overflow: hidden; isolation: isolate; }

.bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: 0;
}

.bg-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.hero.has-photo .bg-overlay {
  background:
    radial-gradient(circle at 16% 24%, rgba(120, 144, 91, 0.20), transparent 30rem),
    linear-gradient(105deg, rgba(16, 15, 13, 0.95) 0%, rgba(16, 15, 13, 0.80) 42%, rgba(16, 15, 13, 0.55) 100%),
    linear-gradient(0deg, rgba(16, 15, 13, 0.78), transparent 52%);
}

.hero.has-photo .hero-grid { position: relative; z-index: 2; }

.cta-banner.has-photo .bg-overlay {
  background:
    radial-gradient(circle at 80% 16%, rgba(120, 144, 91, 0.22), transparent 24rem),
    linear-gradient(0deg, rgba(16, 15, 13, 0.90), rgba(16, 15, 13, 0.64));
}

.cta-banner.has-photo .cta-inner { position: relative; z-index: 2; }

.page-header.has-photo .bg-overlay {
  background:
    radial-gradient(circle at 18% 28%, rgba(120, 144, 91, 0.18), transparent 26rem),
    linear-gradient(105deg, rgba(16, 15, 13, 0.93) 0%, rgba(16, 15, 13, 0.78) 45%, rgba(16, 15, 13, 0.55) 100%),
    linear-gradient(0deg, rgba(16, 15, 13, 0.70), transparent 60%);
}

.page-header.has-photo .container { position: relative; z-index: 2; }

@media (max-width: 760px) {
  .page-header.has-photo .bg-overlay {
    background:
      radial-gradient(circle at 20% 16%, rgba(120, 144, 91, 0.16), transparent 20rem),
      linear-gradient(0deg, rgba(16, 15, 13, 0.92), rgba(16, 15, 13, 0.76));
  }
}

/* ===== Page header (interior pages) ===== */
.page-header {
  padding: calc(var(--nav-height) + 3.5rem) 0 3.5rem;
  border-bottom: 1px solid var(--line-dark);
}

.page-header h1 { margin-bottom: 1rem; max-width: 18ch; }
.page-header p { font-size: 1.1rem; max-width: 60ch; }

/* two-column page header with a framed photo (About) */
.page-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.82fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.page-header-grid h1 { max-width: 16ch; }
.page-header-grid p:last-child { margin-bottom: 0; }

.header-photo-frame { position: relative; }

.header-photo-frame::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(184, 138, 63, 0.4);
  border-radius: 12px;
  transform: rotate(-2.5deg);
  z-index: 0;
}

.header-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(184, 138, 63, 0.55);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
}

/* ===== Sections ===== */
.section { padding: clamp(3.5rem, 6vw, 6rem) 0; }

.section-alt {
  background:
    linear-gradient(90deg, rgba(135, 99, 38, 0.05) 1px, transparent 1px) 0 0 / 40px 40px,
    var(--paper-2);
  border-block: 1px solid var(--line-light);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header .section-label { justify-content: center; }
.section-header h2 { margin-bottom: 0.9rem; }
.section-header p { color: var(--body-soft); }

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.split-copy h2,
.story-panel h2 { margin-bottom: 1.1rem; }
.split-copy p { color: var(--body-soft); }
.split-copy .text-link { margin-top: 0.5rem; }

/* ===== Proof strip ===== */
.proof-strip {
  background:
    radial-gradient(circle at 80% 20%, rgba(120,144,91,0.18), transparent 22rem),
    linear-gradient(135deg, var(--black-top), var(--black-iron) 60%, var(--iron-2));
  color: var(--bone);
  padding: 2rem 0;
  border-block: 1px solid rgba(184, 138, 63, 0.4);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.proof-grid div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--brass);
}

.proof-grid strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.proof-grid span {
  color: var(--bone-muted);
  font-size: 0.88rem;
}

/* ===== Cards ===== */
.answer-grid,
.features-grid,
.products-grid,
.steps-grid,
.values-grid,
.cuts-grid {
  display: grid;
  gap: 1.4rem;
}

.answer-grid { grid-template-columns: repeat(3, 1fr); }
.products-grid,
.steps-grid { grid-template-columns: repeat(3, 1fr); }
.values-grid { grid-template-columns: repeat(4, 1fr); }

.answer-card,
.product-card,
.step-card,
.value-item,
.cut-card,
.faq-item,
.fact-sheet,
.story-panel,
.contact-info {
  background: var(--paper-2);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
}

.answer-card {
  padding: 1.7rem;
  border-top: 3px solid var(--brass);
}

.answer-card h3 { margin-bottom: 0.7rem; }
.answer-card p { color: var(--body-soft); margin-bottom: 0; }

.answer-label { margin-bottom: 0.7rem; }

/* values + steps text color */
.value-item p,
.step-card p,
.cut-card p,
.faq-item p { color: var(--body-soft); }

.answer-card p:last-child,
.step-card p:last-child,
.value-item p:last-child,
.cut-card p:last-child,
.faq-item p:last-child { margin-bottom: 0; }

/* signal list */
.signal-list {
  display: grid;
  gap: 1rem;
}

.signal-list div {
  padding: 1.3rem 1.5rem;
  background: var(--paper-2);
  border: 1px solid var(--line-light);
  border-left: 4px solid var(--brass);
  border-radius: 6px;
  box-shadow: var(--shadow-light);
}

.signal-list h3 { margin-bottom: 0.35rem; font-size: 1.18rem; }
.signal-list p { color: var(--body-soft); margin-bottom: 0; }

/* steps */
.step-card,
.value-item { padding: 1.7rem; }

.value-item { border-top: 3px solid var(--pasture); }
.value-item h3 { margin-bottom: 0.5rem; }

.step-card {
  position: relative;
  padding-top: 2.6rem;
}

.step-card span {
  position: absolute;
  top: 1.3rem;
  left: 1.7rem;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--brass);
  line-height: 1;
}

.step-card h3 { margin-bottom: 0.55rem; }

/* ===== Products ===== */
.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card.featured {
  border-color: var(--brass);
  box-shadow: 0 22px 48px rgba(184, 138, 63, 0.22);
  transform: translateY(-4px);
}

.product-topline {
  background: var(--deep-pasture);
  color: var(--bone);
  padding: 0.65rem 1.35rem;
  font-family: var(--font-cond);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.product-card.featured .product-topline {
  background: var(--brass);
  color: var(--black-iron);
}

.product-body { padding: 1.7rem; }
.product-body h3 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.product-body > p { color: var(--body-soft); }

.product-price {
  font-family: var(--font-cond);
  color: var(--brass-ink);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.mini-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-light);
}

.mini-list li {
  color: var(--body-ink);
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.92rem;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--brass);
  transform: rotate(45deg);
}

/* cuts guide */
.cuts-guide {
  display: grid;
  gap: 3rem;
}

.cuts-category-label {
  display: inline-block;
  background: var(--deep-pasture);
  color: var(--bone);
  font-family: var(--font-cond);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}

.cuts-category-desc {
  max-width: 680px;
  color: var(--body-soft);
  margin-bottom: 1.4rem;
}

.cuts-grid { grid-template-columns: repeat(3, 1fr); }

.cut-card { padding: 1.4rem; }
.cut-card h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }

.cut-method {
  display: inline-block;
  margin-top: 0.6rem;
  background: var(--paper);
  border: 1px solid var(--line-light);
  color: var(--brass-ink);
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 4px;
}

/* faq */
.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin-inline: auto;
}

.faq-item { padding: 1.5rem 1.7rem; }
.faq-item h3 { margin-bottom: 0.5rem; font-size: 1.18rem; }

/* ===== About: fact sheet ===== */
.fact-sheet,
.story-panel { padding: 1.9rem; }

.fact-sheet h2 { font-size: 1.7rem; margin-bottom: 1.2rem; }

.fact-sheet dl { display: grid; gap: 0.95rem; }

.fact-sheet dl div {
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--line-light);
}

.fact-sheet dl div:last-child { border-bottom: 0; padding-bottom: 0; }

.fact-sheet dt {
  font-family: var(--font-cond);
  color: var(--brass-ink);
  font-weight: 600;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.fact-sheet dd {
  color: var(--ink);
  font-weight: 500;
  margin-top: 0.2rem;
}

.story-panel p { color: var(--body-soft); }
.story-panel p:last-child { margin-bottom: 0; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.contact-form { display: grid; gap: 1.1rem; }

.form-group label {
  display: block;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.form-group label span,
.form-note { color: var(--body-soft); font-weight: 400; font-size: 0.9rem; }
.form-group label span { text-transform: none; letter-spacing: 0; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: 0.8rem 0.95rem;
  background: var(--paper-2);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(184, 138, 63, 0.22);
}

.form-note { margin-top: 0.3rem; }

.form-status {
  margin: 0;
  min-height: 1.4rem;
  font-weight: 600;
}

.form-status.success { color: var(--deep-pasture); }
.form-status.warning,
.form-status.error { color: var(--barn); }

.contact-info { padding: 1.8rem; }
.contact-info h2 { font-size: 1.6rem; margin-bottom: 1.2rem; }

.info-item {
  padding-block: 1rem;
  border-bottom: 1px solid var(--line-light);
}
.info-item:last-of-type { border-bottom: 0; }

.info-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.info-item p { color: var(--body-soft); margin-bottom: 0; }

.map-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  color: var(--bone);
  background:
    radial-gradient(circle at 80% 20%, rgba(120,144,91,0.25), transparent 18rem),
    linear-gradient(135deg, var(--black-top), var(--deep-pasture));
  border: 1px solid rgba(184, 138, 63, 0.4);
}

.map-card .small-kicker { color: var(--brass); }
.map-card h3 { color: var(--bone); margin-bottom: 0.5rem; }
.map-card p { color: var(--bone-muted); margin-bottom: 0; }

/* ===== CTA banner ===== */
.cta-banner {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.cta-inner {
  max-width: 820px;
  text-align: center;
  margin-inline: auto;
}

.cta-inner .section-label { justify-content: center; }
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { margin-bottom: 1.6rem; }
.cta-banner .btn { margin-top: 0.2rem; }

/* ===== Brand emblem band ===== */
.brand-emblem { text-align: center; }
.brand-emblem .section-label { justify-content: center; }

.emblem-frame {
  position: relative;
  display: block;
  width: min(100%, 620px);
  margin: 0.5rem auto 1.6rem;
}

.emblem-frame::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(184, 138, 63, 0.38);
  border-radius: 16px;
  z-index: 0;
}

.emblem-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(184, 138, 63, 0.5);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55);
}

.emblem-caption {
  max-width: 48ch;
  margin: 0 auto;
  font-size: 1.06rem;
}

/* ===== 404 page ===== */
.error-section {
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
  padding-block: clamp(4rem, 10vh, 8rem);
}

.error-inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.error-inner .section-label { justify-content: center; }
.error-inner h1 { margin-bottom: 1.1rem; }
.error-inner p { margin-bottom: 1.9rem; font-size: 1.1rem; }
.error-inner .hero-buttons { justify-content: center; margin-top: 0; }

/* ===== Footer ===== */
.footer {
  color: var(--bone-muted);
  padding: 3.5rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 2.5rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.footer-badge {
  width: 64px;
  height: 64px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(184, 138, 63, 0.45);
}

.footer-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.0;
  color: var(--bone);
}

.footer-wordmark small {
  font-family: var(--font-cond);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--brass);
  text-transform: uppercase;
}

.footer h2 {
  font-family: var(--font-cond);
  color: var(--bone);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.footer p, .footer li, .footer a { color: var(--bone-muted); }
.footer-brand p { max-width: 440px; }

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer a:hover { color: var(--bone); }

.footer-bottom {
  margin-top: 2.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-dark);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--bone-faint);
}

/* ===== Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid,
  .page-header-grid,
  .split-grid,
  .split-grid.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-header-grid .header-photo-frame { max-width: 460px; }

  .split-grid.reverse .signal-list { order: 2; }

  .hero { padding-top: calc(var(--nav-height) + 3rem); }

  .farm-visual { min-height: 380px; }

  .proof-grid,
  .answer-grid,
  .products-grid,
  .steps-grid,
  .values-grid,
  .cuts-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card.featured { transform: none; }
}

@media (max-width: 760px) {
  .hamburger { display: block; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: min(82vw, 340px);
    height: calc(100vh - var(--nav-height));
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 1.6rem;
    background: var(--black-iron);
    border-left: 1px solid rgba(184, 138, 63, 0.4);
    transition: right 0.25s ease;
  }

  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }

  .logo-badge { width: 44px; height: 44px; }
  .logo-text { font-size: 0.98rem; }
  .logo-text small { display: none; }

  .footer-wordmark { font-size: 1.2rem; }
  .footer-badge { width: 54px; height: 54px; }

  .section { padding: 3.5rem 0; }

  .proof-grid,
  .answer-grid,
  .products-grid,
  .steps-grid,
  .values-grid,
  .cuts-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .farm-visual { min-height: 320px; }

  .hero-buttons { align-items: stretch; }
  .hero-buttons .btn,
  .cta-banner .btn { width: 100%; }

  .hero.has-photo .bg-overlay {
    background:
      radial-gradient(circle at 20% 14%, rgba(120, 144, 91, 0.18), transparent 22rem),
      linear-gradient(0deg, rgba(16, 15, 13, 0.92), rgba(16, 15, 13, 0.74));
  }
}

@media (max-width: 480px) {
  .logo-text { display: none; }
  .logo-badge { width: 42px; height: 42px; }
}
