:root {
  --bg: #11130f;
  --bg-deep: #090b08;
  --ink: #17110d;
  --paper: #f6f0e2;
  --paper-soft: #ede2cb;
  --paper-warm: #fff8ea;
  --muted: #756a5e;
  --muted-light: #cbbfae;
  --teal: #21b7a8;
  --teal-dark: #0a6f67;
  --saffron: #f5ba3d;
  --red: #e34b3f;
  --plum: #4a1f31;
  --wasabi: #b8d957;
  --line: rgba(246, 240, 226, 0.18);
  --line-dark: rgba(23, 17, 13, 0.12);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
  --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.16);
  --radius: 30px;
  --radius-card: 18px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgba(33, 183, 168, 0.2), transparent 36rem),
    radial-gradient(circle at 92% 10%, rgba(245, 186, 61, 0.22), transparent 28rem),
    radial-gradient(circle at 8% 42%, rgba(227, 75, 63, 0.18), transparent 24rem),
    var(--bg);
  color: var(--paper);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(246, 240, 226, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 240, 226, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  z-index: -1;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 18px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(246, 240, 226, 0.18);
  border-radius: 999px;
  background: rgba(9, 11, 8, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.site-header.is-scrolled {
  background: rgba(9, 11, 8, 0.9);
  border-color: rgba(246, 240, 226, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--teal) 0 42%, var(--saffron) 43% 72%, var(--red) 73%);
  color: var(--bg-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 0 0 6px rgba(246, 240, 226, 0.08), 0 14px 28px rgba(0, 0, 0, 0.24);
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__text strong {
  color: var(--paper-warm);
  font-size: 1.02rem;
  font-weight: 850;
  letter-spacing: 0;
}

.brand__text small {
  color: var(--muted-light);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--muted-light);
  font-size: 0.94rem;
  font-weight: 850;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--paper);
  color: var(--ink);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(246, 240, 226, 0.18);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  min-height: calc(100svh - 88px);
  padding: clamp(58px, 7vw, 92px) max(20px, calc((100vw - 1120px) / 2)) clamp(64px, 7vw, 94px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 240, 226, 0.35), transparent);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  max-width: 9ch;
  margin-bottom: 18px;
  color: var(--paper-warm);
  font-size: clamp(4.2rem, 10.5vw, 9.4rem);
  font-weight: 850;
  letter-spacing: 0;
}

.hero__tagline {
  max-width: 610px;
  margin-bottom: 14px;
  color: var(--paper);
  font-size: clamp(1.28rem, 2.35vw, 2.15rem);
  font-weight: 850;
  line-height: 1.16;
}

.hero__text {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--muted-light);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--saffron);
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(245, 186, 61, 0.28);
}

.btn--primary:hover {
  background: var(--wasabi);
  box-shadow: 0 20px 42px rgba(184, 217, 87, 0.28);
}

.btn--ghost {
  background: rgba(246, 240, 226, 0.08);
  border-color: rgba(246, 240, 226, 0.28);
  color: var(--paper);
}

.btn--ghost:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: min(640px, 70svh);
  isolation: isolate;
}

.sun-disc {
  position: absolute;
  inset: 7% 0 auto auto;
  width: min(440px, 74%);
  aspect-ratio: 1;
  border-radius: 34% 66% 48% 52%;
  background:
    radial-gradient(circle at 34% 28%, rgba(246, 240, 226, 0.95) 0 10%, transparent 11%),
    linear-gradient(145deg, var(--teal), var(--plum) 48%, var(--red) 72%, var(--saffron));
  box-shadow: 0 44px 92px rgba(33, 183, 168, 0.18), 0 18px 65px rgba(227, 75, 63, 0.22);
  z-index: -1;
  animation: breathe 6s ease-in-out infinite;
}

.plate {
  position: absolute;
  right: 5%;
  bottom: 8%;
  display: grid;
  grid-template-columns: repeat(2, 112px);
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(246, 240, 226, 0.22);
  border-radius: 34px;
  background: rgba(246, 240, 226, 0.9);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.plate::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(23, 17, 13, 0.12);
  border-radius: 24px;
  pointer-events: none;
}

.roll {
  position: relative;
  display: grid;
  width: 112px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 18px;
  background: #18251f;
  box-shadow: inset 0 0 0 10px #0c1612, 0 12px 24px rgba(23, 17, 13, 0.16);
}

.roll span {
  display: block;
  width: 63%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 44%, var(--wasabi) 0 13%, transparent 14%),
    radial-gradient(circle at 62% 64%, var(--saffron) 0 13%, transparent 14%),
    var(--paper-warm);
}

.roll--salmon span {
  background:
    radial-gradient(circle at 43% 42%, #ff6658 0 18%, transparent 19%),
    radial-gradient(circle at 64% 62%, var(--wasabi) 0 13%, transparent 14%),
    var(--paper-warm);
}

.roll--sesame {
  background: #ead8b7;
  box-shadow: inset 0 0 0 10px var(--saffron), 0 12px 24px rgba(23, 17, 13, 0.16);
}

.roll--sesame span {
  background:
    radial-gradient(circle at 38% 42%, var(--red) 0 18%, transparent 19%),
    radial-gradient(circle at 64% 60%, var(--teal) 0 12%, transparent 13%),
    var(--paper-warm);
}

.roll--green {
  background: #dce9a6;
  box-shadow: inset 0 0 0 10px var(--wasabi), 0 12px 24px rgba(23, 17, 13, 0.16);
}

.cup {
  position: absolute;
  left: 1%;
  top: 24%;
  width: min(310px, 54%);
  height: 340px;
}

.cup__body {
  position: absolute;
  left: 18%;
  bottom: 24px;
  width: 64%;
  height: 178px;
  border-radius: 28px 28px 54px 54px;
  background: linear-gradient(160deg, var(--paper-warm) 0 45%, #d5c6ab);
  box-shadow: var(--shadow);
}

.cup__body::before {
  content: "";
  position: absolute;
  inset: 18px 22px auto;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 42%, #e9c17b 0 16%, transparent 17%),
    linear-gradient(135deg, #4a2418, #130a06);
}

.cup__handle {
  position: absolute;
  right: 1%;
  bottom: 76px;
  width: 82px;
  height: 88px;
  border: 18px solid #d9c49b;
  border-left: 0;
  border-radius: 0 44px 44px 0;
}

.cup__foam {
  position: absolute;
  left: 32%;
  bottom: 112px;
  width: 72px;
  height: 30px;
  border-radius: 999px;
  background: rgba(246, 240, 226, 0.82);
}

.cup__steam {
  position: absolute;
  top: 4px;
  width: 20px;
  height: 92px;
  border-radius: 999px;
  background: linear-gradient(to top, transparent, rgba(246, 240, 226, 0.5), transparent);
  filter: blur(1px);
  animation: steam 3.8s ease-in-out infinite;
}

.cup__steam--one {
  left: 34%;
}

.cup__steam--two {
  left: 55%;
  animation-delay: 0.8s;
}

.chopsticks {
  position: absolute;
  right: 4%;
  top: 18%;
  width: 292px;
  height: 9px;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 18px 0 var(--saffron);
  transform: rotate(25deg);
  transform-origin: right;
}

.soy-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.5;
}

.soy-dot--one {
  right: 6%;
  top: 8%;
  width: 30px;
  height: 30px;
}

.soy-dot--two {
  left: 8%;
  bottom: 7%;
  width: 48px;
  height: 48px;
  background: var(--red);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(62px, 8vw, 106px) 0;
}

.section__heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section__heading h2,
.split__content h2,
.visit-panel h2,
.menu-section__head h2,
.story-copy h2,
.contact-card h2 {
  margin-bottom: 14px;
  color: var(--paper-warm);
  font-size: clamp(2.05rem, 4vw, 4rem);
  font-weight: 850;
  letter-spacing: 0;
}

.section__heading p:last-child,
.split__content p,
.story-copy p,
.visit-panel p,
.contact-card p {
  color: var(--muted-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  padding: 28px;
  border: 1px solid rgba(246, 240, 226, 0.18);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(246, 240, 226, 0.11), rgba(246, 240, 226, 0.06));
  box-shadow: inset 0 1px 0 rgba(246, 240, 226, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 186, 61, 0.46);
  background: linear-gradient(180deg, rgba(246, 240, 226, 0.16), rgba(246, 240, 226, 0.08));
}

.feature__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 16px;
  background: var(--saffron);
  color: var(--ink);
  font-size: 1.5rem;
}

.feature h3,
.product-card h3,
.timeline h3,
.values h3 {
  margin-bottom: 9px;
  font-size: 1.25rem;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted-light);
}

.section--menu-preview {
  width: 100%;
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(135deg, rgba(246, 240, 226, 0.08), rgba(33, 183, 168, 0.14)),
    linear-gradient(90deg, rgba(227, 75, 63, 0.12), transparent);
  border-block: 1px solid rgba(246, 240, 226, 0.12);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
}

.split__content {
  max-width: 570px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--saffron);
  font-weight: 900;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.category-pill {
  display: grid;
  min-height: 150px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(246, 240, 226, 0.16);
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.category-pill:hover {
  transform: translateY(-6px) rotate(1deg);
  background: var(--saffron);
  color: var(--ink);
}

.category-pill span {
  font-size: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-grid--featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(246, 240, 226, 0.12);
  border-radius: var(--radius-card);
  background: var(--paper-warm);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 186, 61, 0.5);
  box-shadow: var(--shadow);
}

.product-card__visual {
  position: relative;
  display: grid;
  min-height: 184px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.product-card__visual::before,
.product-card__visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.product-card__visual::before {
  width: 172px;
  height: 172px;
  background: rgba(246, 240, 226, 0.3);
}

.product-card__visual::after {
  right: -24px;
  bottom: -24px;
  width: 94px;
  height: 94px;
  background: rgba(9, 11, 8, 0.22);
}

.product-card__visual span {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border-radius: 24px;
  background: rgba(246, 240, 226, 0.88);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
  font-size: 3rem;
  transition: transform 0.2s ease;
}

.product-card:hover .product-card__visual span {
  transform: scale(1.06) rotate(3deg);
}

.product-card__body {
  padding: 20px;
}

.product-card p,
.timeline p,
.values p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-card__body strong {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(227, 75, 63, 0.14);
  color: #a72f27;
  font-size: 0.76rem;
  font-weight: 900;
}

.badge--green {
  background: rgba(10, 111, 103, 0.13);
  color: var(--teal-dark);
}

.badge--dark {
  background: rgba(23, 17, 13, 0.1);
  color: var(--ink);
}

.product-card__visual--latte,
.product-card__visual--cappuccino,
.product-card__visual--espresso {
  background: linear-gradient(145deg, #342016, #f5ba3d);
}

.product-card__visual--ice {
  background: linear-gradient(145deg, #11130f, #21b7a8);
}

.product-card__visual--matcha,
.product-card__visual--tea,
.product-card__visual--veggie {
  background: linear-gradient(145deg, #12352d, #b8d957);
}

.product-card__visual--berry {
  background: linear-gradient(145deg, #4a1f31, #e34b3f);
}

.product-card__visual--lemon {
  background: linear-gradient(145deg, #ffe680, #f5ba3d);
}

.product-card__visual--philadelphia,
.product-card__visual--california,
.product-card__visual--tuna,
.product-card__visual--set,
.product-card__visual--duo,
.product-card__visual--party {
  background: linear-gradient(145deg, #f6f0e2, #e34b3f 52%, #11130f);
}

.product-card__visual--cheesecake,
.product-card__visual--mochi,
.product-card__visual--brownie {
  background: linear-gradient(145deg, #f6f0e2, #f5ba3d 70%, #4a1f31);
}

.visit-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(246, 240, 226, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 22%, rgba(245, 186, 61, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(246, 240, 226, 0.12), rgba(33, 183, 168, 0.1));
  box-shadow: var(--shadow-soft);
}

.visit-panel p {
  max-width: 690px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: var(--container);
  margin: 30px auto;
  padding-top: 24px;
  border-top: 1px solid rgba(246, 240, 226, 0.16);
  color: var(--muted-light);
}

.site-footer strong,
.site-footer a {
  color: var(--paper-warm);
}

.site-footer p {
  margin-bottom: 0;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  width: var(--container);
  margin: 0 auto;
  padding: clamp(76px, 9vw, 124px) 0 clamp(44px, 6vw, 78px);
}

.page-hero__content {
  max-width: 800px;
}

.page-hero h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.1rem);
}

.page-hero p:last-child {
  max-width: 640px;
  color: var(--muted-light);
  font-size: 1.08rem;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
  justify-content: flex-end;
}

.menu-tabs a {
  display: inline-flex;
  padding: 11px 15px;
  border: 1px solid rgba(246, 240, 226, 0.18);
  border-radius: 999px;
  background: rgba(246, 240, 226, 0.08);
  color: var(--paper);
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.menu-tabs a:hover {
  transform: translateY(-3px);
  background: var(--paper);
  color: var(--ink);
}

.menu-section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 74px) 0;
  scroll-margin-top: 112px;
}

.menu-section__head {
  max-width: 720px;
  margin-bottom: 28px;
}

.about-visual {
  position: relative;
  min-height: 370px;
  border: 1px solid rgba(246, 240, 226, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 68% 32%, rgba(246, 240, 226, 0.88) 0 12%, transparent 13%),
    linear-gradient(145deg, var(--teal), var(--plum) 58%, var(--saffron));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-visual__cup,
.about-visual__roll,
.about-visual__leaf {
  position: absolute;
  border-radius: 999px;
  background: rgba(246, 240, 226, 0.88);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.about-visual__cup {
  left: 18%;
  top: 24%;
  width: 132px;
  height: 150px;
  border-radius: 28px 28px 58px 58px;
}

.about-visual__cup::after {
  content: "";
  position: absolute;
  right: -42px;
  top: 48px;
  width: 50px;
  height: 58px;
  border: 14px solid rgba(246, 240, 226, 0.88);
  border-left: 0;
  border-radius: 0 34px 34px 0;
}

.about-visual__roll {
  right: 16%;
  bottom: 20%;
  width: 160px;
  height: 160px;
  background:
    radial-gradient(circle at center, var(--paper-warm) 0 34%, var(--red) 35% 48%, #101b16 49% 100%);
}

.about-visual__leaf {
  right: 28%;
  top: 15%;
  width: 105px;
  height: 58px;
  background: var(--wasabi);
  transform: rotate(-24deg);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.story-copy {
  position: sticky;
  top: 120px;
}

.values {
  display: grid;
  gap: 14px;
}

.values article {
  padding: 26px;
  border: 1px solid rgba(246, 240, 226, 0.16);
  border-radius: var(--radius-card);
  background: var(--paper-warm);
  color: var(--ink);
}

.values span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 950;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline__item {
  padding: 28px;
  border: 1px solid rgba(246, 240, 226, 0.12);
  border-radius: var(--radius-card);
  background: var(--paper-warm);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.timeline__item span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 1.55rem;
  font-weight: 950;
}

.contacts-section {
  padding-top: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(360px, 1.15fr);
  gap: 22px;
}

.contact-card,
.map-card {
  min-height: 450px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-card {
  padding: clamp(28px, 5vw, 48px);
  background: var(--paper-warm);
  color: var(--ink);
}

.contact-card h2 {
  color: var(--ink);
}

.contact-card .eyebrow {
  color: var(--red);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
}

.contact-list span {
  color: var(--muted);
}

.contact-list strong,
.contact-list a {
  color: var(--ink);
  text-align: right;
}

.contact-card .btn--ghost {
  background: transparent;
  border-color: var(--line-dark);
  color: var(--ink);
}

.contact-card .btn--ghost:hover {
  background: var(--ink);
  color: var(--paper-warm);
}

.map-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 240, 226, 0.12);
  background: #10130f;
}

.map-card__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246, 240, 226, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 240, 226, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
}

.map-card__road {
  position: absolute;
  border-radius: 999px;
  background: rgba(246, 240, 226, 0.9);
  box-shadow: inset 0 0 0 1px rgba(23, 17, 13, 0.08);
}

.map-card__road--main {
  left: -70px;
  top: 48%;
  width: 120%;
  height: 84px;
  transform: rotate(-12deg);
}

.map-card__road--side {
  right: 24%;
  top: -80px;
  width: 76px;
  height: 130%;
  transform: rotate(18deg);
}

.map-card__pin {
  position: absolute;
  left: 50%;
  top: 47%;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 50% 50% 50% 12px;
  background: var(--red);
  color: var(--paper-warm);
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(227, 75, 63, 0.32);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-card__pin span {
  transform: rotate(45deg);
}

.map-card__label {
  position: absolute;
  left: 50%;
  bottom: 52px;
  display: grid;
  min-width: 210px;
  gap: 2px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(246, 240, 226, 0.92);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  transform: translateX(-50%);
  text-align: center;
}

.map-card__label span {
  color: var(--muted);
}

.reveal {
  opacity: 1;
  transform: none;
  animation: rise-in 0.65s ease both;
}

.reveal--delay {
  animation-delay: 0.12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes steam {
  0%,
  100% {
    opacity: 0.2;
    transform: translateY(8px) scaleY(0.9);
  }

  50% {
    opacity: 0.72;
    transform: translateY(-10px) scaleY(1.1);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

@media (max-width: 980px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  .hero,
  .page-hero,
  .split,
  .story-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .intro-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .category-strip,
  .product-grid,
  .product-grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-copy {
    position: static;
  }

  .menu-tabs {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .brand__text small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(246, 240, 226, 0.18);
    border-radius: 22px;
    background: var(--bg-deep);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3.6rem, 17vw, 5.4rem);
  }

  .page-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero__actions,
  .contact-actions,
  .visit-panel,
  .site-footer,
  .contact-list li {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .sun-disc {
    width: 330px;
  }

  .plate {
    right: 0;
    bottom: 6%;
    grid-template-columns: repeat(2, 84px);
    gap: 12px;
    padding: 24px;
    border-radius: 26px;
  }

  .roll {
    width: 84px;
    border-radius: 15px;
  }

  .cup {
    left: -4%;
    top: 21%;
    width: 240px;
    transform: scale(0.84);
    transform-origin: left center;
  }

  .chopsticks {
    right: -22px;
    width: 220px;
  }

  .category-strip,
  .product-grid,
  .product-grid--featured {
    grid-template-columns: 1fr;
  }

  .category-pill {
    min-height: 112px;
  }

  .product-card__visual {
    min-height: 160px;
  }

  .page-hero {
    padding-top: 62px;
  }

  .about-visual {
    min-height: 300px;
  }

  .contact-card,
  .map-card {
    min-height: auto;
  }

  .map-card {
    min-height: 390px;
  }

  .contact-list strong,
  .contact-list a {
    text-align: left;
  }
}

@media (max-width: 420px) {
  :root {
    --container: calc(100% - 24px);
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__text strong {
    font-size: 0.96rem;
  }

  .hero__tagline {
    font-size: 1.25rem;
  }

  .section__heading h2,
  .split__content h2,
  .visit-panel h2,
  .menu-section__head h2,
  .story-copy h2,
  .contact-card h2 {
    font-size: 2rem;
  }
}
