/* Nòa-Elle Floral Studio — shared theme. One file, every page.
   v2 "Porcelain" — clean light ground, ink-green type, olive + protea kept as accents.
   Same selectors as v1: drop-in replacement, no markup changes required. */

@font-face {
  font-family: "Gambetta";
  src: url("/fonts/gambetta-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gambetta";
  src: url("/fonts/gambetta-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("/fonts/general-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("/fonts/general-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("/fonts/general-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Light ground */
  --porcelain: #fbfaf6; /* dominant page ground — warm white, not cream */
  --sand: #f2eee5;      /* alternate light section */
  /* Ink & greens */
  --ink: #222821;       /* deep green-black: text, primary buttons, dark band */
  --olive: #4c5636;     /* deep olive: accent band, tease lines, icons */
  /* Accents */
  --protea: #b87b70;    /* decorative ONLY (rules, underlines, hover) — fails as text on light */
  --protea-hover: #a96a5f;
  --pampas: #c7b49a;    /* hairlines on dark bands */
  --muted: #6e6a5b;     /* small text / captions on light grounds (5.19:1 on porcelain) */

  /* Legacy aliases so nothing breaks if markup references them */
  --bark: var(--ink);
  --bark-soft: var(--ink);
  --stone: var(--porcelain);
  --stone-muted: var(--muted);

  --font-display: "Gambetta", "Iowan Old Style", serif;
  --font-body: "General Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6.5rem;

  --max-width: 78rem;
  --radius: 0.75rem;
  --hairline-light: rgba(34, 40, 33, 0.16);
  --hairline-dark: rgba(251, 250, 246, 0.22);
}

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

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

body {
  margin: 0;
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.section-olive :focus-visible,
.section-bark :focus-visible,
.site-footer :focus-visible,
.hero-media-frame :focus-visible {
  outline-color: var(--porcelain);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 var(--space-2);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.1rem, 1rem + 5.5vw, 5.25rem);
}

h2 {
  font-size: clamp(1.9rem, 3vw + 1rem, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 1.5vw + 1rem, 1.7rem);
}

p {
  margin: 0 0 var(--space-2);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
}

/* Poster echo: small diamond after every eyebrow, like her print material */
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--protea);
  transform: rotate(45deg) translateY(-1px);
  margin-left: 0.7em;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.9em 1.6em;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.btn:hover {
  transition-duration: 0.2s;
}

.btn-icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--ink);
  color: var(--porcelain);
}
.btn-primary:hover {
  background: var(--olive);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline-light);
}
.btn-secondary:hover {
  border-color: var(--ink);
}

/* Buttons sitting on the dark bands */
.section-olive .btn-primary,
.section-bark .btn-primary {
  background: var(--porcelain);
  color: var(--ink);
}
.section-olive .btn-primary:hover,
.section-bark .btn-primary:hover {
  background: var(--sand);
}
.section-olive .btn-secondary,
.section-bark .btn-secondary {
  color: var(--porcelain);
  border-color: var(--hairline-dark);
}
.section-olive .btn-secondary:hover,
.section-bark .btn-secondary:hover {
  border-color: var(--porcelain);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* ---------- Header / nav ---------- */

/* Solid on every page and at every scroll position — over the hero the
   translucent version let headings read straight through the nav. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: var(--space-2) 0;
  background: var(--porcelain);
  border-bottom: 1px solid var(--hairline-light);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6em;
  text-decoration: none;
}

.brand img {
  height: 34px;
  width: auto;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding-left: 0.7em;
  border-left: 1px solid var(--hairline-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.75;
  padding-bottom: 0.3em;
  background-image: linear-gradient(var(--protea), var(--protea));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: background-size 0.3s ease, opacity 0.2s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  opacity: 1;
  color: var(--ink);
  background-size: 100% 2px;
}

/* Quick-call icon, pinned to the right of the header on every page. */
.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--ink);
  border: 1px solid var(--hairline-light);
  border-radius: 50%;
  transition: background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.call-btn svg {
  width: 19px;
  height: 19px;
}

.call-btn:hover,
.call-btn:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--porcelain);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  background-color: transparent;
  background-image: linear-gradient(var(--ink), var(--ink));
  background-repeat: no-repeat;
  background-size: 20px 1.5px;
  background-position: center 22px;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: transform 0.25s ease, top 0.25s ease;
}

.nav-toggle::before {
  top: 18px;
}

.nav-toggle::after {
  top: 26px;
}

.site-header.nav-open .nav-toggle {
  background-image: none;
}

.site-header.nav-open .nav-toggle::before {
  top: 22px;
  transform: translateX(-50%) rotate(45deg);
}

.site-header.nav-open .nav-toggle::after {
  top: 22px;
  transform: translateX(-50%) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--porcelain);
  padding-top: calc(var(--space-6) + 2rem);
  padding-bottom: var(--space-5);
  overflow: hidden;
}

.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-decor svg {
  position: absolute;
  stroke: var(--olive);
  fill: none;
}

.hero-decor .bloom-1 {
  width: 34rem;
  height: 34rem;
  top: -12rem;
  right: -10rem;
  opacity: 0.12;
  stroke-width: 0.6;
}

.hero-decor .bloom-2 {
  width: 20rem;
  height: 20rem;
  bottom: -8rem;
  left: -6rem;
  opacity: 0.1;
  stroke-width: 0.7;
  transform: rotate(18deg);
}

.hero-decor .bloom-3 {
  width: 12rem;
  height: 12rem;
  top: 6rem;
  left: 58%;
  opacity: 0.09;
  stroke-width: 0.8;
  transform: rotate(-12deg);
}

@media (max-width: 56rem) {
  .hero-decor .bloom-3 {
    display: none;
  }

  .hero-media-frame {
    display: none;
  }
}

.hero-video {
  display: none;
}

@media (max-width: 56rem) {
  .hero-video {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--porcelain);
  }

  .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    background: var(--porcelain);
  }

  .hero-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(251, 250, 246, 0.32) 0%, rgba(251, 250, 246, 0) 22%, rgba(251, 250, 246, 0) 72%, rgba(251, 250, 246, 0.45) 100%);
  }

  .hero-content {
    background: rgba(251, 250, 246, 0.88);
    padding: var(--space-3);
    border-radius: var(--radius);
  }
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-4);
  align-items: center;
}

@media (min-width: 56rem) {
  .hero .wrap {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-5);
  }
}

.hero-content {
  position: relative;
  max-width: 34rem;
}

.hero-content .eyebrow {
  color: var(--olive);
}

.hero-content h1 {
  color: var(--ink);
}

.hero-tease {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--olive);
  margin-bottom: var(--space-3);
}


/* The arch: echoes her hexagonal wedding arch and the arched welcome mirror.
   Softly arched top, hairline offset frame like the borders on her posters. */
.hero-media-frame {
  position: relative;
  border-radius: 12rem 12rem var(--radius) var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 24rem;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 1.25rem 2.5rem rgba(34, 40, 33, 0.14);
}

.hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(251, 250, 246, 0.55);
  border-radius: 11rem 11rem calc(var(--radius) - 2px) calc(var(--radius) - 2px);
  pointer-events: none;
}

.hero-media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--porcelain);
}

/* ---------- Sections ---------- */

section {
  padding: var(--space-5) 0;
}

/* One dark statement band per page. Olive = delivery/how-it-works; bark = the studio quote. */
.section-olive {
  background: var(--olive);
  color: var(--porcelain);
}

.section-bark {
  background: var(--ink);
  color: var(--porcelain);
}

.section-olive .eyebrow,
.section-bark .eyebrow {
  color: var(--pampas);
}

/* Former "stone" sections become the soft sand alternate on the light ground */
.section-stone {
  background: var(--sand);
  color: var(--ink);
}

.section-stone .eyebrow {
  color: var(--olive);
}

.section-stone a {
  color: var(--ink);
}

.section-stone .btn-primary {
  color: var(--porcelain);
}

.section-stone .btn-secondary {
  color: var(--ink);
  border-color: var(--hairline-light);
}
.section-stone .btn-secondary:hover {
  border-color: var(--ink);
}

.section-stone .feature-strip p,
.section-stone .menu-item .desc,
.section-stone .delivery-note {
  color: var(--muted);
}

.section-head {
  max-width: 38rem;
  margin-bottom: var(--space-4);
}

/* ---------- About: text beside a photograph ---------- */

.about-split {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}

@media (min-width: 52rem) {
  .about-split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
  }

  /* Photo first in the source, so it stays on top when the grid collapses. */
  .about-split-reverse .about-photo {
    order: -1;
  }
}

.about-split .section-head {
  margin-bottom: var(--space-3);
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.pull-quote {
  margin: 0 0 var(--space-3);
  padding-left: var(--space-3);
  border-left: 2px solid var(--protea);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 0.8rem + 1.1vw, 1.45rem);
  line-height: 1.35;
  color: var(--ink);
}

/* ---------- Feature strip ---------- */

.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: var(--space-4);
}

.feature-strip .icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: var(--space-2);
  color: var(--olive);
}

.feature-strip h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4em;
}

.feature-strip p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 22rem;
}

/* ---------- Catalog teaser ---------- */

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: var(--space-3);
}

.catalog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--hairline-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-card:hover {
  border-color: var(--olive);
  box-shadow: 0 0.75rem 1.75rem rgba(34, 40, 33, 0.1);
}

.catalog-card .catalog-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.catalog-card .catalog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.catalog-card:hover .catalog-photo img {
  transform: scale(1.04);
}

.catalog-card .catalog-photo img.alt {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.6s ease;
}

.catalog-card:hover .catalog-photo img.alt,
.catalog-card:focus-within .catalog-photo img.alt,
.catalog-card.is-active .catalog-photo img.alt {
  opacity: 1;
}

.catalog-card .catalog-body {
  padding: var(--space-2) var(--space-3) var(--space-3);
  border-top: 1px solid var(--hairline-light);
}

.catalog-card .catalog-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  display: block;
}

.catalog-card .catalog-desc {
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
  margin: 0.2em 0 0.6em;
}

.catalog-card .catalog-price {
  font-weight: 500;
}

.rule {
  border: none;
  border-top: 1px solid var(--hairline-light);
  margin: var(--space-4) 0;
}

/* ---------- Delivery estates ---------- */

.delivery-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.delivery-list li {
  position: relative;
  padding-top: var(--space-2);
}

.delivery-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--hairline-dark);
  transform-origin: left;
  transform: scaleX(1);
}

.delivery-list .icon {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--pampas);
  margin-bottom: 0.5em;
}

.delivery-list .estate-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  display: block;
}

.section-olive .delivery-note,
.section-bark .delivery-note {
  color: rgba(251, 250, 246, 0.85);
}

.section-olive .hero-tease,
.section-bark .hero-tease {
  color: var(--porcelain);
}

.delivery-note {
  margin-top: var(--space-3);
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Cards / grid teasers ---------- */

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: var(--space-3);
}

.teaser-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sand);
  border-radius: var(--radius);
}

.teaser-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.teaser-card:hover img {
  transform: scale(1.04);
}

.teaser-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-2);
  background: linear-gradient(180deg, transparent, rgba(34, 40, 33, 0.82));
  font-size: 0.85rem;
  color: var(--porcelain);
}

/* ---------- Gallery ---------- */

.gallery-hero {
  padding: calc(var(--space-6) + 3rem) 0 var(--space-4);
}

.bento-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 9rem;
  gap: 0.35rem;
}

/* Repeating bento rhythm: a big tile, a tall tile and a wide tile every 8 items. */
.bento-grid .gallery-item:nth-child(8n+1) {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-grid .gallery-item:nth-child(8n+4) {
  grid-row: span 2;
}
.bento-grid .gallery-item:nth-child(8n+6) {
  grid-column: span 2;
}

/* Trailing part-cycle is squared off so the grid finishes on a clean row. */
.bento-grid .gallery-item.is-plain {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-grid .gallery-item.is-tail-wide {
  grid-column: span 2;
  grid-row: span 1;
}

@media (min-width: 40rem) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 12rem;
  }
}

@media (min-width: 64rem) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 13rem;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--sand) center / cover no-repeat;
  cursor: default;
  border-radius: 0;
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.gallery-item img.is-loaded {
  opacity: 1;
}

.gallery-item .stems {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-2);
  font-size: 0.82rem;
  color: var(--porcelain);
  background: linear-gradient(180deg, transparent, rgba(34, 40, 33, 0.9));
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .stems,
.gallery-item:focus-within .stems,
.gallery-item.is-active .stems {
  transform: translateY(0);
}

.gallery-item .stems::before {
  content: "";
  display: block;
  width: 1.5em;
  height: 1px;
  background: var(--protea);
  margin-bottom: 0.5em;
}

/* ---------- Menu / order page ---------- */

.menu-list {
  display: grid;
  gap: var(--space-3);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-2);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--hairline-light);
}

.section-olive .menu-item,
.section-bark .menu-item {
  border-bottom-color: var(--hairline-dark);
}

.menu-item .name {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.menu-item .desc {
  display: block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.2em;
}

.section-olive .menu-item .desc,
.section-bark .menu-item .desc {
  color: rgba(251, 250, 246, 0.8);
}

.menu-item .price {
  font-family: var(--font-body);
  font-weight: 500;
  white-space: nowrap;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: var(--space-3);
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2);
  align-items: baseline;
}

.steps li::before {
  content: counter(step);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--olive);
}

.section-olive .steps li::before,
.section-bark .steps li::before {
  color: var(--pampas);
}

.section-stone .steps li::before {
  color: var(--olive);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  border-top: none;
  padding: var(--space-4) 0;
  font-size: 0.88rem;
  color: rgba(251, 250, 246, 0.75);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
}

.site-footer .eyebrow {
  color: var(--pampas);
}

.site-footer .eyebrow::after {
  background: var(--protea);
}

.site-footer a {
  color: var(--porcelain);
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
  text-decoration-color: var(--protea);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
}

/* ---------- Utility ---------- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.brand-name {
  white-space: nowrap;
}

@media (max-width: 40rem) {
  .nav-toggle {
    display: block;
  }

  .header-actions {
    gap: var(--space-1);
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--porcelain);
    border-bottom: 1px solid var(--hairline-light);
    padding: var(--space-1) 0;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    display: block;
    padding: 0.9rem var(--space-3);
    font-size: 1rem;
  }
}

/* ---------- Motion: hero entrance ---------- */

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-scale {
  from { opacity: 0; transform: scale(1.03); }
  to   { opacity: 1; transform: scale(1); }
}

body.is-ready .hero-content > * {
  animation: reveal-up 500ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
body.is-ready .hero-content > *:nth-child(1) { animation-delay: 0ms; }
body.is-ready .hero-content > *:nth-child(2) { animation-delay: 80ms; }
body.is-ready .hero-content > *:nth-child(3) { animation-delay: 160ms; }
body.is-ready .hero-content > *:nth-child(4) { animation-delay: 240ms; }

body.is-ready .hero-media-frame {
  animation: reveal-scale 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 200ms;
}

/* ---------- Motion: scroll reveals ---------- */

body.is-ready .section-head,
body.is-ready .catalog-card,
body.is-ready .delivery-list li,
body.is-ready .teaser-card {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: calc(var(--i, 0) * 70ms);
}

body.is-ready .section-head.in-view,
body.is-ready .catalog-card.in-view,
body.is-ready .delivery-list li.in-view,
body.is-ready .teaser-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.is-ready .section-head .eyebrow::after {
  transition: transform 400ms ease;
}
body.is-ready .section-head.in-view .eyebrow::after {
  transform: rotate(135deg) translateY(-1px);
}

body.is-ready .section-olive .delivery-list li::before,
body.is-ready .section-bark .delivery-list li::before {
  transform: scaleX(0);
  transition: transform 500ms ease;
  transition-delay: calc(var(--i, 0) * 70ms);
}
body.is-ready .section-olive .delivery-list li.in-view::before,
body.is-ready .section-bark .delivery-list li.in-view::before {
  transform: scaleX(1);
}

/* ---------- Motion: micro-details ---------- */

@keyframes attention-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

body.is-ready .hero .btn-primary,
body.is-ready .gallery-hero .btn-primary {
  animation: attention-pulse 900ms ease-in-out 1;
  animation-delay: 6s;
}

/* ---------- Full-bleed interlude ---------- */

.interlude {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.interlude-media {
  position: absolute;
  inset: 0;
}

.interlude-media img,
.interlude-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ink);
}

.interlude::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(34, 40, 33, 0.6), rgba(34, 40, 33, 0.05) 60%);
}

.interlude-content {
  position: relative;
  z-index: 1;
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
  color: var(--porcelain);
  text-align: center;
}

.interlude-content .hero-tease {
  color: var(--porcelain);
  font-size: 1.4rem;
  margin-bottom: var(--space-3);
}

.interlude-content .btn-row {
  justify-content: center;
}

.interlude-content .btn-secondary {
  color: var(--porcelain);
  border-color: var(--hairline-dark);
}
.interlude-content .btn-secondary:hover {
  border-color: var(--porcelain);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .gallery-item .stems {
    transform: none;
  }
  html {
    scroll-behavior: auto !important;
  }
}
