:root {
  --hue-parchment: #f7f4eb;
  --hue-berry-ink: #6b3a43;
  --hue-pressed-herb: #5f6f52;
  --hue-cream-accent: #e8dfd0;
  --hue-soft-shadow: rgba(59, 35, 40, 0.12);
  --hue-overlay-paper: rgba(255, 252, 244, 0.72);
  --font-recipe-copy: 'Courier Prime', 'Courier New', monospace;
  --font-hand-title: 'Great Vibes', 'Georgia', serif;
  --space-xs: 0.375rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.75rem;
  --space-xl: 2.75rem;
  --space-section: clamp(3rem, 6vw, 5.5rem);
  --radius-paper: 0.85rem;
  --radius-soft: 1.35rem;
  --paper-edge: inset 0 0 0 1px rgba(107, 58, 67, 0.18),
    inset 0 0 0 0.5rem rgba(255, 255, 255, 0.04),
    0 0.6rem 1.6rem var(--hue-soft-shadow);
  --motion-ease: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --text-body: rgba(53, 40, 38, 0.92);
  --text-soft: rgba(53, 40, 38, 0.78);
  --section-grid-min: 130px;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-recipe-copy);
  color: var(--text-body);
  background-color: var(--hue-parchment);
  background-image: radial-gradient(rgba(95, 111, 82, 0.09) 1px, transparent 1px),
    radial-gradient(rgba(107, 58, 67, 0.06) 1px, transparent 1px);
  background-size: 1.1rem 1.1rem, 1.6rem 1.6rem;
  background-position: 0 0, 0.4rem 0.6rem;
  line-height: 1.62;
  overflow-x: hidden;
}

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

a {
  color: var(--hue-berry-ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible {
  outline: 0.2rem solid var(--hue-pressed-herb);
  outline-offset: 0.18rem;
}

.skip-to-content-anchor {
  position: absolute;
  left: -100rem;
  top: auto;
}

.skip-to-content-anchor:focus-visible {
  left: var(--space-md);
  top: var(--space-md);
  z-index: 400;
  background: var(--hue-parchment);
  padding: var(--space-sm) var(--space-md);
}

.top-deck-shell {
  position: relative;
  z-index: 10;
  width: min(1180px, 92%);
  margin: 0 auto;
  padding-block: var(--space-md);
}

.surface-header-pane {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-md) calc(var(--space-lg) + 0.35rem);
  border-radius: var(--radius-soft);
  background: var(--hue-overlay-paper);
  backdrop-filter: blur(10px);
  box-shadow: var(--paper-edge);
  border-bottom: var(--hue-berry-ink);
}

.surface-header-pane::after {
  content: '';
  position: absolute;
  inset: calc(var(--space-md) / 2);
  border-radius: calc(var(--radius-soft) + 0.35rem);
  border: 1px dashed rgba(107, 58, 67, 0.18);
  pointer-events: none;
}

.site-label-text {
  font-family: var(--font-hand-title);
  font-size: clamp(1rem, 4vw, 1.3rem);
  color: var(--hue-berry-ink);
  font-weight: 400;
}

.header-action-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-sm);
}

.desktop-nav-strip {
  display: none;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.desktop-nav-strip a {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-paper);
}

.desktop-nav-strip a:hover {
  background: rgba(95, 111, 82, 0.12);
}

.tea-quiet-toggle-shell {
  display: inline-flex;
  align-items: center;
}

.tea-quiet-toggle-label {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--hue-berry-ink);
}

.tea-quiet-toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tea-quiet-toggle-track {
  width: 2.6rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(107, 58, 67, 0.15);
  position: relative;
  transition: background var(--motion-ease);
}

.tea-quiet-toggle-thumb {
  position: absolute;
  top: 0.15rem;
  left: 0.15rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--hue-pressed-herb);
  transition: transform var(--motion-ease);
}

.tea-quiet-toggle-input:checked + .tea-quiet-toggle-track {
  background: rgba(95, 111, 82, 0.35);
}

.tea-quiet-toggle-input:checked + .tea-quiet-toggle-track .tea-quiet-toggle-thumb {
  transform: translateX(1.2rem);
}

.mobile-menu-opener {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.32rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(107, 58, 67, 0.28);
  background: rgba(247, 244, 235, 0.85);
  cursor: pointer;
  padding: 0.45rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  order: 999;
}

.mobile-menu-opener:active {
  transform: translateY(0.1rem);
  box-shadow: inset 0 0.2rem 0.35rem rgba(59, 35, 40, 0.15);
}

.mobile-menu-opener span {
  display: block;
  height: 2px;
  background: var(--hue-berry-ink);
  border-radius: 2px;
}

.mobile-menu-opener[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(0.45rem) rotate(45deg);
}

.mobile-menu-opener[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-opener[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-0.45rem) rotate(-45deg);
}

.mobile-menu-opener span {
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-flyout-panel {
  position: fixed;
  inset: 0;
  background: rgba(33, 24, 26, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-ease);
  z-index: 200;
}

.nav-flyout-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-flyout-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: min(22rem, 88vw);
  height: 100%;
  background: var(--hue-parchment);
  box-shadow: -0.5rem 0 1.5rem rgba(33, 24, 26, 0.18);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transform: translateX(100%);
  transition: transform var(--motion-ease);
}

.nav-flyout-panel.is-open .nav-flyout-inner {
  transform: translateX(0);
}

.nav-flyout-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
  width: 100%;
}

.nav-flyout-links a {
  font-size: 0.95rem;
  padding: var(--space-md) var(--space-sm);
  border-radius: var(--radius-paper);
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  min-height: 2.75rem;
  text-align: left;
}

.nav-flyout-links a:hover {
  background: rgba(95, 111, 82, 0.1);
}

.nav-flyout-note {
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: auto;
}

.nav-flyout-inner .tea-quiet-toggle-shell {
  display: inline-flex !important;
  width: 100%;
  padding: var(--space-md) 0 var(--space-sm);
  margin-top: var(--space-xs);
  border-top: 1px dashed rgba(107, 58, 67, 0.2);
}

.nav-flyout-inner .tea-quiet-toggle-label {
  width: 100%;
  justify-content: space-between;
}

main {
  display: block;
}

.page-ribbon-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(20rem, 58vh, 38rem);
  border-bottom: 1px solid rgba(107, 58, 67, 0.12);
  overflow: hidden;
}

.page-ribbon-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 85% 75% at 50% 32%,
      rgba(247, 244, 235, 0.94) 0%,
      rgba(247, 244, 235, 0.42) 42%,
      rgba(247, 244, 235, 0.12) 62%
    ),
    linear-gradient(
      168deg,
      rgba(107, 58, 67, 0.22) 0%,
      rgba(95, 111, 82, 0.28) 48%,
      rgba(107, 58, 67, 0.62) 100%
    );
}

.ribbon-text-layer {
  position: relative;
  z-index: 2;
  width: min(46rem, 92%);
  margin: 0 auto;
  padding: clamp(2.75rem, 7vw, 5rem) var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.ribbon-visual-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.ribbon-visual-layer img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.ribbon-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hue-pressed-herb);
  text-shadow:
    0 0 0.5em rgba(247, 244, 235, 0.95),
    0 0.08em 0.2em rgba(247, 244, 235, 0.6);
}

.ribbon-title {
  font-family: var(--font-hand-title);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--hue-berry-ink);
  margin: 0;
  line-height: 1.15;
  text-shadow:
    0 0 0.75rem rgba(247, 244, 235, 0.95),
    0 0.05em 0.15em rgba(247, 244, 235, 0.85),
    0 0.12em 0.35em rgba(53, 40, 38, 0.12);
}

.ribbon-lede {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 38rem;
  margin: 0;
  line-height: 1.62;
  text-shadow:
    0 0 0.65rem rgba(247, 244, 235, 0.9),
    0 0.05em 0.12em rgba(247, 244, 235, 0.75);
}

.layout-flow-column {
  width: min(1080px, 92%);
  margin: 0 auto;
  padding-block: var(--space-section);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-section);
}

.offset-paper-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border-radius: var(--radius-soft);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(232, 223, 208, 0.55));
  box-shadow: var(--paper-edge);
  position: relative;
}

.offset-paper-card:nth-of-type(even) {
  transform: rotate(-0.35deg);
}

.offset-paper-card:nth-of-type(odd) {
  transform: rotate(0.45deg);
}

@media (min-width: 768px) {
  .offset-paper-card {
    grid-template-columns: repeat(auto-fit, minmax(var(--section-grid-min), 1fr));
    align-items: center;
  }

  .offset-paper-card.reverse-grid-flow {
    direction: rtl;
  }

  .offset-paper-card.reverse-grid-flow > * {
    direction: ltr;
  }
}

.card-text-heading {
  font-family: var(--font-hand-title);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--hue-berry-ink);
  margin: 0 0 var(--space-sm);
}

.card-text-block {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.card-visual-frame {
  border-radius: var(--radius-paper);
  overflow: hidden;
  border: 1px solid rgba(107, 58, 67, 0.16);
  max-height: 18rem;
}

.card-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-feature-grid {
  display: grid;
  gap: var(--space-md);
}

.story-gallery-span {
  width: min(960px, 100%);
  margin: 0 auto;
}



.feature-pill h3 {
  margin: 0 0 var(--space-xs);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hue-pressed-herb);
}

.cluster-button-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--section-grid-min), 1fr));
  gap: var(--space-sm);
  align-items: center;
  margin-top: var(--space-md);
}

.cluster-button-row .paper-press-button {
  justify-self: start;
}

.cookie-consent-actions .paper-press-button,
.cookie-consent-actions a.paper-press-button {
  justify-self: start;
}

.paper-press-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-paper);
  border: 1px solid rgba(107, 58, 67, 0.32);
  background: linear-gradient(180deg, #fffaf1, #ede4d6);
  font-family: var(--font-recipe-copy);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0.15rem 0 rgba(59, 35, 40, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.paper-press-button:hover {
  transform: translateY(-0.08rem);
}

.paper-press-button:active {
  transform: translateY(0.05rem);
  box-shadow: inset 0 0.2rem 0.45rem rgba(59, 35, 40, 0.15);
}

.paper-press-button.subtle-outline-style {
  background: white;
  box-shadow: none;
}

.product-grid-wrap {
  display: grid;
  gap: var(--space-lg);
}

.product-tile-surface {
  padding: var(--space-md);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(107, 58, 67, 0.16);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.product-tile-surface figure {
  margin: 0;
  border-radius: var(--radius-paper);
  overflow: hidden;
  max-height: 11rem;
}

.product-tile-surface img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-price-tag {
  font-size: 0.95rem;
  color: var(--hue-berry-ink);
  letter-spacing: 0.08em;
}

.pane-centered-layout {
  width: min(1080px, 92%);
  margin: 0 auto;
  padding-block: var(--space-section);
}

.contact-layout-grid {
  display: grid;
  gap: var(--space-lg);
  align-items: start;
}

.form-field-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-field-stack label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hue-pressed-herb);
}

.form-field-stack input,
.form-field-stack textarea {
  font-family: var(--font-recipe-copy);
  border-radius: var(--radius-paper);
  border: 1px solid rgba(107, 58, 67, 0.25);
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.75);
}

.form-field-stack textarea {
  min-height: 8rem;
  resize: vertical;
}

.consent-row-flex {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  font-size: 0.85rem;
}

.map-embed-frame {
  border: 0;
  width: 100%;
  min-height: 16rem;
  border-radius: var(--radius-soft);
  filter: grayscale(0.15) contrast(0.95);
}

.contact-card-aside {
  padding: var(--space-lg);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed rgba(95, 111, 82, 0.35);
}

.footer-minimal-slab {
  margin-top: var(--space-section);
  padding: var(--space-lg) var(--space-md) calc(var(--space-xl) + 1rem);
  border-top: 1px solid rgba(107, 58, 67, 0.12);
  background: linear-gradient(180deg, rgba(232, 223, 208, 0.35), transparent);
}

.footer-inner-wrap {
  width: min(1080px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-nav-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--section-grid-min), 1fr));
  gap: var(--space-sm) var(--space-md);
  justify-items: center;
}

.footer-nav-row a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-legal-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--section-grid-min), 1fr));
  gap: var(--space-sm) var(--space-md);
  justify-items: center;
  border-top: 1px solid rgba(107, 58, 67, 0.1);
  padding-top: var(--space-md);
}

.footer-legal-row a {
  font-size: 0.72rem;
  color: var(--text-soft);
}

.footer-copy-line {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-soft);
}

.cookie-consent-dock {
  position: fixed;
  left: 50%;
  bottom: var(--space-md);
  transform: translateX(-50%) translateY(120%);
  width: min(520px, 92vw);
  padding: var(--space-md);
  border-radius: var(--radius-soft);
  background: rgba(255, 252, 244, 0.96);
  box-shadow: 0 0.8rem 2rem rgba(33, 24, 26, 0.18);
  border: 1px solid rgba(107, 58, 67, 0.2);
  z-index: 300;
  transition: transform var(--motion-ease);
}

.cookie-consent-dock.is-visible {
  transform: translateX(-50%) translateY(0);
}

.cookie-consent-dock p {
  margin: 0 0 var(--space-sm);
  font-size: 0.82rem;
  color: var(--text-soft);
}

.cookie-consent-actions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--section-grid-min), 1fr));
  gap: var(--space-sm);
  align-items: center;
}

body.tea-quiet-active {
  background-color: #1e1a1d;
  color: rgba(244, 236, 228, 0.88);
}

body.tea-quiet-active a {
  color: #e6c9a8;
}

body.tea-quiet-active .surface-header-pane,
body.tea-quiet-active .offset-paper-card,
body.tea-quiet-active .product-tile-surface,
body.tea-quiet-active .contact-card-aside {
  background: rgba(34, 30, 32, 0.78);
  color: rgba(244, 236, 228, 0.9);
  border-color: rgba(230, 201, 168, 0.2);
}

body.tea-quiet-active .site-label-text,
body.tea-quiet-active .ribbon-title,
body.tea-quiet-active .card-text-heading {
  color: #f1ddd0;
}

body.tea-quiet-active .page-ribbon-banner::before {
  background:
    radial-gradient(
      ellipse 82% 72% at 50% 30%,
      rgba(62, 52, 56, 0.88) 0%,
      rgba(30, 26, 29, 0.45) 48%,
      rgba(21, 18, 20, 0.2) 65%
    ),
    linear-gradient(168deg, rgba(107, 58, 67, 0.55) 0%, rgba(23, 20, 22, 0.92) 100%);
}

body.tea-quiet-active .ribbon-kicker {
  color: rgba(230, 201, 168, 0.78);
  text-shadow:
    0 0 0.65em rgba(30, 26, 29, 0.9),
    0 0.1em 0.35em rgba(0, 0, 0, 0.35);
}

body.tea-quiet-active .ribbon-title {
  text-shadow:
    0 0 0.85rem rgba(30, 26, 29, 0.85),
    0 0.08em 0.25em rgba(0, 0, 0, 0.4);
}

body.tea-quiet-active .card-text-block,
body.tea-quiet-active .ribbon-lede {
  color: rgba(244, 236, 228, 0.82);
  text-shadow:
    0 0 0.6rem rgba(30, 26, 29, 0.9),
    0 0.08em 0.2em rgba(0, 0, 0, 0.35);
}

@media (min-width: 1024px) {
  .desktop-nav-strip {
    display: flex;
  }

  .mobile-menu-opener {
    display: none;
  }

  .nav-flyout-panel {
    display: none;
  }
}

@media (max-width: 1023px) {
  .desktop-nav-strip {
    display: none !important;
  }

  .mobile-menu-opener {
    display: inline-flex !important;
  }

  .surface-header-pane .header-action-cluster > .tea-quiet-toggle-shell {
    display: none !important;
  }

  .header-action-cluster {
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: var(--space-sm);
  }
}

.page-heading-inline {
  font-family: var(--font-hand-title);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--hue-berry-ink);
  margin-bottom: var(--space-md);
  text-align: center;
}

.tool-surface-panel {
  padding: var(--space-lg);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(107, 58, 67, 0.15);
}

.steep-option-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: repeat(auto-fill, minmax(var(--section-grid-min), 1fr));
}

.steep-option-button {
  padding: var(--space-sm);
  border-radius: var(--radius-paper);
  border: 1px solid rgba(107, 58, 67, 0.2);
  background: rgba(247, 244, 235, 0.9);
  cursor: pointer;
  font-family: var(--font-recipe-copy);
  font-size: 0.85rem;
}

.steep-option-button.is-selected {
  border-color: var(--hue-pressed-herb);
  background: rgba(95, 111, 82, 0.12);
}

.steep-visual-stage {
  margin-top: var(--space-lg);
  display: grid;
  gap: var(--space-md);
  align-items: center;
  grid-template-columns: repeat(auto-fill, minmax(var(--section-grid-min), 1fr));
}

.steep-organic-svg {
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
}

.steep-organic-svg [data-steep-fill-indicator] {
  transform-origin: 50% 100%;
  transform-box: fill-box;
}

.steep-readout-text {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.steep-timer-readout {
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}

.harvest-wheel-layout {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.month-wheel-svg {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

.month-wheel-svg .month-sector {
  cursor: pointer;
  fill: rgba(95, 111, 82, 0.15);
  stroke: rgba(107, 58, 67, 0.35);
  transition: fill 0.25s ease;
}

.month-wheel-svg .month-sector.is-active-month {
  fill: rgba(107, 58, 67, 0.22);
}

.harvest-detail-card {
  padding: var(--space-md);
  border-radius: var(--radius-paper);
  background: rgba(255, 255, 255, 0.55);
  border: 1px dashed rgba(95, 111, 82, 0.35);
  min-height: 10rem;
}

.blend-lab-stage {
  display: grid;
  gap: var(--space-lg);
  align-items: start;
}

.blend-ingredient-palette {
  display: grid;
  gap: var(--space-sm);
  justify-items: start;
}

.blend-chip-draggable {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 1px solid rgba(107, 58, 67, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  text-align: center;
  padding: var(--space-xs);
  cursor: grab;
  background: rgba(255, 255, 255, 0.75);
  user-select: none;
}

.blend-chip-draggable:active {
  cursor: grabbing;
}

.blend-pot-dropzone {
  min-height: 18rem;
  border-radius: var(--radius-soft);
  border: 2px dashed rgba(107, 58, 67, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6), rgba(232, 223, 208, 0.4));
}

.blend-pot-dropzone.is-hover-target {
  border-color: var(--hue-pressed-herb);
}

.blend-note-readout {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: var(--text-soft);
}

.error-page-stack {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-md);
  padding: var(--space-xl) var(--space-md);
}

.error-code-display {
  font-size: clamp(3rem, 10vw, 5rem);
  font-family: var(--font-hand-title);
  color: var(--hue-berry-ink);
}

.legal-prose-flow {
  width: min(760px, 92%);
  margin: 0 auto;
  padding-block: var(--space-section);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-md);
}

.legal-prose-flow h1 {
  font-family: var(--font-hand-title);
  font-size: 2.4rem;
  color: var(--hue-berry-ink);
}

.legal-prose-flow h2 {
  font-size: 1.05rem;
  margin-top: var(--space-md);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--hue-pressed-herb);
}

.legal-prose-flow p,
.legal-prose-flow li {
  font-size: 0.92rem;
  color: var(--text-soft);
}

.legal-prose-flow ul {
  padding-left: 1.2rem;
}

.date {
  font-size: 0.85rem;
  color: var(--hue-pressed-herb);
}

.thanks-message-panel {
  max-width: 36rem;
  margin: var(--space-section) auto;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--paper-edge);
}

.thanks-message-panel h1 {
  font-family: var(--font-hand-title);
  font-size: 2.5rem;
  color: var(--hue-berry-ink);
}

.visually-hidden-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.icon-inline-gap {
  margin-right: var(--space-xs);
}
