:root {
  --paper: 39 57% 95%;
  --paper-deep: 37 35% 88%;
  --surface: 42 70% 98%;
  --ink: 16 47% 12%;
  --ink-soft: 19 24% 26%;
  --muted: 21 14% 43%;
  --brand: 14 65% 40%;
  --brand-deep: 14 60% 29%;
  --caramel: 30 63% 56%;
  --olive: 75 10% 43%;
  --line: 25 27% 74%;
  --light: 39 57% 95%;
  --on-brand: 39 57% 95%;
  --shadow-color: 16 47% 12%;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Karla", Arial, sans-serif;
  --page-gutter: clamp(1.25rem, 4.6vw, 4.5rem);
  --content-max: 77.5rem;
  --hairline: 1px solid hsl(var(--line));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: hsl(var(--ink));
  background: hsl(var(--paper));
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

address {
  font-style: normal;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  color: hsl(var(--on-brand));
  background: hsl(var(--ink));
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.notice {
  min-height: 2rem;
  padding: 0.35rem var(--page-gutter);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--on-brand));
  background: hsl(var(--brand-deep));
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.notice span:nth-child(2) {
  color: hsl(var(--caramel));
  font-size: 0.54rem;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 4.75rem;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: var(--hairline);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
}

.brand-mark {
  width: 2.3rem;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand-name i,
.footer-brand i {
  color: hsl(var(--brand));
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav a,
.footer-links a {
  position: relative;
}

.site-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid hsl(var(--ink));
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: min(49rem, calc(100svh - 6.75rem));
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(2.5rem, 5.5vh, 4.5rem) var(--page-gutter) clamp(2.5rem, 5vh, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 0.5rem;
}

.eyebrow {
  margin: 0 0 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--muted));
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  color: hsl(var(--brand));
}

.hero h1,
.section-heading h2,
.story-heading h2,
.visit-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 6.4vw, 6.55rem);
}

h1 em,
h2 em {
  color: hsl(var(--brand));
  font-weight: 500;
}

.hero-intro {
  max-width: 31rem;
  margin: 2rem 0 0;
  color: hsl(var(--ink-soft));
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.button {
  min-height: 3.25rem;
  padding: 0.85rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease;
}

.button-primary {
  color: hsl(var(--on-brand));
  background: hsl(var(--brand));
}

.button-primary:hover,
.button-primary:focus-visible {
  background: hsl(var(--brand-deep));
  transform: translateY(-2px);
}

.text-link,
.light-link,
.menu-footnote {
  width: max-content;
  border-bottom: 1px solid currentColor;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding-bottom: 0.15rem;
}

.hero-details {
  margin: clamp(2.2rem, 5vh, 4.5rem) 0 0;
  padding-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-top: var(--hairline);
}

.hero-details div {
  display: grid;
  gap: 0.15rem;
}

.hero-details dt,
.detail-label {
  color: hsl(var(--muted));
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-details dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
}

.hero-media {
  position: relative;
  height: min(41rem, calc(100svh - 10rem));
  min-height: 30rem;
  margin: 0;
}

.hero-media::before {
  position: absolute;
  top: -1.05rem;
  right: 1.15rem;
  left: -1.05rem;
  height: 100%;
  border: 1px solid hsl(var(--line));
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 2.5rem 5rem -3rem hsl(var(--shadow-color) / 0.7);
}

.hero-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem 1.15rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: hsl(var(--light));
  background: linear-gradient(transparent, hsl(var(--ink) / 0.8));
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.roast-stamp {
  position: absolute;
  top: 2rem;
  left: -2.6rem;
  width: 7.2rem;
  aspect-ratio: 1;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: hsl(var(--on-brand));
  background: hsl(var(--brand));
  border-radius: 50%;
  box-shadow: 0 1rem 2rem hsl(var(--shadow-color) / 0.2);
  transform: rotate(-8deg);
}

.roast-stamp span {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.roast-stamp strong {
  align-self: end;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 0.75;
}

.ticker {
  padding: 0.86rem 0;
  overflow: hidden;
  color: hsl(var(--on-brand));
  background: hsl(var(--ink));
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  white-space: nowrap;
  animation: drift 28s linear infinite;
}

.ticker-track i {
  color: hsl(var(--caramel));
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-style: normal;
}

@keyframes drift {
  to {
    transform: translateX(-50%);
  }
}

.section-shell {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}

.manifesto {
  padding-top: clamp(5rem, 10vw, 9rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
  display: grid;
  grid-template-columns: 2fr 8fr 2fr;
  align-items: start;
  gap: 2rem;
}

.section-kicker {
  margin: 0.7rem 0 0;
  color: hsl(var(--muted));
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.manifesto blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.15vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.manifesto-note {
  margin: 0.7rem 0 0;
  color: hsl(var(--muted));
  font-size: 0.84rem;
  line-height: 1.5;
}

.menu-section {
  padding-top: clamp(4.5rem, 8vw, 7.5rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
  display: grid;
  grid-template-columns: 4fr 7fr;
  column-gap: clamp(3rem, 8vw, 8rem);
  row-gap: clamp(3rem, 6vw, 6rem);
  border-top: var(--hairline);
}

.section-heading h2,
.story-heading h2,
.visit-heading h2 {
  font-size: clamp(3.4rem, 5.6vw, 5.8rem);
}

.section-heading > p:last-child {
  max-width: 24rem;
  margin: 2rem 0 0;
  color: hsl(var(--muted));
}

.menu-list {
  align-self: end;
}

.menu-item {
  padding: 1.15rem 0;
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: 1rem;
  border-top: var(--hairline);
  transition: padding 180ms ease, color 180ms ease;
}

.menu-item:hover {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: hsl(var(--brand));
}

.menu-number {
  color: hsl(var(--muted));
  font-size: 0.64rem;
  letter-spacing: 0.1em;
}

.menu-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.1vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.menu-item p {
  margin: 0.05rem 0 0;
  color: hsl(var(--muted));
  font-size: 0.77rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
}

.menu-footnote {
  margin-top: 1.5rem;
  display: inline-block;
}

.still-life {
  position: relative;
  width: min(100%, 28rem);
  margin: -2rem 0 0 12%;
}

.still-life::after {
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  z-index: -1;
  border: 1px solid hsl(var(--line));
  content: "";
}

.still-life img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.still-life figcaption {
  margin-top: 0.9rem;
  color: hsl(var(--muted));
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-section {
  color: hsl(var(--on-brand));
  background: hsl(var(--brand-deep));
}

.story-inner {
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(3rem, 9vw, 9rem);
}

.eyebrow-light {
  color: hsl(var(--paper-deep));
}

.eyebrow-light span,
.story-heading h2 em {
  color: hsl(var(--caramel));
}

.story-copy {
  padding-top: 3rem;
}

.story-lead {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.12;
}

.story-copy > p:not(.story-lead) {
  max-width: 31rem;
  color: hsl(var(--paper-deep));
}

.light-link {
  margin-top: 1rem;
  display: inline-block;
}

.story-stats {
  grid-column: 1 / -1;
  margin: 2.5rem 0 0;
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid hsl(var(--paper-deep) / 0.3);
}

.story-stats div {
  display: grid;
}

.story-stats dt {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1;
}

.story-stats dd {
  margin: 0.25rem 0 0;
  color: hsl(var(--paper-deep));
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit-section {
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
  display: grid;
  grid-template-columns: 5fr 4fr 3fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.visit-details {
  padding-top: 3.2rem;
}

.detail-block {
  padding: 1.05rem 0;
  border-top: var(--hairline);
}

.detail-block p,
.detail-block address {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
}

.detail-block .detail-label {
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
}

.detail-block a {
  border-bottom: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.visit-card {
  position: relative;
  padding: 2.2rem 1.8rem;
  color: hsl(var(--on-brand));
  background: hsl(var(--olive));
  box-shadow: 1rem 1rem 0 hsl(var(--paper-deep));
  transform: rotate(1.5deg);
}

.visit-card > p:first-child,
.offer-code {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-card h3 {
  margin: 2.2rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.visit-card > p:not(:first-child) {
  font-size: 0.85rem;
}

.offer-code {
  margin-top: 2rem;
  padding-top: 0.75rem;
  display: block;
  border-top: 1px solid hsl(var(--on-brand) / 0.4);
}

.site-footer {
  padding: 4rem var(--page-gutter) 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  align-items: end;
  gap: 2rem;
  color: hsl(var(--on-brand));
  background: hsl(var(--ink));
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.site-footer > p {
  margin: 0;
  color: hsl(var(--paper-deep));
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer .copyright {
  grid-column: 1 / -1;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--paper-deep) / 0.2);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.support-launcher {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2.25rem);
  bottom: clamp(1rem, 2.5vw, 2.25rem);
  z-index: 80;
  min-height: 3.75rem;
  padding: 0.65rem 1rem 0.65rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--on-brand));
  background: hsl(var(--ink));
  border: 1px solid hsl(var(--paper-deep) / 0.25);
  border-radius: 0;
  box-shadow: 0 1rem 2.5rem hsl(var(--shadow-color) / 0.28);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.support-launcher:hover,
.support-launcher:focus-visible {
  background: hsl(var(--brand-deep));
  transform: translateY(-2px);
}

.support-launcher[aria-expanded="true"] {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
}

.support-launcher-mark {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  color: hsl(var(--ink));
  background: hsl(var(--caramel));
  border-radius: 50%;
  font-size: 0.7rem;
}

.support-launcher > span:last-child {
  display: grid;
  color: hsl(var(--on-brand));
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: left;
  text-transform: uppercase;
}

.support-launcher small {
  color: hsl(var(--paper-deep));
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}

.support-panel {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2.25rem);
  bottom: clamp(1rem, 2.5vw, 2.25rem);
  z-index: 90;
  width: min(25rem, calc(100vw - 2rem));
  height: min(40rem, calc(100svh - 2rem));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  color: hsl(var(--ink));
  background: hsl(var(--surface));
  border: 1px solid hsl(var(--line));
  box-shadow: 0 1.8rem 5rem hsl(var(--shadow-color) / 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 220ms;
}

.support-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.support-header {
  min-height: 5.25rem;
  padding: 1rem 1.15rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  color: hsl(var(--on-brand));
  background: hsl(var(--brand-deep));
}

.support-agent-mark {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border: 1px solid hsl(var(--caramel));
  border-radius: 50%;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.support-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
}

.support-header p {
  margin: 0.3rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: hsl(var(--paper-deep));
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-status-dot {
  width: 0.42rem;
  height: 0.42rem;
  display: inline-block;
  background: hsl(var(--caramel));
  border-radius: 50%;
  box-shadow: 0 0 0 0.18rem hsl(var(--caramel) / 0.15);
}

.support-status-dot.is-live {
  background: hsl(var(--paper-deep));
}

.support-close {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  color: hsl(var(--on-brand));
  background: transparent;
  border: 1px solid hsl(var(--paper-deep) / 0.35);
  border-radius: 50%;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.support-close:hover,
.support-close:focus-visible {
  background: hsl(var(--on-brand) / 0.1);
  border-color: hsl(var(--paper-deep));
}

.support-messages {
  padding: 1.25rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: hsl(var(--line)) transparent;
}

.support-message {
  max-width: 88%;
  padding: 0.8rem 0.9rem;
  border: 1px solid hsl(var(--line));
  font-size: 0.84rem;
  line-height: 1.5;
}

.support-message p {
  margin: 0;
  white-space: pre-wrap;
}

.support-message-agent {
  align-self: flex-start;
  background: hsl(var(--paper));
}

.support-message-user {
  align-self: flex-end;
  color: hsl(var(--on-brand));
  background: hsl(var(--brand));
  border-color: hsl(var(--brand));
}

.support-message-error {
  border-color: hsl(var(--brand));
}

.message-label {
  margin-bottom: 0.35rem;
  display: block;
  color: hsl(var(--brand));
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.support-message-user .message-label {
  color: hsl(var(--paper-deep));
}

.support-typing {
  width: max-content;
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

.support-typing span {
  width: 0.34rem;
  height: 0.34rem;
  background: hsl(var(--muted));
  border-radius: 50%;
  animation: support-pulse 900ms ease-in-out infinite alternate;
}

.support-typing span:nth-child(2) {
  animation-delay: 150ms;
}

.support-typing span:nth-child(3) {
  animation-delay: 300ms;
}

@keyframes support-pulse {
  to {
    opacity: 0.25;
    transform: translateY(-0.15rem);
  }
}

.support-prompts {
  padding: 0 1.15rem 0.8rem;
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.support-prompts::-webkit-scrollbar {
  display: none;
}

.support-prompts button {
  min-height: 2.1rem;
  padding: 0.45rem 0.65rem;
  flex: 0 0 auto;
  color: hsl(var(--ink-soft));
  background: transparent;
  border: 1px solid hsl(var(--line));
  border-radius: 2rem;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 600;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.support-prompts button:hover,
.support-prompts button:focus-visible {
  color: hsl(var(--on-brand));
  background: hsl(var(--olive));
  border-color: hsl(var(--olive));
}

.support-form {
  margin: 0 1.15rem;
  padding: 0.45rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 0.5rem;
  border: 1px solid hsl(var(--ink));
  background: hsl(var(--surface));
}

.support-form:focus-within {
  outline: 2px solid hsl(var(--caramel));
  outline-offset: 2px;
}

.support-form textarea {
  width: 100%;
  max-height: 6rem;
  padding: 0.5rem;
  resize: none;
  color: hsl(var(--ink));
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.4;
}

.support-form textarea::placeholder {
  color: hsl(var(--muted));
}

.support-form button {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  color: hsl(var(--on-brand));
  background: hsl(var(--brand));
  border: 0;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 160ms ease;
}

.support-form button:hover,
.support-form button:focus-visible {
  background: hsl(var(--brand-deep));
}

.support-form button:disabled,
.support-form textarea:disabled {
  cursor: wait;
  opacity: 0.55;
}

.support-powered {
  margin: 0;
  padding: 0.65rem 1.15rem 0.75rem;
  color: hsl(var(--muted));
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.support-powered span {
  color: hsl(var(--brand));
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: var(--page-gutter);
    left: var(--page-gutter);
    padding: 1.25rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    color: hsl(var(--on-brand));
    background: hsl(var(--ink));
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    justify-self: end;
    padding: 0.7rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: hsl(var(--ink));
    background: transparent;
    border: 0;
    font-size: 0.71rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-icon,
  .menu-icon::before {
    width: 1.25rem;
    height: 1px;
    display: block;
    background: currentColor;
    content: "";
    transition: transform 180ms ease;
  }

  .menu-icon::before {
    transform: translateY(-0.3rem);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon::before {
    transform: rotate(90deg);
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 1.12fr;
    gap: 2.2rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 8vw, 5.2rem);
  }

  .roast-stamp {
    left: -1.4rem;
    width: 6rem;
  }

  .manifesto {
    grid-template-columns: 1fr 7fr;
  }

  .manifesto-note {
    grid-column: 2;
    max-width: 26rem;
  }

  .menu-section {
    column-gap: 3rem;
  }

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

  .visit-card {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .notice {
    justify-content: space-between;
    font-size: 0.56rem;
  }

  .site-header {
    min-height: 4.25rem;
  }

  .brand-name {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.7rem, 17vw, 5.1rem);
  }

  .hero-intro {
    margin-top: 1.3rem;
    font-size: 0.96rem;
  }

  .hero-actions {
    margin-top: 1.5rem;
    gap: 1.1rem;
  }

  .button {
    min-height: 3rem;
    padding: 0.7rem 0.9rem;
    gap: 0.8rem;
    font-size: 0.67rem;
  }

  .text-link {
    font-size: 0.68rem;
  }

  .hero-details {
    display: none;
  }

  .hero-media {
    height: 15.5rem;
    min-height: 0;
  }

  .hero-media::before {
    top: -0.6rem;
    left: -0.6rem;
  }

  .roast-stamp {
    top: -1.6rem;
    right: 1rem;
    left: auto;
    width: 4.8rem;
    padding: 0.75rem;
  }

  .roast-stamp strong {
    font-size: 1.65rem;
  }

  .ticker-track {
    font-size: 1.1rem;
  }

  .manifesto,
  .menu-section,
  .story-inner,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .manifesto {
    gap: 1.4rem;
  }

  .manifesto blockquote {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .manifesto-note {
    grid-column: auto;
  }

  .menu-section {
    gap: 3.2rem;
  }

  .section-heading h2,
  .story-heading h2,
  .visit-heading h2 {
    font-size: clamp(3.35rem, 16vw, 4.9rem);
  }

  .menu-item {
    grid-template-columns: 1.5rem 1fr auto;
    gap: 0.65rem;
  }

  .menu-item p {
    max-width: 17rem;
  }

  .still-life {
    width: 88%;
    margin: 0 0 0 auto;
  }

  .story-inner {
    gap: 1rem;
  }

  .story-copy {
    padding-top: 1.5rem;
  }

  .story-stats {
    grid-column: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .story-stats dt {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .story-stats dd {
    font-size: 0.55rem;
    line-height: 1.35;
  }

  .visit-details {
    padding-top: 0;
  }

  .visit-card {
    grid-column: auto;
    width: 88%;
    margin: 1rem 0 0 auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer > p {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .site-footer .copyright {
    grid-column: auto;
  }

  .support-launcher {
    right: 1rem;
    bottom: 1rem;
  }

  .support-panel {
    right: 0;
    bottom: 0;
    width: 100%;
    height: min(42rem, calc(100svh - 0.75rem));
    max-height: none;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    transform: translateY(1.5rem);
    transform-origin: bottom center;
  }

  .support-panel.is-open {
    transform: translateY(0);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
