/* ==========================================================================
   Farmhouse Productions — theme stylesheet
   Design system: "the farm world" — kraft paper, soil ink, harvest gold.
   ========================================================================== */

:root {
  /* Surfaces */
  --paper:        #f1e7d0;
  --card:         #faf4e6;
  --kraft:        #e8dbbc;
  --kraft-line:   #d9c9a4;
  --night:        #101d2b;

  /* Ink */
  --ink:          #241b12;
  --ink-2:        #3d2c1b;
  --ink-3:        #4a3a26;
  --muted:        #7a6647;

  /* Accents */
  --gold:         #eca317;
  --gold-bright:  #f6bf2e;
  --clay:         #a34a28;

  /* On dark */
  --dark-text:    #cbb98f;
  --dark-text-2:  #a08c62;
  --dark-text-3:  #7d6b48;
  --cream:        #faf4e6;
  --cream-2:      #e6d9bd;

  /* Wood */
  --wood-1:       #6b4a2f;
  --wood-2:       #5b4128;
  --wood-3:       #4a3324;

  /* Type */
  --display: 'Zilla Slab', Georgia, 'Times New Roman', serif;
  --body:    'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Structure */
  --wrap:      1320px;
  --gutter:    32px;
  --header-h:  88px;
}

/* --------------------------------------------------------------- base --- */

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; }

a { color: var(--clay); transition: color .15s ease; }
a:hover, a:focus { color: var(--gold); }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; text-wrap: pretty; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.fh-wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.fh-wrap--narrow { max-width: 1100px; }
.fh-wrap--mid { max-width: 1180px; }

.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 8px; left: 8px; z-index: 999; width: auto; height: auto;
  clip: auto; background: var(--ink); color: var(--gold-bright); padding: 12px 20px;
  font-weight: 700; text-decoration: none;
}

/* --------------------------------------------------------- typography --- */

.fh-kicker {
  color: var(--clay);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.fh-kicker--gold { color: var(--gold); }

.fh-h1        { font-size: 64px; line-height: 1.05; margin: 0 0 18px; }
.fh-h1--hero  { font-size: 76px; line-height: 1.02; }
.fh-h2        { font-size: 48px; line-height: 1.1; margin: 0; }
.fh-h2--sm    { font-size: 40px; line-height: 1.15; margin: 0; }
.fh-lede      { font-size: 19px; line-height: 1.6; color: var(--ink-3); max-width: 660px; margin: 0; }
.fh-lede--quote { font-family: var(--display); font-style: italic; }

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

.fh-btn {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  padding: 16px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--body);
  transition: background-color .15s ease, color .15s ease;
}
.fh-btn--gold      { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.fh-btn--gold:hover, .fh-btn--gold:focus { background: var(--gold-bright); color: var(--ink); }

.fh-btn--dark      { background: var(--ink); color: var(--gold-bright); border-color: var(--ink); padding: 18px 32px; }
.fh-btn--dark:hover, .fh-btn--dark:focus { background: var(--ink-2); color: var(--gold-bright); }

.fh-btn--outline-gold { border-color: var(--gold); color: var(--gold-bright); background: transparent; }
.fh-btn--outline-gold:hover, .fh-btn--outline-gold:focus { background: rgba(236,163,23,.15); color: var(--gold-bright); }

.fh-btn--outline-ink { border-color: var(--ink); color: var(--ink); background: transparent; }
.fh-btn--outline-ink:hover, .fh-btn--outline-ink:focus { background: var(--ink); color: var(--gold-bright); }

.fh-btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.fh-textlink {
  display: inline-block;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 14px;
  text-decoration: none; color: var(--ink);
  border-bottom: 3px solid var(--gold); padding-bottom: 4px;
  flex: none;
}
.fh-textlink:hover, .fh-textlink:focus { color: var(--clay); }
.fh-textlink--onDark { color: var(--gold-bright); border-bottom-width: 2px; font-size: 13px; }
.fh-textlink--onDark:hover, .fh-textlink--onDark:focus { color: var(--cream); }

/* ------------------------------------------------------------- header --- */

.fh-header {
  background: var(--card);
  border-top: 6px solid var(--gold);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
}
.fh-header__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter);
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.fh-logo { flex: none; display: block; line-height: 0; }
.fh-logo img { height: 64px; display: block; width: auto; }

.fh-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 22px; align-items: center;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
}
.fh-nav a { color: var(--ink-2); text-decoration: none; }
.fh-nav a:hover, .fh-nav a:focus { color: var(--gold); }
.fh-nav .current-menu-item > a,
.fh-nav .current_page_item > a,
.fh-nav .current-menu-ancestor > a,
.fh-nav .is-active > a {
  color: var(--clay); border-bottom: 3px solid var(--gold); padding-bottom: 3px;
}
/* "Contact" — always the dark pill, wherever it sits in the menu */
.fh-nav .fh-nav-cta > a,
.fh-nav .fh-nav-cta.current-menu-item > a {
  background: var(--ink); color: var(--gold-bright);
  padding: 10px 20px; font-weight: 700; border-bottom: 0;
}
.fh-nav .fh-nav-cta > a:hover, .fh-nav .fh-nav-cta > a:focus { background: var(--ink-2); color: var(--gold-bright); }

.fh-burger {
  display: none;
  background: none; border: 0; padding: 6px; cursor: pointer;
  flex-direction: column; gap: 5px; align-items: flex-end;
}
.fh-burger span { display: block; height: 3px; background: var(--ink); }
.fh-burger span:nth-child(1) { width: 26px; }
.fh-burger span:nth-child(2) { width: 19px; }
.fh-burger span:nth-child(3) { width: 23px; }

/* ---------------------------------------------------- mobile menu ------ */

.fh-mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: none;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.fh-mobile-menu.is-open { display: flex; }
body.fh-menu-open { overflow: hidden; }

.fh-mobile-menu__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 18px 14px;
  border-bottom: 1px solid rgba(246,191,46,.25);
}
.fh-mobile-menu__bar img { height: 44px; width: auto; }
.fh-mobile-close {
  position: relative; width: 26px; height: 26px; background: none; border: 0; cursor: pointer; padding: 0;
}
.fh-mobile-close span {
  position: absolute; top: 12px; left: 0; display: block; width: 26px; height: 3px; background: var(--gold-bright);
}
.fh-mobile-close span:nth-child(1) { transform: rotate(45deg); }
.fh-mobile-close span:nth-child(2) { transform: rotate(-45deg); }

.fh-mobile-menu nav ul { list-style: none; margin: 0; padding: 26px 24px; display: flex; flex-direction: column; gap: 16px; }
.fh-mobile-menu nav a {
  font-family: var(--display); font-weight: 700; font-size: 27px; line-height: 1.15;
  color: var(--cream); text-decoration: none; padding-left: 18px; display: block;
}
.fh-mobile-menu nav .current-menu-item > a,
.fh-mobile-menu nav .current_page_item > a,
.fh-mobile-menu nav .is-active > a {
  color: var(--gold); border-left: 4px solid var(--gold); padding-left: 14px;
}
.fh-mobile-menu nav .fh-nav-cta { display: none; }
.fh-mobile-menu__cta {
  margin: 6px 24px 0; background: var(--gold); color: var(--ink);
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 14px;
  padding: 15px; text-align: center; text-decoration: none;
}
.fh-mobile-menu__cta:hover, .fh-mobile-menu__cta:focus { background: var(--gold-bright); color: var(--ink); }
.fh-mobile-menu__foot {
  margin-top: auto; padding: 22px 24px;
  border-top: 1px solid rgba(246,191,46,.25);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.fh-mobile-menu__foot address {
  color: var(--dark-text-2); font-size: 12px; line-height: 1.6; font-style: normal;
}

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

.fh-hero {
  position: relative;
  background: var(--night) center/cover no-repeat;
  overflow: hidden;
}
.fh-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,14,18,.82) 0%, rgba(10,14,18,.55) 45%, rgba(10,14,18,.1) 100%);
}
.fh-hero__inner {
  position: relative;
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: flex-end; justify-content: center; gap: 40px;
  min-height: 640px; flex-wrap: wrap;
}
.fh-hero__copy { flex: 1; min-width: 440px; padding: 96px 0; }
.fh-hero__copy .fh-kicker { color: var(--gold); margin-bottom: 20px; }
.fh-hero__copy h1 { color: var(--cream); margin: 0 0 24px; max-width: 560px; }
.fh-hero__copy p { font-size: 19px; line-height: 1.6; color: var(--cream-2); max-width: 480px; margin: 0 0 36px; }

/* ------------------------------------------------------------ the shed --- */

.fh-shed-scale { flex: none; }
.fh-shed { width: 660px; height: 640px; position: relative; flex: none; }
.fh-shed__shadow  { position: absolute; left: 34px; right: 34px; bottom: 36px; height: 30px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.55), transparent 70%); }
.fh-shed__post    { position: absolute; bottom: 56px; width: 22px; height: 436px;
  background: repeating-linear-gradient(180deg, var(--wood-1) 0 26px, var(--wood-2) 26px 52px);
  border: 2px solid var(--ink); }
.fh-shed__post--l { left: 36px; }
.fh-shed__post--r { right: 36px; }
.fh-shed__beam    { position: absolute; left: 10px; right: 10px; top: 120px; height: 18px;
  background: linear-gradient(180deg, var(--wood-1), var(--wood-3)); border: 2px solid var(--ink); }
.fh-shed__roof    { position: absolute; left: -14px; right: -14px; top: 56px; height: 64px;
  transform: rotate(-2.5deg);
  background: linear-gradient(180deg, rgba(163,74,40,.35), rgba(120,60,30,.12)),
              repeating-linear-gradient(90deg, #9aa0a6 0 12px, #70777e 12px 24px);
  border: 3px solid var(--ink); box-shadow: 0 12px 26px rgba(0,0,0,.45); }
.fh-shed__rope    { position: absolute; top: 138px; width: 3px; height: 50px; background: #8a7350; }
.fh-shed__rope--l { left: 158px; }
.fh-shed__rope--r { right: 158px; }
.fh-shed__lamp    { position: absolute; top: 142px; width: 32px; height: 28px;
  background: var(--ink); border: 2px solid var(--wood-3); border-radius: 5px; }
.fh-shed__lamp--l { left: 116px; transform: rotate(28deg); }
.fh-shed__lamp--r { right: 116px; transform: rotate(-28deg); }
.fh-shed__cone    { position: absolute; top: 172px; width: 250px; height: 290px;
  filter: blur(6px); z-index: 3; pointer-events: none; }
.fh-shed__cone--l { left: 118px; clip-path: polygon(0% 0%, 15% 0%, 96% 100%, 42% 100%);
  background: linear-gradient(200deg, rgba(246,191,46,.28), rgba(246,191,46,0)); }
.fh-shed__cone--r { right: 118px; clip-path: polygon(85% 0%, 100% 0%, 58% 100%, 4% 100%);
  background: linear-gradient(160deg, rgba(246,191,46,.28), rgba(246,191,46,0)); }
.fh-shed__floor   { position: absolute; left: 12px; right: 12px; bottom: 54px; height: 32px;
  background: linear-gradient(180deg, var(--kraft), var(--kraft-line)); border: 2px solid var(--ink); }
.fh-shed__ants    { position: absolute; width: 420px; z-index: 4; pointer-events: none; }
.fh-shed__prop    { position: absolute; z-index: 5; }
.fh-shed__prop--camera { right: -6px; bottom: 50px; width: 225px; }
.fh-shed__prop--tools  { left: -8px; bottom: 44px; width: 185px; }

/* screen */
.fh-shed__screen { position: absolute; left: 110px; top: 188px; width: 440px; height: 260px; z-index: 2; }
.fh-slideshow { position: relative; width: 100%; height: 100%; }
.fh-slideshow__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  border: 3px solid var(--ink); box-shadow: 0 14px 30px rgba(0,0,0,.5);
  opacity: 0; transition: opacity .9s ease;
}
.fh-slideshow__img.is-active { opacity: 1; }
.fh-slideshow__plaque {
  position: absolute; left: 12px; top: 12px; background: var(--ink); color: var(--gold-bright);
  padding: 8px 16px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  font-size: 13px; border-left: 4px solid var(--gold); max-width: 300px;
}
.fh-slideshow__dots { position: absolute; right: 12px; top: 20px; display: flex; gap: 6px; }
.fh-slideshow__dot {
  width: 9px; height: 9px; border-radius: 9px; cursor: pointer; padding: 0;
  background: rgba(250,244,230,.5); border: 1px solid var(--ink);
}
.fh-slideshow__dot.is-active { background: var(--gold-bright); }

/* ------------------------------------------------------------- the reel --- */

.fh-reel {
  background: var(--ink);
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  padding: 36px 0;
  overflow: hidden;
}
.fh-reel__head {
  max-width: var(--wrap); margin: 0 auto 22px; padding: 0 var(--gutter);
  display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap;
}
.fh-reel__head h2 { font-family: var(--display); font-size: 26px; color: var(--gold-bright); margin: 0; }
.fh-reel__head span { color: var(--dark-text-2); font-size: 14px; }
.fh-reel__viewport { width: 100%; overflow: hidden; }
.fh-reel__track {
  display: flex; gap: 24px; width: max-content; padding-left: var(--gutter);
  animation: fh-reelmove var(--fh-reel-speed, 45s) linear infinite;
}
@keyframes fh-reelmove { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.fh-reel__card { flex: none; width: 300px; }
.fh-reel__card img { width: 300px; height: 160px; object-fit: cover; display: block; border: 2px solid var(--gold); }
.fh-reel__card span {
  color: var(--cream-2); font-size: 14px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-top: 10px; display: block;
}
@media (prefers-reduced-motion: reduce) {
  .fh-reel__track { animation: none; }
  .fh-reel__viewport { overflow-x: auto; }
}

/* --------------------------------------------------------- the farmstead --- */

.fh-farmstead {
  max-width: var(--wrap); margin: 0 auto; padding: 110px var(--gutter);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center;
}
.fh-farmstead__quote {
  font-family: var(--display); font-weight: 600; font-style: italic;
  font-size: 40px; line-height: 1.2; margin: 0 0 28px;
}
.fh-farmstead__quote cite {
  font-style: normal; font-size: 18px; color: var(--muted); display: block;
  margin-top: 12px; font-family: var(--body); font-weight: 400;
}
.fh-farmstead p { font-size: 17px; line-height: 1.7; color: var(--ink-3); margin: 0 0 20px; max-width: 560px; }
.fh-farmstead p:last-of-type { margin-bottom: 32px; }
.fh-farmstead__symbol { text-align: center; }
.fh-farmstead__symbol img { max-width: 280px; width: 100%; }
.fh-farmstead__caption { font-size: 14px; color: var(--muted); margin-top: 16px; font-style: italic; }
.fh-farmstead__motto { font-family: var(--display); font-weight: 700; font-size: 20px; margin-top: 10px; color: var(--clay); }

/* --------------------------------------------------------------- plots --- */

.fh-band-kraft { background: var(--kraft); border-top: 2px solid var(--ink); padding: 100px 0; }

.fh-section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 56px; flex-wrap: wrap;
}
.fh-section-head h2 { max-width: 640px; }

.fh-plots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.fh-plots--two { grid-template-columns: repeat(2, 1fr); gap: 32px; }

.fh-packet {
  background: var(--card);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--gold);
  display: flex; flex-direction: column;
}
.fh-packet__strip {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: var(--ink); color: var(--gold-bright);
  padding: 10px 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}
.fh-packet__strip .fh-packet__field { color: var(--dark-text-2); }
.fh-packet__strip img { height: 26px; width: auto; filter: invert(1); }
.fh-packet__body { padding: 26px 24px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.fh-packet__body img.fh-packet__icon { height: 54px; width: 54px; object-fit: contain; align-self: flex-start; filter: none; }
.fh-packet__body h3 { font-size: 23px; margin: 0; line-height: 1.15; }
.fh-packet__body p { font-size: 15px; line-height: 1.6; color: var(--ink-3); margin: 0; }

/* larger variant used on What We Do */
.fh-packet--lg .fh-packet__strip { padding: 10px 22px; }
.fh-packet--lg .fh-packet__body { padding: 30px 28px; }
.fh-packet--lg .fh-packet__body h3 { font-size: 26px; margin: 0 0 14px; }
.fh-packet--lg .fh-packet__body h3 small { font-size: 16px; color: var(--muted); font-weight: 500; }
.fh-packet--lg .fh-packet__body p { font-size: 16px; line-height: 1.7; }

/* ------------------------------------------------------------ the barn --- */

.fh-section { max-width: var(--wrap); margin: 0 auto; padding: 100px var(--gutter); }
.fh-section--tight { padding: 80px var(--gutter); }

.fh-barn { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fh-barn img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 2px solid var(--ink); display: block; }
.fh-barn img:nth-child(2n) { margin-top: 24px; }

/* --------------------------------------------------------------- CTA --- */

.fh-cta {
  background: var(--gold);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.fh-cta__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 72px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.fh-cta h2 { font-size: 44px; margin: 0 0 10px; color: var(--ink); line-height: 1.15; }
.fh-cta--sm h2 { font-size: 40px; margin: 0; max-width: 700px; }
.fh-cta p { margin: 0; font-size: 17px; color: var(--ink-2); }
.fh-cta p a { color: var(--ink); font-weight: 700; }

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

.fh-footer { background: var(--ink); color: var(--dark-text); }
.fh-footer__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 72px var(--gutter) 56px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr .7fr; gap: 48px;
}
.fh-footer__brand img { height: 84px; width: auto; display: block; margin-bottom: 18px; }
.fh-footer__tagline { font-family: var(--display); font-style: italic; font-size: 17px; margin: 0; color: var(--dark-text-2); }
.fh-footer h2 {
  font-family: var(--body);
  color: var(--gold-bright); font-weight: 700; letter-spacing: 2px; font-size: 12px;
  text-transform: uppercase; margin: 0 0 16px;
}
.fh-footer p, .fh-footer address { margin: 0; font-size: 15px; line-height: 1.7; font-style: normal; }
.fh-footer a { color: var(--dark-text); text-decoration: none; }
.fh-footer a:hover, .fh-footer a:focus { color: var(--gold-bright); }
.fh-footer__bottom {
  border-top: 1px solid rgba(246,191,46,.2); padding: 18px var(--gutter);
  text-align: center; font-size: 13px; color: var(--dark-text-3);
}

.fh-social { display: flex; gap: 18px; flex-wrap: wrap; }
.fh-social a { display: inline-flex; color: var(--dark-text); }
.fh-social svg { width: 22px; height: 22px; fill: currentColor; display: block; }
.fh-social--ink a { color: var(--ink); }
.fh-social--ink a:hover, .fh-social--ink a:focus { color: var(--clay); }
.fh-social--ink svg { width: 26px; height: 26px; }

/* --------------------------------------------------------- page heroes --- */

.fh-pagehero {
  background: var(--kraft);
  border-bottom: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.fh-pagehero__inner { max-width: var(--wrap); margin: 0 auto; padding: 88px var(--gutter) 72px; position: relative; }
.fh-pagehero__mark {
  position: absolute; right: -30px; bottom: -70px; height: 360px; opacity: .1;
  pointer-events: none; max-width: none;
}

/* ----------------------------------------------------------- who we are --- */

.fh-split {
  max-width: var(--wrap); margin: 0 auto; padding: 96px var(--gutter);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start;
}
.fh-split p { font-size: 18px; line-height: 1.75; margin: 0 0 24px; color: var(--ink-2); }
.fh-split .fh-btn-row { margin-top: 40px; }

.fh-symbol-card {
  background: var(--card); border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--gold);
  padding: 36px; text-align: center;
}
.fh-symbol-card img { height: 150px; width: auto; display: block; margin: 0 auto 20px; }
.fh-symbol-card h2 { font-family: var(--display); font-weight: 700; font-size: 22px; margin: 0 0 8px; }
.fh-symbol-card p { font-size: 15px; line-height: 1.6; color: var(--ink-3); margin: 0 0 18px; }
.fh-symbol-card__motto { font-family: var(--display); font-style: italic; font-size: 18px; color: var(--clay); }

/* -------------------------------------------------------------- ledger --- */

.fh-ledger { max-width: 1100px; margin: 0 auto; padding: 80px var(--gutter); }
.fh-ledger__row {
  display: grid; grid-template-columns: 280px 1fr; gap: 40px;
  padding: 36px 0; border-bottom: 2px solid var(--kraft-line); align-items: start;
}
.fh-ledger__client { font-family: var(--display); font-weight: 700; font-size: 24px; margin: 0; line-height: 1.2; }
.fh-ledger__kind {
  color: var(--clay); font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-top: 8px;
}
.fh-ledger__items { display: flex; flex-direction: column; gap: 14px; }
.fh-ledger__items p { font-size: 16px; line-height: 1.65; color: var(--ink-2); margin: 0; }
.fh-ledger__items strong { color: var(--ink); }

/* ------------------------------------------------------------ galleries --- */

.fh-gallery-head { margin-bottom: 36px; display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.fh-gallery-head h2 { font-family: var(--display); font-weight: 700; font-size: 28px; margin: 0; }
.fh-gallery-head span {
  color: var(--muted); font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
}
.fh-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fh-grid-4 + .fh-gallery-head { margin-top: 72px; }
.fh-grid-4 img, .fh-grid-4 a { display: block; }
.fh-grid-4 img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 2px solid var(--ink); }

/* ----------------------------------------------------------- lightbox --- */

.fh-tile { display: block; position: relative; line-height: 0; }
.fh-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(36,27,18,0) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 24 24' fill='none' stroke='%23f6bf2e' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-4.5-4.5M11 8v6M8 11h6'/%3E%3C/svg%3E") center no-repeat;
  background-size: 0;
  transition: background-color .2s ease, background-size .2s ease;
  pointer-events: none;
}
.fh-tile:hover::after, .fh-tile:focus-visible::after {
  background-color: rgba(36,27,18,.45);
  background-size: 34px;
}

.fh-lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(20,15,10,.94);
  display: none; align-items: center; justify-content: center;
  padding: 72px 24px;
}
.fh-lightbox.is-open { display: flex; }
body.fh-lightbox-open { overflow: hidden; }

.fh-lightbox__figure {
  margin: 0; max-width: 100%; max-height: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.fh-lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  width: auto; height: auto; display: block;
  border: 3px solid var(--gold);
  box-shadow: 14px 14px 0 rgba(236,163,23,.22);
  background: var(--ink);
}
.fh-lightbox__caption {
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; justify-content: center;
  color: var(--dark-text); font-size: 15px; text-align: center;
}
.fh-lightbox__counter {
  color: var(--gold-bright); font-weight: 700; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
}

.fh-lightbox__close,
.fh-lightbox__nav {
  position: absolute; z-index: 2;
  background: var(--ink); color: var(--gold-bright);
  border: 2px solid var(--gold);
  cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--body);
  transition: background-color .15s ease, color .15s ease;
}
.fh-lightbox__close:hover,
.fh-lightbox__nav:hover { background: var(--gold); color: var(--ink); }

.fh-lightbox__close { top: 20px; right: 24px; width: 46px; height: 46px; font-size: 26px; }
.fh-lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 20px; }
.fh-lightbox__nav--prev { left: 24px; }
.fh-lightbox__nav--next { right: 24px; }

@media (max-width: 780px) {
  .fh-lightbox { padding: 64px 12px; }
  .fh-lightbox__img { max-height: calc(100vh - 180px); border-width: 2px; box-shadow: 8px 8px 0 rgba(236,163,23,.22); }
  .fh-lightbox__close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .fh-lightbox__nav { width: 42px; height: 42px; }
  .fh-lightbox__nav--prev { left: 8px; }
  .fh-lightbox__nav--next { right: 8px; }
  /* Touch has swipe; keep the tap target for the photo itself. */
  .fh-tile::after { display: none; }
}

/* ------------------------------------------------------------ showreel --- */

.fh-showreel { background: var(--ink); border-bottom: 4px solid var(--gold); padding: 96px var(--gutter); }
.fh-showreel__inner { max-width: 1000px; margin: 0 auto; }
.fh-showreel__frame {
  border: 2px solid var(--gold); box-shadow: 10px 10px 0 rgba(236,163,23,.3); background: #000;
}
.fh-showreel__frame iframe { display: block; border: 0; width: 100%; aspect-ratio: 16/9; height: auto; }
.fh-showreel__meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 20px; gap: 20px; flex-wrap: wrap;
}
.fh-showreel__meta > span { color: var(--dark-text); font-size: 15px; }
.fh-showreel__empty {
  color: var(--dark-text); font-size: 17px; border: 2px dashed rgba(236,163,23,.5);
  padding: 48px 32px; text-align: center; margin: 0;
}

/* reel carousel — the centre reel plays, its neighbours peek in from the edges */
.fh-reelbox__tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.fh-reelbox__tab {
  background: transparent; color: var(--dark-text);
  border: 2px solid rgba(236,163,23,.45); border-left-width: 4px;
  padding: 10px 18px; cursor: pointer;
  font-family: var(--body); font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.fh-reelbox__tab:hover { color: var(--gold-bright); border-color: var(--gold); }
.fh-reelbox__tab.is-active {
  background: var(--gold); color: var(--ink); border-color: var(--gold); border-left-color: var(--ink);
}

/* Full-bleed viewport so the side reels can run off both edges. */
.fh-reelbox__viewport {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  padding: 8px 0 4px;
}
.fh-reelbox__track {
  display: flex;
  gap: var(--fh-reel-gap, 28px);
  will-change: transform;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
}
.fh-reelbox__slide {
  flex: 0 0 var(--fh-reel-w, 680px);
  width: var(--fh-reel-w, 680px);
  opacity: .38;
  transform: scale(.9);
  transform-origin: center;
  transition: opacity .45s ease, transform .55s cubic-bezier(.22,.61,.36,1);
  cursor: pointer;
}
.fh-reelbox__slide.is-active { opacity: 1; transform: scale(1); cursor: default; }

.fh-reelbox__card {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border: 2px solid var(--gold);
  box-shadow: 10px 10px 0 rgba(236,163,23,.3);
}
.fh-reelbox__slide:not(.is-active) .fh-reelbox__card { box-shadow: 6px 6px 0 rgba(236,163,23,.18); }
.fh-reelbox__frame { position: absolute; inset: 0; }
.fh-reelbox__frame iframe { display: block; border: 0; width: 100%; height: 100%; }

.fh-reelbox__poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background: #000 center/cover no-repeat;
  border: 0; padding: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.fh-reelbox__play {
  width: 74px; height: 74px; border: 3px solid var(--gold); background: rgba(36,27,18,.75);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .15s ease;
}
.fh-reelbox__play::after {
  content: ""; width: 0; height: 0;
  border-left: 20px solid var(--gold-bright);
  border-top: 13px solid transparent; border-bottom: 13px solid transparent;
  margin-left: 5px;
}
.fh-reelbox__poster:hover .fh-reelbox__play { background: var(--ink); }
.fh-reelbox__slide:not(.is-active) .fh-reelbox__play { opacity: 0; }

.fh-reelbox__card--empty {
  border: 2px dashed rgba(236,163,23,.5); background: rgba(0,0,0,.25);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 24px; box-shadow: none;
}
.fh-reelbox__card--empty p { color: var(--dark-text); margin: 0; font-size: 16px; }

.fh-reelbox__label {
  font-family: var(--display); font-weight: 700; font-size: 22px;
  color: var(--gold-bright); margin-top: 18px;
}
.fh-reelbox__caption { color: var(--dark-text-2); font-size: 15px; margin: 6px 0 0; }

.fh-reelbox__arrow {
  position: absolute; top: 34%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; cursor: pointer;
  background: var(--ink); color: var(--gold-bright);
  border: 2px solid var(--gold); font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.fh-reelbox__arrow:hover { background: var(--gold); color: var(--ink); }
.fh-reelbox__arrow--prev { left: calc(50% - (var(--fh-reel-w, 680px) / 2) - 26px); }
.fh-reelbox__arrow--next { left: calc(50% + (var(--fh-reel-w, 680px) / 2) - 22px); }

.fh-showreel__slot-title {
  font-family: var(--display) !important; font-weight: 700; font-size: 26px;
  color: var(--gold-bright) !important;
}

/* ---------------------------------------------------------------- crew --- */

.fh-crew { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.fh-crew__card {
  background: var(--card); border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--gold);
  display: flex; flex-direction: column;
}
.fh-crew__card img { width: 100%; aspect-ratio: 5/6; object-fit: cover; display: block; border-bottom: 2px solid var(--ink); }
.fh-crew__name {
  font-family: var(--display); font-weight: 700; font-size: 19px; margin: 0; line-height: 1.2;
  padding: 16px 18px 0;
}
.fh-crew__role {
  color: var(--clay); font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 18px 18px; margin: 0;
}
.fh-crew__bio { font-size: 15px; line-height: 1.6; color: var(--ink-3); padding: 0 18px 18px; margin: -8px 0 0; }
.fh-crew-board {
  background: var(--card); border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--gold); padding: 20px;
}
.fh-crew-board img { display: block; width: 100%; }

/* ------------------------------------------------------------ partners --- */

.fh-partner .fh-packet__strip { padding: 12px 24px; }
.fh-partner__name { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: 0; text-transform: none; }
.fh-partner__city { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dark-text-2); }
.fh-partner__body { padding: 28px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.fh-partner__body img { height: 64px; width: auto; align-self: flex-start; object-fit: contain; }
.fh-partner__body p { font-size: 16px; line-height: 1.7; color: var(--ink-3); margin: 0; }
.fh-partner__contact { font-size: 14px; line-height: 1.7; color: var(--muted); margin: auto 0 0 !important; }

/* ------------------------------------------------------------- contact --- */

.fh-contact {
  max-width: var(--wrap); margin: 0 auto; padding: 96px var(--gutter);
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start;
}
.fh-contact__details { display: flex; flex-direction: column; gap: 36px; }
.fh-contact__details .fh-kicker { letter-spacing: 2px; font-size: 12px; margin-bottom: 12px; }
.fh-contact__details p, .fh-contact__details address { font-size: 18px; line-height: 1.7; margin: 0; font-style: normal; }
.fh-contact__details a[href^="tel"] { color: var(--ink); text-decoration: none; font-weight: 600; }
.fh-contact__details a[href^="mailto"] { font-weight: 600; }
.fh-contact__map { border: 2px solid var(--ink); line-height: 0; }
.fh-contact__map iframe { display: block; width: 100%; height: 260px; border: 0; }

.fh-form-card {
  background: var(--card); border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--gold); padding: 40px;
}
.fh-form-card h2 { font-family: var(--display); font-weight: 700; font-size: 30px; margin: 0 0 8px; }
.fh-form-card__note { font-size: 15px; color: var(--muted); margin: 0 0 28px; }
.fh-form { display: flex; flex-direction: column; gap: 18px; }
.fh-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fh-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-2);
}
.fh-form input[type="text"],
.fh-form input[type="email"],
.fh-form textarea {
  border: 2px solid var(--ink); background: #fff; padding: 12px 14px;
  font-size: 16px; font-family: var(--body); color: var(--ink); border-radius: 0;
  font-weight: 400; letter-spacing: 0; text-transform: none;
}
.fh-form textarea { resize: vertical; }
.fh-form button {
  background: var(--gold); border: 2px solid var(--ink); color: var(--ink);
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 14px;
  padding: 16px 28px; cursor: pointer; align-self: flex-start; font-family: var(--body);
}
.fh-form button:hover, .fh-form button:focus { background: var(--gold-bright); }
.fh-form__notice {
  border: 2px solid var(--ink); background: var(--gold); color: var(--ink);
  padding: 14px 18px; font-weight: 600; margin: 0 0 22px;
}
.fh-form__notice--error { background: var(--clay); color: var(--cream); }
.fh-form__hp { position: absolute; left: -9999px; }

/* Contact-form plugin shortcodes inherit the same square, ink-bordered look */
.fh-form-card .wpcf7-form-control:not(.wpcf7-submit),
.fh-form-card .wpforms-field input,
.fh-form-card .wpforms-field textarea,
.fh-form-card .wpforms-field select {
  border: 2px solid var(--ink) !important; background: #fff !important;
  border-radius: 0 !important; padding: 12px 14px !important; font-family: var(--body) !important;
}
.fh-form-card .wpcf7-submit,
.fh-form-card .wpforms-submit {
  background: var(--gold) !important; border: 2px solid var(--ink) !important; color: var(--ink) !important;
  border-radius: 0 !important; font-weight: 700 !important; text-transform: uppercase !important;
  letter-spacing: 1px !important; padding: 16px 28px !important;
}

/* ----------------------------------------------------- generic content --- */

.fh-prose { font-size: 18px; line-height: 1.75; color: var(--ink-2); }
.fh-prose > * { max-width: 760px; }
.fh-prose h2 { font-size: 34px; margin: 44px 0 16px; }
.fh-prose h3 { font-size: 25px; margin: 36px 0 12px; }
.fh-prose img, .fh-prose figure { max-width: 100%; }
.fh-prose blockquote {
  border-left: 4px solid var(--gold); margin: 32px 0; padding: 4px 0 4px 24px;
  font-family: var(--display); font-style: italic; font-size: 24px;
}
.fh-prose ul, .fh-prose ol { padding-left: 22px; }
.fh-prose table { border-collapse: collapse; width: 100%; }
.fh-prose td, .fh-prose th { border: 1px solid var(--kraft-line); padding: 10px 12px; }

.fh-postcard {
  background: var(--card); border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--gold);
  padding: 28px; margin-bottom: 32px;
}
.fh-postcard h2 { font-size: 26px; margin: 0 0 8px; }
.fh-postcard h2 a { color: var(--ink); text-decoration: none; }
.fh-postcard h2 a:hover { color: var(--clay); }
.fh-postcard__meta { color: var(--muted); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }

.fh-pagination { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 40px; }
.fh-pagination .page-numbers {
  border: 2px solid var(--ink); padding: 8px 14px; text-decoration: none; color: var(--ink); font-weight: 700;
}
.fh-pagination .page-numbers.current, .fh-pagination .page-numbers:hover { background: var(--gold); color: var(--ink); }

/* ================================================================ media --- */

@media (max-width: 1220px) {
  .fh-farmstead { grid-template-columns: 1fr; gap: 48px; padding: 90px var(--gutter); }
  .fh-split { grid-template-columns: 1fr; gap: 48px; }
  .fh-contact { grid-template-columns: 1fr; gap: 48px; }
  .fh-crew { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1150px) {
  .fh-hero__inner { justify-content: flex-start; }
  .fh-hero__copy { padding: 80px 0 40px; min-width: 0; }
  .fh-shed { margin: 0 auto 56px; }
}

@media (max-width: 1024px) {
  .fh-nav { display: none; }
  .fh-burger { display: flex; }
  .fh-plots { grid-template-columns: repeat(2, 1fr); }
  .fh-barn, .fh-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .fh-h1 { font-size: 48px; }
  .fh-h1--hero { font-size: 56px; }
  .fh-h2 { font-size: 38px; }
  .fh-h2--sm, .fh-cta h2, .fh-cta--sm h2 { font-size: 32px; }
  .fh-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 780px) {
  :root { --gutter: 22px; --header-h: 72px; }
  .fh-header { border-top-width: 5px; }
  .fh-logo img { height: 40px; }

  .fh-hero__inner { min-height: 0; padding-bottom: 0; }
  .fh-hero__copy { padding: 30px 0 24px; }
  .fh-hero__copy .fh-kicker { font-size: 11px; letter-spacing: 2.5px; margin-bottom: 12px; }
  .fh-h1--hero { font-size: 42px; line-height: 1.04; margin-bottom: 14px; }
  .fh-hero__copy p { font-size: 15px; line-height: 1.55; margin-bottom: 20px; }
  .fh-hero__copy .fh-btn-row { flex-direction: column; gap: 10px; }
  .fh-hero__copy .fh-btn { text-align: center; padding: 14px; font-size: 13px; }

  /* shed scales down and keeps its footprint */
  .fh-shed-scale { width: 100%; height: 342px; overflow: hidden; margin-bottom: 8px; }
  .fh-shed-scale .fh-shed { transform: scale(.53); transform-origin: top left; margin: 0; }

  .fh-reel { padding: 20px 0; border-top-width: 3px; border-bottom-width: 3px; }
  .fh-reel__head { margin-bottom: 12px; }
  .fh-reel__head h2 { font-size: 18px; }
  .fh-reel__head span { display: none; }
  .fh-reel__viewport { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .fh-reel__viewport::-webkit-scrollbar { display: none; }
  .fh-reel__track { animation: none; gap: 12px; padding-right: var(--gutter); }
  .fh-reel__card { width: 190px; }
  .fh-reel__card img { width: 190px; height: 105px; }
  .fh-reel__card span { font-size: 11px; margin-top: 6px; }

  .fh-section, .fh-farmstead, .fh-split, .fh-contact { padding: 48px var(--gutter); }
  .fh-band-kraft { padding: 48px 0; }
  .fh-section-head { margin-bottom: 32px; }
  .fh-ledger { padding: 40px var(--gutter); }
  .fh-ledger__row { grid-template-columns: 1fr; gap: 14px; padding: 26px 0; }
  .fh-showreel { padding: 48px var(--gutter); }
  .fh-reelbox__tabs { gap: 8px; }
  .fh-reelbox__tab { padding: 8px 12px; font-size: 11px; letter-spacing: 1px; flex: 1 1 45%; }
  .fh-reelbox__arrow--prev { left: calc(50% - (var(--fh-reel-w, 300px) / 2) - 19px); }
  .fh-reelbox__arrow--next { left: calc(50% + (var(--fh-reel-w, 300px) / 2) - 19px); }
  .fh-reelbox__arrow { width: 38px; height: 38px; opacity: .92; }
  .fh-reelbox__label { font-size: 18px; margin-top: 12px; }
  .fh-reelbox__caption { font-size: 14px; }
  .fh-reelbox__play { width: 54px; height: 54px; }
  .fh-cta__inner { padding: 44px var(--gutter); }

  .fh-pagehero__inner { padding: 28px var(--gutter) 32px; }
  .fh-h1 { font-size: 33px; line-height: 1.08; }
  .fh-lede { font-size: 15px; }
  .fh-pagehero__mark { height: 220px; right: -50px; bottom: -50px; }

  .fh-plots, .fh-plots--two { grid-template-columns: 1fr; gap: 20px; }
  /* Photos and headshots stay two-up — a single column makes them absurdly tall. */
  .fh-crew, .fh-barn, .fh-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fh-crew { gap: 16px; }
  .fh-crew__name { font-size: 16px; padding: 12px 12px 0; }
  .fh-crew__role { font-size: 11px; padding: 4px 12px 14px; }
  .fh-barn img:nth-child(2n) { margin-top: 0; }
  .fh-packet { box-shadow: 5px 5px 0 var(--gold); }
  .fh-packet__strip { font-size: 11px; letter-spacing: 1.5px; padding: 8px 16px; }
  .fh-packet--lg .fh-packet__body { padding: 18px; }
  .fh-packet--lg .fh-packet__body h3 { font-size: 20px; margin-bottom: 8px; }
  .fh-packet--lg .fh-packet__body p { font-size: 14px; line-height: 1.6; }

  .fh-farmstead__quote { font-size: 28px; }
  .fh-form-card { padding: 22px; box-shadow: 5px 5px 0 var(--gold); }
  .fh-form-card h2 { font-size: 21px; }
  .fh-form__row { grid-template-columns: 1fr; }
  .fh-form button { align-self: stretch; text-align: center; }

  .fh-footer__inner { grid-template-columns: 1fr; gap: 32px; padding: 40px var(--gutter) 32px; }
  .fh-cta h2, .fh-cta--sm h2 { font-size: 28px; }
  .fh-grid-4 + .fh-gallery-head { margin-top: 40px; }
}

@media (max-width: 400px) {
  .fh-shed-scale { height: 300px; }
  .fh-shed-scale .fh-shed { transform: scale(.46); }
}

/* ------------------------------------------------------------ printing --- */
@media print {
  .fh-header, .fh-mobile-menu, .fh-reel, .fh-cta, .fh-shed { display: none !important; }
  body { background: #fff; }
}
