/* ============================================================
   Hearth & Rye — Artisan Backstube, Berlin
   Design system & components
   Type:  Fraunces (display) · Inter (text) — variable, local
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-var-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-var-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --cream-050: #fdfbf5;
  --cream-100: #fbf7ee;
  --cream-200: #f5eedd;
  --cream-300: #efe5cf;
  --paper: #fffef9;
  --sand-300: #e7dcc4;
  --sand-400: #d8c9a8;
  --sand-500: #c2ae84;
  --ink-950: #1c140d;
  --ink-900: #2a2016;
  --ink-700: #40352a;
  --ink-600: #57493a;
  --ink-500: #71624f;
  --sienna-700: #8f431f;
  --sienna-600: #a44e2a;
  --sienna-500: #b95f36;
  --sienna-200: #e9cdb8;
  --sienna-100: #f4e6d9;
  --gold-500: #c79a5b;
  --gold-300: #dfc49b;
  --sage-500: #7b7f5a;

  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 74rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --radius-sm: 0.625rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-arch: 10rem 10rem 1.25rem 1.25rem;

  --shadow-soft: 0 1px 2px rgba(42, 32, 22, 0.05), 0 12px 32px -12px rgba(42, 32, 22, 0.18);
  --shadow-lift: 0 2px 4px rgba(42, 32, 22, 0.06), 0 24px 48px -16px rgba(42, 32, 22, 0.28);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
  --t-fast: 180ms var(--ease-out);
  --t-med: 340ms var(--ease-out);

  --header-h: 5.25rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 420;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-700);
  background-color: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Paper grain, barely-there */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
strong { font-weight: 640; }

::selection { background: var(--sienna-600); color: var(--cream-100); }

:focus-visible {
  outline: 2px solid var(--sienna-600);
  outline-offset: 3px;
  border-radius: 2px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 0.75rem; left: 0.75rem;
  z-index: 3000;
  padding: 0.7rem 1.2rem;
  background: var(--ink-900);
  color: var(--cream-100);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 560;
  transform: translateY(-260%);
  transition: transform var(--t-med);
}
.skip-link:focus-visible { transform: translateY(0); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(4.75rem, 9vw, 8rem); }

/* ---------- Shared type ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 640;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sienna-600);
  margin-bottom: 1.15rem;
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow-gold { color: var(--gold-500); }

.section-title {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  font-weight: 420;
  color: var(--sienna-600);
}
.section-title-sm {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.section-lead {
  max-width: 38rem;
  margin-top: 1.15rem;
  font-size: 1.05rem;
  color: var(--ink-500);
}
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head-slim { margin-bottom: clamp(2rem, 4vw, 3rem); }

/* ---------- Icons ---------- */
.icon { width: 1.15em; height: 1.15em; fill: none; }
.icon use, .icon symbol { pointer-events: none; }
.icon-lg { width: 1.9rem; height: 1.9rem; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-size: 0.925rem;
  font-weight: 580;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  transition: transform var(--t-fast), box-shadow var(--t-fast),
              background-color var(--t-fast), color var(--t-fast),
              border-color var(--t-fast);
}
.btn .icon-arrow { width: 0.95em; height: 0.95em; transition: transform var(--t-fast); }
.btn:hover .icon-arrow { transform: translateX(3px); }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-ink {
  background: var(--ink-900);
  color: var(--cream-100);
  box-shadow: 0 10px 24px -12px rgba(28, 20, 13, 0.55);
}
.btn-ink:hover {
  background: var(--sienna-600);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(164, 78, 42, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  box-shadow: inset 0 0 0 1.5px var(--sand-400);
}
.btn-ghost:hover {
  box-shadow: inset 0 0 0 1.5px var(--ink-900);
  background: var(--paper);
  transform: translateY(-2px);
}

.btn-cream {
  background: var(--cream-100);
  color: var(--ink-900);
}
.btn-cream:hover { background: #fff; transform: translateY(-2px); }

.btn-sm { padding: 0.72rem 1.3rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color var(--t-med), box-shadow var(--t-med),
              backdrop-filter var(--t-med), height var(--t-med);
}
.site-header.is-scrolled {
  height: 4.25rem;
  background: rgba(251, 247, 238, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(42, 32, 22, 0.08), 0 12px 32px -20px rgba(42, 32, 22, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.8rem; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.9rem; height: 2.9rem;
  border-radius: 50%;
  background: var(--cream-100);
  box-shadow: inset 0 0 0 1.5px var(--sand-400);
  color: var(--sienna-600);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.brand-mark .icon { width: 1.35rem; height: 1.35rem; }
.brand:hover .brand-mark { transform: rotate(-8deg); box-shadow: inset 0 0 0 1.5px var(--sienna-600); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 560;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.brand-name em { font-style: italic; font-weight: 420; color: var(--sienna-600); }
.brand-sub {
  font-size: 0.62rem;
  font-weight: 620;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.site-nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; align-items: center; gap: 1.6rem; }
.nav-link {
  position: relative;
  padding-block: 0.4rem;
  font-size: 0.92rem;
  font-weight: 520;
  color: var(--ink-700);
  transition: color var(--t-fast);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--sienna-600);
  transition: right var(--t-med);
}
.nav-link:hover { color: var(--ink-900); }
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }
.nav-link.is-active { color: var(--sienna-600); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem; height: 2.75rem;
  padding: 0.65rem;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px var(--sand-400);
  background: var(--cream-100);
}
.nav-toggle-line {
  display: block;
  height: 1.6px;
  width: 100%;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform var(--t-med), opacity var(--t-fast);
}
body.nav-open .nav-toggle-line:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
body.nav-open .nav-toggle-line:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-line:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: clip;
}
.hero::after {
  content: "";
  position: absolute;
  top: -12rem; right: -14rem;
  width: 36rem; height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 154, 91, 0.16) 0%, rgba(199, 154, 91, 0) 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 460;
  font-size: clamp(2.9rem, 6.4vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink-950);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--sienna-600);
}
.hero-lead {
  max-width: 33rem;
  font-size: 1.075rem;
  color: var(--ink-500);
  margin-bottom: 2.1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }

.hero-meta {
  display: flex;
  align-items: stretch;
  gap: 1.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand-300);
}
.hero-meta-item dt {
  font-size: 0.68rem;
  font-weight: 640;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 0.15rem;
}
.hero-meta-item dd {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 520;
  color: var(--ink-900);
}
.hero-meta-sep { width: 1px; background: var(--sand-300); }

.hero-media { position: relative; justify-self: end; width: min(100%, 28.5rem); }
.hero-figure {
  position: relative;
  border-radius: var(--radius-arch);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lift);
}
.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border-radius: calc(10rem - 0.7rem) calc(10rem - 0.7rem) 0.7rem 0.7rem;
  border: 1px solid rgba(251, 247, 238, 0.5);
  pointer-events: none;
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute;
  top: -1.4rem; left: -2.2rem;
  width: 7.5rem; height: 7.5rem;
  display: grid;
  place-items: center;
  background: var(--cream-100);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}
.hero-badge-spin {
  position: absolute;
  inset: 0.35rem;
  animation: spin 22s linear infinite;
}
.hero-badge-text {
  font-family: var(--font-body);
  font-size: 0.565rem;
  font-weight: 640;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  fill: var(--ink-700);
}
.hero-badge-wheat { width: 1.6rem; height: 1.6rem; color: var(--sienna-600); }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-card {
  position: absolute;
  right: -1.1rem; bottom: 2.6rem;
  padding: 0.95rem 1.15rem;
  background: rgba(255, 254, 249, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-300);
  box-shadow: var(--shadow-soft);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.hero-card-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.66rem;
  font-weight: 660;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 0.3rem;
}
.hero-card-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--sage-500);
  box-shadow: 0 0 0 0 rgba(123, 127, 90, 0.5);
  animation: pulse 2.4s var(--ease-smooth) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(123, 127, 90, 0.45); }
  70% { box-shadow: 0 0 0 7px rgba(123, 127, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(123, 127, 90, 0); }
}
.hero-card-time {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 560;
  color: var(--ink-950);
  line-height: 1.25;
}
.hero-card-item { font-size: 0.82rem; color: var(--ink-500); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink-950);
  color: var(--cream-200);
  overflow: clip;
  padding-block: 0.9rem;
  transform: rotate(-0.6deg) scale(1.02);
  border-block: 1px solid rgba(199, 154, 91, 0.25);
}
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-group {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  padding-right: 2.6rem;
}
.marquee-group span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 420;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.marquee-group .icon { width: 0.9rem; height: 0.9rem; color: var(--gold-500); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Story ---------- */
.story { padding-top: clamp(4.75rem, 9vw, 8.5rem); }
.story-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.story-media { position: relative; }
.story-figure-main {
  border-radius: var(--radius-arch);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lift);
}
.story-figure-main img { width: 100%; height: 100%; object-fit: cover; }
.story-figure-small {
  position: absolute;
  right: -2rem; bottom: -2.8rem;
  width: 46%;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 0.45rem solid var(--cream-100);
  box-shadow: var(--shadow-lift);
}
.story-figure-small img { width: 100%; height: 100%; object-fit: cover; }
.story-stamp {
  position: absolute;
  top: -2rem; right: 8%;
  width: 7rem; height: 7rem;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.1rem;
  border-radius: 50%;
  background: var(--sienna-600);
  color: var(--cream-100);
  box-shadow: var(--shadow-lift);
  transform: rotate(7deg);
}
.story-stamp-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 520;
  line-height: 1;
}
.story-stamp-label {
  font-size: 0.6rem;
  font-weight: 640;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
  opacity: 0.9;
}
.story-text p + p { margin-top: 1.05rem; }
.story-text { margin-top: 1.4rem; color: var(--ink-600); max-width: 34rem; }

.story-pillars {
  margin-top: 2.2rem;
  display: grid;
  gap: 1.25rem;
  max-width: 32rem;
}
.story-pillars li { display: flex; gap: 1rem; align-items: flex-start; }
.pillar-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.9rem; height: 2.9rem;
  border-radius: 50%;
  background: var(--sienna-100);
  color: var(--sienna-600);
}
.pillar-icon svg { width: 1.35rem; height: 1.35rem; }
.story-pillars h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 560;
  color: var(--ink-900);
  margin-bottom: 0.15rem;
}
.story-pillars p { font-size: 0.92rem; color: var(--ink-500); }

.story-signature {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
}
.signature-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.9rem;
  font-weight: 430;
  color: var(--ink-900);
}
.signature-role {
  font-size: 0.72rem;
  font-weight: 640;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 0.2rem;
}

/* ---------- Bake table ---------- */
.bakes { background: var(--cream-200); border-block: 1px solid var(--sand-300); }
.bake-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}
.chip {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 560;
  color: var(--ink-600);
  background: var(--paper);
  box-shadow: inset 0 0 0 1.5px var(--sand-300);
  transition: color var(--t-fast), background-color var(--t-fast),
              box-shadow var(--t-fast), transform var(--t-fast);
}
.chip:hover { box-shadow: inset 0 0 0 1.5px var(--sienna-500); color: var(--sienna-600); transform: translateY(-1px); }
.chip.is-active {
  background: var(--ink-900);
  color: var(--cream-100);
  box-shadow: inset 0 0 0 1.5px var(--ink-900);
}

.bake-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.bake-card {
  background: var(--paper);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(42, 32, 22, 0.04);
  transition: transform var(--t-med), box-shadow var(--t-med), opacity var(--t-med);
}
.bake-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.bake-card.is-hidden { display: none; }
.bake-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-300);
}
.bake-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-smooth);
}
.bake-card:hover .bake-media img { transform: scale(1.06); }
.bake-tag {
  position: absolute;
  left: 0.75rem; bottom: 0.75rem;
  padding: 0.34rem 0.8rem;
  border-radius: 999px;
  background: rgba(28, 20, 13, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--cream-100);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.bake-body { padding: 1.15rem 1.25rem 1.35rem; }
.bake-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 0.45rem;
}
.bake-row::after {
  content: "";
  flex: 1;
  order: 2;
  border-bottom: 2px dotted var(--sand-400);
  transform: translateY(-4px);
}
.bake-name {
  order: 1;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 560;
  color: var(--ink-950);
  letter-spacing: -0.01em;
}
.bake-price {
  order: 3;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--sienna-600);
  white-space: nowrap;
}
.bake-note { font-size: 0.86rem; line-height: 1.6; color: var(--ink-500); }

.bake-card-note {
  display: flex;
  background: var(--ink-950);
  border-color: var(--ink-950);
  color: var(--cream-200);
}
.bake-coming {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.75rem 1.5rem;
  text-align: left;
}
.bake-coming .icon-lg { color: var(--gold-500); }
.bake-coming .bake-name { color: var(--cream-100); font-size: 1.25rem; line-height: 1.25; }
.bake-coming .bake-note { color: rgba(245, 238, 221, 0.75); }

/* ---------- Craft (dark) ---------- */
.craft {
  background:
    radial-gradient(60rem 30rem at 85% -10%, rgba(164, 78, 42, 0.22), transparent 60%),
    radial-gradient(50rem 26rem at -10% 100%, rgba(199, 154, 91, 0.12), transparent 60%),
    var(--ink-950);
  color: var(--cream-200);
}
.craft .section-title { color: var(--cream-100); }
.craft .section-title em { color: var(--gold-500); }
.craft .section-lead { color: rgba(245, 238, 221, 0.66); }

.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.craft-card {
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(223, 196, 155, 0.16);
  background: rgba(251, 247, 238, 0.03);
  transition: transform var(--t-med), border-color var(--t-med), background-color var(--t-med);
}
.craft-card:hover {
  transform: translateY(-5px);
  border-color: rgba(223, 196, 155, 0.4);
  background: rgba(251, 247, 238, 0.055);
}
.craft-icon {
  display: grid;
  place-items: center;
  width: 3.4rem; height: 3.4rem;
  border-radius: 50%;
  border: 1px solid rgba(223, 196, 155, 0.35);
  color: var(--gold-500);
  margin-bottom: 1.3rem;
}
.craft-icon svg { width: 1.7rem; height: 1.7rem; }
.craft-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 520;
  color: var(--cream-100);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.craft-card p { font-size: 0.9rem; line-height: 1.65; color: rgba(245, 238, 221, 0.66); }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: clamp(2.25rem, 4vw, 3.25rem);
  border-top: 1px solid rgba(223, 196, 155, 0.18);
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 460;
  line-height: 1;
  color: var(--cream-100);
  font-variant-numeric: tabular-nums;
}
.stat-value .counter::after { content: ""; }
.stat-label {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 238, 221, 0.55);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.4rem;
}
.g-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-300);
}
.g-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-smooth);
}
.g-tile:hover img, .g-tile:focus-visible img { transform: scale(1.05); }
.g-a { grid-column: span 7; aspect-ratio: 16 / 10; }
.g-b { grid-column: span 5; aspect-ratio: 16 / 10; overflow: visible; }
.g-c { grid-column: span 5; aspect-ratio: 4 / 3; }
.g-d { grid-column: span 7; aspect-ratio: 16 / 10; }
.g-e { grid-column: span 7; aspect-ratio: 16 / 10; }
.g-f { grid-column: span 5; aspect-ratio: 4 / 3; }

.g-cap {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  padding: 2.2rem 1.3rem 1.1rem;
  background: linear-gradient(to top, rgba(28, 20, 13, 0.82), rgba(28, 20, 13, 0));
  color: var(--cream-100);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-med), transform var(--t-med);
}
.g-tile:hover .g-cap, .g-tile:focus-visible .g-cap { opacity: 1; transform: translateY(0); }
.g-cap-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 520; }
.g-cap-note { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.75; }
@media (hover: none) {
  .g-cap { opacity: 1; transform: none; }
}

.g-tile-type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.8rem;
  background: var(--sienna-600);
  color: var(--cream-100);
  border-radius: var(--radius-lg);
}
.g-tile-type .icon-lg { color: var(--gold-300); }
.g-type-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 430;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.22;
}
.g-type-note {
  font-size: 0.7rem;
  font-weight: 640;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ---------- Voices & team ---------- */
.voices { background: var(--cream-200); border-block: 1px solid var(--sand-300); }
.voice-slider { max-width: 56rem; margin-inline: auto; }
.voice-viewport { overflow: hidden; }
.voice-track {
  display: flex;
  transition: transform 640ms var(--ease-smooth);
}
.voice-slide {
  flex: 0 0 100%;
  padding: 0.5rem 0.25rem;
  text-align: center;
}
.voice-quote-mark {
  width: 2rem; height: 2rem;
  margin-inline: auto;
  color: var(--sienna-500);
  opacity: 0.55;
  margin-bottom: 1.4rem;
}
.voice-text {
  font-family: var(--font-display);
  font-weight: 440;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.42;
  letter-spacing: -0.005em;
  color: var(--ink-900);
  text-wrap: balance;
  max-width: 46rem;
  margin-inline: auto;
}
.voice-person {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.voice-avatar {
  display: grid;
  place-items: center;
  width: 3.2rem; height: 3.2rem;
  border-radius: 50%;
  background: var(--sienna-100);
  color: var(--sienna-700);
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.02rem;
  box-shadow: inset 0 0 0 1.5px var(--sienna-200);
}
.voice-avatar-b { background: #e9ecdc; color: #5e6338; box-shadow: inset 0 0 0 1.5px #d3dab4; }
.voice-avatar-c { background: #f0e2c8; color: #8a6224; box-shadow: inset 0 0 0 1.5px #e2cc9c; }
.voice-avatar-d { background: #e8dfe4; color: #71505f; box-shadow: inset 0 0 0 1.5px #d9c3cf; }
.voice-person > div { text-align: left; }
.voice-name { font-weight: 640; color: var(--ink-900); font-size: 0.95rem; }
.voice-role { font-size: 0.8rem; color: var(--ink-500); }
.voice-stars {
  display: inline-flex;
  gap: 0.18rem;
  color: var(--gold-500);
  margin-left: 1rem;
}
.voice-stars .icon { width: 0.85rem; height: 0.85rem; }

.voice-controls {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
.voice-btn {
  display: grid;
  place-items: center;
  width: 2.9rem; height: 2.9rem;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: inset 0 0 0 1.5px var(--sand-300);
  color: var(--ink-900);
  transition: box-shadow var(--t-fast), transform var(--t-fast), background-color var(--t-fast);
}
.voice-btn svg { width: 1rem; height: 1rem; }
.voice-btn:hover { box-shadow: inset 0 0 0 1.5px var(--sienna-600); color: var(--sienna-600); transform: translateY(-2px); }
.voice-dots { display: flex; gap: 0.55rem; }
.voice-dot {
  width: 0.55rem; height: 0.55rem;
  border-radius: 999px;
  background: var(--sand-400);
  transition: width var(--t-med), background-color var(--t-med);
}
.voice-dot.is-active { width: 1.6rem; background: var(--sienna-600); }

.team { margin-top: clamp(4rem, 8vw, 6.5rem); padding-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--sand-300); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.team-card {
  position: relative;
  padding: 2rem 1.7rem 1.7rem;
  background: var(--paper);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.team-medal {
  position: relative;
  display: grid;
  place-items: center;
  width: 5.4rem; height: 5.4rem;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--sienna-100);
  box-shadow: inset 0 0 0 1.5px var(--sienna-200);
}
.team-medal-b { background: #e9ecdc; box-shadow: inset 0 0 0 1.5px #d3dab4; }
.team-medal-c { background: #f0e2c8; box-shadow: inset 0 0 0 1.5px #e2cc9c; }
.team-initials {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 540;
  color: var(--sienna-700);
  letter-spacing: 0.02em;
}
.team-medal-b .team-initials { color: #5e6338; }
.team-medal-c .team-initials { color: #8a6224; }
.team-wheat {
  position: absolute;
  right: -0.15rem; bottom: -0.15rem;
  width: 1.5rem; height: 1.5rem;
  padding: 0.24rem;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--sienna-600);
  box-shadow: inset 0 0 0 1px var(--sand-300), 0 2px 6px rgba(42,32,22,0.12);
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 560;
  color: var(--ink-950);
}
.team-role {
  font-size: 0.72rem;
  font-weight: 640;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sienna-600);
  margin: 0.25rem 0 0.85rem;
}
.team-bio { font-size: 0.9rem; color: var(--ink-500); }
.team-sig {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--sand-300);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-700);
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.faq-intro { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.faq-aside {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  background: var(--sienna-100);
  border: 1px solid var(--sienna-200);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.faq-aside .icon-lg { flex: none; color: var(--sienna-600); margin-top: 0.15rem; }
.faq-aside p { font-size: 0.9rem; color: var(--ink-700); }

.faq-item { border-bottom: 1px solid var(--sand-300); }
.faq-item:first-child { border-top: 1px solid var(--sand-300); }
.faq-item h3 { font-size: inherit; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0.25rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 520;
  color: var(--ink-900);
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--sienna-600); }
.faq-icon {
  position: relative;
  flex: none;
  width: 2.1rem; height: 2.1rem;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px var(--sand-400);
  transition: transform var(--t-med), box-shadow var(--t-med), background-color var(--t-med);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 0.7rem; height: 1.6px;
  background: var(--ink-900);
  transform: translate(-50%, -50%);
  transition: transform var(--t-med), background-color var(--t-med);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-q[aria-expanded="true"] { color: var(--sienna-600); }
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  box-shadow: inset 0 0 0 1.5px var(--sienna-600);
  background: var(--sienna-100);
}
.faq-q[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-q[aria-expanded="true"] .faq-icon::before,
.faq-q[aria-expanded="true"] .faq-icon::after { background: var(--sienna-600); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-med);
}
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  padding: 0 3.2rem 1.4rem 0.25rem;
  color: var(--ink-500);
  font-size: 0.95rem;
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }

/* ---------- Visit ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 1.5rem;
  align-items: start;
}
.visit-stack { display: grid; gap: 1.5rem; }
.visit-card, .visit-map, .visit-form-card {
  background: var(--paper);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.visit-card { padding: 1.8rem 1.8rem 1.6rem; }
.visit-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 560;
  color: var(--ink-950);
  margin-bottom: 0.9rem;
}
.visit-address { color: var(--ink-600); line-height: 1.7; margin-bottom: 1.1rem; }
.visit-contact { display: grid; gap: 0.55rem; margin-bottom: 1.5rem; }
.visit-contact li { display: flex; align-items: center; gap: 0.7rem; }
.visit-contact .icon { width: 1.1rem; height: 1.1rem; color: var(--sienna-600); }
.visit-contact a { font-weight: 560; color: var(--ink-900); border-bottom: 1px solid transparent; transition: border-color var(--t-fast), color var(--t-fast); }
.visit-contact a:hover { color: var(--sienna-600); border-color: var(--sienna-200); }

.visit-hours-title { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px dashed var(--sand-300); }
.visit-hours { display: grid; gap: 0.5rem; }
.visit-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--ink-700);
}
.visit-hours li span:last-child { font-weight: 580; color: var(--ink-900); font-variant-numeric: tabular-nums; }
.visit-hours .is-closed span:last-child {
  font-weight: 560;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--sienna-600);
}

.visit-map svg { display: block; width: 100%; height: auto; }
.map-label {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  fill: #6b5d49;
}
.map-label-river { fill: #7d958c; font-style: italic; }
.map-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 640;
  fill: var(--cream-100);
}
.map-pin-ring { animation: pin-pulse 2.6s ease-out infinite; transform-origin: 188px 126px; }
@keyframes pin-pulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  70% { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
.visit-map-cap {
  padding: 0.9rem 1.3rem;
  border-top: 1px solid var(--sand-300);
  font-size: 0.82rem;
  color: var(--ink-500);
}

.visit-form-card { padding: 2rem 1.9rem; position: relative; }
.form-intro { font-size: 0.92rem; color: var(--ink-500); margin-bottom: 1.6rem; max-width: 30rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: grid; gap: 0.4rem; margin-bottom: 1.15rem; }
.form-field label {
  font-size: 0.78rem;
  font-weight: 640;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-600);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--cream-050);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background-color var(--t-fast);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--sand-500); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--sienna-500);
  box-shadow: 0 0 0 3px rgba(164, 78, 42, 0.14);
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 7.5rem; }
.form-field.is-invalid input, .form-field.is-invalid textarea {
  border-color: #b4443c;
  box-shadow: 0 0 0 3px rgba(180, 68, 60, 0.12);
}
.form-error {
  display: none;
  font-size: 0.78rem;
  color: #9c3a33;
}
.form-field.is-invalid .form-error { display: block; }

.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.6rem;
  cursor: pointer;
}
.select-caret {
  position: absolute;
  right: 1rem; top: 50%;
  width: 0.75rem; height: 0.5rem;
  transform: translateY(-50%);
  color: var(--ink-600);
  pointer-events: none;
}
.form-fine { margin-top: 1rem; font-size: 0.76rem; color: var(--ink-500); opacity: 0.85; }
#cf-submit.is-loading { opacity: 0.75; pointer-events: none; }
#cf-submit.is-loading .btn-label::after { content: "…"; }

.form-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.form-success-badge {
  display: grid;
  place-items: center;
  width: 4rem; height: 4rem;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  background: var(--sienna-100);
  color: var(--sienna-600);
  box-shadow: inset 0 0 0 1.5px var(--sienna-200);
}
.form-success-badge svg { width: 1.9rem; height: 1.9rem; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 560;
  color: var(--ink-950);
  margin-bottom: 0.6rem;
}
.form-success p { color: var(--ink-500); max-width: 26rem; margin: 0 auto 1.6rem; }

/* ---------- Newsletter ---------- */
.newsletter {
  background:
    radial-gradient(40rem 18rem at 90% 0%, rgba(164, 78, 42, 0.35), transparent 60%),
    var(--ink-950);
  color: var(--cream-200);
  padding-block: clamp(3.25rem, 6vw, 4.75rem);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.newsletter-copy { display: grid; gap: 0.55rem; justify-items: start; }
.newsletter-copy .icon-lg { color: var(--gold-500); margin-bottom: 0.4rem; }
.newsletter-copy h2 {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  color: var(--cream-100);
  letter-spacing: -0.01em;
}
.newsletter-copy p { color: rgba(245, 238, 221, 0.66); max-width: 30rem; font-size: 0.95rem; }

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
}
.newsletter-form input {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: rgba(251, 247, 238, 0.07);
  border: 1px solid rgba(223, 196, 155, 0.3);
  color: var(--cream-100);
  transition: border-color var(--t-fast), background-color var(--t-fast), box-shadow var(--t-fast);
}
.newsletter-form input::placeholder { color: rgba(245, 238, 221, 0.45); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold-500);
  background: rgba(251, 247, 238, 0.11);
  box-shadow: 0 0 0 3px rgba(199, 154, 91, 0.2);
}
.newsletter-msg {
  grid-column: 1 / -1;
  font-size: 0.84rem;
  min-height: 1.2em;
}
.newsletter-msg.is-error { color: #e8a09a; }
.newsletter-msg.is-ok { color: #bcd1a4; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-950);
  color: rgba(245, 238, 221, 0.72);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid rgba(223, 196, 155, 0.14);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.brand-mark { background: rgba(251, 247, 238, 0.06); box-shadow: inset 0 0 0 1.5px rgba(223, 196, 155, 0.3); color: var(--gold-500); }
.brand-name { color: var(--cream-100); }
.brand-name em { color: var(--gold-500); }
.brand-sub { color: rgba(245, 238, 221, 0.5); }
.footer-blurb { margin-top: 1.3rem; font-size: 0.92rem; max-width: 21rem; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px rgba(223, 196, 155, 0.3);
  color: var(--cream-200);
  transition: transform var(--t-fast), box-shadow var(--t-fast), color var(--t-fast), background-color var(--t-fast);
}
.footer-social a:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1.5px var(--gold-500);
  color: var(--gold-500);
}
.footer-social svg { width: 1.05rem; height: 1.05rem; }

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 560;
  color: var(--cream-100);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a, .footer-col address {
  font-size: 0.92rem;
  color: rgba(245, 238, 221, 0.62);
  transition: color var(--t-fast);
  line-height: 1.7;
}
.footer-col a:hover { color: var(--gold-500); }
.footer-schedule li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  padding-block: 0.28rem;
  border-bottom: 1px dashed rgba(223, 196, 155, 0.14);
}
.footer-schedule li:last-child { border-bottom: 0; }
.footer-schedule span:last-child { color: var(--cream-100); font-weight: 560; font-variant-numeric: tabular-nums; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 2rem;
  padding-block: 1.6rem;
  border-top: 1px solid rgba(223, 196, 155, 0.14);
  font-size: 0.8rem;
  color: rgba(245, 238, 221, 0.45);
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 1.4rem; bottom: 1.4rem;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--ink-900);
  color: var(--cream-100);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition: opacity var(--t-med), transform var(--t-med), background-color var(--t-fast);
}
.to-top svg { width: 1.05rem; height: 1.05rem; }
.to-top:hover { background: var(--sienna-600); }
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ---------- Reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 90ms; }
[data-reveal-delay="2"] { transition-delay: 180ms; }
[data-reveal-delay="3"] { transition-delay: 270ms; }
[data-reveal-delay="4"] { transition-delay: 360ms; }

/* ---------- Responsive ---------- */
@media (max-width: 68.75rem) {
  .bake-grid { grid-template-columns: repeat(3, 1fr); }
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 1 / -1; max-width: 24rem; }
}

@media (max-width: 56.25rem) {
  :root { --header-h: 4.5rem; }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 990;
    flex-direction: column;
    justify-content: center;
    gap: 2.6rem;
    background: var(--cream-100);
    background-image: radial-gradient(30rem 20rem at 100% 0%, rgba(199, 154, 91, 0.14), transparent 65%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1%);
    transition: opacity var(--t-med), visibility var(--t-med), transform var(--t-med);
  }
  body.nav-open .site-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-list { flex-direction: column; gap: 1.1rem; }
  .nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
  }
  .nav-cta { font-size: 1rem; padding: 0.95rem 1.8rem; }
  .nav-toggle { display: flex; z-index: 1001; position: relative; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { justify-self: center; margin-top: 1.5rem; width: min(100%, 26rem); }
  .hero-badge { left: -1.2rem; width: 6.6rem; height: 6.6rem; }
  .hero-card { right: 0.4rem; }

  .story-grid { grid-template-columns: 1fr; gap: 4.5rem; }
  .story-media { max-width: 27rem; margin-inline: auto; }

  .team-grid { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }

  .visit-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }

  .gallery-grid { gap: 1.1rem; }
  .g-a, .g-b, .g-c, .g-d, .g-e, .g-f { grid-column: 1 / -1; }
  .g-a, .g-d, .g-e { aspect-ratio: 16 / 10; }
  .g-b { aspect-ratio: 2 / 1; }
  .g-c, .g-f { aspect-ratio: 4 / 3; }
}

@media (max-width: 40rem) {
  .bake-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); row-gap: 2.25rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-meta { flex-wrap: wrap; gap: 1.1rem; }
  .hero-meta-sep { display: none; }
  .newsletter-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .marquee { transform: rotate(-1deg) scale(1.04); }
}

@media (max-width: 26.25rem) {
  .bake-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .story-figure-small { right: -0.5rem; }
  .story-stamp { right: 2%; width: 6.2rem; height: 6.2rem; }
  .voice-person { flex-direction: column; gap: 0.7rem; }
  .voice-person > div { text-align: center; }
  .voice-stars { margin-left: 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .hero-badge-spin { animation: none; }
}
