/* Seiling Family Farm — visual refresh
   Same content and structure, new visual layer:
   warmer near-black instead of pure black, cream surfaces for contrast,
   rounded cards, sentence-case type, friendly display font. */

*, *::after, *::before { box-sizing: border-box; }
html, body, div, span, h1, h2, h3, h4, h5, h6, p, ul, li, img, a { margin: 0; padding: 0; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

:root {
  --ink: #241F19;        /* warm near-black, not pure black */
  --panel: #2E2820;      /* warm charcoal panel */
  --cream: #F7F1E3;      /* warm cream surface */
  --cream-2: #EFE6D2;
  --gold: #C79A3F;       /* refined, slightly richer than the original */
  --gold-deep: #9A7527;
  --sage: #71815C;       /* secondary accent, used sparingly */
  --white: #FFFFFF;
  --text-soft: #D8CFC0;  /* body text on dark */
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  line-height: 1.25;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img { height: 108px; width: auto; }
nav ul { display: flex; align-items: center; gap: 36px; }
nav a { font-size: 16px; color: var(--text-soft); transition: color .2s; }
nav a:hover, nav a.active { color: var(--gold); }
.btn {
  display: inline-block;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  transition: transform .15s ease, background .2s ease;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-deep); color: var(--white); transform: translateY(-1px); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: #000000;
  transition: max-height .3s ease;
}
.mobile-nav.open { max-height: 480px; }
.mobile-nav ul { padding: 8px 24px 4px; }
.mobile-nav ul li { border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-nav ul li a {
  display: block;
  padding: 16px 4px;
  font-size: 17px;
  color: var(--text-soft);
}
.mobile-nav ul li a.active, .mobile-nav ul li a:hover { color: var(--gold); }
.mobile-nav-cta { display: block; text-align: center; margin: 16px 24px 24px; }
body.no-scroll { overflow: hidden; }

/* Announcement */
.announce {
  background: var(--sage);
  color: var(--white);
  text-align: center;
  font-size: 14px;
  padding: 10px 24px;
}
.announce b { font-weight: 500; }

/* Hero */
.hero { padding: 28px 24px 0; }
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
}
.hero-inner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: 30% 25%;
}
.hero-inner::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(20,17,13,0.88) 0%, rgba(20,17,13,0.35) 45%, rgba(20,17,13,0.05) 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 48px;
  max-width: 620px;
}
.hero-content .eyebrow {
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.hero-content h1 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-content p {
  color: var(--text-soft);
  font-size: 17px;
  margin-bottom: 24px;
  max-width: 480px;
}

/* Welcome / intro */
.intro {
  text-align: center;
  padding: 40px 24px 40px;
  max-width: 680px;
  margin: 0 auto;
}
.intro span.eyebrow {
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
}
.intro h2 { font-size: 34px; margin: 12px 0 16px; }
.intro p { color: var(--text-soft); font-size: 17px; }
.intro a { color: var(--gold); border-bottom: 1px solid var(--gold); }

/* Feature grid */
.features {
  padding: 24px 24px 96px;
}
.feature-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-grid .card:nth-child(4) { grid-column: span 1; }
.card {
  background: var(--panel);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(199,154,63,0.4); }
.card .card-img { height: 220px; overflow: hidden; }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.card .card-body { padding: 22px 22px 26px; }
.card h3 { font-size: 20px; color: var(--white); margin-bottom: 8px; }
.card p { color: var(--text-soft); font-size: 14.5px; }

/* Testimonials */
.friends {
  background: var(--cream);
  color: var(--ink);
  padding: 64px 24px 96px;
}
.friends .intro { padding-top: 0; }
.friends .intro h2, .friends .intro span { color: var(--ink); }
.friends .intro span.eyebrow { color: var(--gold-deep); }
.friends .intro p { color: #5C5142; }
.review-carousel {
  max-width: 1180px;
  margin: 40px auto 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.review-scroll::-webkit-scrollbar { display: none; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.05);
  flex: 0 0 auto;
  width: min(320px, 82vw);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
.review-card .quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.55;
  line-height: 0.5;
  height: 28px;
  margin-bottom: 14px;
  flex: 0 0 auto;
}
.review-card p {
  font-size: 14.5px;
  color: #4A4034;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 0 0 auto;
}
.review-card h5 { font-size: 14px; font-weight: 500; color: var(--ink); flex: 0 0 auto; margin-top: auto; }

.review-arrow {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--white);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.review-arrow:hover { background: var(--gold); color: var(--white); }

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.review-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(36,31,25,0.2);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.review-dot.active { background: var(--gold); transform: scale(1.3); }

/* CTA band */
.cta-band {
  background: var(--sage);
  padding: 64px 24px;
  text-align: center;
}
.cta-band h2 { font-size: 30px; color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }

/* Footer */
footer { background: var(--panel); padding: 72px 24px 32px; }
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
footer .logo img { height: 50px; margin-bottom: 16px; }
footer p { color: var(--text-soft); font-size: 14.5px; line-height: 1.7; }
footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}
.ft-brand p { margin-bottom: 20px; }
.ft-social-line { font-size: 13.5px; color: #9C927F; margin-bottom: 16px; margin-top: -8px; }

/* Quick links */
.link-list li { margin-bottom: 2px; }
.link-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 14.5px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color .2s, gap .2s;
}
.link-list li:last-child a { border-bottom: none; }
.link-list li a::before {
  content: '→';
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s, transform .2s;
}
.link-list li a:hover { color: var(--white); gap: 10px; }
.link-list li a:hover::before { opacity: 1; transform: translateX(0); }

/* Address + contact */
.ft-address {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 14.5px;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 12px;
}
.ft-address-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 6px;
}
.ft-note { font-size: 13px; color: #9C927F; margin-bottom: 18px; }
.contact-list li { margin-bottom: 10px; }
.contact-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14.5px;
  transition: color .2s;
}
.contact-list li a:hover { color: var(--gold); }
.contact-list li a img { width: 16px; height: 16px; opacity: 0.85; filter: brightness(0) saturate(100%) invert(74%) sepia(28%) saturate(500%) hue-rotate(357deg) brightness(92%); }

/* Map */
.map-thumb {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.map-thumb img { width: 100%; height: 230px; object-fit: cover; display: block; filter: grayscale(35%); transition: filter .2s; }
.map-thumb:hover img { filter: grayscale(0%); }
.map-thumb span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(20,17,13,0.92), rgba(20,17,13,0));
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  padding: 24px 14px 10px;
}

.footer-bottom {
  max-width: 1180px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 13px; color: #9C927F; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.social-row a:hover { background: var(--gold); }
.social-row img { width: 26px; height: 26px; }

/* Responsive */
@media (max-width: 991px) {
  nav ul { display: none; }
  header .wrap .btn-primary { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .logo img { height: 76px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-content h1 { font-size: 38px; }
}
@media (max-width: 599px) {
  .logo img { height: 60px; }
  .feature-grid { grid-template-columns: 1fr; }
  .review-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 16px 16px 0; }
  .hero-inner { min-height: 0; aspect-ratio: 4 / 3; border-radius: 16px; align-items: flex-end; }
  .hero-content { padding: 24px 20px; }
  .hero-content h1 { font-size: 28px; }
  .hero-content p { font-size: 15px; }
  .intro { padding: 32px 20px 32px; }
  .intro h2 { font-size: 24px; }
  .features { padding: 16px 16px 64px; }
  .friends { padding: 56px 16px; }
  .cta-band { padding: 48px 20px; }
  .cta-band h2 { font-size: 24px; }
  footer { padding: 56px 20px 24px; }
  .wrap, .friends .intro { padding-left: 16px; padding-right: 16px; }
}
