  @font-face {
  font-family: "HB";
  src: url("fonts/HB.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root{
  /* Layout */
  --max: 1120px;
  --radius: 10px; /* was 18px */

  /* Fonts */
  --sans: "Libre Franklin", ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  --serif: ui-serif, Georgia, "Times New Roman", serif;

  /* Base palette */
  --bg: #fbf6ee;                  /* flour */
  --ink: #1f1b16;                 /* espresso */
  --muted: #7a6e62;
  --line: rgba(58,43,32,.14);
  --shadow: 0 18px 45px rgba(43,28,18,.10);
  --ring: rgba(155,109,66,.28);

  /* Color blocks */
  --sage: #3f5a4a;                /* deep muted green */
  --sage-ink: rgba(255,250,244,.92);
  --clay: #8a5a3b;                /* rust/clay */
  --clay-ink: rgba(255,250,244,.93);

  /* Accents */
  --rust: #9b6d42;
  --honey: #c28b5a;
}

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

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(155,109,66,.10), transparent 55%),
    radial-gradient(900px 600px at 85% 20%, rgba(63,90,74,.10), transparent 55%),
    radial-gradient(900px 600px at 50% 90%, rgba(58,43,32,.06), transparent 55%);
  opacity: .45;
}

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

.container{
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}



/* =========================
   HEADER — CENTER LOGO, RIGHT NAV
========================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,246,238,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

/* Grid keeps logo visually centered */
.navbar{
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* spacer | logo | nav */
  align-items: center;
  padding: 10px 0;
  gap: 16px;
}

/* Invisible spacer so logo stays centered */
.nav-left{
  height: 1px;
}

/* Logo */
.logo-link{
  justify-self: center;
  display: inline-block;
  text-decoration: none;
}

.logo-img{
  height: 100px;
  width: auto;
  max-width: 70vw;
  display: block;
}

/* Right-aligned navigation */
.nav-right{
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.nav-links{
  list-style: none;
  display: flex;
  flex-direction: row;       /* FORCE horizontal */
  gap: 20px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-links a{
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: .20em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(31,27,22,.82);
  padding: 6px 8px;
}

.nav-links a:hover{
  color: rgba(31,27,22,1);
  border-bottom: 1px solid rgba(155,109,66,.45);
}

.nav-links a[aria-current="page"]{
  border-bottom: 1px solid rgba(155,109,66,.75);
}

/* Mobile menu button */
.menu-btn{
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,250,244,.62);
  padding: 8px 10px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 900px){
  .navbar{
    grid-template-columns: auto 1fr auto;
  }

  .nav-left{
    display: none;
  }

  .logo-img{
    height: 56px;
  }

  .nav-links{
    display: none;
  }

  .menu-btn{
    display: inline-flex;
  }

  .nav-links.is-open{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: rgba(251,246,238,.96);
    border: 1px solid var(--line);
    padding: 14px;
    box-shadow: var(--shadow);
    min-width: 220px;
  }

  .nav-links.is-open a{
    padding: 6px 0;
  }
}

/* =========================
   TYPOGRAPHY
========================= */


/* Script-style page titles (Flours, FAQ, etc.) */
.script-title {
  font-family: "HB", Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 400;
  margin: 0 0 14px;
  line-height: .95;
  letter-spacing: 0;
}

/* Subtle animated underline for emphasis (home hero) */
.living-grain{
  position: relative;
  display: inline-block; /* <-- add this */
  font-family: "HB", Georgia, "Times New Roman", serif;
  font-size: 1.25em;   /* ← try 1.1–1.2 */
}

.living-grain::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  height: 2px;
  width: 100%;
  background: linear-gradient(
    to right,
    rgba(155,109,66,.85),
    rgba(63,90,74,.85)
  );
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-draw 700ms ease-out forwards;
}

@keyframes underline-draw{
  to { transform: scaleX(1); }
}

.kicker{
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}

.kicker-rust{ color: rgba(155,109,66,.95); }
.kicker-on-dark{ color: rgba(255,250,244,.78); }

h1, h2{
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.02em;
}

h1{
  font-size: clamp(44px, 5.3vw, 76px);
  margin: 0 0 14px;
  line-height: 1.02;
}

h2{
  font-size: 30px;
  margin: 0 0 14px;
}

.h2-on-dark{ color: rgba(255,250,244,.96); }

.lede{
  font-size: 18px;
  color: rgba(31,27,22,.78);
  margin: 0 0 22px;
  max-width: 58ch;
}

.lede-on-dark{ color: rgba(255,250,244,.82); }

.fineprint{
  margin: 14px 0 0;
  font-size: 12px;
  color: rgba(31,27,22,.68);
}
.fineprint a{
  text-decoration: none;
  border-bottom: 1px solid rgba(155,109,66,.28);
}
.fineprint a:hover{ border-bottom-color: rgba(155,109,66,.62); }

.display{
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.25;
  color: rgba(255,250,244,.94);
  margin: 0;
  max-width: 30ch;
}

.smallhead{
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: rgba(255,250,244,.86);
}

.body{
  margin: 0;
  font-size: 16px;
  color: rgba(31,27,22,.78);
}

/* Script-style page titles (Flours, FAQ, etc.) */
.script-title {
  font-family: "HB", Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 400;
  margin: 0 0 14px;
  line-height: .95;
  letter-spacing: 0;
}

.script-accent{
  font-family: "HB", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 1.15em;          /* slightly larger, not shouty */
  color: var(--ink);          /* keep it grounded */
  white-space: nowrap;        /* prevents awkward line breaks */
}

/* =========================
   BUTTONS
========================= */

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(155,109,66,.45);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: rgba(255,247,238,.70);
  box-shadow: 0 8px 22px rgba(43,28,18,.08);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(155,109,66,.75);
  background: rgba(255,247,238,.88);
}

.btn:focus{
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.btn span{ transition: transform .16s ease; }
.btn:hover span{ transform: translateX(2px); }

.btn-ghost{
  border-color: rgba(63,90,74,.35);
  background: rgba(236,244,238,.60);
}
.btn-ghost:hover{
  border-color: rgba(63,90,74,.70);
  background: rgba(236,244,238,.80);
}

.btn-on-dark{
  border-color: rgba(255,250,244,.40);
  background: rgba(255,250,244,.10);
  color: rgba(255,250,244,.92);
}
.btn-on-dark:hover{
  border-color: rgba(255,250,244,.70);
  background: rgba(255,250,244,.16);
}

/* =========================
   SECTIONS / LAYOUT
========================= */

.section{
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.section-tint{
  background: linear-gradient(180deg, rgba(155,109,66,.06), rgba(255,255,255,0));
}

/* Color-block bands (square / architectural) */
.band{
  padding: 92px 0;
  border-top: 1px solid rgba(255,250,244,.18);
  border-bottom: 1px solid rgba(255,250,244,.18);
  border-radius: 0;
}

.band-sage{
  background: linear-gradient(180deg, rgba(63,90,74,1), rgba(53,78,65,1));
}

.band-clay{
  background: linear-gradient(180deg, rgba(138,90,59,1), rgba(120,74,46,1));
}

/* =========================
   HERO
========================= */

.hero{ padding: 26px 0 36px; }

.hero-shell{
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255,250,244,.72), rgba(255,250,244,.30));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  align-items: stretch;
}

.hero-copy{
  padding: 48px 48px 44px;
}

.hero-media{
  position: relative;
  min-height: 520px;
  border-left: 1px solid var(--line);
  background: rgba(255,250,244,.35);
}

.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: contrast(1.02) saturate(1.02);
}

.hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(60% 60% at 70% 30%, rgba(255,250,244,.28), rgba(0,0,0,0));
  pointer-events:none;
}


/* =========================
   HERO BAND (FULL BLEED) — FIXED
========================= */

.hero-band{
  position: relative;
  width: 100%;
  min-height: clamp(520px, 70vh, 740px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
}

/* make the image truly fill the band */
.hero-band-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(1.05);
}

/* subtle vignette overlay */
.hero-band-overlay{
  position: absolute;
  inset: 0;
  background: radial-gradient(
    80% 60% at 50% 40%,
    rgba(255,250,244,.08),
    rgba(31,27,22,.28)
  );
  pointer-events: none;
}

/* content area sits above image+overlay */
.hero-band-content{
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 76px 0 70px;
}

.hero-band-inner{
  max-width: 64ch;
  padding: 28px 30px 24px;
  background: rgba(255,250,244,.78);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid rgba(255,250,244,.55);
  box-shadow: 0 20px 40px rgba(31,27,22,.25);
  border-radius: 6px; /* optional, remove if you want sharper */
}

/* IMPORTANT: on glass, text should be dark */
.hero-band-inner h1{
  color: var(--ink);
  text-shadow: none;
}

.hero-band-inner h1{
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05;
}

.hero-band-inner{
  max-width: 64ch;
  padding: 28px 30px 24px;

  /* lighter glass */
  background: rgba(255,250,244,.48);
  backdrop-filter: blur(7px) saturate(1.03);
  -webkit-backdrop-filter: blur(7px) saturate(1.03);

  border: 1px solid rgba(255,250,244,.35);
  border-radius: 6px;

  box-shadow:
    0 14px 32px rgba(31,27,22,.18);
}

/* buttons */
.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* mobile spacing */
@media (max-width: 900px){
  .hero-band-content{
    padding: 64px 0 56px;
  }
  .hero-band-inner{
    padding: 22px 20px 18px;
  }
}

/* =========================
   NOTE BAND / PANELS
========================= */

.note-grid{
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 44px;
  align-items: start;
}

.note-panel{
  border: 1px solid rgba(255,250,244,.22);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255,250,244,.08);
  box-shadow: 0 16px 40px rgba(18,12,8,.22);
}

.bullets{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,250,244,.86);
  font-size: 15px;
  line-height: 1.6;
}
.bullets li{ margin: 8px 0; }

.note-cta{ margin-top: 16px; }

/* =========================
   QUOTE
========================= */

.quote{
  padding: 104px 0;
  text-align: center;
}

.quote blockquote{
  margin: 0 auto;
  max-width: 34ch;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.25;
  font-style: italic;
  color: rgba(31,27,22,.92);
}

/* =========================
   FEATURES / GRID
========================= */

/* =========================
   FEATURES / GRID
========================= */

.section-head{
  max-width: 68ch;
}

/* grid layout */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}

/* individual feature blocks */
.feature{
  background: linear-gradient(
    180deg,
    rgba(63,90,74,.95),
    rgba(53,78,65,.95)
  );
  border: 1px solid rgba(255,250,244,.20);
  border-radius: 4px;
  padding: 16px 16px;
  box-shadow: 0 18px 40px rgba(18,12,8,.22);
}

/* FORCE light text everywhere inside */
.feature{
  color: rgba(255,250,244,.92);
}

/* feature titles */
.feature h2,
.feature h3,
.feature h4{
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.01em;
  margin: 0 0 10px;
  color: rgba(255,250,244,.96);
}

/* small uppercase kicker inside feature */
.feature .smallhead{
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: rgba(255,250,244,.82);
}

/* body text */
.feature p,
.feature .body{
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  color: rgba(255,250,244,.90);
}

/* spacing for multiple paragraphs */
.feature p + p{
  margin-top: 10px;
}

/* responsive */
@media (max-width: 900px){
  .feature-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* =========================
   GALLERY
========================= */

.band-head{ margin-bottom: 18px; }

.gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.shot{
  border: 1px solid rgba(255,250,244,.22);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255,250,244,.10);
}

.shot img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Full-bleed band image (square) */
.band-bleed{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,250,244,.35);
  border-radius: 0;
}

.band-bleed img{
  width: 100%;
  height: clamp(240px, 20vw, 520px);
  object-fit: cover;
  display: block;
}

/* Narrow band for interior pages like FAQ */
.band-bleed--narrow img{
  height: clamp(160px, 15vw, 280px);
}

.band-title{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.band-title h1{
  color: rgba(255,250,244,.96);
  text-shadow: 0 10px 28px rgba(0,0,0,.35);
}

/* =========================
   CONTACT
========================= */

.contact-center{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-card{
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255,250,244,.65);
  box-shadow: 0 18px 45px rgba(43,28,18,.10);
}

.contact-lines{
  display: grid;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
}

.contact-lines a{
  text-decoration: none;
  border-bottom: 1px solid rgba(155,109,66,.26);
  display: inline-block;
  justify-self: center;
  padding-bottom: 2px;
}
.contact-lines a:hover{ border-bottom-color: rgba(155,109,66,.58); }

/* =========================
   FOOTER
========================= */

footer{
  margin-top: 48px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  color: rgba(31,27,22,.72);
  font-size: 14px;
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .06em;
}

.footer-links a{
  text-decoration: none;
  border-bottom: 1px solid rgba(155,109,66,.22);
}
.footer-links a:hover{ border-bottom-color: rgba(155,109,66,.55); }

/* =========================
   REVEAL
========================= */

.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px){
  .container{ width: min(var(--max), calc(100% - 34px)); }

  .site-logo{ width: 120px; }

  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media{ min-height: 360px; border-left: 0; border-top: 1px solid var(--line); }

  .note-grid{ grid-template-columns: 1fr; gap: 18px; }

  .feature-grid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .shot img{ height: 260px; }

  .nav-links{ display:none; }
  .menu-btn{ display:inline-flex; }

  .nav-links.is-open{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap: 8px;
    position:absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 48px;
    background: rgba(251,246,238,.96);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--shadow);
    min-width: 220px;
  }
}

/* =========================
   FAQ ACCORDION
========================= */

.faq{
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255,250,244,.55);
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(43,28,18,.06);
}

.faq-item{ border-top: 1px solid var(--line); }
.faq-item:first-child{ border-top: 0; }

.faq-q{
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(31,27,22,.90);
}

.faq-q:focus{
  outline: 3px solid var(--ring);
  outline-offset: -3px;
}

.faq-icon{
  font-size: 18px;
  opacity: .7;
  transform: rotate(0deg);
  transition: transform .18s ease, opacity .18s ease;
}

.faq-a{
  display: none;
  padding: 0 18px 18px;
}

.faq-item[data-open="true"] .faq-a{ display: block; }
.faq-item[data-open="true"] .faq-icon{ transform: rotate(45deg); opacity: 1; }


/* =====================================================
   FLOURS PAGE — FINAL, CLEAN, COLOR-ACCENTED
   (Overrides earlier styles safely)
===================================================== */

/* Wrap your flours content in <div class="flours"> */
.flours{
  margin-top: 24px;
}

/* -------- Section label (e.g. Wheat, Ancient Grains) -------- */
.flours .flour-divider{
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 36px 0 18px;
}

.flours .flour-divider span{
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--rust);
}

/* soft accent line (NOT a divider between items) */
.flours .flour-divider::after{
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(155,109,66,.65),
    rgba(63,90,74,.65)
  );
  opacity: .8;
}

/* -------- Individual flour items -------- */
.flours .flour-item{
  padding: 18px 0;
  border: none !important; /* kills any leftover lines */
  position: relative;
}

/* subtle hover movement only */
.flours .flour-item:hover{
  transform: translateX(2px);
}

/* -------- Name + price row -------- */
.flours .flour-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

/* FLOUR NAME — BIGGER */
.flours .flour-name{
  margin: 0;
  font-family: var(--sans);
  font-size: 22px;          /* 🔥 bigger */
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(31,27,22,.92);
}

/* PRICE — BIGGER BUT QUIETER */
.flours .price{
  font-family: var(--sans);
  font-size: 20px;          /* 🔥 bigger */
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(31,27,22,.60);
  white-space: nowrap;
}

/* -------- Description text -------- */
.flours .flour-desc{
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(31,27,22,.76);
  max-width: 72ch;
}

/* -------- Optional kicker color -------- */
.flours .kicker{
  color: rgba(155,109,66,.90);
}

/* =========================
   MOBILE TUNING
========================= */
@media (max-width: 720px){

  .flours .flour-head{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .flours .flour-name{
    font-size: 18px;       /* scaled down */
    letter-spacing: .14em;
  }

  .flours .price{
    font-size: 16px;
  }

  .flours .flour-desc{
    font-size: 15px;
  }
}

/* ===== FAQ: COLOR ACCENTS (rust + sage) ===== */

/* Optional: wrap your FAQ content in <div class="faq-page"> ... </div> for isolation */
.faq-page .faq{
  background: linear-gradient(
    180deg,
    rgba(63,90,74,.06),
    rgba(255,250,244,.55)
  );
  border-color: rgba(58,43,32,.12);
}

/* Question row hover = faint rust wash */
.faq-page .faq-q:hover{
  background: rgba(155,109,66,.08);
}

/* When open, give the question row a sage hint + stronger text */
.faq-page .faq-item[data-open="true"] .faq-q{
  background: rgba(63,90,74,.10);
  color: rgba(31,27,22,.95);
}

/* Make the + icon match brand colors */
.faq-page .faq-icon{
  color: rgba(155,109,66,.85);
}

/* When open, switch icon to sage */
.faq-page .faq-item[data-open="true"] .faq-icon{
  color: rgba(63,90,74,.90);
}

/* Answer area gets a tiny left accent bar */
.faq-page .faq-a{
  position: relative;
  padding-left: 18px;
}

.faq-page .faq-a::before{
  content:"";
  position:absolute;
  left: 0;
  top: 10px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(63,90,74,.85),
    rgba(155,109,66,.85)
  );
  opacity: .9;
}


.prose p{
  margin: 0 0 18px;
  max-width: 72ch;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(31,27,22,.78);
}

/* Signature block */
.signature{
  margin-top: 28px;
  line-height: 1.1;
}

/* Handwritten name */
.signature-name{
  font-family: "HB", Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;                  /* kills default <p> spacing */
  color: rgba(31,27,22,.95);
}

/* Founder line */
.signature-title{
  margin: 2px 0 0;            /* closer to name */
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;           /* bold-ish */
  letter-spacing: 0;
  text-transform: uppercase;       /* uppercase */
  color: rgba(31,27,22,.70);
}

/* =========================
   OUR STORY — INDENTED PULL IMAGES
========================= */

.story-prose{
  max-width: 70ch;
}

/* the pull image block */
.story-pull{
  margin: 22px 0 22px;
  max-width: 320px;           /* keeps it “indented”, not full line */
}

.story-pull img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 14px 32px rgba(43,28,18,.14);
}

.story-pull figcaption{
  margin-top: 8px;
  font-size: 13px;
  color: rgba(31,27,22,.60);
  font-style: italic;
  line-height: 1.35;
}

/* Desktop: float left or right so text wraps */
@media (min-width: 900px){
  .story-pull.pull-right{
    float: right;
    margin: 6px 0 18px 28px;
  }

  .story-pull.pull-left{
    float: left;
    margin: 6px 28px 18px 0;
  }
}



/* Mobile: no float, centered */
@media (max-width: 899px){
  .story-pull{
    margin: 22px auto;
  }
}

/* Clear floats so sections don’t collapse */
.story-clear{
  clear: both;
}

.story-pull figcaption{
  display: none;
}


/* =========================
   OUR STORY — SIGNATURE FIX
   (Overrides story-body p)
========================= */

/* OUR STORY — SIGNATURE (matches your actual HTML) */
.story-prose .signature-name{
  font-family: "HB", Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 0.95;
  margin: 0;
  color: rgba(31,27,22,.95);
}

.story-prose .signature-title{
  margin: 2px 0 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(31,27,22,.70);
}

/* OUR STORY — WIDER READING COLUMN */
.story-prose{
  max-width: 92ch;   /* was ~70ch */
}

/* OUR STORY — override the global prose paragraph width cap */
.story-prose p{
  max-width: none;   /* removes the 72ch cap from .prose p */
}

.story-header{
  margin-bottom: 36px;
}


.script-accent{
  font-family: "HB", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 45px;        /* softer than h1, still legible */
  line-height: 1.05;
  margin: 20px 0 18px;   /* breathing room above, not too tight below */
  color: rgba(31,27,22,.9);
}

.btn-story{
  margin-top: 32px;
}

/* Script accent when used on dark bands */
.band-clay .script-accent,
.band-sage .script-accent{
  color: rgba(255,250,244,.96);
}


/* ===== GALLERY HOVER LABELS ===== */
.shot{
  position: relative;
  overflow: hidden;
}

.shot img{
  display: block;
  width: 100%;
  height: 320px;          /* keep your existing height if you like */
  object-fit: cover;
}

/* label overlay */
.shot .grain-label{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;

  background: rgba(31,27,22,.62);
  color: rgba(255,250,244,.95);

  border: 1px solid rgba(255,250,244,.22);
  border-radius: 8px;

  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none; /* so hover stays smooth */
}

/* show on hover + keyboard focus */
.shot:hover .grain-label,
.shot:focus-within .grain-label{
  opacity: 1;
  transform: translateY(0);
}

/* subtle zoom on hover (optional, feels nice) */
.shot img{
  transition: transform .22s ease;
}
.shot:hover img,
.shot:focus-within img{
  transform: scale(1.02);
}

/* Mobile: always show label (no hover on touch) */
@media (max-width: 900px){
  .shot .grain-label{
    opacity: 1;
    transform: none;
    background: rgba(31,27,22,.48);
  }
}