:root {
  --cream: #fff8e8;
  --paper: #ffffff;
  --ink: #24302f;
  --muted: #66736e;
  --tomato: #d23b30;
  --tomato-dark: #b83227;
  --pistachio: #74b85f;
  --mint: #dff4d5;
  --lemon: #ffd34d;
  --sky: #75c8e8;
  --berry: #e85b8b;
  --cocoa: #7a5237;
  --line: rgba(36, 48, 47, 0.14);
  --shadow: 0 18px 50px rgba(36, 48, 47, 0.11);
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1180px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Plus Jakarta Sans", "Manrope", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(232, 71, 56, 0.48);
  outline-offset: 4px;
}

::selection {
  background: var(--lemon);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 248, 232, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(36, 48, 47, 0.08);
}

.nav-shell {
  width: min(var(--container), calc(100% - 36px));
  height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 900;
}

.brand img {
  width: 52px;
  height: 52px;
}

.brand-word {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 1.05rem;
  letter-spacing: 0;
}

.brand-note {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(12px);
}

.desktop-nav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(36, 48, 47, 0.84);
  font-size: 0.93rem;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  color: var(--tomato-dark);
  background: rgba(255, 211, 77, 0.35);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(36, 48, 47, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-call:hover,
.nav-call:focus-visible {
  background: #111918;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px var(--line);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: calc(var(--header-h) + 8px) 16px auto 16px;
  z-index: 999;
  display: none;
  max-height: calc(100dvh - var(--header-h) - 32px);
  overflow-y: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  transform: translateY(-12px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.mobile-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--ink);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 0 0 1px rgba(36, 48, 47, 0.08);
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: var(--mint);
}

.nav-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: var(--tomato);
  flex: 0 0 24px;
}

.nav-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-main {
  overflow: hidden;
}

.container {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 60px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--tomato-dark);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 22px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pistachio), var(--lemon), var(--tomato));
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.center .section-kicker::before {
  display: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: 6rem;
  font-weight: 950;
}

h2 {
  font-size: 3.45rem;
  font-weight: 950;
}

h3 {
  font-size: 1.65rem;
  font-weight: 920;
}

p {
  margin: 0;
}

.lead {
  max-width: 680px;
  color: rgba(36, 48, 47, 0.84);
  font-size: 1.18rem;
  line-height: 1.62;
}

.muted {
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 64px) 0 54px;
  background: var(--cream);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(255, 248, 232, 0), var(--cream));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 232, 0.95) 0%, rgba(255, 248, 232, 0.75) 42%, rgba(255, 248, 232, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 248, 232, 0.18) 0%, rgba(255, 248, 232, 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
}

.hero-badge {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--tomato-dark);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(36, 48, 47, 0.08);
  font-size: 0.92rem;
  font-weight: 900;
}

.hero-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pistachio);
  box-shadow: 16px 0 0 var(--lemon), 32px 0 0 var(--tomato);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--tomato);
  color: #fff;
  font-weight: 950;
  line-height: 1.1;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 28px rgba(232, 71, 56, 0.22);
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -140%;
  width: 80%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transition: left 0.58s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--tomato-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(232, 71, 56, 0.26);
}

.button:hover::before,
.button:focus-visible::before {
  left: 140%;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(36, 48, 47, 0.12);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--lemon);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(36, 48, 47, 0.12);
}

.button.dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(36, 48, 47, 0.18);
}

.button.dark:hover,
.button.dark:focus-visible {
  background: #111918;
  color: #fff;
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(36, 48, 47, 0.86);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(36, 48, 47, 0.08);
  font-size: 0.92rem;
  font-weight: 850;
}

.flavor-strip {
  border-top: 1px solid rgba(36, 48, 47, 0.08);
  border-bottom: 1px solid rgba(36, 48, 47, 0.08);
  background: #fffdf5;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.strip-item {
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px;
  background: #fffdf5;
}

.strip-item strong {
  font-size: 1.12rem;
  font-weight: 950;
}

.strip-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-points {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.point {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.point-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--tomato-dark);
  font-weight: 950;
}

.bento {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
}

.bento picture,
.image-frame,
.wide-image,
.contact-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f4ead2;
}

.bento picture:first-child {
  grid-row: span 2;
}

.bento img,
.image-frame img,
.wide-image img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.bento picture:hover img,
.image-frame:hover img,
.wide-image:hover img,
.contact-photo:hover img {
  transform: scale(1.035);
}

.soft-band {
  background: #fffdf5;
}

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

.flavor-card,
.offer-card,
.faq-card,
.value-card,
.contact-card,
.legal-card {
  border: 1px solid rgba(36, 48, 47, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.flavor-card {
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.flavor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 71, 56, 0.28);
  box-shadow: 0 16px 40px rgba(36, 48, 47, 0.08);
}

.flavor-card picture {
  display: block;
  aspect-ratio: 1 / 0.82;
  background: #f3ead8;
}

.flavor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flavor-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.flavor-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.flavor-top h3 {
  font-size: 1.22rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 950;
  white-space: nowrap;
}

.tag.sun {
  background: #fff0ae;
}

.tag.berry {
  background: #ffdbe7;
}

.tag.cocoa {
  background: #ead7c5;
}

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

.offer-card,
.value-card,
.contact-card {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.offer-card strong {
  color: var(--tomato-dark);
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(36, 48, 47, 0.08);
  border-bottom: 1px solid rgba(36, 48, 47, 0.08);
  background:
    linear-gradient(90deg, rgba(116, 184, 95, 0.2), rgba(255, 211, 77, 0.28), rgba(232, 91, 139, 0.16)),
    #fffdf5;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
}

.visit-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.visit-panel {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid rgba(36, 48, 47, 0.1);
}

.info-list {
  display: grid;
  gap: 14px;
}

.info-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.info-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--mint);
  color: var(--tomato-dark);
}

.map-card {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(117, 200, 232, 0.28), rgba(255, 211, 77, 0.32)),
    #fff;
  border: 1px solid rgba(36, 48, 47, 0.1);
}

.map-inner {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: grid;
  place-items: center;
  border: 2px dashed rgba(36, 48, 47, 0.18);
  border-radius: 16px;
  text-align: center;
  padding: 26px;
  background: rgba(255, 255, 255, 0.58);
}

.map-inner strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.2;
}

.page-hero {
  padding: calc(var(--header-h) + 86px) 0 64px;
  background:
    linear-gradient(90deg, rgba(116, 184, 95, 0.18), rgba(255, 211, 77, 0.22), rgba(117, 200, 232, 0.16)),
    var(--cream);
}

.page-hero .lead {
  margin-top: 20px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.breadcrumbs a {
  color: var(--tomato-dark);
}

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

.menu-category {
  margin-top: 48px;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.menu-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(36, 48, 47, 0.12);
}

.menu-line strong {
  font-weight: 950;
}

.menu-line span {
  color: var(--muted);
  text-align: right;
}

.notice {
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: #fff4bf;
  border: 1px solid rgba(36, 48, 47, 0.1);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-card {
  padding: 22px;
}

.faq-card h2,
.legal-card h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(36, 48, 47, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-weight: 950;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(36, 48, 47, 0.18);
  border-radius: 12px;
  background: #fffdf8;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 142px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(232, 71, 56, 0.48);
  box-shadow: 0 0 0 4px rgba(232, 71, 56, 0.12);
  outline: 0;
  background: #fff;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-layout {
  display: grid;
  gap: 18px;
  max-width: 900px;
}

.legal-card {
  padding: 26px;
}

.legal-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.thanks-panel {
  max-width: 780px;
  display: grid;
  gap: 22px;
  padding: 38px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid rgba(36, 48, 47, 0.1);
  box-shadow: var(--shadow);
}

.thanks-mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--tomato-dark);
}

.site-footer {
  padding: 56px 0 30px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
}

.footer-title {
  color: #fff;
  font-weight: 950;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--lemon);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.cookie-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1200;
  max-width: 760px;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(36, 48, 47, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.cookie-bar.is-visible {
  display: grid;
}

.cookie-bar p {
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2200;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--tomato);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(232, 71, 56, 0.55);
  transition: width 0.18s ease, height 0.18s ease, border-color 0.18s ease;
}

.cursor-ring.is-active {
  width: 46px;
  height: 46px;
  border-color: rgba(116, 184, 95, 0.72);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-h: 72px;
  }

  h1 {
    font-size: 4.7rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 1.48rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .desktop-nav,
  .nav-call {
    display: none;
  }

  .menu-toggle,
  .mobile-panel {
    display: block;
  }

  .split,
  .visit-grid,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .menu-preview,
  .menu-grid,
  .offer-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-inner {
    align-items: start;
  }
}

@media (max-width: 720px) {
  :root {
    --radius: 14px;
  }

  body {
    font-size: 15.5px;
  }

  .container,
  .nav-shell {
    width: min(100% - 28px, var(--container));
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .brand-note {
    font-size: 0.69rem;
  }

  .section {
    padding: 66px 0;
  }

  .section-tight {
    padding: 48px 0;
  }

  .hero {
    min-height: 86svh;
    padding-top: calc(var(--header-h) + 42px);
    padding-bottom: 36px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(255, 248, 232, 0.58) 0%, rgba(255, 248, 232, 0.88) 70%, rgba(255, 248, 232, 0.96) 100%),
      linear-gradient(90deg, rgba(255, 248, 232, 0.82), rgba(255, 248, 232, 0.2));
  }

  .hero-badge {
    width: fit-content;
    font-size: 0.84rem;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  h3 {
    font-size: 1.32rem;
  }

  .lead {
    font-size: 1.03rem;
  }

  .hero-actions,
  .inline-actions,
  .cookie-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .strip-grid,
  .menu-preview,
  .menu-grid,
  .offer-grid,
  .value-grid,
  .menu-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .strip-item {
    min-height: auto;
    padding: 18px 0;
    border-bottom: 1px solid rgba(36, 48, 47, 0.08);
  }

  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bento picture,
  .bento picture:first-child {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .page-hero {
    padding: calc(var(--header-h) + 58px) 0 46px;
  }

  .visit-panel,
  .contact-form,
  .thanks-panel,
  .legal-card,
  .offer-card,
  .value-card,
  .contact-card {
    padding: 20px;
  }

  .map-card {
    min-height: 320px;
    padding: 18px;
  }

  .map-inner {
    min-height: 240px;
  }

  .cookie-bar {
    grid-template-columns: 1fr;
    right: 12px;
    bottom: 12px;
    left: 12px;
    border-radius: 16px;
  }

  .cookie-actions .button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.76rem;
  }

  h2 {
    font-size: 2rem;
  }
}

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