:root {
  /* Warm-first palette — v2 */
  --ivory: #F6EFE0;        /* base */
  --header: #F4ECDA;       /* light section / header */
  --parchment: #E7D8BC;    /* Story, Moments */
  --aged-paper: #EFE3CC;   /* Family Roots */
  --biz-panel: #F1E7D2;    /* business card */
  --recipe-mat: #FBF6EA;   /* moments photo mat */
  --espresso: #251C15;     /* hero overlay base + footer */
  --green: #2F3D2A;        /* headings, accents */
  --green-soft: #34452E;   /* pillar subheads */
  --gold: #B98B3A;         /* gold */
  --gold-light: #C9A24B;   /* CTA, footer accents */
  --body: #5C4F38;
  --body-soft: #6E5F45;
  --hairline: rgba(185, 139, 58, 0.28);

  --side-pad: clamp(1.4rem, 4.5vw, 56px);
  --section-pad: clamp(3rem, 6vw, 78px);
  --inner: 1140px;
}

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

body {
  font-family: 'Mulish', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  background: var(--ivory);
  color: #3A2E1F;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; }

h1, h2, h3, blockquote, figcaption {
  font-family: 'Lora', Georgia, 'Palatino', serif;
}
h1, h2, h3 {
  font-weight: 600;
  color: var(--green);
  line-height: 1.2;
}

/* Shared ornaments */
.diamond {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.diamond.center { display: block; margin: 0 auto 16px; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow.center { text-align: center; }
.eyebrow.accent { color: var(--gold); }

.section-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 44px); }
.section-head h2,
.intro-inner h2 { font-size: clamp(1.7rem, 3.6vw, 36px); }
.section-head .lead,
.intro-inner .lead { max-width: 640px; margin: 0 auto; }
.lead { color: var(--body); font-size: clamp(1rem, 1.6vw, 18px); line-height: 1.78; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: var(--gold-light);
  color: #2A2014;
  padding: 16px 34px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(20, 13, 8, 0.35);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(20, 13, 8, 0.42); }

.link-underline {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--green-soft);
  text-decoration: none;
  border-bottom: 2px solid rgba(185, 139, 58, 0.5);
  padding-bottom: 3px;
  transition: border-color 160ms ease;
}
.link-underline:hover { border-color: var(--gold); }

/* Draft banner */
.draft-banner {
  background: var(--gold-light);
  color: var(--espresso);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.45rem 1rem;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px var(--side-pad);
  background: var(--header);
  border-bottom: 1px solid rgba(185, 139, 58, 0.3);
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-mark { width: 54px; height: 54px; object-fit: contain; }
.brand-lockup { line-height: 1.05; }
.brand-name {
  display: block;
  font-family: 'Lora', serif;
  font-weight: 700;
  color: var(--green);
  font-size: 17px;
  letter-spacing: 1.5px;
}
.brand-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 9.5px;
  letter-spacing: 3.5px;
  color: #9A7B3C;
  font-weight: 700;
}
.brand-sub i { width: 18px; height: 1px; background: var(--gold); }
.site-nav {
  display: flex;
  gap: clamp(1rem, 2.6vw, 34px);
  flex-wrap: wrap;
}
.site-nav a {
  text-decoration: none;
  color: #3A3322;
  font-size: 13.5px;
  letter-spacing: 0.5px;
  font-weight: 600;
  transition: color 160ms ease;
}
.site-nav a:hover { color: var(--gold); }
.site-nav a.nav-accent { color: var(--gold); }

/* Hero — editorial split.
   The Tammie photo is ~square (1290x1281); forcing it into a full-bleed
   landscape band over-zoomed and cropped it. Instead: a warm parchment
   hero with copy on the left and Tammie as a natural portrait/card on the
   right that keeps her whole face/shoulders, breathing on a soft mat with
   a subtle warm frame + shadow. No dark green block, no stretching. */
.hero {
  background: linear-gradient(160deg, var(--header) 0%, var(--ivory) 55%, var(--aged-paper) 100%);
  padding: clamp(2.5rem, 5vw, 64px) var(--side-pad) clamp(2.75rem, 5.5vw, 72px);
  border-bottom: 1px solid var(--hairline);
}
.hero-inner {
  max-width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 64px);
  align-items: center;
}
.hero-text { max-width: 540px; }
.hero-text .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 4.5px;
}
.hero-text h1 {
  color: var(--green);
  font-size: clamp(2rem, 4.4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero-lead {
  color: var(--body);
  font-size: clamp(1rem, 1.6vw, 18px);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 32px;
}
/* Portrait card — natural aspect, let the photo breathe (no fixed height) */
.hero-portrait {
  position: relative;
  margin: 0;
  justify-self: center;
  max-width: 460px;
  width: 100%;
  background: var(--recipe-mat);
  padding: 14px;
  border: 1px solid rgba(185, 139, 58, 0.35);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(42, 32, 21, 0.16);
}
.hero-portrait img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}
.hero-portrait figcaption {
  margin-top: 12px;
  text-align: center;
  font-style: italic;
  color: var(--body-soft);
  font-size: 14px;
}

/* Intro / family hub */
.intro {
  background: var(--ivory);
  padding: var(--section-pad) var(--side-pad);
}
.intro-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.intro-inner h2 { margin-bottom: 20px; }
.pillars {
  max-width: 880px;
  margin: clamp(2rem, 4vw, 46px) auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}
.pillar { text-align: center; padding: 0 24px; }
.pillar h3 { color: var(--green-soft); font-size: 21px; margin-bottom: 8px; }
.pillar p { color: var(--body-soft); font-size: 14px; line-height: 1.6; }
.pillar-rule { width: 1px; height: 64px; background: rgba(185, 139, 58, 0.4); }

/* Homepage story band — the landscape photo has clear space on the left,
   keeping Tammie, the plate, and the peacock visible on the right. */
.story-band {
  position: relative;
  min-height: clamp(410px, 47vw, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--espresso);
  border-top: 6px solid var(--gold-light);
  border-bottom: 1px solid rgba(201, 162, 75, 0.45);
}
.story-band-image,
.story-band-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.story-band-image {
  object-fit: cover;
  object-position: center center;
}
.story-band-scrim {
  background: linear-gradient(90deg, rgba(30, 22, 16, 0.9) 0%, rgba(30, 22, 16, 0.72) 37%, rgba(30, 22, 16, 0.2) 66%, rgba(30, 22, 16, 0.02) 100%);
}
.story-band-content {
  position: relative;
  width: 100%;
  max-width: var(--inner);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--side-pad);
}
.story-text { max-width: 540px; }
.story-text .eyebrow { color: var(--gold-light); }
.story-text h2 {
  color: #F6ECD7;
  font-size: clamp(1.8rem, 3.5vw, 38px);
  margin-bottom: 20px;
}
.story-text > p {
  color: #E4D6BD;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.story-text blockquote {
  border-left: 3px solid var(--gold-light);
  padding: 3px 0 3px 18px;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 500;
  color: #F2E7CF;
  font-size: clamp(1rem, 1.7vw, 18px);
  line-height: 1.5;
}
.story-band .link-underline {
  color: var(--gold-light);
  border-color: rgba(201, 162, 75, 0.72);
}
.story-band-caption {
  position: absolute;
  right: var(--side-pad);
  bottom: 18px;
  color: rgba(246, 236, 215, 0.82);
  font-family: 'Lora', serif;
  font-size: 12px;
  font-style: italic;
  text-shadow: 0 1px 8px rgba(20, 13, 8, 0.85);
}

/* Closing — full-bleed family band (bookends the page) */
.closing-band {
  position: relative;
  min-height: clamp(340px, 40vw, 460px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--espresso);
  border-top: 6px solid var(--gold-light);
}
.closing-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}
.closing-band .closing-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30, 22, 16, 0.86) 0%, rgba(30, 22, 16, 0.38) 46%, rgba(30, 22, 16, 0.04) 100%);
}
.closing-content {
  position: relative;
  width: 100%;
  max-width: var(--inner);
  margin: 0 auto;
  padding: clamp(2.25rem, 4vw, 3.75rem) var(--side-pad);
  text-align: center;
}
.closing-content .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-light);
}
.closing-content .eyebrow .diamond { background: var(--gold-light); }
.closing-content h2 {
  color: #F6ECD7;
  font-size: clamp(1.5rem, 3vw, 33px);
  margin-top: 12px;
  text-shadow: 0 2px 14px rgba(20, 13, 8, 0.5);
}
.closing-content p {
  color: #E4D6BD;
  font-size: 16px;
  line-height: 1.7;
  max-width: 540px;
  margin: 12px auto 0;
  text-shadow: 0 1px 10px rgba(20, 13, 8, 0.5);
}

/* "Show the whole photo" band variant — no cover-crop. The image is fit
   inside the espresso band (object-fit: contain) so nothing gets cut off,
   while the dark band, gold keyline, scrim, and overlaid copy stay the same.
   Used on the homepage Our Story band + closing family band. */
.story-band.full-photo,
.closing-band.full-photo {
  min-height: clamp(380px, 50vw, 600px);
}
.story-band.full-photo .story-band-image {
  object-fit: contain;
  object-position: right center;
}
.closing-band.full-photo img {
  object-fit: contain;
  object-position: center;
}

/* Solid-color anchor band — espresso/green pull section with gold keyline.
   Direction A's no-photo anchor; used on chapter/business pages where the
   available photos are portraits (which must stay framed, never full-bleed). */
.anchor-band {
  background: var(--green);
  border-top: 6px solid var(--gold-light);
  border-bottom: 1px solid rgba(201, 162, 75, 0.45);
  padding: clamp(2.6rem, 5vw, 4.5rem) var(--side-pad);
}
.anchor-band.espresso { background: var(--espresso); }
.anchor-band-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.anchor-band .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-light);
}
.anchor-band .eyebrow .diamond { background: var(--gold-light); }
.anchor-band h2 {
  color: #F6ECD7;
  font-size: clamp(1.7rem, 3.4vw, 36px);
  margin: 12px 0 18px;
  text-shadow: 0 2px 14px rgba(20, 13, 8, 0.4);
}
.anchor-band p {
  color: #E4D6BD;
  font-size: 17px;
  line-height: 1.8;
  max-width: 660px;
  margin: 0 auto 16px;
}
.anchor-band p:last-child { margin-bottom: 0; }
.anchor-band blockquote {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  color: #F2E7CF;
  font-size: clamp(1.2rem, 2.6vw, 26px);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
}
.anchor-band .link-underline {
  color: var(--gold-light);
  border-color: rgba(201, 162, 75, 0.72);
}

/* Family Roots */
.roots {
  background: var(--aged-paper);
  padding: var(--section-pad) var(--side-pad);
  border-top: 1px solid rgba(185, 139, 58, 0.38);
  border-bottom: 1px solid rgba(185, 139, 58, 0.28);
}
.roots-inner { max-width: var(--inner); margin: 0 auto; }
/* Both roots photos are tall portraits (farm-roots 0.64, produce 0.77).
   The old full-width landscape banner cropped the tractor, Bill & Cade
   badly. Now each sits in a narrow portrait card at its native ratio
   (width fills the column, height auto = no crop), with the supper
   callout card between them so the row stays balanced and controlled. */
.roots-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1fr;
  gap: 26px;
  align-items: start;
}
.roots-photo {
  position: relative;
  margin: 0;
  background: var(--recipe-mat);
  border: 1px solid rgba(185, 139, 58, 0.35);
  border-radius: 6px;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(42, 32, 21, 0.12);
}
.roots-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}
.roots-photo figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  background: rgba(33, 23, 16, 0.82);
  color: #F0E4CC;
  font-style: italic;
  font-size: 13px;
  padding: 7px 12px;
  border-radius: 2px;
}
.roots-card {
  background: var(--ivory);
  border: 1px solid rgba(185, 139, 58, 0.32);
  border-radius: 6px;
  padding: 28px;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.roots-card h3 { font-size: 22px; margin-bottom: 12px; }
.roots-card p { color: var(--body); font-size: 15px; line-height: 1.7; }

/* Our Businesses — light editorial cards rather than four heavy panels. */
.businesses {
  background: var(--ivory);
  padding: var(--section-pad) var(--side-pad);
}
.businesses-inner { max-width: 1160px; margin: 0 auto; }
.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.business-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
/* Mixed orientations stay contained so faces, signs, and food remain intact. */
.business-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--recipe-mat);
  padding: 8px;
  border: 1px solid rgba(185, 139, 58, 0.25);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(42, 32, 21, 0.08);
}
.business-body {
  padding: 16px 4px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.business-body h3 { font-size: 18.5px; margin-bottom: 8px; }
.business-body p { color: var(--body-soft); font-size: 13px; line-height: 1.6; margin-bottom: 14px; flex: 1; }
.visit {
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.visit:hover { color: var(--green); }

/* Moments */
.moments {
  background: var(--parchment);
  padding: var(--section-pad) var(--side-pad);
  border-top: 6px solid var(--gold-light);
}
.moments-inner { max-width: 1120px; margin: 0 auto; }
.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: start;
}
.moment-card {
  background: var(--recipe-mat);
  padding: 14px 14px 20px;
  border: 1px solid rgba(185, 139, 58, 0.3);
  box-shadow: 0 6px 18px rgba(42, 32, 21, 0.1);
}
/* Two portraits (young Cade, Cade in the kitchen) + one landscape (beach
   family) shown at native ratio — taped-photo collage, nothing cropped.
   align-items:start lets the cards keep their natural heights. */
.moment-card img {
  width: 100%;
  height: auto;
  display: block;
}
.moment-card figcaption {
  font-style: italic;
  color: #4A3E2B;
  font-size: 15px;
  text-align: center;
  margin-top: 14px;
}
.tilt-a { transform: rotate(-1.3deg); }
.tilt-b { transform: rotate(0.8deg); }
.tilt-c { transform: rotate(-0.6deg); }

/* Footer */
.site-footer {
  background: var(--espresso);
  padding: clamp(2.6rem, 5vw, 58px) var(--side-pad) 32px;
}
.footer-inner { max-width: var(--inner); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(201, 162, 75, 0.28);
}
.footer-lockup { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.footer-mark { width: 48px; height: 48px; object-fit: contain; }
.brand-name.light { color: #F2E7CF; font-size: 16px; letter-spacing: 1.5px; }
.brand-sub.light {
  display: block;
  color: #A08A5E;
  font-size: 9px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-top: 2px;
}
.footer-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  color: #B7A87E;
  font-size: 17px;
  line-height: 1.5;
  max-width: 280px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-head {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.footer-col a {
  color: #D9CBAD;
  font-size: 13.5px;
  text-decoration: none;
  transition: color 160ms ease;
}
.footer-col a:hover { color: #F2E7CF; }
.footer-badge-wrap { text-align: center; }
.footer-badge { width: 84px; height: 84px; object-fit: contain; margin: 0 auto; opacity: 0.92; }
.footer-badge-label {
  display: block;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8A7A56;
  margin-top: 8px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 12px;
  color: #8A7A56;
  letter-spacing: 0.5px;
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-badge-wrap { grid-column: 1 / -1; order: 3; }
  /* Roots: two portrait photos side by side, supper callout full-width below */
  .roots-grid { grid-template-columns: 1fr 1fr; }
  .roots-card { grid-column: 1 / -1; order: 3; }
}

@media (max-width: 760px) {
  .draft-banner { font-size: 0.68rem; }
  .site-header { justify-content: center; text-align: center; }
  .brand { justify-content: center; }
  .site-nav { justify-content: center; }
  /* Editorial hero stacks: copy first, portrait below */
  .hero-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero-text { max-width: none; }
  .hero-portrait { max-width: 380px; }
  .story-band {
    min-height: 0;
    display: grid;
    border-top-width: 5px;
  }
  .story-band-image {
    position: static;
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .story-band-scrim { display: none; }
  .story-band-content {
    grid-column: 1;
    grid-row: 2;
    padding-top: 2.4rem;
    padding-bottom: 2.8rem;
  }
  .story-text { max-width: none; }
  .story-band-caption {
    position: static;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    justify-self: end;
    z-index: 1;
    margin: 0 14px 12px;
  }
  .pillars { grid-template-columns: 1fr; gap: 1.6rem; }
  .pillar-rule { width: 64px; height: 1px; margin: 0 auto; }
  .moments-grid { grid-template-columns: 1fr; gap: 2rem; }
  .moment-card { transform: none; max-width: 460px; margin: 0 auto; width: 100%; }
}

@media (max-width: 560px) {
  .roots-grid { grid-template-columns: 1fr; }
  .roots-photo { max-width: 420px; margin: 0 auto; width: 100%; }
}

@media (max-width: 520px) {
  .business-grid { grid-template-columns: 1fr; }
  .business-card { max-width: 420px; margin: 0 auto; width: 100%; }
  .business-card img { aspect-ratio: auto; height: auto; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-lockup { justify-content: center; }
  .footer-tagline { margin: 0 auto; }
  .footer-col { align-items: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* Static page skeletons */
.page-shell {
  background: var(--ivory);
}
.page-intro {
  background: linear-gradient(160deg, var(--header) 0%, var(--ivory) 68%, var(--aged-paper) 100%);
  padding: clamp(2.7rem, 6vw, 72px) var(--side-pad);
  border-bottom: 1px solid var(--hairline);
}
.page-intro-inner,
.page-content {
  max-width: var(--inner);
  margin: 0 auto;
}
.page-intro h1 {
  font-size: clamp(2rem, 4.5vw, 48px);
  max-width: 780px;
  margin-bottom: 18px;
}
.page-intro .lead {
  max-width: 720px;
}
.page-content {
  padding: clamp(2.4rem, 5vw, 64px) var(--side-pad);
}
.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.placeholder-card,
.placeholder-note {
  background: var(--biz-panel);
  border: 1px solid rgba(185, 139, 58, 0.3);
  border-radius: 6px;
  padding: 24px;
}
.placeholder-card h2,
.placeholder-card h3,
.placeholder-note h2 {
  font-size: clamp(1.25rem, 2.4vw, 24px);
  margin-bottom: 10px;
}
.placeholder-card p,
.placeholder-note p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.7;
}
.placeholder-note {
  margin-top: 24px;
  background: var(--aged-paper);
}

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