:root {
  --soil-950: #17130e;
  --soil-900: #211a12;
  --soil-800: #2c2317;
  --parchment-100: #f5eedd;
  --parchment-200: #ede1c4;
  --wheat-400: #d9ac4c;
  --wheat-500: #c1922f;
  --wheat-700: #8a6521;
  --leaf-500: #57703f;
  --leaf-700: #384a2a;
  --ink: #241d13;
  --ink-soft: #4a4030;
  --cream-text: #f4ecd8;
  --line-soft: rgba(36, 29, 19, 0.14);
  --line-soft-dark: rgba(245, 238, 221, 0.16);

  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", monospace;

  --container: 1160px;
  --radius: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------- reset -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--parchment-100);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 2.5px solid var(--wheat-700);
  outline-offset: 3px;
}

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

.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 420px) {
  .wrap { padding-inline: 18px; }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wheat-700);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--wheat-700);
}

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 48px 0; }
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.12; margin-top: 14px; }
.section-head p { margin-top: 16px; font-size: 17px; color: var(--ink-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15.5px;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), background 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--wheat-700); color: var(--cream-text); }
.btn-primary:hover { background: var(--soil-900); }
.btn-ghost { border-color: var(--line-soft); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--wheat-700); }
.btn-ghost-dark { border-color: var(--line-soft-dark); color: var(--cream-text); }
.btn-ghost-dark:hover { border-color: var(--wheat-400); }

/* ------------------------------ top call bar ------------------------------ */
.topbar {
  background: var(--soil-950);
  color: var(--cream-text);
  font-family: var(--font-mono);
  font-size: 12.5px;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 8px;
  gap: 12px;
}
.topbar a { display: inline-flex; align-items: center; gap: 6px; opacity: 0.9; transition: opacity .2s; white-space: nowrap; }
.topbar a:hover { opacity: 1; color: var(--wheat-400); }
.topbar-links { display: flex; gap: 20px; }

@media (max-width: 680px) {
  .topbar { display: none; }
}

/* --------------------------------- header --------------------------------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 238, 221, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.brand-mark { height: 40px; width: auto; max-width: 160px; object-fit: contain; }
.brand small { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--ink-soft); font-weight: 500; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 15px; font-weight: 500; position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--wheat-700); transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wheat-700); color: var(--cream-text);
  padding: 10px 18px; border-radius: var(--radius); font-weight: 600; font-size: 14.5px;
  transition: background 0.25s ease, transform .3s var(--ease);
}
.nav-call:hover { background: var(--soil-900); transform: translateY(-2px); }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1.5px solid var(--line-soft); border-radius: var(--radius);
    background: transparent;
  }
  .nav-call span.label-full { display: none; }
  .nav-call { padding: 10px 14px; }
}

@media (max-width: 480px) {
  .brand small { display: none; }
  .brand-mark { max-width: 110px; height: 32px; }
  .brand > span { font-size: 17px; }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--line-soft);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 4px; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--line-soft); }

/* ---------------------------------- hero ---------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--soil-900) 0%, var(--soil-950) 100%);
  color: var(--cream-text);
  overflow: hidden;
  padding-top: 30px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.06;
  margin-top: 18px;
  color: var(--cream-text);
}
.hero h1 em { font-style: italic; color: var(--wheat-400); }
.hero-sub { margin-top: 22px; font-size: 18px; color: rgba(244,236,216,0.82); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-art { position: relative; height: 420px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { height: 260px; order: -1; }
}

/* hero image slideshow */
.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft-dark);
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.slide.is-active { opacity: 1; }
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,19,14,0) 45%, rgba(23,19,14,0.55) 100%);
}
/* Fallback tints shown until real photos are added to /images */
.slide-1 { background-color: #4a3a1f; }
.slide-2 { background-color: #384a2a; }
.slide-3 { background-color: #6b4e1c; }

.slide-dots {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1.5px solid rgba(244,236,216,0.6);
  background: transparent;
  padding: 0;
  transition: background .3s ease, transform .3s ease;
}
.dot.is-active { background: var(--wheat-400); border-color: var(--wheat-400); transform: scale(1.25); }

/* grain ticker */
.ticker {
  border-top: 1px solid var(--line-soft-dark);
  border-bottom: 1px solid var(--line-soft-dark);
  background: var(--soil-950);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll-left 26s linear infinite;
}
.ticker-track span {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wheat-400);
  padding: 14px 28px;
  border-right: 1px solid var(--line-soft-dark);
  white-space: nowrap;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --------------------------------- about ---------------------------------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.about-copy p { font-size: 17px; color: var(--ink-soft); margin-top: 18px; }
.about-copy p + p { margin-top: 14px; }
.about-quote {
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--wheat-700);
  max-width: 42ch;
}
.facts-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.fact-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px 18px;
  background: var(--parchment-200);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.fact-card:hover { transform: translateY(-3px); border-color: var(--wheat-500); }
.fact-icon { width: 22px; height: 22px; color: var(--wheat-700); margin-bottom: 12px; }
.fact-card strong { display: block; font-family: var(--font-display); font-size: 19px; margin-bottom: 4px; }
.fact-card span { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .facts-list { grid-template-columns: 1fr 1fr; gap: 12px; }
  .fact-card { padding: 16px 14px; }
  .fact-card strong { font-size: 16.5px; }
}

/* -------------------------------- offerings -------------------------------- */
.silo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.silo-card {
  position: relative;
  border-radius: var(--radius);
  background: var(--soil-900);
  color: var(--cream-text);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow .4s var(--ease);
}
.silo-card:hover { transform: translateY(-6px); box-shadow: 0 18px 34px rgba(23,19,14,0.22); }

.silo-photo {
  height: 168px;
  width: 100%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
/* Fallback tints shown until real photos are added to /images */
.silo-photo-1 { background-color: #6b4e1c; }
.silo-photo-2 { background-color: #4f6b3f; }
.silo-photo-3 { background-color: #8a6521; }
.silo-photo-4 { background-color: #384a2a; }

.silo-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex-grow: 1; }
.silo-card .silo-icon { width: 32px; height: 32px; color: var(--wheat-400); margin-top: 16px; }
.silo-card h3 { font-size: 20px; margin-top: 14px; color: var(--cream-text); }
.silo-card p { font-size: 14.5px; color: rgba(244,236,216,0.72); margin-top: 10px; }
.silo-tag {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--wheat-400); border: 1px solid var(--line-soft-dark); border-radius: 100px;
  padding: 4px 10px; align-self: flex-start;
}

@media (max-width: 980px) { .silo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .silo-grid { grid-template-columns: 1fr; } }

/* ---------------------------------- why ------------------------------------ */
.why-section { background: var(--parchment-200); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.why-card { background: var(--parchment-100); padding: 30px 24px; }
.why-card .why-icon { width: 30px; height: 30px; color: var(--leaf-500); margin-bottom: 16px; }
.why-card h3 { font-size: 17.5px; }
.why-card p { font-size: 14.5px; color: var(--ink-soft); margin-top: 8px; }

@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* --------------------------------- contact --------------------------------- */
.contact-section {
  background: var(--soil-950);
  color: var(--cream-text);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-section .eyebrow { color: var(--wheat-400); }
.contact-section .eyebrow::before { background: var(--wheat-400); }
.contact-section h2 { color: var(--cream-text); }
.contact-list { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.contact-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 16px;
  border: 1px solid var(--line-soft-dark);
  border-radius: var(--radius);
  background: rgba(244,236,216,0.03);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.contact-row:hover {
  background: rgba(244,236,216,0.07);
  border-color: var(--wheat-400);
  transform: translateX(4px);
}
.contact-row .ic-wrap {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%;
  background: rgba(217,172,76,0.12);
  display: flex; align-items: center; justify-content: center;
}
.contact-row .ic { width: 19px; height: 19px; color: var(--wheat-400); }
.contact-text { display: flex; flex-direction: column; gap: 3px; flex-grow: 1; min-width: 0; }
.contact-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(244,236,216,0.55);
}
.contact-value { font-size: 16.5px; font-weight: 600; word-break: break-word; }
.contact-arrow {
  font-size: 17px; color: var(--wheat-400); opacity: 0; transform: translateX(-6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease); flex-shrink: 0;
}
.contact-row:hover .contact-arrow { opacity: 1; transform: translateX(0); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft-dark);
  height: 100%;
  min-height: 340px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(0.15) contrast(1.05); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-frame { min-height: 260px; }
  .map-frame iframe { min-height: 260px; }
}

/* --------------------------------- footer ---------------------------------- */
footer.site {
  background: var(--soil-950);
  color: rgba(244,236,216,0.65);
  border-top: 1px solid var(--line-soft-dark);
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-block: 56px 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; max-width: 320px; }
.footer-logo { height: 34px; width: auto; max-width: 140px; object-fit: contain; margin-bottom: 4px; }
.footer-name { font-family: var(--font-display); font-size: 19px; color: var(--cream-text); font-weight: 600; }
.footer-brand p { font-size: 13.5px; line-height: 1.6; color: rgba(244,236,216,0.55); }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-heading {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--wheat-400); margin-bottom: 4px;
}
.footer-col a, .footer-col span.footer-address { color: rgba(244,236,216,0.72); font-size: 14px; transition: color .2s ease; }
.footer-col a:hover { color: var(--wheat-400); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-block: 20px;
  border-top: 1px solid var(--line-soft-dark);
  font-size: 12.5px;
}
.legal-ids { font-family: var(--font-mono); letter-spacing: 0.02em; }
.footer-credit { font-family: var(--font-mono); color: rgba(244,236,216,0.45); }

@media (max-width: 780px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding-block: 40px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ------------------------------- floating CTA ------------------------------- */
.mobile-call-fab {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wheat-700);
  color: var(--cream-text);
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.mobile-call-fab svg { width: 24px; height: 24px; }
@media (max-width: 720px) {
  .mobile-call-fab { display: flex; }
}

/* reveal-on-scroll */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
