@font-face {
  font-family: "Libre Baskerville";
  src: url("../fonts/libre-baskerville-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --page-background: #f2f2f2;
  --cream: #f2f2f2;
  --cream-strong: #e8e8e8;
  --paper: #f2f2f2;
  --ink: #241e1b;
  --muted: #6c5e56;
  --wine: #951B81;
  --wine-dark: #951B81;
  --gold: #bf9253;
  --line: rgba(36, 30, 27, 0.14);
  --shadow: 0 22px 60px rgba(35, 19, 11, 0.10);
  --content-width: 1520px;
  --page-gutter: clamp(24px, 4vw, 72px);
  --serif: Georgia, "Times New Roman", serif;
  --font-heading: "Libre Baskerville", Baskerville, Georgia, serif;
  --sans: "Avenir Next", "Avenir", "Helvetica Neue", Arial, sans-serif;
  --body-copy-size: clamp(1.08rem, 1.35vw, 1.25rem);
  --body-copy-line-height: 1.62;
  --kicker-size: clamp(1rem, 1.15vw, 1.12rem);
  --kicker-spacing: 0.22em;
  --kicker-gap: clamp(18px, 2vw, 28px);
  --section-space: clamp(84px, 8vw, 132px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--page-background);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.72;
}

main {
  background: var(--page-background);
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

[hidden] {
  display: none !important;
}

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

button,
a,
input,
select {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--wine-dark);
  transform: translateY(-180%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  min-height: 4rem;
  color: #fff;
  background: transparent;
  box-shadow: none;
  transition: background-color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-solid {
  background: rgba(18, 13, 14, 0.94);
  box-shadow: 0 7px 18px rgba(18, 13, 14, 0.12);
}

.legal-page .site-header {
  color: var(--ink);
  background: rgba(242, 242, 242, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.legal-page .hero-brand .brand-logo {
  filter: brightness(0) saturate(100%);
}

.nav-wrap,
.hero-inner,
.section-inner,
.footer-inner {
  width: min(100% - (var(--page-gutter) * 2), var(--content-width));
  margin-inline: auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 2.3vw, 40px);
  min-height: 4rem;
  padding-block: 0.625rem;
}

.hero-brand {
  position: absolute;
  top: clamp(8px, 1vw, 14px);
  left: max(var(--page-gutter), calc((100% - var(--content-width)) / 2));
  z-index: 110;
  display: block;
}

.brand-logo {
  width: clamp(190px, 11.5vw, 220px);
  height: auto;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.2rem;
  height: 1px;
  margin: 0;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle::before {
  transform: translate(-50%, -50%) translateY(-0.38rem);
}

.nav-toggle span {
  transform: translate(-50%, -50%);
}

.nav-toggle::after {
  transform: translate(-50%, -50%) translateY(0.38rem);
}

.nav-open .nav-toggle span {
  opacity: 0;
}

.nav-open .nav-toggle::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-open .nav-toggle::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 34px);
}

.nav-links,
.legal-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.55vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a,
.phone-link {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a,
.phone-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-block: 0.45rem;
  white-space: nowrap;
}

.nav-links a::after,
.phone-link::after {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after,
.nav-links a[aria-current="page"]::after,
.phone-link:hover::after,
.phone-link:focus-visible::after {
  transform: scaleX(1);
}

.phone-link {
  justify-content: center;
  min-height: 2.75rem;
  padding-inline: 0.15rem;
  border: 0;
  background: transparent;
  border-radius: 0;
  text-align: center;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: #fff;
  background: #120d0a;
  isolation: isolate;
  overflow: hidden;
}

#start,
#ueber-anna,
#philosophie,
#speisekarte,
#reservierung,
#kontakt {
  scroll-margin-top: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform-origin: center center;
  will-change: transform;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.48) 34%, rgba(0, 0, 0, 0.12) 72%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.06) 50%, rgba(0, 0, 0, 0.28) 100%);
  content: "";
}

.hero-inner {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding-block: clamp(126px, 12vw, 180px) clamp(78px, 8vw, 120px);
}

.hero-content {
  max-width: 900px;
}

.hero-badge {
  position: fixed;
  top: calc(4rem + 90px);
  right: clamp(20px, 3vw, 52px);
  z-index: 96;
  width: clamp(151px, 13.8vw, 211px);
  height: auto;
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 var(--kicker-gap);
  color: var(--wine);
  font-family: var(--sans);
  font-size: var(--kicker-size);
  font-weight: 400;
  letter-spacing: var(--kicker-spacing);
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0bd66;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 400;
  line-height: 1.18;
}

h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 5.7vw, 5.95rem);
}

.hero-title-line {
  display: block;
}

.hero-title-nowrap {
  white-space: nowrap;
}

h2 {
  font-size: clamp(2.35rem, 4.7vw, 4.55rem);
}

h3 {
  font-size: clamp(1.28rem, 1.65vw, 1.85rem);
}

.hero-lead {
  max-width: 900px;
  margin: clamp(22px, 2.6vw, 36px) 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--sans);
  font-size: var(--body-copy-size);
  font-weight: 300;
  line-height: var(--body-copy-line-height);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(32px, 3.4vw, 48px);
}

.section-actions {
  justify-content: center;
  align-items: center;
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.84rem 1.65rem;
  border: 0;
  background: var(--wine);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero .button {
  min-height: 3.65rem;
  padding: 1rem 2rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.hero .button:hover,
.hero .button:focus-visible {
  background: var(--wine-dark);
}

.button.gold {
  background: var(--gold);
  color: #25150d;
}

.button:disabled {
  cursor: wait;
}

.section {
  padding: var(--section-space) var(--page-gutter);
}

.text-block p:not(.section-kicker) {
  max-width: 760px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: var(--body-copy-size);
  font-weight: 300;
  line-height: var(--body-copy-line-height);
}

.image-stage {
  position: relative;
}

.about-sequence {
  position: relative;
  min-height: 282vh;
  min-height: 282svh;
  background: var(--page-background);
  scroll-margin-top: 0;
}

.about-sticky {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding-block: clamp(84px, 7vw, 112px) clamp(34px, 4vw, 64px);
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(42px, 4vw, 72px);
}

.about-layout h2 {
  font-size: clamp(2.35rem, 2.7vw, 2.65rem);
}

.about-visual {
  isolation: isolate;
  width: 100%;
  min-width: 0;
  margin-left: 0;
  padding-block: clamp(8px, 1vw, 18px) clamp(18px, 2vw, 34px);
}

.about-dish {
  position: relative;
  z-index: 1;
  width: 109%;
  height: auto;
  margin-left: -4.5%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(35, 19, 11, 0.10));
}

.about-portrait {
  position: absolute;
  bottom: 0;
  left: clamp(84px, 8vw, 150px);
  z-index: 2;
  width: clamp(150px, 16vw, 270px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(35, 19, 11, 0.16));
}

.about-signature {
  width: clamp(150px, 12vw, 198px);
  height: auto;
  margin-top: clamp(38px, 3vw, 48px);
}

.about-sequence.is-scroll-sequence .about-dish,
.about-sequence.is-scroll-sequence .about-portrait {
  will-change: transform, opacity;
}

.values-section {
  background: var(--page-background);
}

.values-section .centered {
  max-width: 1120px;
}

.values-section h2 {
  font-size: clamp(2.2rem, 2.8vw, 3rem);
}

.centered {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.centered > p:not(.section-kicker) {
  margin: 1.35rem auto 0;
  color: var(--muted);
}

.centered > p:not(.section-kicker),
.value-item p,
.highlight-body p,
.reservation-layout > div > p:not(.section-kicker) {
  font-family: var(--sans);
  font-size: var(--body-copy-size);
  font-weight: 300;
  line-height: var(--body-copy-line-height);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 70px);
  margin-top: clamp(58px, 5.5vw, 88px);
}

.value-item {
  text-align: center;
}

.value-icon {
  display: block;
  width: clamp(62px, 4vw, 70px);
  height: clamp(62px, 4vw, 70px);
  margin: 0 auto clamp(20px, 1.7vw, 28px);
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-item h3 {
  font-size: clamp(1.05rem, 1.2vw, 1.35rem);
  line-height: 1.32;
}

.value-item p {
  max-width: 17.5rem;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.75;
}

.highlights {
  padding-bottom: clamp(120px, 12vw, 210px);
  background: var(--page-background);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 36px);
  margin-top: clamp(42px, 4.5vw, 68px);
}

.highlight-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: transparent;
}

.highlight-card img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  background: transparent;
}

.reveal-enabled .scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal-enabled.reveal-ready .scroll-reveal {
  transition:
    opacity 950ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 950ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-enabled .highlight-card.scroll-reveal {
  transform: translateY(18px) scale(0.99);
}

.reveal-enabled.reveal-ready .highlight-card.scroll-reveal {
  transition-duration: 1250ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-enabled .highlight-card.scroll-reveal.is-visible {
  transform: translateY(0) scale(1);
}

.highlight-body {
  padding: clamp(24px, 2vw, 32px) 0 0;
  text-align: center;
}

.highlight-body h3 {
  font-size: clamp(1.3rem, 1.65vw, 1.75rem);
  line-height: 1.32;
}

.highlight-body p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.highlights .section-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 250px));
  margin-top: clamp(40px, 5vw, 64px);
}

.highlights .section-actions .button {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.9rem 1.35rem;
  background: var(--wine);
  color: #fff;
  font-weight: 400;
}

.highlights .section-actions .button:hover,
.highlights .section-actions .button:focus-visible {
  background: var(--wine-dark);
  color: #fff;
}

.reservation-band {
  padding-block: clamp(60px, 5.5vw, 88px);
  background: var(--wine);
  color: #fff;
}

.reservation-band .section-kicker {
  color: #f6e2b4;
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.45fr);
  gap: clamp(40px, 5vw, 82px);
  align-items: start;
}

.reservation-band h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.reservation-band p {
  color: rgba(255, 255, 255, 0.84);
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-consent,
.form-actions {
  grid-column: 1 / -1;
}

.form-actions {
  margin-top: clamp(0.45rem, 1vw, 0.7rem);
}

label,
.form-consent {
  font-size: 0.93rem;
  font-weight: 400;
}

input,
select {
  width: 100%;
  min-height: 3.15rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--sans);
  font-weight: 300;
  padding: 0.75rem 0.85rem;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.reservation-form input:focus-visible,
.reservation-form select:focus-visible {
  border-color: rgba(255, 255, 255, 0.78);
  outline: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24);
}

select {
  color-scheme: dark;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.88);
}

.form-consent a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(246, 226, 180, 0.72);
  text-underline-offset: 0.18em;
}

.form-consent input {
  width: 1.15rem;
  min-width: 1.15rem;
  height: 1.15rem;
  min-height: 1.15rem;
  margin-top: 0.25rem;
}

.form-message {
  grid-column: 1 / -1;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.12);
}

.form-message.is-success {
  border-left: 3px solid #d7d9a7;
}

.form-message.is-error {
  border-left: 3px solid #f4bc9d;
}

.site-footer {
  padding: clamp(58px, 6vw, 92px) var(--page-gutter) 0;
  background: #18110f;
  color: rgba(255, 255, 255, 0.82);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(190px, 1.1fr) minmax(180px, 0.9fr) minmax(240px, 1.15fr) minmax(190px, 0.85fr);
  gap: clamp(38px, 5vw, 84px);
  align-items: start;
}

.footer-brand-area a {
  display: inline-block;
}

.footer-logo {
  width: clamp(180px, 14vw, 236px);
  height: auto;
}

.footer-heading {
  margin: 0 0 1.25rem;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-column p,
.footer-column address,
.footer-column a,
.footer-bottom p {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
}

.footer-column p {
  margin: 0;
  white-space: pre-line;
}

.footer-column address {
  display: grid;
  gap: 0.28rem;
  margin: 0;
  font-style: normal;
}

.footer-column address strong {
  color: #fff;
  font-weight: 500;
}

.footer-column address span,
.footer-column address a {
  display: block;
}

.footer-column address a:hover,
.footer-column address a:focus-visible,
.legal-links a:hover,
.legal-links a:focus-visible {
  color: #f6e2b4;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.45rem;
  background: var(--wine);
  color: #fff;
  font-size: 0.76rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em;
  line-height: 1.2 !important;
  text-align: center;
  text-transform: uppercase;
}

.footer-whatsapp:hover,
.footer-whatsapp:focus-visible {
  background: #951B81;
}

.footer-whatsapp.is-unavailable {
  cursor: not-allowed;
  opacity: 0.72;
}

.footer-bottom {
  margin-top: clamp(46px, 5vw, 76px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-block: 1.4rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.site-footer .legal-links {
  justify-content: flex-end;
}

.site-footer .legal-links a {
  color: rgba(255, 255, 255, 0.72);
}

.legal-page {
  background: var(--page-background);
}

.legal-hero {
  padding: clamp(154px, 12vw, 178px) 0 clamp(42px, 4.5vw, 62px);
  background: var(--page-background);
  color: var(--ink);
  text-align: left;
}

.legal-hero .section-inner,
.legal-content {
  width: min(100% - (var(--page-gutter) * 2), 1080px);
  margin-inline: auto;
  text-align: left;
}

.legal-hero h1 {
  max-width: 100%;
  color: var(--ink);
  font-size: clamp(2.45rem, 5vw, 4.2rem);
  overflow-wrap: break-word;
}

.legal-content {
  padding-block: clamp(22px, 3vw, 40px) clamp(68px, 7vw, 96px);
}

.legal-content section {
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--line);
}

.legal-content section:first-child {
  border-top: 0;
}

.legal-content h2 {
  max-width: 100%;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.35;
  overflow-wrap: break-word;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.legal-content p {
  max-width: 78ch;
  margin: 0.85rem 0 0;
}

.legal-content ul {
  max-width: 78ch;
  margin: 0.9rem 0 0;
  padding-left: 1.3rem;
}

.legal-content li + li {
  margin-top: 0.35rem;
}

.legal-content a {
  color: var(--wine-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.legal-content a:hover,
.legal-content a:focus-visible {
  color: var(--wine);
}

.placeholder,
strong {
  font-weight: 400;
}

.placeholder {
  color: var(--wine-dark);
  font-family: var(--sans);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-image {
    transform: none;
    will-change: auto;
  }

  .about-sequence {
    min-height: auto;
  }

  .about-sticky {
    position: relative;
    min-height: auto;
    padding-block: var(--section-space);
    overflow: visible;
  }

  .about-dish,
  .about-portrait {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .reveal-enabled .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-header,
  .nav-toggle span,
  .nav-toggle::before,
  .nav-toggle::after,
  .nav-links a::after,
  .phone-link::after {
    transition: none;
  }
}

@media (max-width: 1160px) {
  html {
    scroll-padding-top: 4rem;
  }

  #start,
  #ueber-anna,
  #philosophie,
  #speisekarte,
  #reservierung,
  #kontakt {
    scroll-margin-top: 0;
  }

  .brand-logo {
    width: clamp(170px, 19vw, 195px);
  }

  .nav-open .site-header {
    background: rgba(18, 13, 14, 0.94);
    box-shadow: none;
  }

  .legal-page.nav-open .site-header {
    color: var(--ink);
    background: rgba(242, 242, 242, 0.98);
    border-bottom-color: var(--line);
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 45;
  }

  .nav-panel {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 2rem;
    padding: 5rem 1.5rem;
    background: rgba(24, 17, 15, 0.97);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .legal-page .nav-panel {
    color: var(--ink);
    background: rgba(242, 242, 242, 0.99);
  }

  .legal-page .nav-toggle {
    border-color: rgba(36, 30, 27, 0.28);
    background: rgba(36, 30, 27, 0.06);
    color: var(--ink);
  }

  .nav-open .nav-panel {
    transform: translateX(0);
  }

  .nav-links {
    display: grid;
    justify-items: center;
    gap: 1.45rem;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .phone-link {
    max-width: min(24rem, 90vw);
    overflow-wrap: anywhere;
    text-align: center;
    white-space: normal;
  }

  .reservation-layout {
    grid-template-columns: 1fr;
  }

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

  .about-sequence {
    min-height: 240vh;
    min-height: 240svh;
  }

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

  .highlight-card img {
    aspect-ratio: 1.48 / 1;
  }
}

@media (max-width: 900px) {
  .hero-badge {
    top: calc(4rem + 36px);
    right: 12px;
    width: clamp(115px, 15.6vw, 134px);
  }

  .about-layout {
    grid-template-columns: minmax(310px, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(24px, 4vw, 36px);
  }

  .about-visual {
    width: 100%;
    margin-left: 0;
  }

  .about-portrait {
    left: clamp(42px, 7vw, 64px);
    width: clamp(126px, 17vw, 170px);
  }

  .highlights .section-actions {
    grid-template-columns: repeat(2, minmax(0, 250px));
  }
}

@media (max-width: 700px) {
  .about-sequence {
    min-height: auto;
  }

  .about-sticky {
    position: relative;
    min-height: auto;
    padding-block: var(--section-space);
    overflow: visible;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: clamp(34px, 10vw, 54px);
  }

  .about-visual {
    width: 100%;
    margin-left: 0;
  }

  .about-dish,
  .about-portrait {
    opacity: 1 !important;
    transform: none !important;
    will-change: auto !important;
  }

  .values-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    gap: clamp(42px, 12vw, 64px);
  }

  .about-dish {
    width: 113%;
    margin-left: -6.5%;
  }

  .about-portrait {
    left: clamp(34px, 10vw, 54px);
  }

  .highlights .section-actions {
    grid-template-columns: minmax(0, 260px);
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 24px;
    --section-space: clamp(64px, 18vw, 88px);
  }

  body {
    font-size: 15px;
  }

  .section,
  .site-footer {
    padding-right: 0;
    padding-left: 0;
  }

  html {
    scroll-padding-top: 4rem;
  }

  #start,
  #ueber-anna,
  #philosophie,
  #speisekarte,
  #reservierung,
  #kontakt {
    scroll-margin-top: 0;
  }

  .brand-logo {
    width: clamp(145px, 41vw, 170px);
  }

  .about-portrait {
    left: clamp(28px, 9vw, 42px);
    width: clamp(110px, 34vw, 160px);
  }

  .about-signature {
    width: clamp(138px, 43vw, 164px);
    margin-top: 34px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-image {
    object-position: 54% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.44) 72%, rgba(0, 0, 0, 0.36) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.21) 54%, rgba(0, 0, 0, 0.47) 100%);
  }

  .hero-inner {
    align-items: start;
    min-height: 100vh;
    min-height: 100svh;
    padding-top: clamp(154px, 20svh, 184px);
    padding-bottom: clamp(72px, 14svh, 128px);
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    margin-top: clamp(8px, 2svh, 20px);
  }

  .hero-badge {
    top: 84px;
    right: 12px;
    width: clamp(82px, 24vw, 102px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.8rem, 8.6vw, 3.2rem);
    line-height: 1.22;
    overflow-wrap: normal;
  }

  .hero-title-line,
  .hero-title-nowrap {
    max-width: 100%;
  }

  .hero-title-nowrap {
    white-space: nowrap;
  }

  .hero-lead,
  .hero-actions {
    max-width: 100%;
  }

  .hero-lead,
  .text-block p:not(.section-kicker),
  .centered > p:not(.section-kicker),
  .value-item p,
  .highlight-body p,
  .reservation-layout > div > p:not(.section-kicker),
  .reservation-band p,
  .reservation-form label,
  .form-consent,
  input,
  select,
  .footer-column p,
  .footer-column address,
  .footer-column a,
  .footer-bottom p,
  .legal-content p,
  .legal-content li {
    font-weight: 400;
  }

  .legal-hero h1 {
    font-size: clamp(1.5rem, 7.5vw, 2.8rem);
    overflow-wrap: normal;
  }

  .legal-hero {
    padding-top: clamp(140px, 38vw, 160px);
    padding-bottom: 34px;
  }

  .legal-content {
    padding-block: 16px 72px;
  }

  .legal-content ul {
    padding-left: 1.2rem;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .button,
  .phone-link {
    width: 100%;
  }

  .hero-actions {
    grid-template-columns: minmax(0, 260px);
  }

  .hero .button {
    min-height: 3.5rem;
    padding: 0.9rem 1.35rem;
    font-size: 0.78rem;
    font-weight: 400;
  }

  .highlights .section-actions .button {
    width: 100%;
  }

  .values-grid {
    gap: 3rem;
  }

  .reservation-form {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
  }

  .reservation-layout,
  .reservation-layout > *,
  .reservation-form > *,
  .form-field {
    min-width: 0;
  }

  .reservation-form input:not([type="checkbox"]),
  .reservation-form select {
    display: block;
    width: 100%;
    inline-size: 100%;
    min-width: 0;
    min-inline-size: 0;
    max-width: 100%;
    max-inline-size: 100%;
  }

  .reservation-form input[type="date"],
  .reservation-form input[type="time"] {
    -webkit-appearance: none;
    appearance: none;
    overflow: hidden;
  }

  .reservation-form input[type="date"]::-webkit-date-and-time-value,
  .reservation-form input[type="time"]::-webkit-date-and-time-value {
    min-width: 0;
    text-align: left;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .legal-links {
    display: grid;
    justify-content: start;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - (var(--page-gutter) * 2), var(--content-width));
  }
}
