/* ============================================================
   PETALS & STEM — Tier 2 Standard Demo
   Editorial florist site. Anti-default. No pink, no scripts.
   ============================================================ */

/* ----- Custom properties ----- */
:root {
  /* Colour */
  --paper: #f5f1ea;
  --paper-deep: #ede7dc;
  --ink: #1a1f1a;
  --ink-soft: #3a423a;
  --forest: #2d4030;
  --forest-hover: #3a5240;
  --terracotta: #b85a3a;
  --stone: #8a8378;
  --rule: rgba(26, 31, 26, 0.15);
  --rule-strong: rgba(26, 31, 26, 0.35);

  /* Type */
  --display: "DM Serif Display", Georgia, "Times New Roman", serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale (8px base) */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --s-8: 8rem;
  --s-9: 10rem;

  /* Layout */
  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
input, textarea, select { font: inherit; color: inherit; }

/* ----- Paper texture overlay (global) ----- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.12 0 0 0 0 0.1 0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
body > * { position: relative; z-index: 2; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.h1, h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.5rem, 9vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.h2, h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.h3, h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.15;
}
p { font-size: 1rem; line-height: 1.65; color: var(--ink-soft); }
.lede { font-size: 1.125rem; line-height: 1.6; color: var(--ink); max-width: 38ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--stone);
}
.eyebrow.terra { color: var(--terracotta); }
.eyebrow.ink { color: var(--ink); }

.figcap {
  font-family: var(--body);
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  margin-top: 0.75rem;
  display: block;
}
.fignum {
  font-family: var(--body);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--stone);
  margin-right: 0.4em;
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(4rem, 8vw, 8rem); }
.section-tight { padding-block: clamp(3rem, 5vw, 5rem); }

.rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--rule);
  border: 0;
}

/* ============================================================
   TIER BADGE
   ============================================================ */
.tier-badge {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  background: var(--paper);
  border: 1.5px solid var(--forest);
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: background 0.2s, color 0.2s;
}
.tier-badge:hover { background: var(--forest); color: var(--paper); }
body.dn-on .tier-badge { display: none; }
@media (max-width: 640px) {
  .tier-badge { font-size: 0.58rem; padding: 0.4rem 0.7rem; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, backdrop-filter 0.25s;
}
.site-header.scrolled {
  background: rgba(245, 241, 234, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom-color: var(--rule);
}
.header-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 1rem var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
.wordmark {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  white-space: nowrap;
}
.wordmark .amp { color: var(--forest); font-style: italic; padding: 0 0.05em; }
.primary-nav { justify-self: center; display: none; }
@media (min-width: 1024px) {
  .primary-nav { display: block; }
}
.primary-nav ul {
  display: flex;
  gap: 2.25rem;
}
.primary-nav a {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  padding-block: 0.5rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  border-bottom-color: var(--forest);
  color: var(--forest);
}
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 0.6rem;
  background: transparent;
  border: 1px solid var(--rule);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

/* ----- Mobile menu ----- */
.mobile-menu {
  display: none;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.mobile-menu.open { display: block; }
.mobile-menu ul {
  padding: 1rem var(--gutter) 1.5rem;
}
.mobile-menu li { border-bottom: 1px solid var(--rule); }
.mobile-menu li:last-child { border-bottom: 0; }
.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
}

/* ============================================================
   STEM TICKER
   ============================================================ */
.stem-ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  padding-block: 0.85rem;
}
.stem-ticker::before,
.stem-ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.stem-ticker::before { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.stem-ticker::after { right: 0; background: linear-gradient(270deg, var(--paper), transparent); }
.ticker-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: ticker 55s linear infinite;
}
.stem-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-group {
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--ink);
  padding-right: 0;
}
.ticker-group span { padding-inline: 1.25rem; }
.ticker-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1.5px solid transparent;
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--paper);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-hover);
  border-color: var(--forest-hover);
}
.btn-secondary {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-paper {
  background: var(--paper);
  color: var(--forest);
  border-color: var(--paper);
}
.btn-paper:hover {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn-sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.65rem;
}
.btn .arrow { font-size: 0.85rem; transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--forest);
  border-bottom: 1.5px solid var(--forest);
  padding-bottom: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}
.text-link .arrow { transition: transform 0.2s; }
.text-link:hover .arrow { transform: translateX(3px); }

/* ============================================================
   PLACEHOLDERS (image substitutes)
   ============================================================ */
.ph {
  position: relative;
  background: var(--paper-deep);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  overflow: hidden;
  isolation: isolate;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(45, 64, 48, 0.18), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(184, 90, 58, 0.12), transparent 55%),
    repeating-linear-gradient(45deg, rgba(26, 31, 26, 0.04) 0 2px, transparent 2px 14px);
  z-index: 0;
}
.ph::after {
  content: attr(data-placeholder);
  position: absolute;
  inset: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  z-index: 1;
}
.ph.tall { aspect-ratio: 3 / 4; }
.ph.square { aspect-ratio: 1 / 1; }
.ph.wide { aspect-ratio: 4 / 3; }
.ph.cinema { aspect-ratio: 16 / 9; }
.ph.portrait { aspect-ratio: 4 / 5; }

/* ============================================================
   FORM
   ============================================================ */
.form-field {
  display: block;
  margin-bottom: 2rem;
}
.form-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--rule-strong);
  padding: 0.75rem 0;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--forest);
}
.form-field textarea {
  resize: vertical;
  min-height: 7rem;
  line-height: 1.55;
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%231a1f1a' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}

/* ============================================================
   EDITORIAL 12-COL GRID
   ============================================================ */
.grid12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
.col-1 { grid-column: span 1; }
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; }

@media (max-width: 1023px) {
  .grid12 > [class*="col-"] { grid-column: span 12; }
  .md-col-6 { grid-column: span 6 !important; }
  .md-col-12 { grid-column: span 12 !important; }
}

.start-1 { grid-column-start: 1; }
.start-2 { grid-column-start: 2; }
.start-3 { grid-column-start: 3; }
.start-4 { grid-column-start: 4; }
.start-5 { grid-column-start: 5; }
.start-6 { grid-column-start: 6; }
.start-7 { grid-column-start: 7; }
.start-8 { grid-column-start: 8; }
@media (max-width: 1023px) {
  .grid12 > [class*="start-"] { grid-column-start: auto; }
}

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero-home {
  padding-block: clamp(2.5rem, 6vw, 6rem);
  position: relative;
}
.hero-home .grid12 {
  align-items: end;
  row-gap: 2.5rem;
}
.hero-text { padding-top: 2rem; }
.hero-date {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-date::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--terracotta);
}
.hero-text h1 {
  margin-bottom: 2rem;
}
.hero-text h1 .line {
  display: block;
}
.hero-text h1 .line.indent { padding-left: clamp(1rem, 4vw, 3rem); }
.hero-text h1 .ital { font-style: italic; color: var(--forest); }
.hero-text .lede { max-width: 36ch; }

.hero-image-wrap {
  position: relative;
  margin-right: calc(-1 * var(--gutter));
}
.hero-image-wrap .ph {
  aspect-ratio: 3 / 4.4;
  width: 100%;
}
.hero-image-wrap .figcap {
  padding-right: var(--gutter);
}
@media (max-width: 1023px) {
  .hero-image-wrap { margin-right: 0; margin-top: 2rem; }
  .hero-image-wrap .ph { aspect-ratio: 4 / 5; }
}

/* ============================================================
   HOME — INTRO
   ============================================================ */
.intro-block {
  text-align: left;
  padding-block: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.intro-block .eyebrow { margin-bottom: 1.5rem; }
.intro-block h2 { margin-bottom: 2rem; max-width: 18ch; }
.intro-block p + p { margin-top: 1.25rem; }
.intro-block p { max-width: 60ch; }

/* ============================================================
   HOME — THIS WEEK PREVIEW
   ============================================================ */
.thisweek-preview .eyebrow { margin-bottom: 1.25rem; }
.thisweek-preview h2 { margin-bottom: 3rem; max-width: 14ch; }
.stem-list {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.55;
  color: var(--ink);
}
.stem-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--rule);
}
.stem-list li:last-child { border-bottom: 0; }
.stem-list .num {
  font-family: var(--body);
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  flex-shrink: 0;
  width: 2.5rem;
}
.stem-list .origin {
  font-family: var(--body);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-left: auto;
  white-space: nowrap;
}

.thisweek-preview .ph { height: 100%; min-height: 32rem; }
.thisweek-preview .text-link { margin-top: 2.5rem; }

/* ============================================================
   BOUQUET CARDS (with hover-reveal stems)
   ============================================================ */
.bouquet-card {
  position: relative;
  display: block;
}
.bouquet-card .ph {
  aspect-ratio: 4 / 5;
  width: 100%;
}
.bouquet-card.tall .ph { aspect-ratio: 3 / 4.4; }
.bouquet-card.wide .ph { aspect-ratio: 5 / 4; }
.bouquet-stems {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(26, 31, 26, 0.85));
  color: var(--paper);
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.bouquet-card .ph:hover .bouquet-stems,
.bouquet-card:focus-within .bouquet-stems {
  opacity: 1;
  transform: translateY(0);
}
.bouquet-card .figcap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.bouquet-card .figcap .price {
  font-style: normal;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
@media (max-width: 767px) {
  .bouquet-stems {
    position: static;
    background: none;
    color: var(--ink-soft);
    opacity: 1;
    transform: none;
    padding: 0.5rem 0 0;
    font-size: 0.85rem;
  }
}

/* ============================================================
   FEATURED BOUQUETS GRID
   ============================================================ */
.featured-bouquets h2 { margin-bottom: 3.5rem; max-width: 14ch; }
.featured-bouquets .text-link { margin-top: 3rem; }
.featured-bouquets .grid12 { row-gap: 3.5rem; }
.featured-bouquets .offset-down { margin-top: 4rem; }
@media (max-width: 1023px) {
  .featured-bouquets .offset-down { margin-top: 0; }
}

/* ============================================================
   STUDIO PREVIEW
   ============================================================ */
.studio-preview .grid12 { align-items: center; row-gap: 3rem; }
.studio-preview .ph { aspect-ratio: 1 / 1; }
.studio-preview h2 { margin-bottom: 1.75rem; max-width: 12ch; }
.studio-preview p + p { margin-top: 1.25rem; }
.studio-preview .text-link { margin-top: 2.5rem; }

/* ============================================================
   INSTAGRAM STRIP
   ============================================================ */
.insta-strip {
  border-top: 1px solid var(--rule);
  padding-block: clamp(3rem, 5vw, 5rem);
}
.insta-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.insta-head .handle {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--ink);
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.insta-grid .ph { aspect-ratio: 1 / 1; }
@media (min-width: 640px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .insta-grid { grid-template-columns: repeat(6, 1fr); } }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--forest);
  color: var(--paper);
  padding-block: clamp(4rem, 8vw, 8rem);
  text-align: center;
}
.cta-band h2 {
  color: var(--paper);
  max-width: 16ch;
  margin: 0 auto 2.5rem;
}
.cta-band p {
  color: rgba(245, 241, 234, 0.8);
  max-width: 42ch;
  margin: 0 auto 2.5rem;
}
.cta-band .eyebrow {
  color: rgba(245, 241, 234, 0.7);
  margin-bottom: 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding-block: clamp(3rem, 5vw, 5rem) 2rem;
  font-size: 0.85rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; }
}
.footer-col h4 {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--stone);
  margin-bottom: 1rem;
}
.footer-col .wordmark {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.footer-col p { font-size: 0.85rem; line-height: 1.65; }
.footer-col address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer-col ul a:hover {
  color: var(--forest);
  border-bottom-color: var(--forest);
}
.footer-hours {
  font-size: 0.85rem;
  color: var(--ink-soft);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1rem;
}
.footer-hours dt { font-weight: 500; color: var(--ink); }
.footer-base {
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--stone);
}

/* ============================================================
   ASYMMETRIC HELPERS
   ============================================================ */
.bleed-right { margin-right: calc(-1 * var(--gutter)); }
.bleed-left { margin-left: calc(-1 * var(--gutter)); }
@media (max-width: 767px) {
  .bleed-right, .bleed-left { margin-right: 0; margin-left: 0; }
}
.offset-up { margin-top: -3rem; }
@media (max-width: 1023px) { .offset-up { margin-top: 0; } }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}
.btn:focus-visible { outline-offset: 4px; }

/* ============================================================
   PAGE HERO STRIP (inner pages)
   ============================================================ */
.page-hero {
  padding-block: clamp(3.5rem, 6vw, 6rem);
  border-bottom: 1px solid var(--rule);
}
.page-hero .grid12 { row-gap: 2rem; align-items: end; }
.page-hero .eyebrow { display: block; margin-bottom: 1.5rem; }
.page-hero h1 {
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  line-height: 0.98;
  max-width: 18ch;
}
.page-hero h1 .ital { font-style: italic; color: var(--forest); }
.page-hero .lede {
  margin-top: 2rem;
  max-width: 42ch;
  font-size: 1.05rem;
}

/* ============================================================
   FILTER BAR (sticky)
   ============================================================ */
.filter-bar {
  position: sticky;
  top: 64px;
  z-index: 40;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding-block: 1rem;
  margin-bottom: 3rem;
}
.filter-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  align-items: center;
}
.filter-bar .label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--stone);
  margin-right: 0.5rem;
}
.filter-pill {
  padding: 0.5rem 0.95rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: transparent;
  border: 1.5px solid var(--rule-strong);
  color: var(--ink);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-pill:hover { border-color: var(--forest); color: var(--forest); }
.filter-pill[aria-pressed="true"] {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--paper);
}

/* ============================================================
   BOUQUETS PAGE — GRID
   ============================================================ */
.bouquets-grid { padding-bottom: clamp(4rem, 6vw, 6rem); }
.bouquets-grid .grid12 { row-gap: 4rem; }
.bouquets-grid .offset-down { margin-top: 4rem; }
.bouquets-grid .offset-up { margin-top: -2rem; }
@media (max-width: 1023px) {
  .bouquets-grid .offset-down,
  .bouquets-grid .offset-up { margin-top: 0; }
}

.note-after {
  text-align: center;
  padding-block: clamp(3rem, 5vw, 5rem);
  border-top: 1px solid var(--rule);
}
.note-after p {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
  max-width: 30ch;
  margin: 0 auto 2rem;
}

/* ============================================================
   THIS WEEK — BIG STEM ROWS
   ============================================================ */
.stem-rows {
  border-top: 1px solid var(--rule);
}
.stem-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-block: clamp(2rem, 3.5vw, 3.5rem);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 768px) {
  .stem-row {
    grid-template-columns: 5rem 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
  .stem-row.with-image {
    grid-template-columns: 5rem 1fr 1.1fr;
  }
  .stem-row.no-image .stem-row-image { display: none; }
}
.stem-row-num {
  font-family: var(--display);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--terracotta);
}
.stem-row-body h3 {
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}
.stem-row-body .origin {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 1rem;
  display: block;
}
.stem-row-body p { max-width: 50ch; margin-bottom: 1rem; }
.stem-row-body .until {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--stone);
}
.stem-row-image .ph { aspect-ratio: 4 / 5; width: 100%; }
.stem-row-image .figcap { display: block; }

.next-week {
  padding-block: clamp(3rem, 5vw, 5rem);
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.next-week h2 { margin-bottom: 1.5rem; max-width: 16ch; }
.next-week .next-list {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--ink);
  columns: 1;
}
@media (min-width: 768px) { .next-week .next-list { columns: 2; column-gap: 3rem; } }
.next-week .next-list li { break-inside: avoid; }
.next-week .next-list .origin {
  font-family: var(--body);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-left: 0.5rem;
}

/* ============================================================
   STUDIO PAGE
   ============================================================ */
.studio-intro p {
  font-size: 1.05rem;
  max-width: 60ch;
}
.founder {
  padding-block: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--rule);
}
.founder .grid12 { row-gap: 3rem; align-items: start; }
.founder .ph { aspect-ratio: 4 / 5; }
.founder .figcap { display: block; }
.founder .text {
  padding-top: 1rem;
}
.founder .eyebrow { display: block; margin-bottom: 1rem; }
.founder h2 { margin-bottom: 2rem; max-width: 14ch; }
.founder p + p { margin-top: 1.25rem; }
.founder p { max-width: 50ch; }

.how-we-work {
  padding-block: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--rule);
  background: var(--paper-deep);
}
.how-we-work .eyebrow { display: block; margin-bottom: 1rem; }
.how-we-work h2 { margin-bottom: 4rem; max-width: 18ch; }
.how-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .how-cols { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}
.how-col h3 {
  font-size: 1.75rem;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1.5px solid var(--ink);
  max-width: 12ch;
}
.how-col p { max-width: 36ch; }

.photo-grid-section {
  padding-block: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--rule);
}
.photo-grid-section .eyebrow { display: block; margin-bottom: 1rem; }
.photo-grid-section h2 { margin-bottom: 3rem; max-width: 14ch; }
.photo-grid-section .grid12 { row-gap: 2rem; }
.photo-grid-section .ph.tall { aspect-ratio: 3 / 4.4; }
.photo-grid-section .ph.wide { aspect-ratio: 4 / 3; }
.photo-grid-section .ph.square { aspect-ratio: 1 / 1; }
.photo-grid-section .offset-down { margin-top: 4rem; }
@media (max-width: 1023px) {
  .photo-grid-section .offset-down { margin-top: 0; }
}

/* ============================================================
   VISIT & ORDER PAGE
   ============================================================ */
.visit-body {
  padding-block: clamp(3rem, 6vw, 6rem);
}
.visit-body .grid12 { row-gap: 4rem; align-items: start; }
.visit-form-wrap .lede {
  font-size: 1.05rem;
  max-width: 50ch;
  margin-bottom: 3rem;
}
.visit-form-wrap form { max-width: 36rem; }
.form-success {
  padding: 2rem;
  border: 1.5px solid var(--forest);
  background: var(--paper);
}
.form-success h3 { color: var(--forest); margin-bottom: 1rem; }
.form-success p { font-size: 1rem; }
.form-success .eyebrow { color: var(--terracotta); display: block; margin-bottom: 1rem; }

.visit-info {
  padding-top: 1rem;
}
.visit-info .block {
  padding-block: 2rem;
  border-bottom: 1px solid var(--rule);
}
.visit-info .block:first-child { padding-top: 0; }
.visit-info .block:last-child { border-bottom: 0; }
.visit-info h3 {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--stone);
  margin-bottom: 1rem;
}
.visit-info .address-display {
  font-family: var(--display);
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
}
.visit-info .phone-big {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.1;
  color: var(--forest);
  border-bottom: 1.5px solid var(--forest);
  display: inline-block;
  padding-bottom: 0.25rem;
}
.visit-info .phone-big:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }
.visit-info .hours-table {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.5rem;
  font-size: 1rem;
  color: var(--ink-soft);
}
.visit-info .hours-table dt { font-weight: 500; color: var(--ink); }

.map-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--rule-strong);
  margin-bottom: 1rem;
  background: var(--paper-deep);
  overflow: hidden;
}
.map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 48%, rgba(45, 64, 48, 0.18) 48% 52%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(45, 64, 48, 0.12) 48% 52%, transparent 52%),
    repeating-linear-gradient(90deg, rgba(26, 31, 26, 0.05) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(0deg, rgba(26, 31, 26, 0.05) 0 1px, transparent 1px 40px);
}
.map-pin {
  position: absolute;
  top: 48%;
  left: 52%;
  transform: translate(-50%, -100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.map-pin .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 2px solid var(--paper);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.map-pin .label {
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  padding: 0.4rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  white-space: nowrap;
}
.map-frame::after {
  content: "Map placeholder";
  position: absolute;
  bottom: 0.6rem;
  right: 0.8rem;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--stone);
  z-index: 2;
}

/* ============================================================
   CMS SANDBOX (this-week.html)
   A visitor-facing "try it yourself" demo. Edits live in the
   browser only — see script.js for the logic.
   ============================================================ */

/* Stem photo (replaces placeholder once uploaded) */
.stem-row-image .stem-photo {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  background: var(--paper-deep);
  display: block;
}

/* "Try editing this page" call-to-action (always visible) */
.cms-try {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px dashed var(--rule-strong);
}
.cms-try__btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem 1rem 1.25rem;
  background: var(--forest);
  color: var(--paper);
  border: 1px solid var(--forest);
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 8px 20px -12px rgba(45,64,48,0.5);
}
.cms-try__btn:hover,
.cms-try__btn:focus-visible {
  background: var(--forest-hover);
  transform: translateY(-1px);
  outline: none;
}
.cms-try__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(245, 241, 234, 0.15);
  flex-shrink: 0;
}
.cms-try__icon svg { width: 1.15rem; height: 1.15rem; }
.cms-try__text { display: flex; flex-direction: column; line-height: 1.25; }
.cms-try__label {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.cms-try__sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85rem;
  opacity: 0.82;
  margin-top: 0.15rem;
}
.cms-try__arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.cms-try__btn:hover .cms-try__arrow { transform: translateX(3px); }
.cms-editing .cms-try { display: none; }

/* Demo-mode banner */
.cms-banner {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid rgba(245, 241, 234, 0.15);
  box-shadow: 0 6px 18px -12px rgba(0,0,0,0.45);
}
.cms-banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cms-banner__text {
  flex: 1 1 24rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--paper);
}
.cms-banner__text strong { color: var(--paper); margin-right: 0.35rem; }
.cms-banner__meta {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.82rem;
  opacity: 0.72;
  margin-top: 0.1rem;
}
.cms-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Shared CMS buttons */
.cms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.cms-btn:hover { transform: translateY(-1px); }
.cms-btn--ghost {
  background: transparent;
  color: var(--paper);
}
.cms-btn--ghost:hover {
  background: rgba(245, 241, 234, 0.12);
}
.cms-btn--wide {
  width: 100%;
  padding-block: 0.9rem;
  border-style: dashed;
  border-color: var(--rule-strong);
  color: var(--ink-soft);
  background: transparent;
  font-family: var(--body);
}
.cms-btn--wide:hover {
  background: var(--paper-deep);
  color: var(--ink);
  border-color: var(--forest);
}

.cms-add-row { margin-top: 2rem; }

/* Editable fields */
body.cms-editing [data-cms-field] {
  outline: 1px dashed transparent;
  outline-offset: 4px;
  border-radius: 2px;
  transition: outline-color 0.15s ease, background 0.15s ease;
  cursor: text;
}
body.cms-editing [data-cms-field]:hover {
  outline-color: var(--rule-strong);
}
body.cms-editing [data-cms-field]:focus {
  outline: 2px solid var(--forest);
  outline-offset: 4px;
  background: rgba(45, 64, 48, 0.04);
}
body.cms-editing [data-cms-field]:empty::before {
  content: attr(data-cms-placeholder);
  color: var(--stone);
  font-style: italic;
}

/* Per-row control strip (only visible in edit mode) */
.cms-row-controls {
  display: none;
}
body.cms-editing .cms-row-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--rule);
}
.cms-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--paper);
  color: var(--ink-soft);
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.cms-icon:hover {
  background: var(--forest);
  color: var(--paper);
  border-color: var(--forest);
}
.cms-icon--upload { cursor: pointer; }
.cms-icon--danger:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--paper);
}

/* Edit-mode highlight on stem rows */
body.cms-editing .stem-row {
  position: relative;
  padding-inline: 1rem;
  margin-inline: -1rem;
  border-radius: 4px;
  transition: background 0.15s ease;
}
body.cms-editing .stem-row:hover {
  background: rgba(45, 64, 48, 0.035);
}

/* Empty state */
.cms-empty {
  padding: 3rem 0;
  text-align: center;
  color: var(--stone);
  font-style: italic;
  font-family: var(--display);
  font-size: 1.15rem;
}

/* Flash toast */
.cms-flash {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translate(-50%, 1rem);
  background: var(--ink);
  color: var(--paper);
  padding: 0.8rem 1.25rem;
  font-size: 0.85rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-width: calc(100vw - 2rem);
}
.cms-flash.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Mobile tightening */
@media (max-width: 640px) {
  .cms-try__btn {
    width: 100%;
    justify-content: flex-start;
  }
  .cms-banner__inner {
    padding-block: 0.75rem;
  }
  .cms-banner__actions {
    width: 100%;
  }
  .cms-banner__actions .cms-btn { flex: 1; }
}
