/* ============================================================
   COPAIN BOULANGERIE — V2
   Faithful to: our-story.png + our-breads.jpg reference
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* — Fonts ——————————————————————————————————————————————————— */
@font-face {
  font-family: 'TAY Birdie';
  src: url('../assets/fonts/TAYBirdie.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Baskerville';
  src: url('../assets/fonts/Baskerville-01.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Baskerville';
  src: url('../assets/fonts/Baskerville-Italic-03.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Baskerville';
  src: url('../assets/fonts/Baskerville-SemiBold-05.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Baskerville';
  src: url('../assets/fonts/Baskerville-SemiBoldItalic-06.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* — Variables ——————————————————————————————————————————————— */
:root {
  --black:       #000000;
  --white:       #ffffff;
  --cream:       #ECEBE6;
  --cream-mid:   #E0DFD9;
  --text:        #000000;
  --text-mid:    #7E7E7E;
  --text-light:  #999;
  --border:      #d4cec4;
  --content-width: 540px;

  --font-display: 'altesse-std-64pt', 'altesse-std-24pt', 'TAY Birdie', Georgia, serif;
  --font-serif:   'Baskerville', Georgia, 'Times New Roman', serif;
  --font-garamond: 'EB Garamond', Georgia, serif;

  --track:       0.10em;
  --track-wide:  0.20em;
  --track-x:     0.28em;
  --anchor-offset: 124px;
}

/* — Reset ——————————————————————————————————————————————————— */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

section[id],
div[id] {
  scroll-margin-top: var(--anchor-offset);
}

body {
  font-family: var(--font-serif);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.coming-page {
  min-height: 100vh;
  background: var(--black);
}

img   { display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.measure {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

/* ============================================================
   COMING SOON LANDING PAGE
   ============================================================ */
.coming-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.coming-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.coming-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.28) 36%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at center 58%, rgba(255, 255, 255, 0.08), transparent 32%);
}

.coming-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 68px 28px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.coming-hero__wordmark {
  width: min(210px, 58vw);
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: clamp(42px, 8vh, 84px);
}

.coming-hero__title {
  font-family: var(--font-display);
  font-size: clamp(54px, 10vw, 100px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.96);
  margin: 0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.coming-hero__mark {
  width: clamp(62px, 11vw, 88px);
  height: auto;
  margin-top: clamp(28px, 4.5vh, 42px);
}

.coming-hero__cta {
  position: absolute;
  left: 50%;
  bottom: clamp(44px, 8vh, 70px);
  transform: translateX(-50%);
  z-index: 1;
  min-width: min(320px, calc(100vw - 56px));
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.coming-hero__cta:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.95);
  color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  --nav-pad-y: 20px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: flex;
  align-items: center;
  min-height: 100px;
  padding: var(--nav-pad-y) 28px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Our Breads — nav always reads dark regardless of scroll position */
.site-nav--always-dark {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
}
.site-nav--always-dark .nav__wordmark img {
  filter: none;
}
.site-nav--always-dark .nav__burger span {
  background: var(--black);
}
.site-nav--always-dark .nav__action {
  color: var(--text-mid);
}
.site-nav--always-dark .nav__action:hover {
  color: var(--black);
}

.site-nav.is-solid {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
}

/* Hamburger */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  margin-left: -5px;
  flex-shrink: 0;
  /* Reset <button> defaults */
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 1px;
  transition: background 0.4s;
}
.site-nav.is-solid .nav__burger span {
  background: var(--black);
}

/* Centred wordmark */
.nav__wordmark {
  position: absolute;
  top: var(--nav-pad-y);
  bottom: var(--nav-pad-y);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(72vw, 420px);
}
.nav__wordmark img {
  display: block;
  height: 100%;
  width: auto;
  max-height: 100%;
  max-width: 100%;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}
.site-nav.is-solid .nav__wordmark img {
  filter: none;
}

/* Right link */
.nav__action {
  margin-left: auto;
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.4s;
}
.site-nav.is-solid .nav__action {
  color: var(--text-mid);
}
.nav__action:hover {
  color: var(--white);
}
.site-nav.is-solid .nav__action:hover {
  color: var(--black);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.60) 100%
  );
}

/* ============================================================
   OUR BREADS — INTRO
   ============================================================ */
.breads-intro {
  background: var(--white);
  padding: 96px 48px 88px;
}

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

.breads-intro__eyebrow {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.breads-intro__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  color: var(--black);
  margin-bottom: 28px;
}

.breads-intro__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  gap: 18px;
}

.breads-intro__ornament::before,
.breads-intro__ornament::after {
  content: "";
  width: clamp(72px, 12vw, 116px);
  height: 1px;
  background: var(--border);
}

.breads-intro__diamond {
  width: 12px;
  height: 12px;
  border: 1px solid var(--border);
  transform: rotate(45deg);
}

.breads-intro__body {
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
}

.bread-showcase {
  background: var(--white);
  padding: 0 48px 32px;
  display: grid;
  gap: 24px;
}

.bread-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: stretch;
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
}

.bread-feature__media {
  height: auto;
  min-height: 100%;
  position: relative;
  align-self: stretch;
}

.bread-feature__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(1) contrast(1.08);
}

.bread-feature__media::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
  z-index: 2;
}

.bread-feature__content {
  background: var(--cream);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.bread-feature__number {
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}

.bread-feature__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 400;
  line-height: 1.02;
  color: var(--black);
  margin-bottom: 12px;
}

.bread-feature__subtitle {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.bread-feature__body {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.95;
  color: var(--text-mid);
  max-width: 29rem;
}

.bread-feature__cta {
  margin-top: 34px;
  padding: 12px 18px;
  font-size: 10px;
  letter-spacing: 0.28em;
  line-height: 1;
}

.product-commitment {
  background: var(--white);
  padding: 96px 48px 104px;
}

.product-commitment__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.product-commitment__stamp {
  display: block;
  width: min(220px, 46vw);
  height: auto;
  margin: 0 auto 40px;
  opacity: 0.78;
}

.product-commitment__inner > blockquote {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.product-commitment__inner > p {
  max-width: 620px;
  margin-inline: auto;
}

.product-commitment__inner > h5 {
  color: var(--text-mid);
}

.products-closing {
  background: var(--white);
  padding: 24px 48px 24px;
}

.products-closing__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.products-closing__stamp {
  display: block;
  width: min(255px, 51vw);
  height: auto;
  margin: 0 auto 28px;
  opacity: 0.9;
  transform: translateX(10px);
}

.products-closing__inner > .svg-divider {
  margin-bottom: 34px;
}

.products-closing__inner > p {
  max-width: 640px;
  margin-inline: auto;
}

.bread-process-strip {
  background: var(--white);
  padding: 0 0 96px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.bread-process-strip__cell {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.bread-process-strip__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(1) contrast(1.08);
}

.contact-page .bread-process-strip {
  padding-bottom: 0;
}

.bread-commitment {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 88px 48px 92px;
}

.bread-commitment__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.bread-commitment__ornament {
  display: block;
  height: 76px;
  width: auto;
  margin: 0 auto 36px;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.bread-commitment__eyebrow {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.bread-commitment__quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 42px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black);
  margin: 0 0 24px;
}

.bread-commitment__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  gap: 18px;
}

.bread-commitment__divider::before,
.bread-commitment__divider::after {
  content: "";
  width: clamp(72px, 12vw, 116px);
  height: 1px;
  background: var(--border);
}

.bread-commitment__diamond {
  width: 12px;
  height: 12px;
  border: 1px solid var(--border);
  transform: rotate(45deg);
}

.bread-commitment__body {
  max-width: 620px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.82;
  color: var(--text-mid);
}

@media (max-width: 768px) {
  .breads-intro {
    padding: 64px 28px 64px;
  }

  .breads-intro__heading {
    font-size: clamp(36px, 10vw, 52px);
  }

  .bread-showcase {
    padding: 0 28px 24px;
    gap: 20px;
  }

  .bread-feature {
    grid-template-columns: 1fr;
  }

  .bread-feature__media {
    height: 320px;
    min-height: 320px;
  }

  .bread-feature__content {
    padding: 40px 28px 42px;
  }

  .bread-feature__title {
    font-size: clamp(30px, 10vw, 42px);
  }

  .bread-feature__cta {
    padding: 11px 16px;
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .product-commitment {
    padding: 72px 28px 80px;
  }

  .product-commitment__stamp {
    width: min(180px, 56vw);
  }

  .bread-process-strip {
    padding: 0 0 72px;
    grid-template-columns: 1fr;
  }

  .bread-commitment {
    padding: 64px 28px 68px;
  }

  .bread-commitment__ornament {
    height: 62px;
    margin-bottom: 28px;
  }

  .products-closing {
    padding: 20px 28px 20px;
  }

  .products-closing__stamp {
    width: min(225px, 63vw);
    margin-bottom: 24px;
    transform: translateX(8px);
  }
}

/* Circular monogram badge (Our Breads) */
.hero__badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero__badge-ring {
  width: 96px;
  height: 96px;
  border: 1.5px solid rgba(255, 255, 255, 0.60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__badge-letter {
  font-family: var(--font-display);
  font-size: 52px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1;
  margin-top: 4px; /* optical */
}

/* ============================================================
   BREADS PAGE — FRAMED INTRO HERO  (homev2.html only)
   ============================================================ */

/* Full-viewport section — padding clears the fixed nav (~92px) + breathing room */
.breads-hero {
  background: var(--white);
  height: 100vh;
  min-height: 600px;
  padding: 112px 52px 80px; /* 80px below frame = standard section gap */
  display: flex;
  flex-direction: column;
}

/* Outer frame — solid black border, white padding creates the mat gap */
.breads-hero__frame {
  flex: 1;
  border: 2px solid var(--black);
  padding: 12px;
  background: var(--white);
  min-height: 400px;
  box-sizing: border-box;
}

/* Inner mat — clips the photo, contains all overlays */
.breads-hero__mat {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Full-bleed BW photo fills the mat */
.breads-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* Subtle overall darkening so text + badge read cleanly */
.breads-hero__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.20);
  z-index: 1;
}

/* Centered column: tagline sits directly above the C badge */
.breads-hero__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 2;
  pointer-events: none;
}

/* "THE PERFECT COMBINATION…" — centered, 3× size */
.breads-hero__tagline {
  font-family: var(--font-serif);
  font-size: 28px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  white-space: nowrap;
}

/* C monogram badge */
.breads-hero__badge img {
  width: 108px;
  height: auto;
  display: block;
}

/* ============================================================
   EDITORIAL SECTION  — single column (home.html)
   ============================================================ */
.editorial {
  background: var(--white);
  padding: 96px 48px 88px;
  text-align: center;
}

.editorial__inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

/* ============================================================
   EDITORIAL — two-column split modifier (homev2.html only)
   Image fills left column, grey copy fills right column
   ============================================================ */
.editorial--split {
  padding: 0 48px 80px; /* 80px below = standard section gap */
  text-align: left;
}

.editorial--split .editorial__inner {
  width: 100%;
  max-width: none;   /* override base .editorial__inner max-width: 540px */
  margin: 0;         /* override base margin: 0 auto */
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 80vh;
}

/* Left: image covers the full column height */
.editorial--split .editorial__image {
  overflow: hidden;
  aspect-ratio: auto;
  min-height: 80vh;
  position: relative;
}

.editorial--split .editorial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.editorial--split .editorial__image::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
  z-index: 2;
}

/* Right: grey background copy column */
.editorial--split .editorial__copy {
  background: #E5E5E5;
  border: 1px solid var(--border);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* prevents buttons from stretching full-width */
  min-height: 80vh;
}

.editorial--split .editorial__copy-inner {
  width: min(100%, 640px);
}

.story-process .editorial__inner {
  min-height: auto;
  align-items: start;
}

.story-process {
  padding-top: 80px;
}

.story-process .editorial__image {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 80vh;
  aspect-ratio: auto;
  background: var(--black);
  isolation: isolate;
}

.story-process .editorial__image::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
  z-index: 3;
}

.story-process__cell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--black);
  opacity: 0;
  will-change: opacity;
  transition: opacity 1.8s ease-in-out;
}

.story-process__cell.is-active {
  opacity: 1;
}

.story-process__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.08);
}

.story-process .editorial__copy {
  position: sticky;
  top: calc(var(--anchor-offset) + 24px);
}

@media (prefers-reduced-motion: reduce) {
  .story-process__cell {
    opacity: 0;
    transition: none;
  }

  .story-process__cell:first-child {
    opacity: 1;
  }

  .story-process__gallery img {
    transform: none;
  }
}

.editorial__heading {
  font-family: var(--font-display);
  font-size: clamp(60px, 7.5vw, 100px);
  font-weight: 400;
  line-height: 0.92;
  color: var(--black);
  margin-bottom: 16px;
}

.editorial__eyebrow {
  font-family: var(--font-garamond);
  font-weight: 600;
  font-size: 30px;
  line-height: 50px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 20px;
}

/* Bread illustration above the heading */
.editorial__illus {
  display: block;
  height: 51px;
  width: auto;
  margin: 0 auto 28px;
  mix-blend-mode: multiply;
  opacity: 0.70;
}

.editorial__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  gap: 18px;
}

.editorial__divider::before,
.editorial__divider::after {
  content: '';
  width: clamp(72px, 12vw, 116px);
  height: 1px;
  background: var(--border);
}

.editorial__diamond {
  width: 12px;
  height: 12px;
  border: 1px solid var(--border);
  transform: rotate(45deg);
}

/* ── SVG ornamental divider ──────────────────────────────────────── */
.svg-divider {
  display: block;
  width: clamp(220px, 55vw, 391px);
  height: auto;
  margin: 0 auto 30px;
}

/* White version for dark/photo-overlay sections */
.svg-divider--white {
  filter: brightness(0) invert(1);
}

.editorial__body {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 75px;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.btn-border {
  display: inline-block;
  border: 1px solid var(--black);
  padding: 14px 36px;
  font-family: var(--font-garamond);
  font-weight: 400;
  font-size: 22px;
  line-height: 50px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--black);
  transition: background 0.25s, color 0.25s;
}
.btn-border:hover {
  background: var(--black);
  color: var(--white);
}

/* ============================================================
   2-MODULE SECTION  (Breads / Pastries)
   ============================================================ */
.modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.module {
  position: relative;
  overflow: hidden;
}

.module__image {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
}

.module__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.72);
}

.module:hover .module__image img {
  transform: scale(1.04);
  filter: brightness(0.6);
}

/* Subtle overall scrim for label legibility */
.module__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  pointer-events: none;
}

.module__image::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.25s;
}

.module:hover .module__image::before {
  border-color: rgba(255, 255, 255, 0.68);
}

/* Label centred over the image */
.module__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 30px;
  white-space: nowrap;
  font-family: var(--font-garamond);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.12);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  z-index: 3;
}

.module:hover .module__label {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 1);
}

/* Rectangular outlined CTA button — used on homev2.html shop modules */
.module__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  min-width: 280px;
  padding: 18px 48px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  font-family: 'TAY Birdie', serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  z-index: 2;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.module__btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 1);
  color: var(--white);
}

.home-page .modules,
.modules--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .module__image,
.modules--three .module__image {
  aspect-ratio: 1 / 1;
}

.home-page .module__image img,
.modules--three .module__image img {
  transition: transform 2.4s cubic-bezier(0.12, 0.78, 0.18, 1), filter 1.1s ease;
}

.home-page .module:hover .module__image img,
.modules--three .module:hover .module__image img {
  transform: scale(1.08);
}

.home-page .module__label,
.modules--three .module__label {
  transition: background 0.25s, border-color 0.25s, transform 1.4s cubic-bezier(0.12, 0.78, 0.18, 1);
}

.home-page .module:hover .module__label,
.modules--three .module:hover .module__label {
  transform: translate(-50%, -50%) scale(1.04);
}

/* ============================================================
   TRADITION SECTION  (cream + "La tradition de soi")
   ============================================================ */
.tradition {
  background: var(--white);
  text-align: center;
  padding: 96px 48px 88px;
}

.tradition__ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.tradition__ornament img {
  height: 68px;
  width: auto;
  mix-blend-mode: multiply;
  opacity: 0.60;
}

.tradition__heading {
  font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 400;
  color: var(--black);
  line-height: 0.95;
  margin-bottom: 18px;
}

.tradition__sub {
  font-family: var(--font-garamond);
  font-weight: 600;
  font-size: 30px;
  line-height: 50px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 56px;
}

/* ============================================================
   VIDEO CAROUSEL
   ============================================================ */
.video-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.video-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.video-slide {
  /* 56 % wide — leaves adjacent slides peeking in on desktop */
  flex: 0 0 56%;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.4s;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.video-slide__inner {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.video-slide__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65);
  transition: filter 0.3s ease, transform 0.6s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.video-slide:hover .video-slide__inner img {
  filter: brightness(0.5);
  transform: scale(1.03);
}

/* Inset border frame — matches reference */
.video-slide__frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.40);
  pointer-events: none;
  z-index: 3;
  transition: border-color 0.25s;
}

.video-slide:hover .video-slide__frame {
  border-color: rgba(255, 255, 255, 0.65);
}

/* Episode label — top-left inside the frame */
.video-slide__episode {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 30px;
  line-height: 1em;
  text-align: center;
  color: rgba(255, 255, 255, 0.80);
  z-index: 4;
  pointer-events: none;
}

.video-slide__episode strong {
  font-style: italic;
  font-weight: 400;
}

.video-slide__episode--coming-soon {
  font-family: var(--font-garamond);
  font-style: normal;
  font-size: 28px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

/* Centred play button */
.video-slide__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.video-slide__play-btn {
  width: 62px;
  height: 62px;
  border: 1.5px solid rgba(255, 255, 255, 0.70);
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.home-page .video-slide__play-btn {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.video-slide:hover .video-slide__play-btn {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: scale(1.1);
}

.video-slide__play-btn svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.85);
  margin-left: 3px;
}

/* Prev / Next arrow buttons */
.video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.70);
  transition: color 0.2s;
}

.home-page .video-nav {
  opacity: 0.4;
}

.video-nav:hover {
  color: var(--white);
}

.home-page .video-nav:hover {
  opacity: 0.4;
}

.home-page .video-slide {
  cursor: default;
}

.home-page .video-slide:hover .video-slide__inner img {
  filter: brightness(0.65);
  transform: none;
}

.home-page .video-slide:hover .video-slide__frame {
  border-color: rgba(255, 255, 255, 0.40);
}

.home-page .video-slide:hover .video-slide__play-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.70);
  transform: none;
}

.video-nav--prev { left: 8px; }
.video-nav--next { right: 8px; }

.video-nav svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* Watch the Series CTA — outlined, centred, matches reference */
.tradition__watch {
  padding: 80px 48px 40px;
  display: flex;
  justify-content: center;
}

.tradition__watch-btn {
  display: inline-block;
  border: 2px solid var(--black);
  padding: 18px 72px;
  font-family: 'TAY Birdie', serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  transition: background 0.25s, color 0.25s;
}

.tradition__watch-btn:hover {
  background: var(--black);
  color: var(--white);
}

.tradition__bread-mark {
  padding: 80px 48px 24px;
  display: flex;
  justify-content: center;
}

.tradition__bread-mark img {
  width: min(330px, 39vw);
  height: auto;
  opacity: 0.5;
  mix-blend-mode: multiply;
}

/* ============================================================
   PURVEYOR SECTION  (dark full-bleed photo + overlay text)
   ============================================================ */
.purveyor {
  position: relative;
  min-height: 62vh;
  overflow: hidden;
}

.purveyor__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 40%;
}

.purveyor__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
}

.purveyor__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 80px 48px;
}

.purveyor__eyebrow {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.purveyor__heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
}

.purveyor__sub {
  font-family: var(--font-garamond);
  font-weight: 600;
  font-size: 30px;
  line-height: 50px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 24px;
}

.purveyor__body {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.85;
  color: var(--white);
  max-width: 460px;
  margin-bottom: 38px;
}

.btn-border-white {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.75);
  padding: 14px 36px;
  font-family: var(--font-garamond);
  font-weight: 400;
  font-size: 22px;
  line-height: 50px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  transition: background 0.25s, border-color 0.25s;
}
.btn-border-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 1);
}

/* ============================================================
   CONTACT STORY  (dark photo + overlay — contact page mid-section)
   ============================================================ */
.contact-story {
  position: relative;
  min-height: 50vh;
  overflow: hidden;
}

.contact-story__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(1) contrast(1.08);
}

.contact-story__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.contact-story__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 72px 48px;
}

.contact-gallery {
  background: var(--white);
  position: relative;
  padding: 0;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.contact-gallery.is-dragging {
  cursor: grabbing;
}

.contact-gallery__viewport {
  overflow: hidden;
}

.contact-gallery__track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.contact-gallery__slide {
  flex: 0 0 calc(100% / 3);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.contact-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(1) contrast(1.08);
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.contact-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.16);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.contact-gallery__nav:hover {
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 1);
}

.contact-gallery__nav--prev {
  left: 18px;
}

.contact-gallery__nav--next {
  right: 18px;
}

.contact-gallery__nav svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* ============================================================
   PARTNERS / NF&P
   ============================================================ */
.partners {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 72px 0 0;
  text-align: center;
  overflow: hidden;
}

/* — NF&P typographic header ——————————————————————————————— */
.partners__header {
  padding: 0 64px 52px;
}

.partners__brand-link {
  display: block;
}

.partners__brand {
  display: block;
  width: min(315px, 60vw);
  height: auto;
  margin: 0 auto;
  filter: brightness(0) saturate(100%);
}

.partners__nfp-mark {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 16px;
}

.partners__nfp-amp {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

.partners__nfp-rule {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.22);
  width: min(320px, 38%);
  margin: 0 auto 14px;
}

.partners__nfp-sub {
  font-family: var(--font-serif);
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* — Logo rows ————————————————————————————————————————————— */
.partners__logos {
  padding: 8px 60px 60px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.partners__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* 4-logo row centred */
.partners__row--4 {
  justify-content: center;
  gap: clamp(36px, 5.5vw, 88px);
}

.partners__logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.partners__row--4 .partners__logo {
  flex: 0 0 auto;
}

.partners__logo img {
  max-height: 64px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%);
  mix-blend-mode: multiply;
  opacity: 0.85;
  transition: opacity 0.25s;
}

/* tall logos: Noble Smoke, The Jimmy */
.partners__logo--tall img {
  max-height: 104px;
  max-width: 116px;
}

/* wide/flat logos: Rooster's, Copain, DCC, Field Pea */
.partners__logo--wide img {
  max-height: 52px;
  max-width: 220px;
}

.partners__logo img[src$="DCCGrey.png"] {
  max-height: 104px;
  max-width: 440px;
}

.partners__logo:hover img {
  opacity: 1;
}

/* — Farm scene ———————————————————————————————————————————— */
.partners__farm {
  display: block;
  width: 100%;
  mix-blend-mode: multiply;
  opacity: 0.80;
  margin-top: 8px;
}

/* ============================================================
   BREADS FILM PANEL  — full-width to 1440px, play button
   ============================================================ */
.breads-film {
  width: auto;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: block;
  cursor: pointer;
  margin: 0 48px 80px;
  background: var(--white);
}

.breads-film__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* Slight darkening so play button reads clearly */
.breads-film__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
}

/* Centred play button */
.breads-film__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.breads-film__play-btn {
  width: 72px;
  height: 72px;
  border: 1.5px solid rgba(255, 255, 255, 0.80);
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  padding: 0;
}

.breads-film__play-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.08);
}

.breads-film__play-btn svg {
  width: 22px;
  height: 22px;
  fill: rgba(255, 255, 255, 0.85);
  margin-left: 4px; /* optical centre for triangle */
}

/* ============================================================
   TRADITION BAR  — black CTA band (used on homev2.html)
   ============================================================ */
.tradition__bar {
  background: var(--black);
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tradition__bar-link {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: var(--track-x);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.tradition__bar-link:hover {
  color: var(--white);
}

/* ============================================================
   PURVEYOR PANEL  — framed (homev2.html section 4)
   Two images top, grey content area below, all inside black frame
   ============================================================ */

.purveyor-panel {
  background: var(--white);
  padding: 0 52px 80px; /* 80px below frame = standard section gap */
}

/* Outer black border + white mat — mirrors .breads-hero__frame */
.purveyor-panel__frame {
  border: 2px solid var(--black);
  padding: 12px;
  background: var(--white);
  overflow: hidden;
}

/* Two-column image row — left is 1/4 the width of right (1fr : 4fr) */
.purveyor-panel__images {
  display: grid;
  grid-template-columns: 1fr 2fr;
  position: relative;
  aspect-ratio: 4 / 1;
  overflow: hidden;
}

.purveyor-panel__image-cell {
  position: relative;
  overflow: hidden;
}

.purveyor-panel__image-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark scrim so text reads over both photos */
.purveyor-panel__images::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  pointer-events: none;
  z-index: 1;
}

/* Text centered across both images */
.purveyor-panel__overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 28px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.90);
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
}

/* Grey content area beneath images */
.purveyor-panel__content {
  background: #e8e8e8;
  border: 1px solid var(--border);
  padding: 72px 80px 68px;
  text-align: center;
}

.purveyor-panel__heading {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1;
  color: var(--black);
  margin-bottom: 32px;
}

.purveyor-panel__body {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.95;
  color: var(--text);
  max-width: 460px;
  margin: 0 auto 48px;
}

.purveyor-panel__illus {
  display: block;
  margin: 0 auto;
  height: 88px;
  width: auto;
  mix-blend-mode: multiply;
  opacity: 0.65;
}

@media (max-width: 768px) {
  .purveyor-panel {
    padding: 0 20px 40px;
  }
  .purveyor-panel__images {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
  }
  .purveyor-panel__image-cell {
    aspect-ratio: 4/3;
  }
  .purveyor-panel__overlay-text {
    white-space: normal;
    text-align: center;
    width: 80%;
  }
  .purveyor-panel__content {
    padding: 48px 28px 48px;
  }
}

/* ============================================================
   OUR STORY — PULL QUOTE
   ============================================================ */
.story-quote {
  background: var(--white);
  padding: 88px 48px 92px;
}

.story-page .editorial__illus,
.story-page .story-timeline__ornament,
.story-page .partners__farm {
  filter: grayscale(1);
}

.story-page .partners__brand,
.story-page .partners__logo img {
  filter: brightness(0) saturate(100%);
}

.partners__logo img[src$="Copain_Logo_2025.04.jpg"],
.story-page .partners__logo img[src$="Copain_Logo_2025.04.jpg"] {
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
}

.story-quote__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.story-quote__mark {
  display: none;
}

.story-quote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--black);
  margin: 0 0 24px;
}

.story-quote__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  gap: 18px;
}

.story-quote__divider::before,
.story-quote__divider::after {
  content: "";
  width: clamp(72px, 12vw, 116px);
  height: 1px;
  background: var(--border);
}

.story-quote__diamond {
  width: 12px;
  height: 12px;
  border: 1px solid var(--border);
  transform: rotate(45deg);
}

.story-quote__attribution {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--text-light);
}

/* ============================================================
   OUR STORY — TIMELINE
   ============================================================ */
.story-timeline {
  background: var(--white);
  padding: 88px 48px 96px;
}

.story-timeline__header {
  text-align: center;
  margin-bottom: 72px;
}

.story-timeline__ornament {
  display: block;
  height: 68px;
  width: auto;
  margin: 0 auto 28px;
  mix-blend-mode: multiply;
  opacity: 0.55;
}

.story-timeline__heading {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 400;
  color: var(--black);
  line-height: 0.95;
  margin-bottom: 16px;
}

.story-timeline__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: var(--track);
  color: var(--text-light);
}

.story-timeline__list {
  list-style: none;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story-timeline__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 48px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.story-timeline__item:last-child {
  border-bottom: 1px solid var(--border);
}

.story-timeline__year {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  color: var(--black);
  line-height: 1;
  padding-top: 4px;
}

.story-timeline__title {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 12px;
  font-weight: 400;
}

.story-timeline__body {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-mid);
  max-width: 34rem;
}

/* Timeline item with an inline location photo */
.story-timeline__item--photo {
  grid-template-columns: 120px 1fr 240px;
  gap: 0 48px;
  align-items: center;
}

.story-timeline__image {
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.story-timeline__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.08);
}

/* ============================================================
   OUR STORY — PILLARS
   ============================================================ */
.story-pillars {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 88px 48px 96px;
}

.story-pillars__header {
  text-align: center;
  margin-bottom: 64px;
}

.story-pillars__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  color: var(--black);
  line-height: 0.95;
  margin-bottom: 28px;
}

.story-pillars__rule {
  border: none;
  border-top: 1px solid var(--border);
  width: min(240px, 30%);
  margin: 0 auto;
}

.story-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.story-pillar {
  padding: 0 52px;
  border-left: 1px solid var(--border);
  text-align: center;
}

.story-pillar:first-child {
  border-left: none;
  padding-left: 0;
}

.story-pillar:last-child {
  padding-right: 0;
}

.story-pillar__number {
  font-family: var(--font-display);
  font-size: 40px;
  color: rgba(0, 0, 0, 0.14);
  display: block;
  line-height: 1;
  margin-bottom: 20px;
}

.story-pillar__number--alt {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 44px;
  letter-spacing: 0.04em;
}

.story-pillar__title {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 400;
}

.story-pillar__body {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
}

@media (max-width: 768px) {
  .story-quote {
    padding: 64px 28px 68px;
  }

  .story-timeline {
    padding: 64px 28px 72px;
  }

  .story-timeline__item {
    grid-template-columns: 80px 1fr;
    gap: 0 24px;
    padding: 32px 0;
  }

  .story-timeline__item--photo {
    grid-template-columns: 80px 1fr;
  }

  .story-timeline__image {
    display: none;
  }

  .story-pillars {
    padding: 64px 28px 72px;
  }

  .story-pillars__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-pillar {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 48px 0 0;
    text-align: center;
  }

  .story-pillar > p {
    margin-inline: auto;
  }

  .story-pillar:first-child {
    border-top: none;
    padding-top: 0;
  }
}

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-section {
  background: var(--white);
  padding: 96px 48px 88px;
}

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

.contact-section__inner > h1 {
  width: max-content;
  max-width: none;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.form-field {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--cream-mid);
  border-right: 1px solid var(--cream-mid);
  padding: 20px 0 0;
}

.contact-page .form-field {
  border-bottom-color: var(--black);
  border-right-color: var(--black);
}

.form-field:last-child,
.form-field--full {
  border-right: none;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field--textarea {
  min-height: auto;
}

.form-field--checks {
  min-height: auto;
}

.form-field label {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
  padding: 0 24px;
}

.form-field__legend {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
  padding: 0 24px;
}

.form-field input,
.form-field textarea,
.form-field select {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text);
  padding: 0 24px 18px;
  resize: none;
  width: 100%;
  appearance: none;
}

.form-field textarea {
  min-height: 120px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-mid);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
  color: var(--black);
}

.form-field__error {
  margin: 0;
  padding: 0 24px 16px;
  font-size: 12px;
  line-height: 1.4;
  color: #9b2c2c;
}

.form-field__error:empty {
  display: none;
}

.form-checks {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  align-content: start;
  justify-content: start;
  justify-items: start;
  gap: 10px 18px;
  padding: 0 24px 18px;
  width: 100%;
}

.form-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text);
  cursor: pointer;
}

label.form-check {
  padding-left: 0;
}

.form-check input {
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  appearance: auto;
  accent-color: var(--black);
}

.form-submit {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.form-submit__status {
  min-height: 1.2em;
  text-align: center;
}

.form-submit__status.is-success {
  color: #255d39;
}

.form-submit__status.is-error {
  color: #9b2c2c;
}

.form-submit button {
  border: 2px solid var(--black);
  background: var(--black);
  padding: 14px 40px;
  font-family: 'TAY Birdie', serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.form-submit button:hover {
  background: transparent;
  color: var(--black);
}

.form-submit button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-contact-line {
  color: var(--black);
}

.form-contact-line a {
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}

.form-contact-line a:hover {
  border-color: var(--text);
}

/* ============================================================
   FOOTER  (black + bread illustrations)
   ============================================================ */
.site-footer {
  background: var(--black);
  padding: 48px 48px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.013) 3px,
    rgba(255, 255, 255, 0.013) 6px
  );
  pointer-events: none;
}

.footer__illus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  position: relative;
  z-index: 1;
}
.footer__illus img {
  filter: brightness(0) invert(1);
  opacity: 0.52;
  display: block;
}

.footer__copy {
  font-family: var(--font-serif);
  font-size: 9.5px;
  letter-spacing: var(--track-x);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ============================================================
   MENU DRAWER  — slides in from the left
   ============================================================ */

.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  visibility: hidden;
}

.menu-drawer.is-open {
  pointer-events: all;
  visibility: visible;
}

/* Dark scrim — click it to close */
.menu-drawer__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.45s ease;
  cursor: pointer;
}

.menu-drawer.is-open .menu-drawer__overlay {
  background: rgba(0, 0, 0, 0.45);
}

/* Sliding panel */
.menu-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 380px;
  max-width: 90vw;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px;
  z-index: 1;
  box-shadow: 4px 0 32px rgba(0, 0, 0, 0.10);
}

.menu-drawer.is-open .menu-drawer__panel {
  transform: translateX(0);
}

/* X close button */
.menu-drawer__close {
  position: absolute;
  top: 28px;
  left: 32px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-drawer__close-bar {
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  display: block;
}

.menu-drawer__close-bar:first-child {
  transform: rotate(45deg);
}

.menu-drawer__close-bar:last-child {
  transform: rotate(-45deg);
}

/* Nav list */
.menu-drawer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.menu-drawer__item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-drawer__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-drawer__link {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-drawer__link:hover {
  opacity: 0.40;
  transform: translateX(8px);
}

/* ============================================================
   TYPOGRAPHY SYSTEM  — consolidated rules (override per-component)
   ============================================================ */

h1,
.coming-hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.92;
  color: var(--black);
  margin: 0 0 40px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--black);
  margin: 0 0 40px;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 0.98;
  color: var(--black);
  margin: 0 0 40px;
}

h4 {
  font-family: var(--font-garamond);
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.5em;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 40px;
}

h5 {
  font-family: var(--font-garamond);
  font-size: 30px;
  line-height: 60px;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 40px;
}

h6 {
  font-family: var(--font-garamond);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-style: normal;
  margin: 0 0 40px;
}

p {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 2.5;
  color: var(--black);
  margin-bottom: 40px;
}

/* Paragraph color system:
   light surfaces = black, dark/photo surfaces = white */
p.form-submit__status,
p.form-contact-line {
  color: var(--black);
}

.coming-hero p,
.hero p,
.breads-hero p,
.video-slide p,
.purveyor p,
.contact-story p,
.purveyor-panel__images p {
  color: var(--white);
}

blockquote {
  font-family: var(--font-display);
  font-size: 50px;
  font-style: italic;
  line-height: 1.3;
  font-weight: 400;
  color: var(--black);
}

/* ── Semantic typography in section context ───────────────── */
.editorial__copy-inner > h2 {
  margin-bottom: 40px;
}

.purveyor__content > h2,
.contact-story__content > h2 {
  color: var(--white);
}

.contact-story__content > h6,
.purveyor__content > h6 {
  color: var(--white);
}

.purveyor__content > h6,
.purveyor__content > p {
  color: var(--white);
}

.story-timeline__content > h3,
.story-pillar > h3 {
  font-family: var(--font-garamond);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 40px;
}

.editorial__copy-inner > p {
  margin-bottom: 24px;
}

.editorial__copy-inner > p:last-of-type {
  margin-bottom: 40px;
}

.spacer,
.spacer-40 {
  height: 40px;
}

.spacer-80 {
  height: 80px;
}

.bread-feature__content > p,
.bread-commitment__inner > p:last-of-type,
.contact-section__inner > p,
.story-timeline__content > p,
.story-pillar > p,
.purveyor-panel__content > p {
  margin: 0;
}

.bread-feature__content > p {
  margin-bottom: 40px;
}

.contact-section__inner > p {
  margin-bottom: 52px;
}

.story-timeline__content > p,
.story-pillar > p {
  max-width: 34rem;
}

.story-quote__inner > blockquote {
  margin: 0 0 24px;
}

.story-quote__inner > p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--black);
}

.purveyor__content > p {
  color: var(--white);
  max-width: 460px;
  margin-bottom: 38px;
}

.purveyor-panel__content > p {
  max-width: 460px;
  margin: 0 auto 48px;
}

/* ── Buttons — 3 variants ─────────────────────────────────── */

/* Light border */
.btn-border,
.tradition__watch-btn {
  display: inline-block;
  border: 1px solid var(--black);
  padding: 14px 36px;
  font-family: var(--font-garamond);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--black);
  background: transparent;
  transition: background 0.25s, color 0.25s;
}
.btn-border:hover,
.tradition__watch-btn:hover {
  background: var(--black);
  color: var(--white);
}

/* Dark border (on photo/dark sections) */
.btn-border-white {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.65);
  padding: 14px 36px;
  font-family: var(--font-garamond);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  transition: background 0.25s, border-color 0.25s;
}
.btn-border-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 1);
}

/* Solid dark */
.btn-solid,
.form-submit button {
  display: inline-block;
  border: 1px solid var(--black);
  padding: 14px 36px;
  font-family: var(--font-garamond);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn-solid:hover,
.form-submit button:hover {
  background: transparent;
  color: var(--black);
}
.form-submit button:disabled {
  opacity: 0.6;
  cursor: wait;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .partners__logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 28px;
    padding: 8px 48px 56px;
  }

  .partners__row,
  .partners__row--4 {
    display: contents;
  }

  .partners__logo,
  .partners__row--4 .partners__logo {
    min-height: 96px;
    padding: 10px 14px;
    justify-self: center;
    width: 100%;
    flex: unset;
  }

  .partners__logo img {
    max-width: 190px;
    max-height: 58px;
    margin: 0 auto;
  }

  .partners__logo--tall img {
    max-width: 104px;
    max-height: 92px;
  }

  .partners__logo--wide img {
    max-width: 240px;
    max-height: 44px;
  }

  .partners__logo img[src$="DCCGrey.png"] {
    max-width: 280px;
    max-height: 86px;
  }

  .partners__logos > .partners__row:last-child > .partners__logo:last-child {
    grid-column: 1 / -1;
    width: min(240px, 100%);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --anchor-offset: 108px;
  }

  h1,
  .coming-hero__title,
  .editorial__heading,
  .tradition__heading,
  .purveyor__heading,
  .story-timeline__heading,
  .story-pillars__heading {
    font-size: 50px;
  }

  h2,
  .breads-intro__heading,
  .bread-feature__title,
  .purveyor-panel__heading {
    font-size: 40px;
    line-height: 1.02;
  }

  h3 {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.05;
  }

  h4 {
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.25;
    letter-spacing: 0.24em;
  }

  h5 {
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.35;
  }

  h6,
  .breads-intro__eyebrow,
  .bread-commitment__eyebrow,
  .purveyor__eyebrow,
  .story-timeline__sub {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.24em;
  }

  .editorial__eyebrow,
  .tradition__sub,
  .purveyor__sub {
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.3;
    letter-spacing: 0.28em;
  }

  blockquote {
    font-size: 34px;
  }

  .contact-gallery__nav {
    width: 42px;
    height: 42px;
  }

  .contact-gallery__nav--prev {
    left: 10px;
  }

  .contact-gallery__nav--next {
    right: 10px;
  }

  .contact-gallery__nav svg {
    width: 24px;
    height: 24px;
  }

  .contact-gallery__slide {
    flex-basis: 100%;
  }

  .spacer,
  .spacer-40,
  .spacer-80 {
    display: none;
  }

  .coming-hero__photo {
    object-position: center 30%;
  }

  .coming-hero__content {
    padding: 56px 24px 176px;
  }

  .coming-hero__wordmark {
    width: min(176px, 56vw);
    margin-bottom: 52px;
  }

  .coming-hero__title {
    font-size: clamp(46px, 15vw, 82px);
  }

  .coming-hero__mark {
    width: 70px;
    margin-top: 26px;
  }

  .coming-hero__cta {
    min-width: calc(100vw - 64px);
    bottom: 38px;
    padding: 15px 22px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .breads-film {
    margin: 0 28px 80px;
    aspect-ratio: 4 / 3;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-section__inner > h1 {
    width: auto;
    max-width: 100%;
    left: auto;
    transform: none;
  }

  .form-field {
    border-right: none;
  }

  .form-contact-line {
    text-align: center;
  }

  .form-checks {
    grid-template-columns: 1fr;
  }

  .editorial {
    padding: 72px 28px 64px;
  }

  .editorial__illus {
    height: 31px;
    width: auto;
    max-width: 60%;
  }

  .editorial--split .editorial__inner {
    grid-template-columns: 1fr;
  }

  .editorial--split {
    padding: 0 28px 80px;
  }

  .story-process {
    padding: 80px 28px 80px;
  }

  .editorial--split .editorial__image {
    aspect-ratio: 4 / 3;
    min-height: unset;
  }

  .story-process .editorial__image {
    aspect-ratio: 4 / 3;
    min-height: unset;
  }

  .story-process .editorial__copy {
    position: static;
    top: auto;
  }

  .editorial--split .editorial__copy {
    padding: 48px 28px;
  }

  .editorial--split .editorial__copy-inner {
    width: 100%;
  }

  .tradition {
    padding: 72px 28px 64px;
  }

  .purveyor__content {
    padding: 60px 28px;
  }

  .partners {
    padding: 56px 28px 52px;
  }

  .partners__header {
    display: flex;
    justify-content: center;
    padding: 0 0 40px;
  }

  .partners__brand {
    width: min(268px, 100%);
  }

  .partners__logos {
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
  }

  .partners__row,
  .partners__row--4 {
    display: contents;
  }

  .partners__logo,
  .partners__row--4 .partners__logo {
    min-height: 72px;
    max-width: none;
    padding: 6px 10px;
    width: 100%;
    justify-self: center;
  }

  .partners__logo img {
    width: 100%;
    max-width: 150px;
    max-height: 44px;
    margin: 0 auto;
  }

  .partners__logo--tall img {
    width: auto;
    max-width: 84px;
    max-height: 72px;
  }

  .partners__logo--wide img {
    max-width: 100%;
    max-height: 38px;
  }

  .partners__logo img[src$="Roosters_Logo_Main.png"] {
    max-height: 29px;
  }

  .partners__logo img[src$="NFP_Footer_Logo_FieldPea.png"] {
    max-height: 34px;
  }

  .partners__logo img[src$="DCCGrey.png"] {
    max-height: 76px;
    max-width: 100%;
  }

  .partners__logos > .partners__row:last-child > .partners__logo:last-child {
    grid-column: 1 / -1;
    width: min(220px, 100%);
  }

  .partners__farm {
    margin: 0 -20px;
    width: calc(100% + 40px);
    max-width: none;
  }

  .site-footer {
    padding: 40px 28px 36px;
  }

  .footer__illus {
    gap: 28px;
  }

  /* ── Modules (Shop Breads / Pastries) ── */
  .modules {
    grid-template-columns: 1fr;
  }

  .module__image {
    aspect-ratio: 1 / 1;
  }

  .home-page .modules,
  .modules--three {
    grid-template-columns: 1fr;
  }

  .module__btn {
    min-width: unset;
    font-size: 18px;
    padding: 10px 24px;
  }

  .module__label {
    min-width: min(78vw, 240px);
    font-size: 14px;
    white-space: nowrap;
    text-align: center;
    padding: 12px 20px;
  }

  .home-page .module__label,
  .modules--three .module__label {
    min-width: auto;
    width: auto;
    max-width: min(78vw, 220px);
    font-size: 14px;
    white-space: nowrap;
    padding: 12px 24px;
    letter-spacing: 0.22em;
  }

  /* ── Breads hero ── */
  .breads-hero {
    padding: 88px 16px 32px;
  }

  .breads-hero__tagline {
    font-size: 13px;
    white-space: normal;
    text-align: center;
    padding: 0 12px;
  }

  .breads-hero__badge img {
    width: 72px;
  }

  /* ── Purveyor panel heading ── */
  .purveyor-panel__heading {
    font-size: clamp(30px, 8vw, 42px);
  }

  /* ── Buttons ── */
  .btn-border,
  .btn-border-white,
  .btn-solid,
  .tradition__watch-btn {
    font-size: 14px;
    padding: 12px 24px;
  }

  .btn-border,
  .btn-border-white,
  .btn-solid,
  .tradition__watch-btn,
  .coming-hero__cta,
  .module__btn,
  .module__label,
  .form-submit button {
    text-align: center;
  }

  /* ── Video carousel ── */
  .video-track {
    gap: 0;
  }

  .video-slide {
    flex: 0 0 100%;
  }

  .video-slide__episode {
    font-size: 20px;
  }

  .video-slide__episode--coming-soon {
    font-size: 16px;
    letter-spacing: 0.18em;
    white-space: normal;
  }

  .video-nav--prev { left: 12px; }
  .video-nav--next { right: 12px; }

  .tradition__bread-mark {
    padding: 56px 24px 12px;
  }

  .tradition__bread-mark img {
    width: min(270px, 69vw);
  }

  /* ── Breads film ── */
  .breads-film__play-btn {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .coming-hero__photo {
    object-position: center 34%;
  }

  .coming-hero__content {
    padding: 48px 20px 164px;
  }

  .coming-hero__wordmark {
    width: 156px;
    margin-bottom: 44px;
  }

  .coming-hero__title {
    font-size: clamp(42px, 14vw, 64px);
  }

  .coming-hero__mark {
    width: 64px;
  }

  .coming-hero__cta {
    min-width: calc(100vw - 48px);
    bottom: 30px;
  }

  .partners__logos {
    padding: 0 16px 36px;
  }

  .partners__row,
  .partners__row--4 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .partners__logo {
    min-height: 64px;
    padding: 4px 12px;
  }

  .partners__logo img {
    max-width: min(100%, 220px);
    max-height: 42px;
  }

  .partners__logo--tall img {
    max-width: 88px;
    max-height: 68px;
  }

  .partners__logo--wide img {
    max-height: 36px;
  }

  .partners__logo img[src$="Roosters_Logo_Main.png"] {
    max-height: 27px;
  }

  .partners__logo img[src$="NFP_Footer_Logo_FieldPea.png"] {
    max-height: 32px;
  }
}
