:root {
  color-scheme: light;
  /* Morandi dusty-rose palette */
  --bg: #f3e9e6;
  --surface: #f8f0ee;
  --surface-strong: #ead8d4;
  --ink: #443538;
  --muted: #7e6b6e;
  --accent: #a66b72;
  --accent-ink: #fffafa;
  --line: rgba(105, 72, 76, 0.16);
  --header: rgba(243, 233, 230, 0.9);
  --contact-overlay: rgba(243, 233, 230, 0.86);
  --radius: 28px;
  --radius-small: 16px;
  --shadow: 0 24px 60px rgba(68, 53, 56, 0.11);
  --max: 1400px;
  --font-display: "Fredoka", "Noto Serif TC", "PingFang HK", "Noto Sans TC", serif;
  --font-body: "Nunito", "Avenir Next", "PingFang HK", "Noto Sans TC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
  background-color: var(--bg);
}

body {
  margin: 0;
  overflow-x: clip;
  background-color: var(--bg);
  background-image:
    radial-gradient(1100px 760px at 8% -8%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 56%),
    radial-gradient(1000px 700px at 102% 6%, color-mix(in srgb, var(--surface-strong) 38%, transparent), transparent 55%),
    url("assets/paper-bg-pink.webp");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-attachment: fixed, fixed, fixed;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* Soft vignette that matches the Morandi palette */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  background: radial-gradient(125% 120% at 50% 0%, transparent 58%, color-mix(in srgb, var(--ink) 5%, transparent));
}

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 14px;
  border-radius: var(--radius-small);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 4vw, 64px);
  background: var(--header);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: min-height 220ms ease, border-color 220ms ease;
}

.site-header.is-condensed {
  min-height: 66px;
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand img,
.contact-logo {
  border-radius: 50%;
  border: 1px solid var(--line);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.site-nav a,
.lang-toggle,
.nav-toggle {
  font: 650 0.84rem/1 var(--font-body);
  letter-spacing: 0.03em;
  text-decoration: none;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.lang-toggle,
.nav-toggle {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--surface);
  min-width: 48px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.lang-toggle:hover,
.nav-toggle:hover {
  background: var(--surface-strong);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  min-height: calc(100dvh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 7vw, 110px);
  padding: 38px 0 64px;
}

.hero-copy {
  padding-left: clamp(0px, 5vw, 76px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1 {
  max-width: 11ch;
  margin-bottom: 26px;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

h2 {
  max-width: 14ch;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 6px;
  font-size: clamp(1.25rem, 1.9vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-text,
.section-heading > p:not(.eyebrow),
.story-copy > p:not(.eyebrow),
.contact-section > p {
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 220ms ease, border-color 180ms ease;
}

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

.button:active {
  transform: scale(0.98) translateY(0);
}

.button-primary {
  color: var(--accent-ink);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 88%, #fff), var(--accent));
  box-shadow:
    0 12px 26px color-mix(in srgb, var(--accent) 32%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.button-primary:hover {
  box-shadow:
    0 18px 38px color-mix(in srgb, var(--accent) 46%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.button-quiet {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--surface);
}

.button-quiet:hover {
  color: var(--ink);
  background: var(--surface-strong);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 10px 22px rgba(68, 53, 56, 0.1);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.media-frame:hover img {
  transform: scale(1.02);
}

/* Sparse hand-drawn accents keep the photography in charge. */
.image-line {
  outline: 1.5px dashed color-mix(in srgb, var(--line) 38%, var(--accent));
  outline-offset: 10px;
}

.image-line-blue {
  outline-color: color-mix(in srgb, #9fcddd 68%, var(--line));
}

.image-line-pink {
  outline-color: color-mix(in srgb, #d998a4 68%, var(--line));
}

.page-sticker {
  position: absolute;
  z-index: 3;
  display: block;
  width: clamp(82px, 9vw, 142px);
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 10px 14px rgba(94, 63, 69, 0.09));
}

.sticker-hero {
  left: 43%;
  bottom: 9%;
  width: clamp(76px, 7.5vw, 116px);
  transform: rotate(-7deg);
}

.sticker-menu {
  top: 7.5%;
  right: clamp(6px, 4vw, 58px);
  transform: rotate(7deg);
}

.sticker-story {
  left: 45%;
  bottom: 13%;
  width: clamp(92px, 10vw, 154px);
  transform: rotate(5deg);
}

.sticker-gallery {
  top: 16%;
  right: 3%;
  width: clamp(76px, 8vw, 120px);
  transform: rotate(10deg);
}

.media-frame-hero {
  aspect-ratio: 4 / 5;
  background: #dbeff6;
}

.media-frame-hero img {
  position: relative;
  z-index: 2;
}

.shape {
  position: absolute;
  z-index: 1;
  border-radius: 44% 56% 60% 40% / 47% 36% 64% 53%;
  background: radial-gradient(circle at 32% 28%, var(--accent), color-mix(in srgb, var(--accent) 50%, #fff));
  opacity: 0.45;
  filter: blur(3px);
}

.shape-a {
  width: 42%;
  aspect-ratio: 1;
  right: -12%;
  top: -10%;
}

.shape-b {
  width: 30%;
  aspect-ratio: 1;
  left: -10%;
  bottom: -8%;
}

.scroll-cue {
  margin-top: 42px;
  width: 26px;
  height: 42px;
  border: 2px solid var(--line);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 7px;
}

.scroll-cue span {
  width: 5px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  animation: cue 1.6s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(12px);
    opacity: 1;
  }
}

.section-shell {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(90px, 12vw, 170px) clamp(0px, 5vw, 76px);
}

.section-heading {
  margin-bottom: clamp(40px, 6vw, 78px);
}

/* All headings align to the left consistently */
.menu-section .section-heading,
.product-gallery .section-heading {
  margin-left: 0;
}

.menu-browser {
  position: relative;
  padding: clamp(20px, 3vw, 40px);
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.menu-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 22px;
}

.menu-tabs button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font: 700 0.92rem/1 var(--font-body);
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 220ms ease;
}

.menu-tabs button:hover {
  background: var(--surface-strong);
}

.menu-tabs button[aria-selected="true"] {
  color: var(--accent-ink);
  border-color: var(--accent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 86%, #fff), var(--accent));
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 30%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.menu-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: stretch;
}

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

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 32px;
  align-content: start;
}

.menu-list article {
  position: relative;
  min-height: 124px;
  padding: 20px 16px;
  border-bottom: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), background-color 280ms ease, box-shadow 280ms ease;
}

.menu-list article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 3px;
  border-radius: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 300ms ease, opacity 240ms ease;
}

.menu-list article:hover {
  transform: translateX(6px);
  background: color-mix(in srgb, var(--surface) 70%, var(--accent) 30%);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--ink) 10%, transparent);
}

.menu-list article:active {
  transform: translateX(3px) scale(0.99);
}

.menu-list article:hover .menu-item-head h3 {
  color: var(--accent);
}

.menu-list article:hover .menu-item-head strong {
  background: var(--accent);
  color: var(--accent-ink);
}

.menu-item-head,
.cup-option > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.menu-item-head h3,
.cup-option h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.38rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  transition: color 260ms ease;
}

.menu-item-head strong,
.cup-option strong {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--surface-strong);
  transition: background-color 260ms ease, color 260ms ease;
}

.menu-list p,
.build-flow span {
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-list p {
  margin-top: 10px;
  line-height: 1.6;
}

.menu-image {
  aspect-ratio: 4 / 5;
}

.menu-image img {
  object-fit: cover;
}

.build-flow {
  display: grid;
  gap: 14px;
  align-content: center;
}

.cup-options {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 14px;
  align-content: center;
}

.cup-option {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cup-option:hover {
  background: color-mix(in srgb, var(--surface) 88%, var(--accent));
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  transform: translateY(-2px);
}

.cup-option-featured {
  grid-row: span 2;
  display: grid;
  align-content: space-between;
  min-height: 230px;
  color: var(--accent-ink);
  background: var(--accent);
  border-color: var(--accent);
}

.cup-option-featured:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.cup-option p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cup-option-featured p {
  color: var(--accent-ink);
}

.cup-option-featured strong {
  color: var(--accent-ink);
  background: rgba(255, 255, 255, 0.22);
}

.menu-footnote {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.croffle-list {
  grid-template-columns: 1fr;
  align-content: center;
}

.croffle-list article {
  min-height: 0;
}

.menu-source {
  position: relative;
  display: block;
  min-height: 0;
  color: var(--ink);
  background: #efd2d3;
}

.menu-source img {
  object-fit: contain;
}

.menu-source span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--accent-ink);
  background: var(--accent);
  font-weight: 800;
  font-size: 0.78rem;
}

.topping-directory {
  align-self: start;
  max-width: none;
}

.ingredient-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  margin-top: 30px;
}

.ingredient-groups section {
  position: relative;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
              background-color 280ms ease,
              box-shadow 280ms ease,
              border-color 280ms ease;
}

.ingredient-groups section:hover {
  transform: translateY(-5px) rotate(-1deg);
  background: color-mix(in srgb, var(--surface) 94%, var(--accent));
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: 0 18px 34px color-mix(in srgb, var(--ink) 10%, transparent);
}

.ingredient-groups h4 {
  margin: 0 0 9px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--accent);
}

.ingredient-groups p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

.sauce-group {
  grid-column: 1 / -1;
}

.build-flow > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.6fr) 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.build-flow h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
}

.topping-copy {
  align-self: center;
  max-width: 500px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
}

.story-copy {
  padding-right: 0;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.text-link span[aria-hidden] {
  display: inline-block;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.external-arrow {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  color: currentColor;
}

.external-arrow::before {
  content: "";
  position: absolute;
  top: 1px;
  right: 1px;
  width: 8px;
  height: 8px;
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
}

.external-arrow::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 2px;
  width: 13px;
  height: 1.6px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: left center;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms ease;
}

.text-link:hover {
  transform: translateY(-5px);
}

.text-link:hover span[aria-hidden] {
  transform: translate(5px, -4px);
}

.text-link:hover::after {
  transform: scaleX(1);
}

/* Polaroid / playful photo cards */
.photo-card {
  padding: 14px;
  background: #fffdfa;
  border: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
  box-shadow:
    0 22px 54px rgba(68, 53, 56, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.photo-card img {
  object-fit: cover;
  border-radius: var(--radius-small);
}

.story-media {
  aspect-ratio: 4 / 5;
  transform: rotate(-3deg);
  max-width: 520px;
}

.product-gallery .section-heading {
  max-width: 780px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 28px;
  align-items: end;
}

.gallery-large {
  grid-row: 1 / 3;
  align-self: stretch;
  aspect-ratio: auto;
  transform: rotate(-1deg);
}

.gallery-small {
  grid-row: 2 / 3;
  margin-left: -22%;
  margin-bottom: 8%;
  transform: translateY(-12%) rotate(5deg);
  z-index: 2;
  max-width: 92%;
  justify-self: end;
}

.locations-section {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(30px, 7vw, 100px);
}

.locations-section .section-heading {
  margin-bottom: 0;
}

.location-cloud {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.location-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 116px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  text-align: center;
  text-decoration: none;
  transition: transform 220ms ease, color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.location-card:nth-child(1),
.location-card:nth-child(4) {
  grid-column: span 3;
}

.location-card:hover {
  transform: rotate(-2deg) translateY(-4px);
  color: var(--accent-ink);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 14px 26px color-mix(in srgb, var(--accent) 38%, transparent);
}

.location-card:hover .location-icon path {
  fill: var(--accent-ink);
}

.location-icon {
  width: 22px;
  height: 22px;
  opacity: 0.85;
}

.location-icon path {
  fill: var(--accent);
  transition: fill 220ms ease;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.1fr);
  gap: clamp(36px, 8vw, 130px);
}

.faq-section .section-heading {
  margin-bottom: 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: color 300ms ease;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-q-text {
  flex: 1;
}

.faq-chevron {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--accent);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
}

.faq-a p {
  max-width: 60ch;
  margin: 0 0 24px;
  color: var(--muted);
}

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-bottom: clamp(70px, 10vw, 130px);
  padding-left: clamp(20px, 6vw, 86px);
  padding-right: clamp(20px, 6vw, 86px);
  border-radius: var(--radius);
  background:
    linear-gradient(var(--contact-overlay), var(--contact-overlay)),
    url("assets/ai-yogurt-landscape.webp") center / cover no-repeat;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-section h2,
.contact-section > p {
  margin-left: auto;
  margin-right: auto;
}

.contact-logo {
  margin-bottom: 24px;
}

.channel-links {
  max-width: 860px;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.channel-links a {
  min-height: 86px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
  text-align: left;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 220ms ease;
}

.channel-links a:hover {
  transform: translateY(-3px);
  background: var(--surface-strong);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  box-shadow: 0 14px 28px rgba(68, 53, 56, 0.14);
}

.channel-links span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--accent-ink);
  background: var(--accent);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
}

.channel-links i {
  font-style: normal;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 900px) {
  body {
    /* Mobile Safari does not reliably render fixed multi-layer backgrounds. */
    background-repeat: no-repeat, no-repeat, repeat-y;
    background-size: auto, auto, max(100vw, 670px) auto;
    background-position: center top, center top, center top;
    background-attachment: scroll, scroll, scroll;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .brand span {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

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

  .hero,
  .story-section,
  .locations-section,
  .faq-section,
  .menu-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    gap: 36px;
    padding-top: 44px;
  }

  .hero-copy,
  .story-copy {
    padding: 0;
  }

  .hero-media {
    width: min(100%, 650px);
    justify-self: center;
  }

  .menu-image {
    max-height: 620px;
  }

  .story-media {
    width: min(92%, 520px);
    justify-self: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-large,
  .gallery-small {
    grid-row: auto;
    margin: 0;
    transform: none;
    max-width: none;
    justify-self: stretch;
  }

  .gallery-small {
    width: min(100%, 520px);
    justify-self: center;
  }

  .sticker-hero {
    left: auto;
    right: 4%;
    bottom: 48%;
  }

  .sticker-menu,
  .sticker-story,
  .sticker-gallery {
    display: none;
  }

  .locations-section {
    min-height: 0;
  }

  .faq-section .section-heading {
    margin-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .section-shell,
  .hero,
  .site-footer {
    width: calc(100% - 32px);
  }

  .section-shell {
    padding: 82px 0;
  }

  .image-line {
    outline-offset: 6px;
  }

  .sticker-hero {
    right: 0;
    bottom: 51%;
    width: 72px;
    opacity: 0.92;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.45rem, 11vw, 3.15rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2.1rem, 10.5vw, 3.2rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    padding: 0 14px;
  }

  .menu-browser {
    padding: 16px;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .menu-list article {
    min-height: 0;
  }

  .cup-options,
  .ingredient-groups {
    grid-template-columns: 1fr;
  }

  .cup-option-featured {
    grid-row: auto;
    min-height: 170px;
  }

  .sauce-group {
    grid-column: auto;
  }

  .build-flow > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .location-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-card,
  .location-card:nth-child(1),
  .location-card:nth-child(4) {
    grid-column: span 1;
    min-height: 92px;
  }

  .channel-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .scroll-cue {
    display: none;
  }
}

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

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

@supports not (backdrop-filter: blur(18px)) {
  .site-header {
    background: var(--bg);
  }
}
