:root {
  --bg: #fffaf2;
  --surface: #ffffff;
  --surface-soft: #fff3e5;
  --ink: #261a14;
  --muted: #725f55;
  --coffee: #8b5a3c;
  --coffee-dark: #4d3024;
  --cream: #ffe1bd;
  --coral: #e85d4f;
  --coral-dark: #c84237;
  --green: #7fa66a;
  --mint: #e7f3de;
  --rice: #fffef9;
  --line: rgba(77, 48, 36, 0.12);
  --shadow: 0 18px 55px rgba(78, 48, 24, 0.12);
  --shadow-soft: 0 12px 35px rgba(78, 48, 24, 0.09);
  --radius: 28px;
  --radius-card: 22px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(232, 93, 79, 0.13), transparent 27rem),
    radial-gradient(circle at 92% 14%, rgba(127, 166, 106, 0.13), transparent 26rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.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: 16px auto 0;
  padding: 10px 12px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  box-shadow: 0 10px 32px rgba(77, 48, 36, 0.08);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 42px rgba(77, 48, 36, 0.12);
}

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

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  background:
    linear-gradient(145deg, var(--coral), #f3a35d 58%, var(--green));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(232, 93, 79, 0.25);
}

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

.brand__text strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
}

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

.site-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  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(--surface-soft);
  color: var(--coffee-dark);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--coffee-dark);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: #fff;
  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.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  min-height: calc(100svh - 86px);
  padding: clamp(54px, 7vw, 86px) max(20px, calc((100vw - 1120px) / 2)) clamp(56px, 7vw, 84px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(to top, rgba(255, 250, 242, 0.94), transparent);
  pointer-events: none;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(4.1rem, 11vw, 9rem);
  letter-spacing: 0;
}

.hero__tagline {
  max-width: 560px;
  margin-bottom: 14px;
  color: var(--coffee-dark);
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
}

.hero__text {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
}

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

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

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

.btn--primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 30px rgba(232, 93, 79, 0.24);
}

.btn--primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 18px 38px rgba(232, 93, 79, 0.3);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
  color: var(--coffee-dark);
}

.btn--ghost:hover {
  background: #fff;
  border-color: rgba(232, 93, 79, 0.22);
  box-shadow: var(--shadow-soft);
}

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

.sun-disc {
  position: absolute;
  inset: 10% 3% auto auto;
  width: min(430px, 75%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 32%, #fff8e9 0 13%, transparent 14%),
    linear-gradient(145deg, #ffd89e, #ee725f 60%, #7fa66a);
  box-shadow: 0 40px 90px rgba(232, 93, 79, 0.26);
  z-index: -1;
  animation: breathe 6s ease-in-out infinite;
}

.plate {
  position: absolute;
  right: 5%;
  bottom: 9%;
  display: grid;
  grid-template-columns: repeat(2, 108px);
  gap: 18px;
  padding: 34px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transform: rotate(-4deg);
}

.plate::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(139, 90, 60, 0.08);
  border-radius: 38px;
  pointer-events: none;
}

.roll {
  position: relative;
  display: grid;
  width: 108px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: #1d2722;
  box-shadow: inset 0 0 0 10px #25372d, 0 12px 24px rgba(38, 26, 20, 0.1);
}

.roll span {
  display: block;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 44%, var(--green) 0 13%, transparent 14%),
    radial-gradient(circle at 62% 64%, #f5b36d 0 13%, transparent 14%),
    #fffdf8;
}

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

.roll--sesame {
  background: #f4e1c4;
  box-shadow: inset 0 0 0 10px #f7c77d, 0 12px 24px rgba(38, 26, 20, 0.1);
}

.roll--sesame span {
  background:
    radial-gradient(circle at 38% 42%, #ff866f 0 18%, transparent 19%),
    radial-gradient(circle at 64% 60%, #7fa66a 0 12%, transparent 13%),
    #fffdf8;
}

.roll--green {
  background: #dcebd1;
  box-shadow: inset 0 0 0 10px var(--green), 0 12px 24px rgba(38, 26, 20, 0.1);
}

.cup {
  position: absolute;
  left: 3%;
  top: 25%;
  width: min(300px, 52%);
  height: 330px;
}

.cup__body {
  position: absolute;
  left: 18%;
  bottom: 22px;
  width: 64%;
  height: 180px;
  border-radius: 26px 26px 58px 58px;
  background: linear-gradient(160deg, #fff 0 42%, #f7d8ac);
  box-shadow: var(--shadow);
}

.cup__body::before {
  content: "";
  position: absolute;
  inset: 18px 22px auto;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 44% 42%, #f5d7aa 0 18%, transparent 19%),
    linear-gradient(135deg, #8b5a3c, #4d3024);
}

.cup__handle {
  position: absolute;
  right: 3%;
  bottom: 72px;
  width: 78px;
  height: 88px;
  border: 18px solid #f4d2a4;
  border-left: 0;
  border-radius: 0 44px 44px 0;
}

.cup__foam {
  position: absolute;
  left: 30%;
  bottom: 112px;
  width: 78px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.cup__steam {
  position: absolute;
  top: 8px;
  width: 22px;
  height: 92px;
  border-radius: 999px;
  background: linear-gradient(to top, transparent, rgba(139, 90, 60, 0.36), transparent);
  filter: blur(1px);
  animation: steam 3.8s ease-in-out infinite;
}

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

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

.chopsticks {
  position: absolute;
  right: 7%;
  top: 19%;
  width: 280px;
  height: 10px;
  border-radius: 999px;
  background: var(--coffee-dark);
  box-shadow: 0 18px 0 #d8a45f;
  transform: rotate(25deg);
  transform-origin: right;
}

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

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

.soy-dot--two {
  left: 9%;
  bottom: 8%;
  width: 46px;
  height: 46px;
}

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

.section__heading {
  max-width: 680px;
  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;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
}

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

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

.feature {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 93, 79, 0.22);
  box-shadow: var(--shadow-soft);
}

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

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

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

.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(255, 255, 255, 0.72), rgba(255, 226, 189, 0.5));
}

.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(--coral-dark);
  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-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.category-pill:hover {
  transform: translateY(-6px) rotate(-1deg);
  background: #fff;
}

.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 var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 93, 79, 0.26);
  box-shadow: var(--shadow);
}

.product-card__visual {
  position: relative;
  display: grid;
  min-height: 180px;
  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: 170px;
  height: 170px;
  background: rgba(255, 255, 255, 0.5);
}

.product-card__visual::after {
  right: -24px;
  bottom: -24px;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.38);
}

.product-card__visual span {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 34px rgba(77, 48, 36, 0.12);
  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__body strong {
  display: inline-flex;
  margin-top: 18px;
  color: var(--coffee-dark);
  font-size: 1.08rem;
}

.badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(232, 93, 79, 0.12);
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.badge--green {
  background: rgba(127, 166, 106, 0.16);
  color: #567845;
}

.badge--dark {
  background: rgba(77, 48, 36, 0.1);
  color: var(--coffee-dark);
}

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

.product-card__visual--ice {
  background: linear-gradient(145deg, #d9f0ff, #d8a45f);
}

.product-card__visual--matcha,
.product-card__visual--tea,
.product-card__visual--veggie {
  background: linear-gradient(145deg, #eaf4df, #7fa66a);
}

.product-card__visual--berry {
  background: linear-gradient(145deg, #ffe0e2, #e85d4f);
}

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

.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, #fffdf5, #e85d4f 58%, #263b31);
}

.product-card__visual--cheesecake,
.product-card__visual--mochi,
.product-card__visual--brownie {
  background: linear-gradient(145deg, #fff1cc, #e0a05b);
}

.visit-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 225, 189, 0.72)),
    radial-gradient(circle at 86% 22%, rgba(232, 93, 79, 0.14), transparent 18rem);
  box-shadow: var(--shadow-soft);
}

.visit-panel p {
  max-width: 670px;
  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 var(--line);
  color: var(--muted);
}

.site-footer strong,
.site-footer a {
  color: var(--coffee-dark);
}

.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(70px, 9vw, 118px) 0 clamp(44px, 6vw, 78px);
}

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

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

.page-hero p:last-child {
  max-width: 620px;
  color: var(--muted);
  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 var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--coffee-dark);
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.menu-tabs a:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

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

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

.about-visual {
  position: relative;
  min-height: 360px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 66% 34%, rgba(255, 255, 255, 0.9) 0 12%, transparent 13%),
    linear-gradient(145deg, #ffe1bd, #e85d4f 58%, #7fa66a);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-visual__cup,
.about-visual__roll,
.about-visual__leaf {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(77, 48, 36, 0.16);
}

.about-visual__cup {
  left: 18%;
  top: 24%;
  width: 130px;
  height: 150px;
  border-radius: 30px 30px 60px 60px;
}

.about-visual__cup::after {
  content: "";
  position: absolute;
  right: -42px;
  top: 48px;
  width: 50px;
  height: 58px;
  border: 14px solid rgba(255, 255, 255, 0.82);
  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, #fff 0 34%, #ff866f 35% 48%, #25372d 49% 100%);
}

.about-visual__leaf {
  right: 28%;
  top: 15%;
  width: 105px;
  height: 58px;
  background: #e7f3de;
  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 var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.78);
}

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

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

.timeline__item {
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.timeline__item span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  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);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.contact-card {
  padding: clamp(28px, 5vw, 48px);
}

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

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

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

.map-card {
  position: relative;
  overflow: hidden;
  background: #f6e6d4;
}

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

.map-card__road {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(139, 90, 60, 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(--coral);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(232, 93, 79, 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(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  transform: translateX(-50%);
  text-align: center;
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal.is-visible {
  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: grid;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    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.7rem, 18vw, 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: 410px;
    border-radius: 30px;
  }

  .sun-disc {
    width: 320px;
  }

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

  .roll {
    width: 82px;
  }

  .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: 38px;
    height: 38px;
  }

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

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