:root {
  color-scheme: light;
  --paper: #f3efe4;
  --paper-warm: #f8f0d7;
  --surface: #fffdf3;
  --ink: #17191a;
  --muted: #5b544d;
  --line: rgba(23, 25, 26, 0.18);
  --line-strong: rgba(23, 25, 26, 0.44);
  --blue: #417f98;
  --blue-deep: #245f79;
  --blue-soft: #b4ccd8;
  --yellow: #fbed8a;
  --coral: #e47760;
  --coral-deep: #be563f;
  --cream: #f1f0ec;
  --white: #fffdf3;
  --focus: rgba(228, 119, 96, 0.5);
  --button-radius: 7px;
  --button-shadow: 0 4px 0 rgba(23, 25, 26, 0.18);
  --button-shadow-hover: 0 6px 0 rgba(23, 25, 26, 0.2);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(1180px, calc(100vw - 32px));
  --shadow: 0 16px 44px rgba(23, 25, 26, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito Sans", Aptos, "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.56;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
summary {
  font: inherit;
}

button {
  cursor: pointer;
}

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

main:focus {
  outline: none;
}

main {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background:
    url("../../background/Frame%201%20%286%29.svg") center top / 100% auto no-repeat,
    var(--paper);
  scroll-margin-top: 96px;
}

main > section {
  position: relative;
  z-index: 1;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-140%);
  transition: transform 0.24s var(--ease-out);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  isolation: isolate;
  background: rgba(255, 253, 243, 0.88);
  border-bottom: 2px solid rgba(65, 127, 152, 0.45);
  backdrop-filter: blur(12px);
  overflow: visible;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--blue) 0 34%, var(--paper-warm) 34% 52%, var(--yellow) 52% 74%, var(--coral) 74% 100%);
}

.header-inner {
  position: relative;
  z-index: 1;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding-block: 10px 8px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: min(280px, 56vw);
  min-width: 0;
  padding-block: 2px;
}

.brand-symbol {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex: 0 0 auto;
  border: 1.5px solid var(--ink);
  background: var(--surface);
}

.brand-text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-name {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand-meta {
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a,
.header-link,
.text-cta,
.text-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-decoration-color: transparent;
  transition: color 0.24s var(--ease-out), text-decoration-color 0.24s var(--ease-out);
}

.main-nav a:hover,
.header-link:hover,
.text-cta:hover,
.text-link:hover {
  color: var(--blue-deep);
  text-decoration-color: currentColor;
}

.header-link {
  color: var(--ink);
  font-weight: 760;
  font-size: 14px;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  align-content: center;
  justify-self: end;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: 2px solid var(--ink);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: 4px 4px 0 var(--yellow);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 0.24s var(--ease-out);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.mobile-nav-inner {
  display: grid;
  padding: 10px 0 18px;
}

.mobile-nav a {
  min-height: 50px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.info-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: #e8e5da;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 -1px 0 rgba(255, 253, 243, 0.62), 0 1px 0 rgba(255, 253, 243, 0.62);
  text-align: center;
}

.info-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  font-family: "Nunito Sans", Aptos, "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
}

.section {
  position: relative;
  padding: clamp(88px, 9vw, 142px) 0;
  border-top: 0;
  overflow: hidden;
}

main {
  --section-strip-bleed: clamp(48px, 5vw, 92px);
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: calc((100vw * 1024 / 1440) - 66px);
  padding: clamp(112px, 9vw, 148px) 0 clamp(128px, 10vw, 172px);
  background: transparent;
  color: var(--surface);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #ee8164;
}

.hero-bg img,
.hero-bg svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-section::after {
  content: none;
}

.page-bg-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: transparent;
}

.page-bg-stage > .section {
  position: relative;
  z-index: 1;
  background: transparent;
}

.hero-section .eyebrow,
.hero-section .hero-lead,
.hero-section .hero-facts {
  color: var(--ink);
}

.hero-section h1 {
  color: var(--ink);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  min-height: clamp(520px, 56svh, 680px);
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
  padding-top: 4px;
}

.hero-brand-logo {
  width: min(680px, 100%);
  max-width: 100%;
  margin: 0 0 clamp(30px, 4vw, 48px);
  padding: clamp(18px, 3vw, 34px);
  background: var(--surface);
  border: 2px solid rgba(23, 25, 26, 0.88);
  box-shadow: 12px 12px 0 var(--yellow), 24px 24px 0 rgba(228, 119, 96, 0.9);
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 900;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
}

p,
li {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.94;
}

h2 {
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 0.96;
}

h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.42;
  font-weight: 700;
}

.nobr {
  white-space: nowrap;
}

.hero-facts {
  display: grid;
  gap: 8px;
  max-width: 590px;
  margin-top: 38px;
  padding: 16px 20px;
  background: rgba(255, 253, 243, 0.14);
  border: 2px solid rgba(255, 253, 243, 0.55);
  border-radius: 4px;
  box-shadow: 8px 8px 0 rgba(246, 233, 120, 0.35);
  font-size: 15px;
  font-weight: 800;
}

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

.hero-actions {
  margin-top: 34px;
}

body:not(.menu-page) .hero-actions {
  display: grid;
  gap: 12px;
  align-items: start;
  margin-top: 36px;
}

.hero-action-primary,
.hero-action-secondary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hero-action-primary {
  gap: 10px;
}

.hero-action-secondary {
  gap: 20px;
  color: rgba(255, 253, 243, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.hero-utility-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  text-decoration-color: rgba(251, 237, 138, 0.9);
  transition: color 0.24s var(--ease-out), text-decoration-color 0.24s var(--ease-out);
}

.hero-utility-link:hover {
  color: var(--yellow);
  text-decoration-color: currentColor;
}

.button {
  position: relative;
  isolation: isolate;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: var(--button-radius);
  font-weight: 900;
  font-size: 14.25px;
  line-height: 1.2;
  letter-spacing: 0;
  box-shadow: var(--button-shadow);
  overflow: hidden;
  transition: background-color 0.28s var(--ease-out), color 0.28s var(--ease-out), border-color 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.button::before {
  display: none;
}

.button-primary {
  background: var(--yellow);
  border-color: var(--ink);
  color: var(--ink);
}

.button-secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.button-ghost {
  border-color: currentColor;
  color: inherit;
  background: transparent;
  box-shadow: none;
}

.button:hover {
  box-shadow: var(--button-shadow-hover);
  transform: translateY(-1px);
}

.button-primary:hover {
  background: var(--coral);
  border-color: var(--ink);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--paper-warm);
  border-color: var(--ink);
  color: var(--ink);
}

.hero-section .button-secondary {
  background: rgba(255, 253, 243, 0.72);
  border-color: var(--ink);
  color: var(--ink);
}

.hero-section .button-secondary:hover {
  background: var(--surface);
  border-color: var(--ink);
  color: var(--ink);
}

.closing-actions .button-secondary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--yellow);
}

.button-ghost:hover {
  background: rgba(255, 253, 243, 0.15);
  border-color: currentColor;
  color: inherit;
}

.button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  box-shadow: 0 0 0 5px rgba(251, 250, 246, 0.86), var(--button-shadow-hover);
}

.button:active {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 4px 12px rgba(28, 26, 27, 0.1);
}

.hero-media,
.place-media {
  margin: 0;
  overflow: hidden;
  background: var(--paper-warm);
}

.hero-media {
  position: relative;
  justify-self: end;
  align-self: center;
  width: min(100%, 390px);
  min-height: clamp(280px, 31vw, 430px);
  border: 2px solid var(--ink);
  border-radius: 7px;
  opacity: 1;
  box-shadow: -12px 12px 0 var(--surface), -24px 24px 0 var(--coral);
  transform: translateY(8px);
}

.hero-media::after {
  content: "Burgstrasse 8";
  position: absolute;
  left: -2px;
  bottom: -2px;
  padding: 9px 12px;
  border: 2px solid var(--ink);
  border-left: 0;
  border-bottom: 0;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-media img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02) brightness(0.98);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
}

.section-grid > * {
  min-width: 0;
}

.section-grid-tight {
  align-items: baseline;
}

.offer-section {
  background: var(--surface);
  --offer-intro-inset: clamp(112px, 14vw, 200px);
  margin-top: -1px;
  padding-bottom: clamp(88px, 9vw, 142px);
}

.offer-section::before {
  content: none;
}

.offer-section::after {
  content: none;
}

.offer-section .container {
  position: relative;
  z-index: 1;
}

.offer-section .section-kicker .eyebrow {
  color: var(--yellow);
}

.offer-section .section-kicker h2 {
  color: var(--surface);
}

.offer-heading-mobile {
  display: none;
}

.offer-heading-line {
  white-space: nowrap;
}

.offer-section .section-body {
  background: transparent;
}

.section-body {
  width: 100%;
  max-width: 760px;
  min-width: 0;
}

.section-intro {
  max-width: calc(100% - var(--offer-intro-inset));
  margin: 0 0 34px var(--offer-intro-inset);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.offer-section .section-intro {
  color: rgba(255, 253, 243, 0.92);
}

.menu-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 100%;
  border-top: 0;
  justify-items: stretch;
  text-align: left;
}

.menu-summary article {
  min-width: 0;
  min-height: 100%;
  padding: 22px;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 253, 243, 0.94);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--paper-warm);
  text-align: left;
}

.menu-summary article h3 {
  display: inline-block;
  margin: 0 0 14px;
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--yellow);
  color: var(--ink);
}

.menu-summary article:nth-child(2),
.menu-summary article:nth-child(3),
.menu-summary article:nth-child(4) {
  background: rgba(255, 253, 243, 0.94);
  color: var(--ink);
}

.menu-summary article:nth-child(3) {
  box-shadow: 8px 8px 0 rgba(65, 127, 152, 0.28);
}

.menu-summary article:nth-child(4) {
  box-shadow: 8px 8px 0 rgba(228, 119, 96, 0.28);
}

.menu-summary article:nth-child(3) h3 {
  background: var(--blue);
  color: var(--surface);
}

.menu-summary article:nth-child(4) h3 {
  background: var(--coral);
  color: var(--ink);
}

.menu-summary p {
  margin: 0 0 12px;
  color: var(--muted);
}

.menu-summary ul {
  margin: 0;
  padding-left: 19px;
  color: inherit;
  text-align: left;
}

.menu-summary li + li {
  margin-top: 6px;
}

.menu-summary-expanded {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.text-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 28px;
  padding: 9px 0;
  color: var(--ink);
  font-weight: 900;
  text-decoration-color: var(--blue);
}

.text-cta::after {
  content: "";
  width: 26px;
  height: 13px;
  margin-left: 11px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 999px 0 0;
  transform: translateY(1px) rotate(13deg);
  transition: transform 0.28s var(--ease-out);
}

.text-cta:hover::after {
  transform: translate(4px, 1px) rotate(13deg);
}

.text-cta-plain::after {
  content: none;
}

.place-section {
  background: var(--paper);
  margin-top: 0;
  padding-top: clamp(88px, 9vw, 142px);
}

.place-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.62fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.place-media {
  border-radius: 7px;
  border: 0;
  opacity: 1;
  box-shadow: 14px 14px 0 #F7F1E4;
}

.place-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.place-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.place-copy {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 253, 243, 0.9);
  border: none;
}

.place-copy h2 {
  font-size: clamp(40px, 4.7vw, 68px);
}

.place-copy p.quiet-note {
  margin-top: 28px;
  padding-top: 0;
  border-top: none;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.32;
  color: var(--blue-deep);
}

.supplier-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.supplier-list span {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 4px 10px;
  border: 1.5px solid rgba(23, 25, 26, 0.72);
  border-radius: 3px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.supplier-list a {
  text-decoration: none;
  color: inherit;
}

.supplier-list a:hover span {
  background: var(--coral);
}

.impressionen-section {
  isolation: isolate;
  margin-top: -2px;
  background: var(--paper);
  padding-top: clamp(28px, 3vw, 44px);
  padding-bottom: 0;
}

.impressionen-bg {
  position: absolute;
  inset: -2px 0 0;
  z-index: 0;
  pointer-events: none;
}

.impressionen-bg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.impressionen-section .container {
  position: relative;
  z-index: 1;
}

.photo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  margin-top: clamp(16px, 2vw, 24px);
}

.impressionen-title {
  margin: 6px 0 0;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 0.96;
  color: var(--ink);
}

.photo-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  display: block;
  border-radius: 2px;
}

.impressionen-teaser {
  position: relative;
  background: var(--paper-warm);
  padding: clamp(72px, 7vw, 112px) 0 clamp(58px, 6vw, 96px);
}

.impressionen-teaser-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  grid-template-areas:
    "copy photos"
    "link photos";
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.impressionen-teaser-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: clamp(32px, 4vw, 56px);
}

.impressionen-teaser-head {
  max-width: 640px;
}

.impressionen-teaser-copy {
  grid-area: copy;
  max-width: 560px;
}

.impressionen-teaser-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 2px solid rgba(23, 25, 26, 0.78);
  border-radius: 7px;
  background: var(--surface);
  color: var(--ink);
}

.impressionen-teaser-panel .eyebrow {
  color: var(--blue-deep);
}

.impressionen-teaser-panel .impressionen-teaser-link {
  margin-top: 20px;
}

.impressionen-teaser-copy p:not(.eyebrow) {
  max-width: 36rem;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.impressionen-teaser-head .eyebrow {
  color: var(--surface);
  margin-bottom: 12px;
}

.impressionen-teaser-copy .eyebrow,
.impressionen-teaser-head h2 {
  margin-bottom: 12px;
}

.impressionen-teaser-copy h2,
.impressionen-teaser-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.04;
  color: var(--blue-deep);
  margin: 0;
}

.impressionen-teaser-link {
  grid-area: link;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-deep);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--coral);
  padding-bottom: 6px;
  white-space: nowrap;
  transition: gap 280ms cubic-bezier(0.22, 1, 0.36, 1), color 200ms ease;
}

.impressionen-teaser-link-mobile {
  display: none;
}

.impressionen-teaser-link:hover,
.impressionen-teaser-link:focus-visible {
  gap: 18px;
  color: var(--coral);
}

.impressionen-teaser-arrow {
  font-size: 1.2em;
  line-height: 1;
}

.impressionen-teaser-strip {
  position: relative;
  z-index: 1;
  grid-area: photos;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.impressionen-teaser-photo {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  background: var(--paper);
}

.impressionen-teaser-photo-feature {
  grid-row: 1 / span 2;
  aspect-ratio: auto;
  background: var(--blue);
}

.impressionen-teaser-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.impressionen-teaser-photo-feature img {
  object-fit: cover;
  padding: 0;
}

.impressionen-teaser-photo:hover img,
.impressionen-teaser-photo:focus-visible img {
  transform: scale(1.04);
}

@media (max-width: 860px) {
  .impressionen-teaser-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "photos"
      "link";
    align-items: start;
  }

  .impressionen-teaser-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .impressionen-teaser-strip {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .impressionen-teaser-photo:nth-child(3) {
    display: none;
  }
}

@media (max-width: 540px) {
  .impressionen-teaser-strip {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .impressionen-teaser-photo {
    aspect-ratio: 4 / 3;
  }
  .impressionen-teaser-photo-feature {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
  .impressionen-teaser-photo:nth-child(3) {
    display: block;
  }
}

.closing-section {
  position: relative;
  isolation: isolate;
  background: var(--yellow);
  color: var(--ink);
}

.closing-section .eyebrow {
  color: var(--coral);
}

.closing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.closing-grid h2 {
  max-width: 780px;
}

.closing-actions .button {
  box-shadow: var(--button-shadow);
}

.closing-actions .button-primary {
  background: var(--coral);
  color: var(--ink);
  border-color: var(--ink);
}

.closing-actions .button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.closing-actions .button:hover {
  box-shadow: var(--button-shadow-hover);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  color: var(--muted);
  border-top: 8px solid var(--coral);
  padding: 36px 0 42px;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.05;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.site-footer p {
  margin: 0 0 10px;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.text-link {
  width: fit-content;
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  text-align: left;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(28, 26, 27, 0.6);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 91;
  display: none;
  padding: 18px;
  overflow-y: auto;
}

.modal.is-open {
  display: grid;
  place-items: center;
}

.modal-panel {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: clamp(28px, 5vw, 48px);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 10px 10px 0 var(--yellow);
}

.modal-panel h2 {
  margin: 0 0 18px;
  font-size: 36px;
  line-height: 1;
  font-weight: 850;
}

.modal-panel p {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.cookie-form {
  display: grid;
  gap: 12px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}

.cookie-option small {
  display: block;
  color: var(--muted);
}

.cookie-option input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.modal-actions {
  margin-top: 10px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 89;
  padding: 0 16px;
}

.cookie-banner-inner {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: var(--surface);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(65, 127, 152, 0.22);
}

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
}

.cookie-copy-short {
  display: none;
}

.gallery-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--blue);
  color: var(--surface);
  padding: clamp(108px, 11vw, 156px) 0 clamp(80px, 9vw, 124px);
}

.gallery-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.gallery-hero .hero-bg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.gallery-hero-eyebrow {
  color: rgba(255, 253, 243, 0.85);
}

.gallery-hero-title {
  margin: 0;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.94;
  color: var(--surface);
  text-wrap: balance;
}

.gallery-hero-lead {
  max-width: 34ch;
  margin: 22px 0 0;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  font-weight: 600;
  color: rgba(255, 253, 243, 0.92);
}

.gallery-hero-back {
  margin-top: 30px;
}

.gallery-hero .button-secondary {
  background: transparent;
  border-color: var(--surface);
  color: var(--surface);
}

.gallery-hero .button-secondary:hover {
  background: var(--surface);
  border-color: var(--surface);
  color: var(--ink);
}

.gallery-body {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    url("../../background/Frame%201%20%286%29.svg") center top / 100% auto no-repeat,
    var(--paper);
  padding: clamp(72px, 8vw, 112px) 0 clamp(96px, 10vw, 144px);
}

.gallery-body .container {
  position: relative;
  z-index: 1;
}

.gallery-group {
  position: relative;
  isolation: isolate;
}

.gallery-group-header,
.gallery-grid,
.gallery-footer-cta {
  position: relative;
  z-index: 1;
}

.gallery-group + .gallery-group {
  margin-top: clamp(64px, 7vw, 104px);
}

.gallery-group-header {
  margin-bottom: clamp(24px, 3vw, 36px);
}

.gallery-group-rule {
  width: 56px;
  height: 4px;
  background: var(--coral);
  margin-bottom: 16px;
}

.gallery-group-title {
  margin: 6px 0 0;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1;
  color: var(--ink);
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  background: var(--paper-warm);
}

.gallery-footer-cta {
  margin-top: clamp(56px, 6vw, 88px);
  display: flex;
  justify-content: center;
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .gallery-grid img {
    max-width: 520px;
  }
}

.philosophy-story {
  padding-top: clamp(78px, 9vw, 126px);
}

.philosophy-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.62fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.philosophy-story-grid > *,
.gallery-intro-grid > * {
  min-width: 0;
}

.philosophy-story-copy {
  width: 100%;
  max-width: 760px;
  padding: clamp(26px, 4vw, 48px);
  border: 2px solid rgba(23, 25, 26, 0.16);
  border-radius: 7px;
  background: var(--surface);
}

.philosophy-story-copy h1 {
  max-width: 9.8ch;
  color: var(--ink);
}

.philosophy-text {
  display: grid;
  gap: 18px;
  max-width: 100%;
  margin-top: clamp(30px, 4vw, 46px);
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.72;
}

.philosophy-text p {
  margin: 0;
}

.philosophy-story-media {
  position: sticky;
  top: 112px;
  margin: 0;
  border: 2px solid var(--ink);
  border-radius: 7px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 12px 12px 0 var(--yellow);
}

.philosophy-story-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

body.impressionen-page {
  background: #f4ead8;
  color: #201b17;
}

.impressionen-page main {
  background: #f4ead8;
}

.impressionen-page .gallery-intro {
  padding: clamp(52px, 7vw, 92px) 0 clamp(30px, 4vw, 54px);
  background: #f4ead8;
}

.gallery-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.gallery-intro-copy {
  width: 100%;
  max-width: 560px;
}

.impressionen-page .gallery-hero-eyebrow {
  color: var(--blue-deep);
}

.impressionen-page .gallery-hero-title {
  max-width: 10ch;
  color: #201b17;
  font-size: clamp(46px, 6.2vw, 92px);
}

.impressionen-page .gallery-hero-lead {
  max-width: 35ch;
  color: #594f46;
}

.gallery-lead {
  width: 100%;
  margin: 0;
  border: 2px solid #201b17;
  border-radius: 4px;
  overflow: hidden;
  background: #fff8ea;
  box-shadow: 12px 12px 0 rgba(228, 119, 96, 0.35);
}

.gallery-lead img {
  min-height: clamp(300px, 44vw, 560px);
  object-fit: cover;
}

.impressionen-page .gallery-body {
  background: #f4ead8;
  padding: clamp(34px, 5vw, 64px) 0 clamp(80px, 9vw, 124px);
}

.impressionen-page .gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(180px, 17vw, 260px);
  gap: clamp(12px, 1.5vw, 20px);
}

.impressionen-page .gallery-grid img {
  height: 100%;
  max-width: none;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 4px;
  background: #fff8ea;
}

.impressionen-page .gallery-item-wide {
  grid-column: span 2;
}

.impressionen-page .gallery-item-tall {
  grid-row: span 2;
}

.impressionen-page .gallery-footer-cta {
  justify-content: flex-start;
}

@media (max-width: 980px) {
  .philosophy-story-grid,
  .gallery-intro-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-story-media {
    position: relative;
    top: auto;
    width: min(100%, 560px);
  }

  .impressionen-page .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(180px, 26vw, 260px);
  }
}

@media (max-width: 600px) {
  .philosophy-story {
    padding-top: 58px;
  }

  .philosophy-text {
    font-size: 16px;
    line-height: 1.72;
  }

  .philosophy-story-media img {
    aspect-ratio: 4 / 3;
  }

  .impressionen-page .gallery-intro {
    padding-top: 46px;
  }

  .impressionen-page .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .impressionen-page .gallery-grid img,
  .impressionen-page .gallery-item-wide,
  .impressionen-page .gallery-item-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .impressionen-page .gallery-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

.menu-page .menu-hero {
  background:
    linear-gradient(130deg, rgba(251, 237, 138, 0.5) 0 42%, transparent 42%),
    var(--paper);
}

@media (min-width: 981px) {
  .nav-toggle {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    min-height: 76px;
    padding-right: 62px;
  }

  .brand {
    width: auto;
    max-width: 100%;
  }

  .nav-toggle {
    grid-column: auto;
  }

  .desktop-nav,
  .header-link {
    display: none;
  }

  .nav-toggle {
    display: inline-grid !important;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    visibility: visible;
    opacity: 1;
    border-color: var(--ink) !important;
    background:
      linear-gradient(var(--ink), var(--ink)) center calc(50% - 5px) / 20px 2px no-repeat,
      linear-gradient(var(--ink), var(--ink)) center calc(50% + 5px) / 20px 2px no-repeat,
      var(--surface) !important;
    box-shadow: 4px 4px 0 var(--yellow) !important;
  }

  body.nav-open .nav-toggle {
    background:
      linear-gradient(45deg, transparent calc(50% - 1px), var(--ink) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)) center / 22px 22px no-repeat,
      linear-gradient(-45deg, transparent calc(50% - 1px), var(--ink) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)) center / 22px 22px no-repeat,
      var(--surface) !important;
  }

  .nav-toggle span {
    opacity: 0;
  }

  .hero-grid,
  .section-grid,
  .place-grid,
  .closing-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-grid {
    min-height: auto;
    align-items: start;
    gap: 48px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-section {
    min-height: auto;
    padding: clamp(88px, 12vw, 124px) 0 clamp(108px, 13vw, 146px);
  }

  .hero-bg img,
  .hero-bg svg {
    object-position: center top;
  }

  .hero-media {
    min-height: 340px;
    justify-self: center;
    width: min(100%, 440px);
    transform: none;
    box-shadow: -10px 10px 0 var(--surface), -20px 20px 0 var(--coral);
  }

  .offer-section {
    --offer-intro-inset: 0px;
  }

  .offer-section .section-kicker h2,
  .offer-section .section-intro {
    color: var(--ink);
  }

  .menu-summary article,
  .menu-summary-expanded article {
    border: 1.5px solid rgba(23, 25, 26, 0.2);
    box-shadow: none !important;
  }

  .closing-actions {
    justify-content: center;
  }

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

}

@media (max-width: 760px) {
  main {
    background: var(--paper);
  }

  .container {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .header-inner {
    min-height: 74px;
    padding-block: 9px 8px;
  }

  .brand {
    max-width: calc(100vw - 112px);
  }

  .brand-symbol {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 16px;
  }

  .hero-brand-logo {
    width: min(calc(100% - 18px), 340px);
    margin-bottom: 26px;
    padding: 18px;
    box-shadow: 8px 8px 0 var(--yellow), 16px 16px 0 rgba(228, 119, 96, 0.9);
  }

  .hero-copy,
  .hero-lead,
  .cookie-banner-inner {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    max-width: 9.5ch;
    font-size: clamp(42px, 12vw, 50px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(36px, 10vw, 44px);
  }

  .section-kicker h2,
  .place-copy h2,
  .philosophy-story-copy h1,
  .gallery-intro-copy h1 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .offer-section .section-kicker h2 {
    max-width: 13ch;
    margin-inline: auto;
    font-size: clamp(32px, 9.4vw, 40px);
    line-height: 1.04;
  }

  .offer-heading-desktop {
    display: none;
  }

  .offer-heading-mobile {
    display: inline;
  }

  .philosophy-story-grid,
  .gallery-intro-grid,
  .philosophy-story-copy,
  .gallery-intro-copy {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .philosophy-story-copy h1 {
    max-width: 11.2ch;
    font-size: clamp(38px, 10.6vw, 44px);
    line-height: 1.02;
  }

  .impressionen-page .gallery-hero-title {
    max-width: 11.6ch;
    font-size: clamp(40px, 11vw, 48px);
    line-height: 1.02;
  }

  .hero-lead {
    max-width: 31ch;
    font-size: 18px;
  }

  .hero-lead .nobr {
    display: inline-block;
  }

  .section-intro,
  .philosophy-text,
  .impressionen-page .gallery-hero-lead {
    width: 100%;
    max-width: 30ch;
    margin-inline: auto;
  }

  .page-bg-stage > .offer-section .section-kicker h2 {
    color: var(--ink);
  }

  .hero-facts {
    width: 100%;
    max-width: 100%;
  }

  .hero-media {
    min-height: 260px;
    width: calc(100% - 32px);
    justify-self: center;
    margin: 0 auto 18px;
    border-radius: 7px;
    scroll-margin-top: 96px;
    box-shadow: -8px 8px 0 var(--surface), -16px 16px 0 var(--coral);
  }

  .hero-media img {
    object-position: center center;
  }

  .hero-section {
    padding-top: 78px;
    padding-bottom: 18px;
  }

  .hero-bg {
    background: url("../../background/iPhone%2016%20%26%2017%20Pro%20Max%20-%202.svg") center top / cover no-repeat;
  }

  .hero-bg img,
  .hero-bg svg {
    display: none;
  }

  .page-bg-stage > .offer-section,
  .page-bg-stage > .place-section,
  .page-bg-stage > .impressionen-teaser {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }

  .page-bg-stage > .place-section,
  .page-bg-stage > .impressionen-teaser {
    margin-top: -2px;
  }

  .page-bg-stage > .offer-section {
    background-color: var(--surface);
    background-image: url("../../background/PHONE2.svg");
  }

  .page-bg-stage > .place-section {
    background-color: var(--surface);
    background-image: url("../../background/PHONE3.svg");
  }

  .page-bg-stage > .impressionen-teaser {
    background-color: var(--surface);
    background-image: url("../../background/PHONE4.svg");
    margin-top: -30px;
    padding-top: 110px;
    overflow: visible;
    isolation: isolate;
    z-index: 2;
  }

  .page-bg-stage > .offer-section .section-intro {
    color: var(--ink);
  }

  .page-bg-stage > .impressionen-teaser .impressionen-teaser-head h2,
  .page-bg-stage > .impressionen-teaser .impressionen-teaser-copy h2,
  .page-bg-stage > .impressionen-teaser .impressionen-teaser-copy p,
  .page-bg-stage > .impressionen-teaser .impressionen-teaser-link {
    color: var(--surface);
  }

  .page-bg-stage > .impressionen-teaser .impressionen-teaser-panel,
  .page-bg-stage > .impressionen-teaser .impressionen-teaser-link-mobile {
    background: var(--surface);
    color: var(--ink);
  }

  .page-bg-stage > .impressionen-teaser .impressionen-teaser-panel .eyebrow,
  .page-bg-stage > .impressionen-teaser .impressionen-teaser-panel h2,
  .page-bg-stage > .impressionen-teaser .impressionen-teaser-link-mobile {
    color: var(--blue-deep);
  }

  .page-bg-stage > .impressionen-teaser .impressionen-teaser-panel p:not(.eyebrow) {
    color: var(--muted);
  }

  .hero-facts {
    font-size: 14px;
  }

  body:not(.menu-page) .hero-actions {
    margin-top: 32px;
  }

  .hero-action-primary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(100%, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
    margin-inline: auto;
  }

  .hero-action-secondary {
    gap: 14px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    max-width: calc(100vw - 48px);
    flex: 1 1 100%;
  }

  .footer-grid,
  .cookie-banner-inner,
  .menu-summary,
  .menu-summary-expanded {
    grid-template-columns: 1fr;
  }

  .section-grid,
  .place-grid,
  .closing-grid,
  .footer-grid,
  .gallery-group-header,
  .gallery-footer-cta {
    justify-items: center;
    text-align: center;
  }

  .section-kicker,
  .section-body,
  .place-media,
  .place-copy,
  .closing-grid > *,
  .footer-grid > section {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }

  .section-intro {
    max-width: min(100%, 34rem);
    margin-inline: auto;
  }

  .offer-section .section-intro {
    max-width: 28ch;
  }

  .philosophy-text {
    max-width: 100%;
    margin-inline: 0;
    justify-self: start;
  }

  .philosophy-text p {
    width: 100%;
    max-width: 26ch;
  }

  .menu-summary,
  .menu-summary-expanded {
    width: min(100%, 520px);
    margin-inline: auto;
    justify-items: center;
  }

  .menu-summary article,
  .menu-summary-expanded article {
    width: 100%;
    border: 1.5px solid rgba(23, 25, 26, 0.2);
    box-shadow: none !important;
  }

  .place-media {
    justify-self: center;
  }

  .supplier-list {
    justify-content: center;
  }

  .impressionen-teaser-grid {
    align-items: center;
    text-align: center;
  }

  .impressionen-teaser-strip {
    width: min(100%, 520px);
    margin-inline: auto;
    justify-items: center;
  }

  .impressionen-teaser-panel {
    width: 100%;
    box-shadow: none;
  }

  .impressionen-teaser-link-desktop {
    display: none;
  }

  .impressionen-teaser-link-mobile {
    display: inline-flex;
    width: fit-content;
    margin-top: 4px;
    padding: 10px 12px 8px;
    border: 1.5px solid rgba(23, 25, 26, 0.22);
    border-radius: 4px;
  }

  .impressionen-teaser-photo {
    width: 100%;
  }

  .cookie-banner {
    left: 10px;
    right: auto;
    bottom: 10px;
    width: calc(100vw - 20px);
    max-width: 340px;
    padding: 0;
  }

  .cookie-banner-inner {
    width: 100%;
    max-width: 100%;
    gap: 10px;
    padding: 12px;
    border-width: 1.5px;
    border-radius: 7px;
    box-shadow: 5px 5px 0 rgba(65, 127, 152, 0.2);
  }

  .cookie-banner strong {
    font-size: 14px;
    line-height: 1.15;
  }

  .cookie-banner p {
    margin-top: 3px;
    font-size: 13px;
    line-height: 1.34;
  }

  .cookie-copy-full {
    display: none;
  }

  .cookie-copy-short {
    display: inline;
  }

  .cookie-actions {
    justify-content: center;
    gap: 7px 14px;
    width: 100%;
  }

  .cookie-actions .button {
    width: auto;
    max-width: 100%;
    min-width: 0;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12.5px;
    line-height: 1.1;
    box-shadow: 0 3px 0 rgba(23, 25, 26, 0.16);
  }

  .cookie-actions .button-primary {
    flex: 0 1 100%;
    width: 100%;
    max-width: 320px;
    min-height: 40px;
    font-size: 13.5px;
  }

  .cookie-actions .button-secondary {
    background: rgba(255, 253, 243, 0.48);
    border-color: rgba(23, 25, 26, 0.58);
    font-weight: 820;
  }

  .cookie-actions .button-ghost {
    width: auto;
    min-height: 28px;
    padding: 2px 4px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: var(--blue-deep);
    font-size: 13px;
    font-weight: 850;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }

  .section {
    padding: 68px 0;
  }

  .info-strip {
    margin-top: -2px;
    border-top: 0;
    box-shadow: none;
  }

  .info-strip-inner {
    flex-direction: column;
    gap: 6px;
  }

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

}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
