/* ==========================================================================
   Bellinis — styles
   Colours, fonts and spacing are set once here as variables.
   ========================================================================== */

:root {
  --paper: #F8F5EF;
  --paper-2: #F0EAE0;
  --ink: #1D1B18;
  --ink-soft: #3B3732;
  --muted: #6B645A;
  --line: #E2D9CB;
  --line-strong: #CFC4B3;
  --accent: #A34E2A;      /* deep peach — small text accents */
  --peach: #EFB08C;       /* Bellini peach — decorative */
  --peach-soft: #F7DECB;
  --night: #1A1917;
  --night-text: #EFE9DF;
  --night-muted: #ABA296;
  --night-line: #3A3632;

  --serif: "Instrument Serif", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Nunito Sans", "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;

  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --section: clamp(88px, 11vw, 160px);
  --radius: 4px;
  --arch: 999px 999px var(--radius) var(--radius);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --header-h: 68px;
}

/* ---------- Base ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1.0625rem/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4, p, figure, blockquote, ul, dl, dd, address { margin: 0; }
ul { padding: 0; list-style: none; }
address { font-style: normal; }
button { font: inherit; color: inherit; }

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Helpers ---------- */

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -60px; left: 16px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

.eyebrow {
  font: 700 .75rem/1.3 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow .sep { color: var(--peach); padding-inline: .35em; }

h2 {
  font: 400 clamp(2.6rem, 1.7rem + 3.6vw, 4.6rem)/1 var(--serif);
  letter-spacing: -.012em;
  text-wrap: balance;
}

h2 em, .tagline em { font-style: italic; color: var(--accent); }

.section-head { display: grid; gap: 18px; margin-bottom: clamp(44px, 6vw, 80px); }
.section-head p:not(.eyebrow) { color: var(--muted); max-width: 46ch; }

@media (min-width: 900px) {
  .section-head--split {
    grid-template-columns: 1fr auto;
    align-items: end;
    column-gap: 48px;
  }
  .section-head--split .eyebrow { grid-column: 1 / -1; }
}

/* ---------- Buttons & links ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65em;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font: 700 .8125rem/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--ink-soft); border-color: var(--ink-soft); }
.btn--line { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--line:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font: 700 .8125rem/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  padding-block: 10px;
  border-bottom: 1px solid currentColor;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 239, .88);
  -webkit-backdrop-filter: saturate(1.3) blur(14px);
  backdrop-filter: saturate(1.3) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}

.brand {
  font: 400 1.625rem/1 var(--sans);
  letter-spacing: -.015em;
  text-decoration: none;
  white-space: nowrap;
}

.reg {
  font-size: .3em;
  vertical-align: top;
  position: relative;
  top: .35em;
  margin-left: .12em;
  letter-spacing: 0;
}

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

.nav a:not(.nav-call) {
  position: relative;
  padding-block: 8px;
  font: 700 .75rem/1 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav a:not(.nav-call)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav a:not(.nav-call):hover::after { transform: scaleX(1); transform-origin: left; }

.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  width: 42px; height: 42px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  transition: background-color .3s;
}
.nav-call:hover { background: var(--ink-soft); }
.nav-call svg { width: 17px; height: 17px; }
.nav-call span { display: none; }

@media (max-width: 719px) {
  .nav-optional { display: none; }
}

@media (min-width: 1024px) {
  .nav-call {
    width: auto;
    padding: 0 22px;
    font: 700 .75rem/1 var(--sans);
    letter-spacing: .12em;
  }
  .nav-call span { display: inline; }
}

/* ---------- Hero ---------- */

.hero { padding-block: clamp(20px, 4vw, 40px) clamp(72px, 9vw, 128px); }

.hero-grid { display: grid; gap: 44px; }

.wordmark {
  margin: 20px 0 22px -.05em;
  font: 300 clamp(4.75rem, 2.4rem + 11vw, 10.25rem)/.88 var(--sans);
  letter-spacing: -.04em;
}

.wordmark .reg { font-size: .16em; top: .55em; margin-left: .2em; }

.tagline {
  font: 400 clamp(2rem, 1.35rem + 2.3vw, 3.1rem)/1.06 var(--serif);
  letter-spacing: -.01em;
  text-wrap: balance;
}

.lede {
  max-width: 36ch;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 1.125rem;
}

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

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 44px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-facts dt { font: 700 .6875rem/1.3 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.hero-facts dd { margin-top: 6px; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: var(--arch);
  background: var(--paper-2);
}

.hero-media figcaption,
.photo-label {
  position: absolute;
  left: 16px; bottom: 16px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(248, 245, 239, .92);
  color: var(--ink);
  font: italic 400 1.0625rem/1.2 var(--serif);
}

/* Phones & tablets: show the photo straight after the tagline */
@media (max-width: 959px) {
  .hero-grid { gap: 0; }
  .hero-copy { display: contents; }
  .hero-copy > .eyebrow { order: 1; }
  .wordmark { order: 2; }
  .tagline { order: 3; }
  .hero-media { order: 4; margin-top: 32px; }
  .lede { order: 5; margin-top: 32px; }
  .hero-actions { order: 6; }
  .hero-facts { order: 7; }
}

@media (min-width: 600px) and (max-width: 959px) {
  .hero-media { width: min(100%, 400px); }
}

@media (max-width: 479px) {
  .hero-actions .btn { flex: 1 1 0; padding: 0 14px; letter-spacing: .1em; }
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(48px, 6vw, 104px);
    min-height: calc(100svh - var(--header-h) - 40px);
  }
  .hero-media img {
    aspect-ratio: 4 / 5;
    height: min(calc(100svh - var(--header-h) - 88px), 800px);
    min-height: 520px;
    width: auto;
    max-width: 100%;
    margin-left: auto;
  }
  .hero-media figcaption { left: auto; right: 20px; bottom: 20px; }
}

/* Load-in motion for the hero */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: rise 1s var(--ease) both; }
  .hero-copy > :nth-child(2) { animation-delay: .08s; }
  .hero-copy > :nth-child(3) { animation-delay: .16s; }
  .hero-copy > :nth-child(4) { animation-delay: .24s; }
  .hero-copy > :nth-child(5) { animation-delay: .32s; }
  .hero-copy > :nth-child(6) { animation-delay: .40s; }
  .hero-media img { animation: settle 1.6s var(--ease) both; }
}
@keyframes rise { from { opacity: 0; transform: translateY(18px); } }
@keyframes settle { from { opacity: 0; transform: scale(1.03); } }

/* ---------- Story ---------- */

.story-grid { display: grid; gap: 48px; }

.story-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--paper-2);
}
.caption {
  margin-top: 14px;
  color: var(--muted);
  font: italic 400 1.0625rem/1.4 var(--serif);
}

.story-copy h2 { margin: 18px 0 28px; }
.story-copy p:not(.eyebrow) { color: var(--ink-soft); max-width: 44ch; }
.story-copy p + p { margin-top: 1em; }

.pull {
  margin-top: 40px;
  padding-left: 24px;
  border-left: 2px solid var(--peach);
}
.pull p {
  font: italic 400 clamp(1.5rem, 1.15rem + 1.3vw, 2.05rem)/1.22 var(--serif);
  color: var(--ink) !important;
}

@media (min-width: 960px) {
  .story-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(56px, 7vw, 120px);
  }
}

/* ---------- Favourites ---------- */

.favourites { padding-top: 0; scroll-margin-top: 40px; }

.fav-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 16px;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  scrollbar-width: none;
}
.fav-grid::-webkit-scrollbar { display: none; }

.fav { scroll-snap-align: start; }

.fav-img {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-2);
}
.fav-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.fav:hover .fav-img img { transform: scale(1.04); }

.fav-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}
.fav h3 { font: 400 1.75rem/1.1 var(--serif); letter-spacing: -.005em; }
.fav .price { font-weight: 600; }
.fav p { margin-top: 6px; color: var(--muted); font-size: 1rem; }

.fav-foot { margin-top: clamp(40px, 5vw, 64px); }

@media (min-width: 720px) {
  .fav-grid {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 40px);
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }
  .fav:nth-child(2) { margin-top: clamp(40px, 6vw, 88px); }
}

/* ---------- Menu ---------- */

.menu { background: var(--paper-2); }

.tab-list {
  display: flex;
  gap: clamp(6px, 3vw, 32px);
  margin-inline: -8px;
  margin-bottom: clamp(40px, 5vw, 64px);
  /* hairline under the tabs, inset to line up with the content */
  background: linear-gradient(var(--line-strong), var(--line-strong)) no-repeat 8px 100% / calc(100% - 16px) 1px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-list::-webkit-scrollbar { display: none; }

.tab {
  position: relative;
  flex: none;
  padding: 16px 8px;
  border: 0;
  background: none;
  color: var(--muted);
  font: 700 .75rem/1 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .3s;
}
.tab:focus-visible { outline-offset: -3px; border-radius: 8px; }
.tab::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px; bottom: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform .45s var(--ease);
}
.tab:hover, .tab[aria-selected="true"] { color: var(--ink); }
.tab[aria-selected="true"]::after { transform: scaleX(1); }

/* Without JavaScript every panel shows, each with its own title */
.panel-title {
  margin-bottom: 32px;
  font: 400 2.25rem/1.1 var(--serif);
}
.tabs-ready .panel-title { display: none; }
.tab-panel + .tab-panel { margin-top: 72px; }
.tabs-ready .tab-panel + .tab-panel { margin-top: 0; }
.tabs-ready .tab-panel:not([hidden]) { animation: fade .5s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } }

.menu-cols { display: grid; gap: 56px; }
.menu-col { display: grid; gap: 56px; align-content: start; }

@media (min-width: 900px) {
  .menu-cols { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: clamp(56px, 8vw, 120px); }

  /* Food: two even columns on desktop, natural order on phones */
  .food-grid {
    grid-template-areas:
      "smalls sandwiches"
      "salads meals"
      "sides  meals";
    grid-template-rows: auto auto 1fr;
    align-items: start;
  }
  .g-smalls { grid-area: smalls; }
  .g-sandwiches { grid-area: sandwiches; }
  .g-salads { grid-area: salads; }
  .g-meals { grid-area: meals; }
  .g-sides { grid-area: sides; }
}

.menu-cat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
  font: italic 400 2rem/1.1 var(--serif);
}
.menu-cat .cols {
  display: grid;
  grid-template-columns: 4.25rem 4.25rem;
  font: 700 .625rem/1 var(--sans);
  font-style: normal;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}

.menu-list > li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  column-gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.menu-list small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: .9375rem;
}
.price {
  font-variant-numeric: tabular-nums lining-nums;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
  text-align: right;
}
.price .per { color: var(--muted); font-weight: 400; padding-inline: .2em; }

/* A dish with a choice of toppings, e.g. the potato rosti */
.options { grid-column: 1 / -1; margin-top: 8px; }
.options li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 24px;
  padding: 5px 0 5px 20px;
  position: relative;
}
.options li::before {
  content: "";
  position: absolute;
  left: 2px; top: 1.05em;
  width: 9px; height: 1px;
  background: var(--muted);
}

/* Wine: bottle and glass columns */
.wine-list > li { grid-template-columns: minmax(0, 1fr) 4.25rem 4.25rem; column-gap: 0; }
.wine-list .item { padding-right: 16px; }

.menu-note {
  margin-top: 28px;
  color: var(--muted);
  font: italic 400 1.1875rem/1.4 var(--serif);
}

.menu-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 32px;
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: .9375rem;
}

/* Small bites — styled after the printed card */
.bites-card {
  max-width: 580px;
  margin-inline: auto;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  text-align: center;
}
.bites-card .card-brand { font: 300 clamp(2.75rem, 2rem + 3vw, 3.75rem)/1 var(--sans); letter-spacing: -.03em; }
.bites-card .card-title { margin-top: 6px; font: italic 400 1.9rem/1.1 var(--serif); color: var(--accent); }
.bites-list { margin-top: 36px; }
.bites-list li { padding: 20px 0; border-top: 1px solid var(--line); }
.bites-list .item { font-size: 1.125rem; }
.bites-list small { display: block; color: var(--muted); font: italic 400 1.125rem/1.35 var(--serif); }
.bites-list .price { display: block; margin-top: 4px; text-align: center; font: italic 400 1.3rem/1.2 var(--serif); color: var(--accent); }

/* ---------- Cakes ---------- */

.cakes-grid { display: grid; gap: 56px; }

.cakes-media { position: relative; padding: 0 16% 16% 0; }
.cakes-media .main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--paper-2);
}
.cakes-media .inset {
  position: absolute;
  right: 0; bottom: 0;
  width: 44%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid var(--paper);
  border-radius: calc(var(--radius) + 8px);
  background: var(--paper-2);
}

.cakes-copy h2 { margin: 18px 0 24px; }
.cakes-copy > p:not(.eyebrow) { color: var(--ink-soft); max-width: 42ch; }

.cake-list { margin: 36px 0 40px; }
.cake-list li { padding: 20px 0; border-top: 1px solid var(--line); }
.cake-list li:last-child { border-bottom: 1px solid var(--line); }
.cake-list h3 { font: 400 1.6rem/1.15 var(--serif); }
.cake-list p { margin-top: 4px; color: var(--muted); font-size: 1rem; }

@media (min-width: 960px) {
  .cakes-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(56px, 8vw, 128px);
  }
}

/* ---------- Visit (dark) ---------- */

.visit { background: var(--night); color: var(--night-text); }
.visit .eyebrow { color: var(--night-muted); }
.visit h2 em { color: var(--peach); }

.visit-grid { display: grid; gap: 56px; }

.visit-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px 48px;
  margin-top: 48px;
}
.visit-info h3 {
  margin-bottom: 12px;
  font: 700 .6875rem/1.3 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--peach);
}
.visit-info p, .visit-info address { font-size: 1.125rem; line-height: 1.6; }
.visit-info p + p { margin-top: .6em; }
.visit-info .muted { color: var(--night-muted); font-size: 1rem; }
.visit-info a { text-decoration-color: var(--night-line); text-underline-offset: 5px; transition: text-decoration-color .3s; }
.visit-info a:hover { text-decoration-color: var(--peach); }

.visit .btn--line { color: var(--night-text); border-color: var(--night-line); }
.visit .btn--line:hover { background: var(--night-text); border-color: var(--night-text); color: var(--night); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 44px; }

.visit-media { position: relative; }
.visit-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--arch);
  background: #2A2724;
}

@media (min-width: 960px) {
  .visit-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(56px, 8vw, 128px);
  }
}

.house-rule {
  margin-top: var(--section);
  padding-top: var(--section);
  border-top: 1px solid var(--night-line);
  text-align: center;
}
.house-rule .no {
  font: 400 clamp(7rem, 3.5rem + 17vw, 15rem)/.8 var(--serif);
  letter-spacing: -.02em;
}
.house-rule .list {
  margin-top: 26px;
  font: 700 .8125rem/1.6 var(--sans);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--night-muted);
}
.house-rule .list span { color: var(--peach); padding-inline: .5em; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--night);
  color: var(--night-muted);
  border-top: 1px solid var(--night-line);
  font-size: .9375rem;
}
.footer-grid {
  display: grid;
  gap: 32px;
  padding-block: 56px 40px;
}
.site-footer .brand { color: var(--night-text); font-size: 2rem; }
.site-footer p { margin-top: 8px; }
.site-footer a { text-decoration-color: var(--night-line); text-underline-offset: 4px; }
.site-footer a:hover { color: var(--night-text); }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 32px;
  padding-block: 20px 28px;
  border-top: 1px solid var(--night-line);
  font-size: .8125rem;
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-grid h3 {
  margin-bottom: 10px;
  font: 700 .6875rem/1.3 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--night-text);
}
.footer-grid p { margin-top: 0; }

/* ---------- Scroll reveal (only when JavaScript is running) ---------- */

.will-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.will-reveal.is-in { opacity: 1; transform: none; }

/* ---------- Accessibility & print ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .will-reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .skip-link, .hero-media, .hero-actions, .story, .favourites, .cakes, .visit-media,
  .visit-actions, .tab-list, .house-rule, .site-footer { display: none !important; }
  body, .menu, .visit { background: #fff; color: #000; }
  .tab-panel[hidden] { display: block !important; }
  .panel-title { display: block !important; }
  .section { padding-block: 24px; }
  .will-reveal { opacity: 1; transform: none; }
}
