@view-transition { navigation: auto; }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-underline-offset: .2em; }
a:hover { color: var(--tomato-deep); }
p, h1, h2, h3, figure, blockquote { margin: 0; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
::selection { background: var(--butter); color: var(--aubergine); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .5rem;
  left: .5rem;
  transform: translateY(-150%);
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--aubergine);
  color: var(--on-dark);
  transition: transform 160ms var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container, .container-wide, .reading {
  width: min(100% - clamp(2rem, 5vw, 6rem), var(--container));
  margin-inline: auto;
}
.container-wide { max-width: var(--container-wide); }
.reading { max-width: var(--reading); }
.section { padding-block: var(--space-xl); }
.section--tight { padding-block: var(--space-lg); }
.section--dark { background: var(--aubergine); color: var(--on-dark); }
.section--tomato { background: var(--tomato); color: var(--on-tomato); }
.section--butter { background: var(--butter); color: var(--aubergine); }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: var(--space-sm);
  color: currentColor;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 1.8rem; height: 3px; background: var(--tomato); }
.section--dark .kicker::before, .section--tomato .kicker::before { background: var(--butter); }
.lede { max-width: 42rem; margin-top: var(--space-md); font-size: var(--step-1); }
.body-copy { max-width: 44rem; color: var(--muted); }
.section--dark .body-copy { color: rgba(255, 250, 242, .76); }
.section-heading { max-width: 56rem; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  border-bottom: 1px solid rgba(36, 19, 31, .12);
  background: rgba(247, 241, 232, .93);
  backdrop-filter: blur(16px);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled { box-shadow: 0 .5rem 2rem rgba(36, 19, 31, .09); }
.header-inner {
  display: flex;
  align-items: center;
  width: min(100% - clamp(1.25rem, 4vw, 5rem), var(--container-wide));
  height: 100%;
  margin-inline: auto;
  gap: var(--space-md);
}
.brand {
  display: inline-flex;
  flex-direction: column;
  flex: none;
  text-decoration: none;
  line-height: 1;
}
.brand:hover { color: var(--ink); }
.brand__name { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: -.03em; }
.brand__tag { margin-top: .25rem; color: var(--tomato-deep); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.primary-nav { margin-left: auto; }
.primary-nav__list { display: flex; align-items: center; gap: clamp(.65rem, 1.25vw, 1.5rem); margin: 0; padding: 0; list-style: none; }
.primary-nav a:not(.btn) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.primary-nav a:not(.btn)[aria-current="page"] { color: var(--tomato-deep); }
.primary-nav a:not(.btn)[aria-current="page"]::after { content: ""; width: .42rem; height: .42rem; margin-left: .4rem; border-radius: 50%; background: var(--tomato); }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle__lines { display: grid; gap: 5px; width: 24px; margin: auto; }
.nav-toggle__lines span { width: 100%; height: 2px; background: currentColor; transition: transform 180ms var(--ease-out), opacity 120ms ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines span:first-child { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines span:last-child { transform: translateY(-7px) rotate(-45deg); }
main { padding-top: var(--header-h); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .78rem 1.2rem;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--tomato); color: var(--on-tomato); }
.btn--primary:hover { background: var(--tomato-deep); color: var(--on-tomato); }
.btn--dark { background: var(--aubergine); color: var(--on-dark); }
.btn--dark:hover { background: var(--aubergine-2); color: var(--on-dark); }
.btn--light { background: var(--porcelain-2); color: var(--aubergine); }
.btn--light:hover { background: var(--butter); color: var(--aubergine); }
.btn--outline { border-color: currentColor; background: transparent; }
.btn--outline:hover { border-color: var(--tomato); background: var(--tomato); color: var(--on-tomato); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: var(--space-md); }

:focus-visible { outline: 3px solid var(--butter); outline-offset: 4px; }

.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  background: var(--aubergine);
  color: var(--on-dark);
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36, 19, 31, .97) 0 33%, rgba(36, 19, 31, .45) 58%, rgba(36, 19, 31, .72) 100%);
  pointer-events: none;
}
.home-hero__backdrop { position: absolute; inset: 0 0 0 28%; width: auto; height: 100%; }
.home-hero__backdrop img { position: absolute; inset: 0; width: 100%; height: 100%; }
.home-hero__backdrop img { object-fit: cover; object-position: center 60%; filter: saturate(.9) contrast(1.05); }
.home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(18rem, .8fr) minmax(28rem, 1.2fr);
  align-items: center;
  gap: var(--space-lg);
  min-height: calc(100svh - var(--header-h));
  padding-block: var(--space-lg);
}
.home-hero__copy { position: relative; z-index: 3; }
.home-hero h1 { max-width: 8.5ch; }
.home-hero h1 span { display: block; }
.home-hero h1 span:last-child { color: var(--butter); }
.home-hero__sub { max-width: 34rem; margin-top: var(--space-md); color: rgba(255, 250, 242, .84); font-size: var(--step-1); }
.home-hero__collage { position: relative; min-height: min(70vh, 48rem); }
.hero-photo { position: absolute; overflow: hidden; margin: 0; border: .5rem solid var(--porcelain); box-shadow: var(--shadow-soft); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo--main { inset: 3% 5% 7% 20%; transform: rotate(2deg); }
.hero-photo--main img { object-position: center; }
.hero-photo--detail { right: 0; bottom: 0; width: 35%; aspect-ratio: 3 / 4; transform: rotate(-5deg); border-color: var(--butter); }
.hero-stamp {
  position: absolute;
  z-index: 3;
  top: 4%;
  right: 2%;
  display: grid;
  place-items: center;
  width: 8rem;
  aspect-ratio: 1;
  padding: 1rem;
  border-radius: 50%;
  background: var(--tomato);
  color: var(--on-tomato);
  font-family: var(--font-display);
  font-size: .85rem;
  line-height: 1.05;
  text-align: center;
  transform: rotate(7deg);
}
.hero-hours {
  position: absolute;
  z-index: 4;
  left: 8%;
  bottom: 2%;
  max-width: 15rem;
  padding: .75rem 1rem;
  background: var(--butter);
  color: var(--aubergine);
  font-weight: 700;
  line-height: 1.2;
  transform: rotate(-2deg);
}

.proof-strip { border-bottom: 1px solid var(--line); background: var(--porcelain-2); }
.proof-strip__inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { padding: var(--space-md); border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; font-family: var(--font-display); font-size: var(--step-1); line-height: 1; }
.proof-item span { color: var(--muted); font-size: .92rem; }

.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--space-xl); align-items: start; }
.intro-grid__copy { padding-top: var(--space-sm); }
.intro-grid__copy p + p { margin-top: 1rem; }
.intro-image { position: relative; overflow: hidden; min-height: 32rem; border-radius: var(--radius-lg); }
.intro-image img { width: 100%; height: 100%; object-fit: cover; }
.intro-image::after { content: "Pasta · Grill · Calamari"; position: absolute; right: 0; bottom: 0; padding: .85rem 1rem; background: var(--butter); color: var(--aubergine); font-weight: 700; }

.table-story { position: relative; background: var(--tomato); color: var(--on-tomato); }
.table-pin { position: relative; display: grid; grid-template-columns: minmax(18rem, .65fr) minmax(34rem, 1.35fr); align-items: center; gap: var(--space-lg); min-height: 100svh; padding-block: var(--space-lg); }
.table-copy { position: relative; z-index: 5; }
.table-copy p { max-width: 31rem; margin-top: var(--space-md); color: rgba(255, 250, 242, .86); }
.table-stage { position: relative; min-height: min(76vh, 52rem); border-radius: 48% 48% 44% 44% / 48% 48% 44% 44%; background: var(--porcelain-2); box-shadow: inset 0 0 0 .65rem rgba(36, 19, 31, .12), var(--shadow-soft); overflow: hidden; }
.table-runner { position: absolute; inset: 0 39%; background: var(--butter); transform-origin: top; will-change: transform, clip-path, opacity; }
.plate { position: absolute; z-index: 2; overflow: hidden; margin: 0; border: .65rem solid var(--porcelain-2); border-radius: 50%; background: var(--porcelain-2); box-shadow: 0 1rem 2rem rgba(36, 19, 31, .2); backface-visibility: hidden; will-change: transform; }
.plate img { width: 100%; height: 100%; object-fit: cover; }
.plate--1 { left: 8%; top: 9%; width: 36%; aspect-ratio: 1; }
.plate--2 { right: 8%; top: 12%; width: 31%; aspect-ratio: 1; }
.plate--3 { left: 14%; bottom: 7%; width: 29%; aspect-ratio: 1; }
.plate--4 { right: 9%; bottom: 5%; width: 37%; aspect-ratio: 1; }
.table-note { position: absolute; z-index: 3; inset: 45% auto auto 50%; width: 9rem; padding: .7rem; background: var(--aubergine); color: var(--on-dark); font-weight: 700; line-height: 1.1; text-align: center; transform: translate(-50%, -50%) rotate(-3deg); }

.route-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-sm); margin-top: var(--space-lg); }
.route-card { position: relative; min-width: 0; min-height: 30rem; overflow: hidden; border-radius: var(--radius-md); color: var(--on-dark); text-decoration: none; }
.route-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease-out); }
.route-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(36, 19, 31, .92)); }
.route-card__body { position: absolute; z-index: 2; inset: auto 0 0; padding: var(--space-md); }
.route-card__body span { display: block; margin-top: .5rem; color: rgba(255, 250, 242, .78); }
.route-card:hover { color: var(--on-dark); }

.cta-band { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: var(--space-lg); }
.cta-band__actions { justify-self: end; }

.page-hero { position: relative; min-height: min(72svh, 48rem); overflow: hidden; background: var(--aubergine); color: var(--on-dark); }
.page-hero__grid { display: grid; grid-template-columns: .85fr 1.15fr; min-height: min(72svh, 48rem); }
.page-hero__copy { position: relative; z-index: 3; display: flex; min-width: 0; flex-direction: column; justify-content: flex-end; padding: var(--space-xl) var(--space-lg); background: var(--aubergine); }
.page-hero__copy h1 { max-width: 11ch; overflow-wrap: break-word; hyphens: manual; }
.page-hero__copy p { max-width: 34rem; margin-top: var(--space-md); color: rgba(255, 250, 242, .82); font-size: var(--step-1); }
.page-hero__image { position: relative; overflow: hidden; min-height: 28rem; }
.page-hero__image img { position: absolute; inset: -5%; width: 110%; height: 110%; max-width: none; object-fit: cover; }
.page-hero__label { position: absolute; z-index: 2; right: var(--space-md); bottom: var(--space-md); padding: .6rem .8rem; background: var(--butter); color: var(--aubergine); font-weight: 700; }
[data-page="contact"] .page-hero__copy h1 { max-width: 100%; overflow-wrap: normal; font-size: clamp(2.8rem, 4vw, 4rem); }
[data-page="menu"] .page-hero__copy h1 { max-width: 13ch; overflow-wrap: normal; word-break: normal; font-size: clamp(3.2rem, 4.5vw, 4.25rem); }

.notice { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; max-width: 62rem; padding: var(--space-md); border: 2px solid var(--aubergine); border-radius: var(--radius-md); background: var(--porcelain-2); }
.notice__mark { display: grid; place-items: center; width: 2.5rem; aspect-ratio: 1; border-radius: 50%; background: var(--butter); font-weight: 700; }

.dish-list { margin-top: var(--space-lg); border-top: 2px solid var(--aubergine); }
.dish-row { display: grid; grid-template-columns: minmax(18rem, .85fr) minmax(20rem, 1.15fr); gap: var(--space-lg); align-items: center; padding-block: var(--space-lg); border-bottom: 1px solid var(--line); }
.dish-row:nth-child(even) .dish-row__media { order: 2; }
.dish-row__media { overflow: hidden; min-height: 27rem; border-radius: var(--radius-lg); }
.dish-row__media img { width: 100%; height: 100%; object-fit: cover; }
.dish-row__copy { max-width: 34rem; }
.dish-row__copy p { margin-top: var(--space-sm); color: var(--muted); }
.dish-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: var(--space-sm); }
.dish-tag { padding: .35rem .65rem; border-radius: var(--radius-pill); background: var(--butter); color: var(--aubergine); font-size: .82rem; font-weight: 700; }
.price-note { margin-top: var(--space-sm); color: var(--tomato-deep); font-weight: 700; }

.photo-mosaic { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-template-rows: repeat(4, 8.5rem); gap: var(--space-sm); margin-top: var(--space-lg); }
.photo-mosaic figure { overflow: hidden; min-width: 0; margin: 0; border-radius: var(--radius-md); }
.photo-mosaic img { width: 100%; height: 100%; object-fit: cover; }
.photo-mosaic figure:nth-child(1) { grid-column: 1 / span 6; grid-row: 1 / span 4; }
.photo-mosaic figure:nth-child(2) { grid-column: 7 / span 3; grid-row: 1 / span 2; }
.photo-mosaic figure:nth-child(3) { grid-column: 10 / span 3; grid-row: 1 / span 2; }
.photo-mosaic figure:nth-child(4) { grid-column: 7 / span 3; grid-row: 3 / span 2; }
.photo-mosaic figure:nth-child(5) { grid-column: 10 / span 3; grid-row: 3 / span 2; }

.split-feature { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: var(--space-xl); }
.split-feature__media { overflow: hidden; min-height: 36rem; border-radius: var(--radius-lg); }
.split-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.split-feature__copy p { margin-top: var(--space-md); color: var(--muted); }
.section--dark .split-feature__copy p { color: rgba(255, 250, 242, .76); }

.hospitality-section { overflow: clip; background: var(--leaf); color: var(--on-dark); }
.hospitality-composition { display: grid; grid-template-columns: minmax(20rem, .85fr) minmax(30rem, 1.15fr); gap: var(--space-xl); align-items: center; }
.hospitality-photo { position: relative; min-height: 38rem; margin: 0; }
.hospitality-photo::before { content: ""; position: absolute; z-index: 2; inset: -1.2rem 1.2rem 1.2rem -1.2rem; border: 2px solid var(--butter); border-radius: 46% 46% var(--radius-lg) var(--radius-lg); pointer-events: none; }
.hospitality-photo img { width: 100%; height: 100%; min-height: 38rem; object-fit: cover; border-radius: 46% 46% var(--radius-lg) var(--radius-lg); }
.hospitality-photo figcaption { position: absolute; z-index: 3; right: -1rem; bottom: 2rem; padding: .75rem 1rem; background: var(--butter); color: var(--aubergine); font-weight: 700; transform: rotate(-2deg); }
.hospitality-copy h2 { max-width: 12ch; }
.hospitality-notes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; margin-top: var(--space-lg); }
.hospitality-notes article { min-width: 0; padding: 1rem; border: 1px solid rgba(255, 250, 242, .24); border-radius: var(--radius-md); background: rgba(255, 250, 242, .08); }
.hospitality-notes span { color: var(--butter); font-size: .78rem; font-weight: 700; letter-spacing: .12em; }
.hospitality-notes strong { display: block; margin-top: .7rem; font-family: var(--font-display); font-size: var(--step-1); line-height: 1; }
.hospitality-notes p { margin-top: .75rem; color: rgba(255, 250, 242, .78); }
.hospitality-copy blockquote { max-width: 40rem; margin-top: var(--space-lg); font-size: var(--step-1); line-height: 1.35; }
.hospitality-copy cite { display: block; margin-top: .65rem; color: var(--butter); font-style: normal; font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: var(--space-lg); align-items: stretch; }
.contact-card { display: flex; height: 100%; min-width: 0; flex-direction: column; padding: var(--space-lg); border-radius: var(--radius-lg); background: var(--porcelain-2); box-shadow: var(--shadow-soft); }
.contact-card .btn-row { margin-top: auto; padding-top: var(--space-md); }
.contact-card--dark { background: var(--aubergine); color: var(--on-dark); }
.contact-number { display: inline-block; margin-top: var(--space-sm); font-family: var(--font-display); font-size: var(--step-3); line-height: 1; text-decoration: none; }
.contact-number:hover { color: var(--butter); }
.hours-table { width: 100%; margin-top: var(--space-md); border-collapse: collapse; }
.hours-table th, .hours-table td { padding: .8rem 0; border-bottom: 1px solid rgba(103, 91, 97, .22); text-align: left; }
.hours-table td { text-align: right; font-weight: 700; }
.hours-table .closed th, .hours-table .closed td { color: var(--tomato-deep); }
.faq-list { margin-top: var(--space-lg); border-top: 2px solid currentColor; }
.faq-item { padding-block: var(--space-md); border-bottom: 1px solid var(--line); }
.faq-item h3 { font-family: var(--font-body); font-size: var(--step-1); font-weight: 700; letter-spacing: 0; line-height: 1.2; }
.faq-item p { max-width: 48rem; margin-top: .6rem; color: var(--muted); }

.legal { padding-block: var(--space-xl); }
.legal h1 { font-size: var(--step-3); overflow-wrap: break-word; hyphens: auto; }
.legal h2 { margin-top: var(--space-lg); font-family: var(--font-body); font-size: var(--step-1); font-weight: 700; letter-spacing: 0; line-height: 1.2; }
.legal p, .legal address, .legal ul { margin-top: var(--space-sm); }
.legal address { font-style: normal; }
.legal .notice { margin-top: var(--space-lg); }
.todo { display: inline-block; padding: .1rem .35rem; background: #ffe2db; color: #842516; font-weight: 700; }

.site-footer { background: #180d15; color: var(--on-dark); }
.footer-main { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: var(--space-lg); padding-block: var(--space-lg); }
.footer-title { margin-bottom: .8rem; color: var(--butter); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-main ul { margin: 0; padding: 0; list-style: none; }
.footer-main li + li { margin-top: .45rem; }
.footer-main a:not(.btn) { color: rgba(255, 250, 242, .82); }
.footer-main a:not(.btn):hover { color: var(--butter); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-block: 1.1rem; border-top: 1px solid rgba(255, 250, 242, .15); color: rgba(255, 250, 242, .58); font-size: .82rem; }

.js [data-reveal] { opacity: 0; transform: translateY(1rem); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }

@media (hover: hover) and (pointer: fine) {
  .route-card:hover img { transform: scale(1.045); }
  .hero-photo { transition: transform 500ms var(--ease-out); }
}

@media (max-width: 1180px) {
  :root { --header-h: 4.75rem; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: var(--porcelain-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-.75rem);
    transform-origin: top right;
    transition: opacity 180ms ease, transform 220ms var(--ease-drawer), visibility 0s linear 220ms;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
  .primary-nav__list { align-items: stretch; flex-direction: column; gap: 0; width: min(100% - 2rem, 42rem); margin-inline: auto; padding-block: 1rem 1.5rem; }
  .primary-nav a:not(.btn) { min-height: 52px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .primary-nav .btn { margin-top: 1rem; }
  html.nav-open, html.nav-open body { overflow: hidden; }
  .home-hero__inner { grid-template-columns: .9fr 1.1fr; }
  .route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .home-hero__backdrop { inset: 0; }
  .home-hero__inner { grid-template-columns: 1fr; align-content: center; }
  .home-hero__collage { position: absolute; inset: 0 -12% 0 35%; opacity: .36; }
  .home-hero::after { background: linear-gradient(90deg, rgba(36, 19, 31, .97), rgba(36, 19, 31, .66)); }
  .hero-stamp { right: 8%; }
  .hero-hours { left: auto; right: 7%; bottom: 7%; }
  .proof-strip__inner { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .intro-grid, .split-feature, .contact-grid, .cta-band { grid-template-columns: 1fr; }
  .cta-band__actions { justify-self: start; }
  .table-pin { grid-template-columns: 1fr; grid-template-rows: auto minmax(22rem, 1fr); min-height: 100svh; gap: 1rem; padding-block: 1rem; }
  .table-copy h2 { font-size: clamp(2rem, 8.5vw, 3.2rem); }
  .table-copy p { margin-top: .75rem; font-size: .96rem; line-height: 1.55; }
  .table-copy .btn-row { margin-top: 1rem; }
  .table-stage { display: block; min-height: min(53svh, 28rem); padding: 0; border-radius: 46% 46% 42% 42% / 46% 46% 42% 42%; }
  .table-runner { display: block; inset: 0 42%; }
  .plate { position: absolute; border-width: .38rem; border-radius: 50%; transform: none; backface-visibility: visible; will-change: auto; }
  .plate--1 { inset: 5% auto auto 4%; width: 45%; aspect-ratio: 1; }
  .plate--2 { inset: 8% 4% auto auto; width: 41%; aspect-ratio: 1; }
  .plate--3 { inset: auto auto 5% 8%; width: 39%; aspect-ratio: 1; }
  .plate--4 { inset: auto 3% 4% auto; width: 45%; aspect-ratio: 1; }
  .table-note { display: block; inset: 47% auto auto 50%; width: 7.25rem; padding: .55rem; font-size: .76rem; }
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__copy { min-height: 24rem; }
  .page-hero__image { min-height: 26rem; }
  .hospitality-composition { grid-template-columns: 1fr; }
  .hospitality-photo, .hospitality-photo img { min-height: 30rem; }
  .dish-row { grid-template-columns: 1fr; }
  .dish-row:nth-child(even) .dish-row__media { order: 0; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  :root { --header-h: 4.4rem; }
  .brand__name { font-size: .92rem; }
  .brand__tag { font-size: .59rem; }
  .header-inner { width: min(100% - 1.25rem, var(--container-wide)); }
  .home-hero { min-height: calc(100svh - var(--header-h)); }
  .home-hero__inner { min-height: calc(100svh - var(--header-h)); padding-block: var(--space-md); }
  .home-hero h1 { max-width: 7ch; font-size: clamp(2.8rem, 15vw, 4.7rem); }
  .home-hero__sub { max-width: 25rem; font-size: 1.08rem; }
  .home-hero__collage { inset: 0 -55% 0 25%; }
  .hero-photo--main { inset: 5% 4% 13% 8%; }
  .hero-photo--detail { width: 30%; }
  .hero-stamp { top: 5%; right: 4%; width: 6.3rem; font-size: .68rem; }
  .hero-hours { right: 4%; bottom: 4%; max-width: 11rem; font-size: .76rem; }
  .btn-row { align-items: stretch; flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .intro-image, .split-feature__media { min-height: 24rem; }
  .route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 24rem; }
  .table-pin { width: min(100% - 1.25rem, var(--container-wide)); }
  .table-stage { min-height: min(51svh, 26rem); }
  .page-hero__copy { padding: var(--space-lg) 1rem; }
  .page-hero__copy h1 { font-size: clamp(2.7rem, 13vw, 4.6rem); }
  .page-hero__image { min-height: 21rem; }
  .dish-row__media { min-height: 20rem; }
  .photo-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 11rem); gap: .65rem; }
  .photo-mosaic figure:nth-child(1) { grid-column: 1 / -1; grid-row: 1; }
  .photo-mosaic figure:nth-child(2) { grid-column: 1; grid-row: 2; }
  .photo-mosaic figure:nth-child(3) { grid-column: 2; grid-row: 2; }
  .photo-mosaic figure:nth-child(4) { grid-column: 1; grid-row: 3; }
  .photo-mosaic figure:nth-child(5) { grid-column: 2; grid-row: 3; }
  .hospitality-photo, .hospitality-photo img { min-height: 24rem; }
  .hospitality-photo::before { inset: -.6rem .6rem .6rem -.6rem; }
  .hospitality-photo figcaption { right: .5rem; bottom: 1rem; max-width: calc(100% - 2rem); }
  .hospitality-notes { grid-template-columns: 1fr; }
  .contact-card { padding: var(--space-md); }
  .contact-number { font-size: clamp(2rem, 11vw, 3rem); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 900px) and (prefers-reduced-motion: no-preference) {
  .table-story { height: calc(100svh + 96rem); }
  .table-pin { position: sticky; top: 0; }
}

@media (min-width: 2200px) {
  .home-hero__inner { grid-template-columns: minmax(26rem, .75fr) minmax(52rem, 1.25fr); }
  .home-hero__collage { min-height: 58rem; }
  .hero-photo--main { inset: 2% 8% 6% 16%; }
  .intro-grid { grid-template-columns: .7fr 1.3fr; }
  .route-card { min-height: 36rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .route-card img, .page-hero__image img { transform: none !important; }
}

@media (prefers-contrast: more) {
  :root { --line: #76666e; }
  .site-header { background: var(--porcelain); backdrop-filter: none; }
}

/* THAEVEN-Credit — Pflicht auf jeder Kundenseite, Standard seit 2026-07-17:
   dezente Zeile in derselben Leiste wie das Copyright, KEIN umrandeter Button.
   Der Credit gehört der Agentur, nicht der Kundenseite — auffindbar, aber nie
   in Konkurrenz zu deren CTAs. Wortlaut exakt "Website von THAEVEN".
   Kein width:100% — das erzwänge über flex-wrap eine eigene Zeile darunter.
   Farbe per inherit: der Footer ist hier dunkel, ein fester Tintenwert wäre
   unsichtbar. */
.footer-bottom .thaeven-credit { margin: 0; opacity: .8; letter-spacing: .02em; color: inherit; }
.footer-bottom .thaeven-credit a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom .thaeven-credit a:hover { opacity: .75; }
