/* ============================================================
   Paul's Farm Pumpkin Patch — "Moonlit Harvest"
   A spooky-cute, family-friendly Halloween farm aesthetic.
   ============================================================ */

:root {
  --night: #160d20;
  --night-2: #211331;
  --night-3: #2e1a44;
  --pumpkin: #ff7518;
  --pumpkin-deep: #e35d05;
  --ember: #ffb347;
  --bone: #fdf1dd;
  --bone-dim: #e8d7bd;
  --slime: #a8c256;
  --slime-deep: #6e8b3d;
  --plum: #4b2a6e;
  --danger-red: #c0392b;

  --font-display: 'Creepster', cursive;
  --font-body: 'Nunito', sans-serif;

  --shadow-pop: 0 14px 40px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 18px;

  --maxw: 72rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--night);
  color: var(--bone);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { color: var(--ember); }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

/* ---------- texture & atmosphere ---------- */

body::before {
  /* subtle grain over everything */
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
}

/* ---------- navigation ---------- */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-nav.scrolled {
  background: rgba(22, 13, 32, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--bone);
}

.brand .pumpkin-mark { width: 42px; height: 42px; flex-shrink: 0; object-fit: contain; border-radius: 8px; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--bone);
  line-height: 1;
}

.brand-name em {
  font-style: normal;
  color: var(--pumpkin);
}

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

.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  color: var(--bone);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255, 117, 24, 0.15);
  color: var(--ember);
  transform: translateY(-1px);
}

.nav-links a.active {
  background: var(--pumpkin);
  color: var(--night);
}

.nav-social { display: flex; gap: 0.5rem; align-items: center; }

.nav-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(253, 241, 221, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-social a:hover { background: var(--pumpkin); transform: translateY(-2px) rotate(-6deg); }
.nav-social svg { width: 18px; height: 18px; fill: var(--bone); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--bone-dim);
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
  color: var(--bone);
  font-size: 1.2rem;
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--night-2);
    padding: 1rem;
    gap: 0.35rem;
    border-bottom: 3px solid var(--pumpkin);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { text-align: center; padding: 0.8rem 1rem; }
  .nav-social { display: none; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(255, 117, 24, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(22, 13, 32, 0.65) 0%, rgba(22, 13, 32, 0.35) 45%, var(--night) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem 10rem;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(22, 13, 32, 0.6);
  border: 1px solid rgba(255, 179, 71, 0.4);
  color: var(--ember);
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: rise 0.8s ease both;
}

.hero h1 {
  font-size: clamp(2.6rem, 7.5vw, 6rem);
  color: var(--bone);
  margin: 0;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin: 1.2rem auto 0.4rem;
  max-width: 90rem;
  animation: rise 0.8s ease 0.15s both;
}

.hero-side {
  height: calc(clamp(2.6rem, 7.5vw, 6rem) * 2.2);
  width: auto;
  flex-shrink: 1;
  min-width: 0;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
}

.hero-side-flip { transform: scaleX(-1); }

@media (max-width: 760px) {
  .hero-side { height: calc(clamp(2.6rem, 7.5vw, 6rem) * 2.2); }
  .hero-tagline {
    letter-spacing: 0.08em;
    font-size: clamp(0.72rem, 3vw, 0.95rem);
    padding: 0 0.75rem;
  }
}

.hero h1 .glow {
  color: var(--pumpkin);
  text-shadow: 0 0 22px rgba(255, 117, 24, 0.55), 0 6px 30px rgba(0, 0, 0, 0.6);
  animation: flicker 4s linear infinite;
}

.hero-tagline {
  margin: 1.4rem auto 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.75rem, 1.6vw, 1.05rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.7);
  animation: rise 0.8s ease 0.2s both;
  max-width: 54rem;
  line-height: 1.5;
  text-wrap: balance;
}

.hero-dates {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  color: var(--ember);
  letter-spacing: 0.02em;
  margin-top: 1.2rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  animation: rise 0.8s ease 0.25s both;
}

.hero-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
  animation: rise 0.8s ease 0.35s both;
}

.hero-chip {
  background: rgba(22, 13, 32, 0.72);
  border: 1px solid rgba(255, 179, 71, 0.45);
  color: var(--bone);
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-weight: 800;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
}

.hero-chip-green {
  border-color: rgba(168, 194, 86, 0.6);
  color: var(--slime);
}

.hero-sub {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--bone-dim);
  max-width: 40rem;
  margin: 1.4rem auto 2rem;
  font-weight: 600;
  animation: rise 0.8s ease 0.45s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  animation: rise 0.8s ease 0.45s both;
}

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

@keyframes flicker {
  0%, 100% { opacity: 1; }
  3% { opacity: 0.85; }
  5% { opacity: 1; }
  42% { opacity: 1; }
  44% { opacity: 0.8; }
  46% { opacity: 1; }
  70% { opacity: 0.95; }
}

/* floating bats */
.bat {
  position: absolute;
  z-index: 2;
  width: 54px;
  opacity: 0.85;
  pointer-events: none;
}

.bat svg { width: 100%; animation: flap 0.7s ease-in-out infinite alternate; transform-origin: center; }

.bat-1 { top: 18%; left: 8%; animation: drift1 14s ease-in-out infinite alternate; }
.bat-2 { top: 26%; right: 10%; width: 40px; animation: drift2 18s ease-in-out infinite alternate; }
.bat-3 { top: 12%; right: 30%; width: 30px; animation: drift1 11s ease-in-out infinite alternate-reverse; }

@keyframes flap { from { transform: scaleY(1); } to { transform: scaleY(0.55); } }
@keyframes drift1 { from { transform: translate(0, 0) rotate(-6deg); } to { transform: translate(60px, -35px) rotate(8deg); } }
@keyframes drift2 { from { transform: translate(0, 0) rotate(5deg); } to { transform: translate(-70px, 30px) rotate(-8deg); } }

.scroll-cue {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--bone-dim);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.scroll-cue::after {
  content: "";
  width: 2px;
  height: 42px;
  background: linear-gradient(var(--pumpkin), transparent);
  animation: drip 1.6s ease-in-out infinite;
}

@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 60% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-pumpkin {
  background: linear-gradient(180deg, var(--ember), var(--pumpkin) 60%, var(--pumpkin-deep));
  color: var(--night);
  box-shadow: 0 8px 24px rgba(255, 117, 24, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.35);
}

.btn-pumpkin:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 34px rgba(255, 117, 24, 0.55); }

.btn-ghost {
  background: rgba(253, 241, 221, 0.08);
  color: var(--bone);
  border: 2px solid rgba(253, 241, 221, 0.35);
}

.btn-ghost:hover { background: rgba(253, 241, 221, 0.16); transform: translateY(-3px); }

/* ---------- sections & dividers ---------- */

.section { position: relative; padding: 6rem 1.5rem; }

.section-night { background: var(--night); }
.section-plum { background: linear-gradient(180deg, var(--night-2), var(--night-3)); }
.section-bone { background: var(--bone); color: var(--night-2); }
.section-bone h2, .section-bone h3 { color: var(--night); }

.torn-top::before,
.torn-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 34px;
  background-repeat: repeat-x;
  background-size: auto 100%;
  pointer-events: none;
}

.torn-top::before {
  top: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H100 V12 L90 8 L82 13 L74 6 L66 12 L58 5 L50 14 L42 8 L35 12 L27 4 L20 13 L12 7 L6 15 L0 12 Z' fill='%23160d20'/%3E%3C/svg%3E");
}

.torn-from-plum::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H100 V12 L90 8 L82 13 L74 6 L66 12 L58 5 L50 14 L42 8 L35 12 L27 4 L20 13 L12 7 L6 15 L0 12 Z' fill='%232e1a44'/%3E%3C/svg%3E");
}

.torn-from-hero::before { content: none; }

/* Cut the zigzag straight out of the page hero so its gradient forms the edge */
.page-hero {
  -webkit-mask-image:
    linear-gradient(#000, #000),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H100 V12 L90 8 L82 13 L74 6 L66 12 L58 5 L50 14 L42 8 L35 12 L27 4 L20 13 L12 7 L6 15 L0 12 Z' fill='white'/%3E%3C/svg%3E");
  mask-image:
    linear-gradient(#000, #000),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H100 V12 L90 8 L82 13 L74 6 L66 12 L58 5 L50 14 L42 8 L35 12 L27 4 L20 13 L12 7 L6 15 L0 12 Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% calc(100% - 34px), auto 34px;
  mask-size: 100% calc(100% - 34px), auto 34px;
  -webkit-mask-position: top, bottom;
  mask-position: top, bottom;
  -webkit-mask-repeat: no-repeat, repeat-x;
  mask-repeat: no-repeat, repeat-x;
}

.section-heading {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3.5rem;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--pumpkin);
  text-shadow: 0 4px 24px rgba(255, 117, 24, 0.25);
}

.section-bone .section-heading h2 { color: var(--pumpkin-deep); text-shadow: none; }

.section-heading .kicker {
  display: block;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--slime);
  margin-bottom: 0.8rem;
}

.section-heading p { margin-top: 1rem; font-size: 1.15rem; font-weight: 600; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- intro strip ---------- */

.intro-wrap {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}

.intro-wrap .lead { font-size: 1.3rem; font-weight: 700; color: var(--bone-dim); }

.free-badge {
  display: inline-block;
  background: var(--slime);
  color: var(--night);
  font-weight: 900;
  border-radius: 8px;
  padding: 0.1rem 0.6rem;
  transform: rotate(-2deg);
}

/* marquee */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px dashed rgba(255, 179, 71, 0.35);
  border-bottom: 2px dashed rgba(255, 179, 71, 0.35);
  padding: 0.9rem 0;
  margin-top: 4rem;
}

.marquee-track {
  display: inline-block;
  animation: marquee 26s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ember);
  margin: 0 1.6rem;
  letter-spacing: 0.06em;
}

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- cards ---------- */

.card-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.page-intro {
  max-width: 46rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.page-intro p { margin-bottom: 1.2rem; font-size: 1.12rem; font-weight: 600; color: var(--bone-dim); }
.page-intro p:last-child { margin-bottom: 0; }

.card-grid-feature {
  grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
  justify-content: center;
  margin-top: 2rem;
}

.patch-card {
  position: relative;
  background: var(--night-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  border: 1px solid rgba(255, 179, 71, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.patch-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(255, 117, 24, 0.4);
}

.patch-card .card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.patch-card .card-body {
  padding: 1.6rem 1.6rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.patch-card h3 { font-size: 1.9rem; color: var(--ember); }
.patch-card p { color: var(--bone-dim); font-weight: 600; flex: 1; }

.patch-card .card-tag {
  align-self: center;
  background: var(--bone);
  color: var(--night);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
}

.patch-card .btn { align-self: center; margin-top: 0.4rem; }

/* ---------- gallery ---------- */

.gallery-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  columns: 3;
  column-gap: 1.6rem;
}

@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 560px) { .gallery-grid { columns: 1; } }

.polaroid {
  break-inside: avoid;
  background: var(--bone);
  padding: 0.8rem 0.8rem 2.6rem;
  border-radius: 6px;
  margin-bottom: 1.8rem;
  box-shadow: var(--shadow-pop);
  transition: transform 0.25s ease;
  position: relative;
}

.polaroid img { border-radius: 4px; width: 100%; object-fit: cover; }

.polaroid:nth-child(odd) { transform: rotate(-2deg); }
.polaroid:nth-child(even) { transform: rotate(2deg); }
.polaroid:nth-child(3n) { transform: rotate(-1deg); }
.polaroid:hover { transform: rotate(0deg) scale(1.04); z-index: 2; }

.polaroid figcaption {
  position: absolute;
  bottom: 0.55rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-display);
  color: var(--night-2);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

/* ---------- find us ---------- */

.find-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 860px) { .find-grid { grid-template-columns: 1fr; } }

.map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pop);
}

.contact-card {
  background: var(--night-3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 179, 71, 0.15);
  box-shadow: var(--shadow-pop);
}

.contact-card h3 { color: var(--ember); font-size: 1.6rem; margin: 1.2rem 0 0.5rem; }
.contact-card h3:first-child { margin-top: 0; }
.contact-card p { font-size: 1.1rem; font-weight: 600; color: var(--bone-dim); }
.contact-card a { font-weight: 800; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

/* ---------- health & safety ---------- */

.safety-box {
  max-width: 52rem;
  margin: 0 auto;
  background: var(--bone);
  color: var(--night-2);
  border-radius: var(--radius-lg);
  padding: 2.6rem;
  box-shadow: var(--shadow-pop);
  font-weight: 600;
  font-size: 1.08rem;
}

.safety-box strong { color: var(--pumpkin-deep); }

/* ---------- page hero (inner pages) ---------- */

.page-hero {
  position: relative;
  padding: 11rem 1.5rem calc(6rem + 34px);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(255, 117, 24, 0.25), transparent 60%),
    radial-gradient(ellipse at 80% 120%, rgba(75, 42, 110, 0.5), transparent 60%),
    var(--night-2);
  overflow: hidden;
}

.page-hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--pumpkin);
  text-shadow: 0 0 30px rgba(255, 117, 24, 0.3);
}

.page-hero h1.h1-long { font-size: clamp(2.2rem, 5.5vw, 3.8rem); line-height: 1.15; }

.page-hero p { color: var(--bone-dim); font-size: 1.2rem; font-weight: 600; margin-top: 0.8rem; }

.moon {
  position: absolute;
  top: 14%;
  right: 10%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff8e7, var(--ember) 70%, #d98a2b);
  box-shadow: 0 0 60px 18px rgba(255, 179, 71, 0.35);
  animation: moonGlow 5s ease-in-out infinite alternate;
}

@keyframes moonGlow { from { box-shadow: 0 0 40px 10px rgba(255, 179, 71, 0.25); } to { box-shadow: 0 0 80px 26px rgba(255, 179, 71, 0.45); } }

@media (max-width: 700px) { .moon { width: 70px; height: 70px; } }

/* ---------- about page ---------- */

.about-wrap {
  max-width: 46rem;
  margin: 0 auto;
}

.farmer-photo {
  width: 260px;
  margin: 0 auto 2.5rem;
  border-radius: 50%;
  border: 8px solid var(--pumpkin);
  box-shadow: 0 0 0 6px var(--night), 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.farmer-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }

.about-text p { margin-bottom: 1.3rem; font-size: 1.12rem; font-weight: 600; color: var(--bone-dim); }
.about-text p:first-of-type { font-size: 1.35rem; font-weight: 800; color: var(--bone); }
.about-text strong { color: var(--ember); }

.about-text .sig {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--pumpkin);
  transform: rotate(-2deg);
  display: inline-block;
  margin-top: 0.5rem;
}

/* ---------- FAQs ---------- */

.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  background: var(--night-3);
  border: 1px solid rgba(255, 179, 71, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.open { border-color: var(--pumpkin); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.08rem;
  text-align: left;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
}

.faq-q .chev {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--pumpkin);
  color: var(--night);
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.open .chev { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  padding: 0 1.5rem 1.4rem;
  color: var(--bone-dim);
  font-weight: 600;
}

/* ---------- footer ---------- */

.site-footer {
  background: #0e0817;
  padding: 4rem 1.5rem 2.5rem;
  text-align: center;
  position: relative;
}

.site-footer::before {
  /* pumpkin patch silhouette along the top of the footer */
  content: "";
  position: absolute;
  top: -27px;
  left: 0;
  right: 0;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 28' preserveAspectRatio='none'%3E%3Cpath d='M0 28 L0 16 Q10 8 20 16 Q26 4 34 14 Q44 6 52 15 Q60 5 70 15 Q80 7 90 16 Q100 4 110 15 Q120 7 130 16 Q140 5 150 15 Q160 7 170 16 Q180 6 190 15 L200 16 L200 28 Z' fill='%230e0817'/%3E%3C/svg%3E");
  background-size: 200px 28px;
  background-repeat: repeat-x;
}

.footer-brand { font-family: var(--font-display); font-size: 2rem; color: var(--pumpkin); }

.footer-social { display: flex; justify-content: center; gap: 1rem; margin: 1.4rem 0; }

.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(253, 241, 221, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover { background: var(--pumpkin); transform: translateY(-2px) rotate(-6deg); }
.footer-social svg { width: 18px; height: 18px; fill: var(--bone); }

.footer-note { color: rgba(253, 241, 221, 0.45); font-size: 0.9rem; font-weight: 600; }

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