:root {
  --green: #3d9b70;
  --green-deep: #23764f;
  --green-dark: #135438;
  --green-soft: #e5f4ed;
  --ink: #181423;
  --muted: #6f7480;
  --paper: #fbfcfa;
  --line: rgba(35, 118, 79, 0.22);
  --cream: #fff9ee;
  --amber: #f0c465;
  --shadow: 0 24px 60px rgba(34, 91, 63, 0.16);
  --display: "Archivo Black", Impact, sans-serif;
  --body: "Outfit", system-ui, sans-serif;
  --paper-tear: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 48' preserveAspectRatio='none'%3E%3Cpath fill='%23fbfcfa' d='M0 16c23 2 48-4 73-4 28 0 49 8 77 8 31 0 53-9 84-9 33 0 56 8 89 8 35 0 57-8 92-8 36 0 58 9 95 9 37 0 60-9 97-9s59 8 95 8 58-7 94-7 58 8 94 8 58-7 94-7 59 8 97 8 61-8 99-8 61 8 99 8 61-7 99-7 62 7 100 7 61-7 99-7 60 7 98 7 59-6 95-6 55 6 91 6 54-5 88-5 53 5 87 5 52-4 84-6v28H0Z'/%3E%3C/svg%3E");
  --green-tear: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 48' preserveAspectRatio='none'%3E%3Cpath fill='%233d9b70' d='M0 16c23 2 48-4 73-4 28 0 49 8 77 8 31 0 53-9 84-9 33 0 56 8 89 8 35 0 57-8 92-8 36 0 58 9 95 9 37 0 60-9 97-9s59 8 95 8 58-7 94-7 58 8 94 8 58-7 94-7 59 8 97 8 61-8 99-8 61 8 99 8 61-7 99-7 62 7 100 7 61-7 99-7 60 7 98 7 59-6 95-6 55 6 91 6 54-5 88-5 53 5 87 5 52-4 84-6v28H0Z'/%3E%3C/svg%3E");
  --tear-size: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  overflow-x: hidden;
}

body.motion-ready {
  animation: pageFadeIn 420ms cubic-bezier(0, 0, 0.2, 1) both;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: white;
  background: var(--green);
  overflow: visible;
}

.tear-top-green::before,
.tear-bottom-paper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 2;
}

.tear-top-green::before {
  top: calc((var(--tear-size) * -1) - 1px);
  height: calc(var(--tear-size) + 4px);
  background: var(--green-tear) center/100% 100% no-repeat;
}

.tear-bottom-paper::after {
  bottom: -2px;
  height: calc(var(--tear-size) + 4px);
  pointer-events: none;
  background: var(--paper-tear) center/100% 100% no-repeat;
  z-index: 2;
}

.nav-shell {
  width: min(1140px, calc(100% - 32px));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 18px;
}

.brand,
.footer-brand {
  font-family: var(--display);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand {
  display: grid;
  width: max-content;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.brand:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.brand:active {
  transform: scale(0.98);
}

.brand span {
  font-size: 16px;
}

.brand small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.86);
}

.site-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.26);
  border-right: 1px solid rgba(255, 255, 255, 0.26);
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.site-menu a {
  display: grid;
  min-height: 34px;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  transition: background 180ms ease, transform 180ms ease;
}

.site-menu a:last-child {
  border-right: 0;
}

.site-menu a:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.site-menu a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-menu a:active,
.button:active {
  transform: translateY(1px) scale(0.99);
}

.menu-toggle {
  display: none;
}

.section-paper,
.section-inner,
.trust-strip,
.visit-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-paper {
  position: relative;
}

.hero {
  min-height: calc(100dvh - 88px);
  display: grid;
  grid-template-columns: minmax(170px, 0.68fr) minmax(320px, 1.1fr) minmax(170px, 0.68fr);
  grid-template-rows: auto minmax(280px, 1fr) auto;
  align-items: end;
  gap: 10px 22px;
  padding: 48px 0 62px;
  isolation: isolate;
}

.hero::before,
.beans::before {
  content: "";
  position: absolute;
  inset: 28px auto auto -86px;
  width: 180px;
  height: 110px;
  border-radius: 50%;
  border: 28px solid rgba(61, 155, 112, 0.06);
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-kicker {
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.hero h1,
.menu-poster-shell h2,
.story h2,
.beans h2,
.visit h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0;
  line-height: 0.87;
  text-transform: uppercase;
  color: var(--ink);
}

.hero-title-block {
  grid-column: 1 / -1;
  grid-row: 1 / 3;
  align-self: start;
  padding-top: 10px;
}

.hero h1 {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
  padding: 0 4.2vw;
  font-size: clamp(64px, 13.2vw, 176px);
  text-align: center;
  white-space: nowrap;
}

.hero-proof {
  grid-column: 1;
  grid-row: 2;
  z-index: 3;
  align-self: end;
  padding-bottom: 54px;
}

.hero-proof > span {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.hero-copy {
  grid-column: 1;
  grid-row: 3;
  z-index: 3;
  align-self: start;
}

.hero-copy p:not(.eyebrow) {
  max-width: 290px;
  margin: 0;
  color: var(--ink);
  line-height: 1.38;
  font-size: 15px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-weight: 800;
}

.hero-rating strong {
  font-size: 21px;
}

.mini-avatars {
  display: flex;
}

.mini-avatars img {
  width: 29px;
  height: 29px;
  margin-left: -6px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  object-fit: cover;
}

.mini-avatars img:first-child {
  margin-left: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  transition:
    transform 180ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
  will-change: transform;
}

.button:hover {
  box-shadow: 0 12px 28px rgba(34, 91, 63, 0.2);
  transform: translateY(-1px);
}

.button.primary {
  background: var(--green);
  color: white;
}

.button.primary:hover {
  background: var(--green-deep);
}

.button.secondary {
  color: var(--green-deep);
  background: var(--green-soft);
}

.button.full {
  width: 100%;
}

.hero-stage {
  grid-column: 2;
  grid-row: 1 / 4;
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  place-items: end center;
}

.hero-stage,
.beans-art {
  transform-style: preserve-3d;
}

.product-halo,
.beans-halo {
  position: absolute;
  width: min(350px, 62vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(50deg, transparent 46%, rgba(255, 255, 255, 0.1) 47% 49%, transparent 50%) 0 0/42px 42px,
    var(--green);
  animation: pulseHalo 4s ease-in-out infinite;
}

.hero-drink {
  position: relative;
  z-index: 2;
  width: min(320px, 62vw);
  height: 460px;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 160px 160px 28px 28px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 34px 52px rgba(38, 85, 61, 0.28);
  animation: mediaFloat 7s ease-in-out infinite alternate;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: 72px;
  max-width: 132px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  animation: badgeFloat 4.8s ease-in-out infinite alternate;
}

.hero-badge span {
  display: block;
  margin-bottom: 4px;
  color: var(--green-deep);
  font-size: 11px;
}

.hero-mini {
  grid-column: 3;
  grid-row: 2;
  z-index: 3;
  align-self: center;
  max-width: 152px;
  justify-self: end;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.mini-product {
  position: relative;
  width: 104px;
  height: 104px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #f3dfbd;
  animation: mediaFloat 5.8s ease-in-out infinite alternate;
}

.mini-product::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 10px;
  width: 56px;
  height: 96px;
  border-radius: 10px 10px 18px 18px;
  background:
    linear-gradient(180deg, #8a562d 0 16px, transparent 16px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), transparent 36%),
    #c89763;
  box-shadow: var(--shadow);
}

.mini-product span {
  position: absolute;
  left: 63px;
  top: 60px;
  width: 58px;
  height: 42px;
  border-radius: 3px;
  background: #d9b789;
  transform: rotate(9deg);
  box-shadow: 0 14px 28px rgba(58, 91, 72, 0.15);
}

.hero-mini strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 1px;
  margin-bottom: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.trust-strip div {
  min-height: 112px;
  padding: 18px;
  background: white;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.trust-strip div:hover {
  position: relative;
  z-index: 1;
  box-shadow: 0 18px 36px rgba(34, 91, 63, 0.1);
  transform: translateY(-2px);
}

.trust-strip span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--display);
  color: var(--green);
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.green-band {
  position: relative;
  background: var(--green);
  color: white;
}

.story {
  padding: 84px 0 82px;
  overflow: visible;
}

.story h2 {
  color: white;
  text-align: center;
  font-size: clamp(36px, 5.8vw, 68px);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 42px;
}

.story-card {
  display: grid;
  gap: 12px;
}

.story-card-offset {
  margin-top: 48px;
}

.story-card img {
  width: 100%;
  min-height: 245px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 44px rgba(25, 81, 54, 0.22);
  transition: transform 500ms cubic-bezier(0, 0, 0.2, 1), box-shadow 500ms ease;
}

.story-card:hover img {
  box-shadow: 0 28px 52px rgba(25, 81, 54, 0.28);
  transform: translateY(-3px) scale(1.015);
}

.story-card span {
  font-family: var(--display);
  font-size: 26px;
  color: var(--amber);
}

.story-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
  line-height: 0.94;
}

.story-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.arrivals {
  padding: 70px 0 78px;
}

.page-hero {
  padding: 76px 0 94px;
  color: white;
  overflow: hidden;
}

.admin-page .page-hero {
  padding: 44px 0 54px;
}

.page-hero-inner {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 6.8vw, 84px);
  line-height: 0.92;
  text-transform: uppercase;
}

.page-hero p:last-child {
  max-width: 44ch;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.menu-poster-shell h2,
.beans h2 {
  font-size: clamp(36px, 5.8vw, 66px);
}

.menu-poster-shell {
  margin-bottom: 24px;
  text-align: center;
}

.menu-poster-kicker {
  margin-bottom: 14px;
}

.menu-intro {
  max-width: 44ch;
  margin: 12px auto 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

.product-grid {
  display: grid;
  gap: 28px;
}

.menu-sheet {
  position: relative;
  padding: 28px 28px 22px;
  border: 14px solid #9cc44b;
  border-radius: 0;
  background: white;
  box-shadow: 0 30px 70px rgba(37, 79, 58, 0.12);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.menu-photo-frame {
  display: grid;
  gap: 14px;
}

.menu-photo {
  width: min(100%, 760px);
  margin: 0 auto;
  max-height: none;
  object-fit: contain;
  background: white;
}

.menu-photo-trigger {
  display: grid;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 0;
  aspect-ratio: var(--menu-photo-aspect, 3 / 4);
  border: 0;
  background: white;
  cursor: zoom-in;
  overflow: hidden;
}

.menu-photo-trigger .menu-photo {
  transition: transform 650ms cubic-bezier(0, 0, 0.2, 1);
}

.menu-photo-trigger:hover .menu-photo {
  transform: scale(1.025);
}

.menu-photo-trigger .menu-photo {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center;
}

.menu-photo-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: #4f6178;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-empty {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 34px 18px;
  border: 2px dashed rgba(35, 118, 79, 0.24);
  border-radius: 12px;
  background: #f7fbf4;
  text-align: center;
}

.menu-empty strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(28px, 6vw, 56px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--green-deep);
}

.menu-empty p {
  max-width: 42ch;
  margin: 0 auto 18px;
  color: var(--muted);
  line-height: 1.55;
}

.menu-brand,
.menu-sheet-foot {
  position: relative;
  z-index: 1;
}

.menu-brand {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-bottom: 20px;
  color: #98c447;
}

.menu-brand-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  line-height: 0.84;
}

.menu-brand-copy {
  display: grid;
  justify-items: center;
  margin-top: -28px;
}

.menu-brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 0.95;
}

.menu-brand-copy span {
  font-size: 12px;
  font-weight: 900;
  text-transform: lowercase;
}

.menu-sheet-foot {
  margin-top: 18px;
  color: #4f6178;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
}

.menu-poster-section {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  animation: riseIn 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.menu-section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.menu-section-title span {
  height: 2px;
  background:
    radial-gradient(circle closest-side, rgba(37, 71, 110, 0.65) 92%, transparent 100%) center/18px 2px repeat-x;
}

.menu-section-title h3 {
  margin: 0;
  color: #23476e;
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.menu-poster-groups {
  display: grid;
  gap: 18px 20px;
}

.menu-poster-groups-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-poster-groups-4 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-poster-group {
  display: grid;
  align-content: start;
  gap: 10px;
}

.menu-poster-group h4 {
  margin: 0;
  color: #23476e;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}

.menu-poster-items {
  display: grid;
  gap: 6px;
}

.menu-poster-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: baseline;
  color: #2c4b6c;
}

.item-name {
  font-size: clamp(14px, 1.7vw, 17px);
  font-weight: 800;
}

.item-size {
  min-width: 48px;
  color: #4f6178;
  font-size: 11px;
  text-align: right;
}

.item-price {
  min-width: 58px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 900;
  text-align: right;
}

.menu-poster-groups-4 .menu-poster-group:last-child {
  grid-column: 2 / 4;
  max-width: 420px;
}

.stats {
  padding: 60px 0 72px;
  overflow: visible;
}

.stats-grid {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  padding: 0 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.44);
}

.stats-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.44);
}

.stats-grid strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(36px, 4.8vw, 54px);
  line-height: 0.9;
}

.stats-grid span {
  display: block;
  margin-top: 12px;
  max-width: 95px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.beans {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 46px;
  align-items: center;
  padding: 76px 0 84px;
}

.beans::before {
  inset: 78px auto auto -90px;
  width: 250px;
  height: 360px;
  border-radius: 0;
  border: 0;
  background:
    linear-gradient(50deg, transparent 42%, rgba(61, 155, 112, 0.07) 43% 45%, transparent 46%) 0 0/34px 34px,
    transparent;
}

.beans-art {
  position: relative;
  min-height: 410px;
  display: grid;
  place-items: center;
}

.beans-halo {
  width: min(320px, 64vw);
}

.beans-main {
  position: relative;
  z-index: 1;
  width: min(330px, 74vw);
  height: 340px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  animation: beansFloat 7.5s ease-in-out infinite alternate;
}

.beans-detail {
  position: absolute;
  z-index: 2;
  right: 4%;
  bottom: 34px;
  width: 132px;
  height: 132px;
  object-fit: cover;
  border: 8px solid var(--paper);
  border-radius: 50%;
  box-shadow: var(--shadow);
  animation: badgeFloat 5.5s ease-in-out infinite alternate;
}

.beans-copy h2 {
  margin-bottom: 24px;
}

.beans-copy h3 {
  margin: 0 0 22px;
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.02;
}

.accordion {
  border-top: 1px solid rgba(24, 20, 35, 0.16);
}

.accordion button {
  position: relative;
  width: 100%;
  min-height: 46px;
  padding: 0 24px 0 0;
  border: 0;
  border-bottom: 1px solid rgba(24, 20, 35, 0.16);
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  transition: color 160ms ease, padding-left 160ms ease;
}

.accordion button:hover,
.accordion button[aria-expanded="true"] {
  color: var(--green-deep);
}

.accordion button:hover {
  padding-left: 6px;
}

.accordion button::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 20px;
}

.accordion button[aria-expanded="true"]::after {
  content: "-";
}

.panel {
  display: none;
  padding: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
  border-bottom: 1px solid rgba(24, 20, 35, 0.16);
}

.panel.open {
  display: block;
  animation: panelReveal 240ms cubic-bezier(0, 0, 0.2, 1) both;
}

.bean-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 22px 0;
  font-size: 16px;
  text-transform: uppercase;
}

.bean-price strong {
  font-size: 22px;
}

.visit {
  padding: 72px 0 64px;
  overflow: visible;
}

.visit::after {
  display: none;
}

.site-header.tear-bottom-paper::after {
  height: 0;
  background: transparent;
}

.story.tear-top-green::before,
.stats.tear-top-green::before,
.visit.tear-top-green::before {
  top: -15px;
  height: 18px;
}

.story.tear-bottom-paper::after,
.stats.tear-bottom-paper::after,
.page-hero.tear-bottom-paper::after {
  height: 18px;
}

.visit-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.visit .section-kicker {
  text-align: left;
}

.visit h2 {
  color: white;
  font-size: clamp(28px, 4.2vw, 48px);
}

.visit-card,
.newsletter {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, background 220ms ease;
}

.visit-card:hover,
.newsletter:focus-within {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.visit-card strong,
.newsletter label {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.visit-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
}

.visit-card p:last-child {
  margin-bottom: 0;
}

.newsletter div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 18px;
}

.newsletter input {
  min-width: 0;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.newsletter input:focus-visible,
.admin-fields input:focus-visible,
.admin-fields textarea:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(240, 196, 101, 0.18);
}

.visit-map {
  grid-column: 1 / -1;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: saturate(0.95) contrast(1.02);
}

.footer {
  padding: 30px 0;
}

.footer::before,
.footer::after {
  display: none;
}

.footer-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.admin-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 24px;
  padding: 48px 0 64px;
}

.beans-admin-card {
  grid-column: 1;
}

.qr-card {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
}

.admin-card {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(240, 196, 101, 0.22), transparent 28%),
    white;
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.admin-card:hover {
  box-shadow: 0 30px 70px rgba(34, 91, 63, 0.19);
  transform: translateY(-2px);
}

.admin-card h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.9;
  text-transform: uppercase;
}

.admin-help {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.admin-form,
.qr-card,
.admin-fields {
  display: grid;
  gap: 16px;
}

.file-drop {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 2px dashed rgba(35, 118, 79, 0.3);
  border-radius: 18px;
  background: var(--green-soft);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.file-drop:hover,
.file-drop:focus-within {
  border-color: rgba(35, 118, 79, 0.55);
  background: #eff9f4;
  transform: translateY(-1px);
}

.file-drop input {
  width: 100%;
}

.file-drop span {
  font-weight: 900;
  text-transform: uppercase;
}

.file-drop small,
.menu-photo-preview figcaption {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.menu-photo-preview {
  display: grid;
  gap: 8px;
  margin: 0;
}

.menu-photo-preview img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8f4ea;
}

.admin-fields {
  margin: 0;
  padding: 0;
  border: 0;
}

.admin-fields legend {
  margin-bottom: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-fields label {
  display: grid;
  gap: 8px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-fields input,
.admin-fields textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--ink);
}

.admin-fields textarea {
  height: 76px;
  min-height: 76px;
  resize: vertical;
  line-height: 1.45;
  text-transform: none;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.qr-card {
  align-content: start;
  position: sticky;
  top: 112px;
  height: max-content;
  gap: 12px;
}

.qr-card h2 {
  font-size: clamp(26px, 3vw, 34px);
}

.qr-card .admin-help {
  font-size: 14px;
  line-height: 1.4;
}

#menu-qr {
  width: min(100%, 176px);
  height: auto;
  justify-self: center;
  border: 8px solid white;
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 36px rgba(34, 91, 63, 0.12);
}

.admin-beans-preview {
  width: 100%;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.admin-beans-preview.beans {
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1fr);
  gap: 24px;
}

.admin-beans-preview .beans-art {
  min-height: 210px;
}

.admin-beans-preview .beans-main {
  width: min(250px, 70vw);
  height: 190px;
}

.admin-beans-preview .beans-detail {
  width: 88px;
  height: 88px;
}

.admin-beans-preview .beans-copy h2 {
  font-size: clamp(28px, 4vw, 42px);
}

@media (min-width: 700px) {
  .beans-admin-card .admin-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .beans-admin-card .admin-fields legend,
  .beans-admin-card .admin-fields label:nth-of-type(2) {
    grid-column: 1 / -1;
  }
}

.menu-photo-only {
  background: white;
}

.menu-viewer-open {
  overflow: hidden;
}

.menu-photo-only .arrivals {
  padding: 54px 0 64px;
}

.menu-photo-only .menu-photo-sheet {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.menu-image-sheet {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.menu-image-sheet .menu-brand {
  display: none;
}

.menu-photo-only .menu-poster-shell.menu-only-hidden,
.menu-photo-only .menu-brand.menu-only-hidden,
.menu-photo-only .menu-sheet-foot.menu-only-hidden {
  display: none;
}

.menu-zoom-viewer {
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 18px;
  background: rgba(10, 14, 20, 0.78);
  animation: overlayFadeIn 180ms ease both;
}

.menu-zoom-viewer[hidden] {
  display: none;
}

.menu-zoom-dialog {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: 100%;
  height: 100%;
  gap: 12px;
  animation: riseIn 240ms cubic-bezier(0, 0, 0.2, 1) both;
}

.menu-zoom-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.menu-zoom-toolbar span,
.menu-zoom-button {
  min-height: 38px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.menu-zoom-toolbar span {
  display: grid;
  min-width: 64px;
  place-items: center;
  color: white;
}

.menu-zoom-button {
  min-width: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: white;
  color: var(--ink);
  cursor: pointer;
}

.menu-zoom-canvas {
  display: grid;
  justify-items: center;
  align-items: start;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  border-radius: 8px;
}

.menu-zoom-canvas img {
  width: min(100%, 900px);
  height: auto;
  transform-origin: top center;
  transition: transform 160ms ease;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.footer-grid a {
  display: grid;
  min-height: 60px;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-grid a:last-child {
  border-right: 0;
}

.footer-brand {
  font-size: 18px !important;
  color: white;
}

.footer-brand span {
  font-size: 12px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 60;
  min-width: min(320px, calc(100% - 32px));
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  text-align: center;
  font-weight: 800;
  opacity: 0;
  transform: translate(-50%, 18px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.motion-ready [data-animate] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 620ms cubic-bezier(0, 0, 0.2, 1),
    transform 620ms cubic-bezier(0, 0, 0.2, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready [data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready [data-animate="scale"] {
  transform: scale(0.96);
}

.motion-ready [data-animate="slide-left"] {
  transform: translate3d(-24px, 0, 0);
}

.motion-ready [data-animate="slide-right"] {
  transform: translate3d(24px, 0, 0);
}

.motion-ready [data-animate].is-visible {
  will-change: auto;
}

@keyframes pageFadeIn {
  from {
    opacity: 0.96;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulseHalo {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes overlayFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mediaFloat {
  from {
    transform: translate3d(0, -4px, 0) rotate(-0.5deg);
  }
  to {
    transform: translate3d(0, 7px, 0) rotate(0.5deg);
  }
}

@keyframes beansFloat {
  from {
    transform: translate3d(0, -4px, 0) rotate(-2.5deg);
  }
  to {
    transform: translate3d(0, 6px, 0) rotate(-1deg);
  }
}

@keyframes badgeFloat {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -8px, 0);
  }
}

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

  .menu-toggle {
    display: grid;
    gap: 4px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: white;
  }

  .site-menu {
    position: absolute;
    top: 104px;
    left: 20px;
    right: 20px;
    z-index: 30;
    display: none;
    grid-template-columns: 1fr;
    background: var(--green-deep);
    border: 0;
    border-radius: 8px;
    overflow: hidden;
  }

  .site-menu.open {
    display: grid;
    animation: riseIn 220ms cubic-bezier(0, 0, 0.2, 1) both;
  }

  .site-menu a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
    align-items: start;
    gap: 18px;
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .hero-title-block,
  .hero-proof,
  .hero-copy,
  .hero-stage {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-title-block {
    padding-top: 0;
  }

  .hero h1 {
    width: auto;
    margin-left: 0;
    padding: 0;
    font-size: clamp(56px, 16vw, 108px);
    text-align: left;
  }

  .hero-proof {
    order: 4;
    padding-bottom: 0;
  }

  .hero-stage {
    min-height: 460px;
    order: 3;
    place-items: center;
  }

  .hero-copy {
    order: 2;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 540px;
  }

  .hero-badge {
    right: 14px;
    bottom: 24px;
  }

  .hero-mini {
    display: none;
  }

  .trust-strip,
  .story-grid,
  .beans,
  .visit-inner,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .beans-admin-card,
  .qr-card {
    grid-column: auto;
    grid-row: auto;
  }

  .admin-beans-preview.beans {
    grid-template-columns: 1fr;
  }

  .qr-card {
    position: static;
  }

  .story-card-offset {
    margin-top: 0;
  }

  .menu-sheet {
    padding: 28px 22px 22px;
    border-width: 14px;
  }

  .menu-poster-groups-3,
  .menu-poster-groups-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-poster-groups-4 .menu-poster-group:last-child {
    grid-column: auto;
    max-width: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

  .motion-ready [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .section-paper,
  .section-inner,
  .trust-strip,
  .visit-inner,
  .stats-grid,
  .footer-grid {
    width: min(100% - 28px, 1180px);
  }

  .brand span {
    font-size: 14px;
  }

  .brand small {
    font-size: 10px;
  }

  .nav-shell {
    min-height: 84px;
    gap: 12px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .site-menu {
    top: 84px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    padding-bottom: 38px;
    text-align: center;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    font-size: clamp(24px, 8.6vw, 34px);
    white-space: nowrap;
    line-height: 1;
    text-align: center;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 32ch;
    font-size: 14px;
    margin: 0 auto;
  }

  .hero-title-block,
  .hero-copy,
  .hero-proof,
  .hero-stage {
    width: 100%;
    order: initial;
    display: grid;
    justify-items: center;
  }

  .hero-copy {
    order: 2;
  }

  .hero-proof {
    display: none;
  }

  .hero-stage {
    order: 4;
    min-height: 194px;
    padding: 0 0 4px;
    place-items: center;
  }

  .hero-drink {
    width: min(148px, 42vw);
    height: 176px;
    border-width: 7px;
    border-radius: 82px 82px 18px 18px;
  }

  .hero-badge {
    display: none;
  }

  .hero-badge span {
    font-size: 10px;
  }

  .hero-proof > span {
    font-size: 12px;
    text-align: center;
  }

  .hero-rating strong {
    font-size: 17px;
  }

  .hero-rating {
    justify-content: center;
  }

  .product-halo {
    width: min(182px, 50vw);
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-actions {
    width: 100%;
    margin-top: 12px;
    justify-content: center;
  }

  .hero-actions .button {
    width: min(200px, 100%);
    min-height: 44px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .menu-sheet {
    padding: 22px 14px 18px;
    border-width: 10px;
  }

  .menu-brand-mark {
    font-size: 60px;
  }

  .menu-brand-copy strong {
    font-size: 28px;
  }

  .menu-poster-shell h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .product-grid,
  .menu-poster-groups-3,
  .menu-poster-groups-4 {
    grid-template-columns: 1fr;
  }

  .menu-section-title {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .menu-section-title h3 {
    text-align: center;
    font-size: clamp(30px, 10vw, 42px);
  }

  .menu-section-title span:last-child {
    display: none;
  }

  .menu-poster-group h4 {
    font-size: 22px;
  }

  .menu-poster-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .item-name {
    font-size: 15px;
  }

  .item-size {
    min-width: 40px;
    font-size: 11px;
  }

  .item-price {
    min-width: 54px;
    font-size: 18px;
  }

  .story,
  .arrivals,
  .beans,
  .visit {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .page-hero {
    padding: 70px 0 82px;
  }

  .admin-page .page-hero {
    padding: 34px 0 42px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .story-card img {
    min-height: 160px;
    max-height: 190px;
    aspect-ratio: 16 / 10;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid div,
  .stats-grid div:last-child {
    border-right: 0;
  }

  .beans-art {
    min-height: 420px;
  }

  .beans-main {
    height: 340px;
  }

  .beans-detail {
    width: 124px;
    height: 124px;
    right: 0;
    bottom: 26px;
  }

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