:root {
  --magenta: #e31b6d;
  --magenta-deep: #c0145a;
  --blush: #f7c4d8;
  --blush-2: #fdeef4;
  --paper: #fffdfb;
  --ink: #2b1520;
  --mute: #6e4a58;
  --line: #f3c9d8;
  --max: 1120px;
  --round: 1.75rem;
  --font: "Nunito", system-ui, sans-serif;
  --display: "Fredoka", "Nunito", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
.btn {
  font-family: inherit;
}

.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 80;
  background: #fff;
  padding: 8px 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

/* Header — white, not a dusty-pink bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 251, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.brand img {
  width: auto;
  height: 56px;
  max-width: 210px;
  border-radius: 0;
  object-fit: contain;
}

.brand-text {
  display: none;
}

.brand-text strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--magenta);
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-text span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-top: 3px;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav a {
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a.is-active,
.nav a:hover {
  color: var(--magenta);
}

.lang {
  display: flex;
  gap: 4px;
  margin-left: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.lang button {
  border: 0;
  background: transparent;
  color: var(--mute);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 999px;
}

.lang button.is-on {
  background: var(--blush);
  color: var(--magenta);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 7px 0;
}

.bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  padding: 10px 20px;
  background: var(--blush-2);
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--magenta);
}

.bar span {
  color: var(--ink);
  font-weight: 600;
}

.bar a:hover {
  color: var(--magenta);
}

/* Hero: one photo, one card — finished, not split in half */
.hero {
  position: relative;
  min-height: min(78vh, 720px);
  overflow: hidden;
  background: #f3c9d8;
}

.hero img {
  width: 100%;
  height: min(78vh, 720px);
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43, 21, 32, 0.45) 0%, rgba(43, 21, 32, 0.08) 55%);
}

.hero-card {
  position: absolute;
  left: max(20px, calc((100% - var(--max)) / 2));
  bottom: 40px;
  z-index: 1;
  width: min(440px, calc(100% - 40px));
  background: #fff;
  color: var(--ink);
  padding: 32px 32px 28px;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(43, 21, 32, 0.18);
}

.hero-card h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 600;
  line-height: 0.9;
  margin: 0;
  color: var(--magenta);
  letter-spacing: -0.04em;
}

.hero-card .tag {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 800;
  margin: 8px 0 14px;
  color: var(--magenta);
}

.hero-card p {
  margin: 0 0 22px;
  color: var(--mute);
}

.hero-card .campaign {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--magenta);
  margin: -6px 0 14px;
}

.block {
  padding: 88px 0;
}

.block h2,
.about h2,
.quotes h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: var(--magenta);
  font-weight: 800;
  cursor: pointer;
}

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

.btn-ghost {
  background: var(--blush-2);
  color: var(--magenta);
  border: 0;
}

.btn-solid {
  background: var(--magenta);
  color: #fff;
}

.btn-line,
.btn-outline {
  background: transparent;
  color: var(--magenta);
  border: 2px solid var(--magenta);
}

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

.actions .btn-ghost {
  margin: 0;
}

.lede {
  color: var(--mute);
  margin: 0 0 32px;
  max-width: 48ch;
}

.block-alt {
  padding-top: 0;
}

.block-cta {
  margin: 28px 0 0;
}

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

.twin {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.twin:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(227, 27, 109, 0.1);
}

.twin img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.twin div {
  padding: 22px 24px 26px;
}

.twin .floor {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta);
  margin: 0 0 6px;
}

.twin h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}

.twin p:last-child {
  margin: 0;
  color: var(--mute);
}

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

.preview a {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.preview a:hover {
  border-color: var(--magenta);
}

.preview img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.preview h3 {
  font-family: var(--display);
  margin: 14px 16px 4px;
  font-size: 1.25rem;
  color: var(--magenta);
}

.preview p {
  margin: 0 16px 16px;
  color: var(--mute);
  font-size: 0.92rem;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 72px;
}

.about img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
}

.about p {
  color: var(--mute);
}

.about .mood {
  font-family: var(--display);
  font-weight: 500;
  color: var(--magenta);
  letter-spacing: 0.04em;
  margin: 0 0 18px;
}

.eyebrow {
  color: var(--magenta);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  margin: 0 0 10px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}

.chips span {
  background: var(--blush-2);
  color: var(--magenta);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.quotes {
  padding: 20px 0 80px;
}

.quotes h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

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

.quote-grid article {
  background: var(--blush-2);
  border-radius: var(--round);
  padding: 24px;
}

.quote-grid p {
  font-size: 1.05rem;
  margin: 0 0 14px;
}

.quote-grid cite {
  font-style: normal;
  color: var(--mute);
  font-size: 0.85rem;
  font-weight: 700;
}

.quote-one {
  background: var(--blush-2);
  padding: 64px 0;
  text-align: center;
}

.quote-one p {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  max-width: 22ch;
  margin: 0 auto 14px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.quote-one cite {
  font-style: normal;
  color: var(--mute);
  font-size: 0.85rem;
  font-weight: 700;
}

/* Visit — light panel + map */
.visit {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
}

.visit-copy {
  padding: 40px 36px;
  background: var(--blush-2);
}

.visit h2 {
  margin-bottom: 12px;
}

.visit iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.hours-note {
  font-size: 0.85rem;
  color: var(--mute);
  margin: 8px 0 18px;
}

/* Inner pages */
.page-hero {
  background: var(--blush-2);
  padding: 56px 0 40px;
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 6px 0 10px;
  letter-spacing: -0.03em;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 40px 0 72px;
}

.menu-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.menu-item img {
  width: 100%;
  height: 100%;
  min-height: 130px;
  object-fit: cover;
}

.menu-item div {
  padding: 16px 16px 16px 0;
}

.menu-item h3 {
  font-family: var(--display);
  margin: 8px 0 6px;
  color: var(--magenta);
}

.menu-item p,
.note {
  color: var(--mute);
  margin: 0;
}

.note {
  text-align: center;
  padding-bottom: 48px;
}

.carta-jump {
  position: sticky;
  top: 76px;
  z-index: 20;
  background: rgba(255, 253, 251, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.carta-jump .wrap {
  display: flex;
  gap: 8px;
  padding: 12px 0;
  width: min(var(--max), calc(100% - 40px));
}

.carta-jump a {
  flex: 0 0 auto;
  background: var(--blush-2);
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
}

.carta-jump a:hover {
  background: var(--magenta);
  color: #fff;
}

.carta-band {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  margin: 40px 0 0;
  padding-top: 28px;
  letter-spacing: -0.04em;
  border-top: 2px solid var(--blush-2);
}

.carta-band:first-of-type {
  border-top: 0;
  padding-top: 8px;
  margin-top: 16px;
}

.carta-sec {
  padding: 48px 0 8px;
  scroll-margin-top: 148px;
}

.carta-sec h2 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--magenta);
  margin: 0 0 6px;
  letter-spacing: -0.03em;
}

.carta-sec .sec-note {
  color: var(--mute);
  margin: 0 0 18px;
  font-size: 0.92rem;
}

.dishes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.dishes.one {
  grid-template-columns: 1fr;
}

.dishes li {
  border-bottom: 1px solid var(--line);
  padding: 12px 0 14px;
}

.dish-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.dish-row h3 {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
}

.price {
  flex: 0 0 auto;
  color: var(--magenta);
  font-weight: 800;
  font-size: 0.95rem;
}

.dishes p {
  margin: 4px 0 0;
  color: var(--mute);
  font-size: 0.9rem;
}

.gelato-note {
  background: var(--blush-2);
  color: var(--magenta);
  font-weight: 800;
  text-align: center;
  padding: 16px 20px;
  border-radius: 18px;
  margin: 8px 0 0;
  letter-spacing: -0.01em;
}

.carta-scans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  padding: 24px 0 64px;
}

.carta-scans img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.story-hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--blush-2);
}

.story-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(43, 21, 32, 0.2) 0%,
    rgba(43, 21, 32, 0.28) 45%,
    rgba(43, 21, 32, 0.82) 100%
  );
}

.story-hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 56px;
  color: #fff;
  max-width: 720px;
  text-shadow: 0 8px 28px rgba(43, 21, 32, 0.35);
}

.story-hero-copy .eyebrow {
  color: var(--blush);
}

.story-hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 8px 0 12px;
}

.story-hero-copy p {
  font-size: 1.15rem;
  margin: 0;
  max-width: 28em;
}

.story-prose {
  max-width: 680px;
  padding: 48px 0 8px;
}

.story-prose p,
.story-chapter p {
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0 0 16px;
}

.story-chapter {
  max-width: 720px;
  padding: 8px 0 8px;
}

.story-chapter h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--magenta);
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.story-names {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--magenta);
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.story-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 40px 0 24px;
}

.story-time {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 24px 32px;
}

.story-time span {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--magenta);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.story-time h2 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}

.story-time p {
  margin: 0;
  color: var(--mute);
  font-size: 0.98rem;
}

.story-pull {
  text-align: center;
  padding: 48px 20px 40px;
}

.story-pull p {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--magenta);
  margin: 0 auto;
  max-width: 16em;
}

.story-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
}

.story-split.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.story-split.reverse .story-split-copy {
  order: -1;
}

.story-split img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 28px;
}

.story-split-copy h2 {
  font-family: var(--display);
  font-size: 2rem;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.story-split-copy p {
  color: var(--mute);
  margin: 0 0 14px;
  font-size: 1.05rem;
  line-height: 1.55;
}

.story-split-copy .btn {
  margin-top: 8px;
}

.story-ings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 12px 0 48px;
}

.story-ings p {
  margin: 0;
  text-align: center;
  background: var(--blush-2);
  color: var(--magenta-deep);
  font-weight: 800;
  padding: 18px 12px;
  border-radius: 18px;
  font-size: 0.92rem;
}

.story-effect-band {
  background: var(--magenta);
  color: #fff;
  text-align: center;
  padding: 72px 20px;
  margin: 12px 0 0;
}

.story-effect-band .eyebrow {
  color: var(--blush);
}

.story-effect-band h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  margin: 6px 0 18px;
  letter-spacing: -0.04em;
}

.story-effect-band p {
  margin: 0 auto 14px;
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 36em;
}

.story-end {
  text-align: center;
  padding: 64px 20px 80px;
}

.story-end p {
  margin: 0 0 8px;
}

.story-end .story-sign {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--magenta);
  margin-bottom: 22px;
}

.story-end .actions {
  justify-content: center;
}

.hours {
  width: 100%;
  border-collapse: collapse;
}

.hours td {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.visit .hours td {
  border-color: var(--line);
}

.card-hours .hours td {
  border-color: var(--line);
}

.card-hours td:last-child,
.hours td:last-child {
  text-align: right;
  font-weight: 800;
}

.locs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 24px 0 72px;
}

.loc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.loc iframe {
  width: 100%;
  height: 200px;
  border: 0;
}

.loc-body {
  padding: 20px 22px 24px;
}

.loc-body h3 {
  font-family: var(--display);
  margin: 0 0 8px;
}

.legal {
  padding: 48px 0 80px;
  max-width: 720px;
}

.legal h1 {
  font-family: var(--display);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 16px;
  background: var(--blush-2);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
}

.site-footer h4 {
  margin: 0 0 10px;
  color: var(--magenta);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li,
.site-footer p {
  margin: 0 0 8px;
  color: var(--mute);
  font-size: 0.92rem;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 0 8px;
  font-size: 0.85rem;
  color: var(--mute);
}

.copy {
  text-align: center;
  color: var(--mute);
  font-size: 0.85rem;
}

.copy a {
  color: var(--magenta);
}

.float-wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.hours-modal {
  position: fixed;
  inset: 0;
  background: rgba(43, 21, 32, 0.45);
  display: none;
  place-items: center;
  z-index: 60;
  padding: 20px;
}

.hours-modal.is-open {
  display: grid;
}

.hours-panel {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  width: min(420px, 100%);
  max-height: min(86vh, 640px);
  overflow: auto;
}

.hours-panel h3 {
  font-family: var(--display);
  margin-top: 0;
}

.cookies {
  position: fixed;
  left: 16px;
  bottom: 84px;
  z-index: 35;
  width: min(360px, calc(100% - 32px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  display: none;
  box-shadow: 0 16px 40px rgba(43, 21, 32, 0.12);
}

.cookies.is-on {
  display: block;
}

.cookies h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.cookies p {
  margin: 0 0 12px;
  color: var(--mute);
  font-size: 0.85rem;
}

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

@media (max-width: 900px) {
  .hero {
    min-height: 0;
  }

  .hero img {
    height: 46vh;
  }

  .hero::after {
    display: none;
  }

  .hero-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 32px);
    margin: -56px auto 24px;
  }

  .twins,
  .about,
  .quote-grid,
  .visit,
  .menu-grid,
  .locs,
  .foot-grid,
  .preview,
  .dishes,
  .carta-scans,
  .story-times,
  .story-split,
  .story-split.reverse,
  .story-ings {
    grid-template-columns: 1fr;
  }

  .story-split.reverse .story-split-copy {
    order: 0;
  }

  .story-split img {
    height: 260px;
  }

  .story-hero {
    min-height: 70vh;
  }

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

  .visit iframe {
    min-height: 280px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    position: relative;
  }

  .brand img {
    height: 44px;
    max-width: 168px;
  }

  .brand-text {
    display: none;
  }
}

@media (max-width: 640px) {
  .menu-item {
    grid-template-columns: 1fr;
  }

  .menu-item div {
    padding: 0 16px 16px;
  }

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

  .bar {
    font-size: 0.78rem;
    gap: 4px 16px;
  }

  .visit-copy {
    padding: 28px 22px;
  }

  .about img {
    height: 280px;
  }
}
