@font-face {
  font-family: "Momo Trust Sans";
  src: url("fonts/momo-trust-sans-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Momo Trust Sans";
  src: url("fonts/momo-trust-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-display-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-display-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-display-italic-latin-ext.woff2") format("woff2");
  font-style: italic;
  font-weight: 500 600;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-display-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 500 600;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --cream-50: #fffdf8;
  --cream-100: #f8f3e9;
  --cream-200: #eee5d5;
  --ink: #172019;
  --muted: #62665f;
  --green-950: #10281d;
  --green-900: #173729;
  --green-800: #214936;
  --green-600: #467054;
  --terracotta: #b44a32;
  --terracotta-dark: #943924;
  --terracotta-pale: #ecd1c5;
  --gold: #d0a85a;
  --line: rgba(23, 32, 25, 0.17);
  --line-light: rgba(255, 255, 255, 0.2);
  --paper-shadow: 0 24px 70px rgba(31, 36, 28, 0.12);
  --sans: "Momo Trust Sans", "Helvetica Neue", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --shell: 78rem;
}

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

[hidden] {
  display: none !important;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: #fff;
  background: var(--terracotta);
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: clamp(5.5rem, 9vw, 9rem);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  padding: 0.8rem 1rem;
  color: #fff;
  background: var(--green-950);
  transform: translateY(-160%);
}

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

.eyebrow {
  margin-bottom: 1.1rem;
  color: var(--terracotta);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--terracotta-pale);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  min-height: 5.35rem;
  grid-template-columns: auto minmax(24rem, 1fr) auto auto;
  align-items: center;
  gap: clamp(1.25rem, 2.4vw, 2.5rem);
  padding-inline: max(1.5rem, calc((100vw - var(--shell)) / 2));
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(16, 40, 29, 0.06);
  backdrop-filter: blur(12px);
}

.brand {
  justify-self: start;
  text-decoration: none;
}

.brand-window {
  position: relative;
  display: block;
  width: 13.5rem;
  height: 4.25rem;
  overflow: hidden;
}

.brand-window img {
  position: absolute;
  top: -1.18rem;
  left: 0;
  width: 13.5rem;
  max-width: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.site-nav a {
  color: var(--green-900);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--terracotta-dark);
}

.header-event {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--green-900);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-event span {
  padding-right: 0.85rem;
  border-right: 1px solid var(--line);
}

.header-event strong {
  font-weight: 800;
}

.header-cta {
  justify-self: end;
  padding-block: 0.55rem;
  color: var(--terracotta-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.hero {
  display: grid;
  min-height: min(42rem, calc(100vh - 5.8rem));
  grid-template-columns: minmax(0, 1.12fr) minmax(25rem, 0.88fr);
  background: var(--cream-100);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 3rem, 46rem);
  margin-left: max(1.5rem, calc((100vw - var(--shell)) / 2));
  padding: clamp(3rem, 4.5vw, 4.5rem) clamp(2.5rem, 5vw, 5rem) clamp(3rem, 4.5vw, 4.5rem) 0;
}

.hero h1 {
  max-width: 18ch;
  margin-bottom: 1.15rem;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 3.1vw, 3.75rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.052em;
}

.hero h1 em {
  color: var(--terracotta);
  font-weight: 500;
}

.hero-lead {
  max-width: 39rem;
  margin-bottom: 1.5rem;
  color: #4e554e;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.button {
  display: inline-flex;
  min-height: 3.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  color: #fff;
  background: var(--terracotta);
  border: 1px solid var(--terracotta);
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
}

.button-secondary {
  background: var(--green-900);
  border-color: var(--green-900);
}

.button-secondary:hover {
  background: var(--green-800);
  border-color: var(--green-800);
}

.button-light {
  color: var(--green-950);
  background: var(--cream-50);
  border-color: var(--cream-50);
}

.button-light:hover {
  color: var(--green-950);
  background: var(--cream-200);
  border-color: var(--cream-200);
}

.section-cta {
  width: min(100%, 22.5rem);
  margin-top: 2rem;
}

.hero-button {
  align-self: flex-start;
  min-width: min(100%, 22.5rem);
}

.hero-note {
  max-width: 33rem;
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.hero-photo {
  position: relative;
  min-height: 42rem;
  margin: 0;
  overflow: hidden;
  background: var(--green-950);
}

.hero-photo picture {
  position: absolute;
  inset: 0;
}

.hero-photo picture,
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-photo img {
  object-fit: cover;
  object-position: 50% 48%;
}

.program {
  background: var(--cream-50);
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: start;
}

.section-intro h2,
.menu-heading h2,
.place-copy h2 {
  margin-bottom: 1.4rem;
  font-family: var(--serif);
  font-size: clamp(2.9rem, 4.1vw, 3.8rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.section-intro > p:last-child,
.menu-heading > p:last-child,
.booking-lead {
  max-width: 35rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.program-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.program-list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.5rem;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.program-time {
  display: grid;
  align-content: start;
}

.program-time span,
.program-kicker {
  color: var(--terracotta);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.program-time strong {
  margin-top: 0.35rem;
  color: var(--green-900);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.15;
}

.program-kicker {
  margin-bottom: 0.55rem;
  color: var(--green-600);
}

.program-list h3 {
  margin-bottom: 0.45rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  font-weight: 600;
  line-height: 1.12;
}

.program-list li > div:last-child > p:last-child {
  max-width: 39rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.menu-section {
  color: #fff;
  background: var(--green-950);
}

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

.menu-heading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 3rem;
  align-items: end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line-light);
}

.menu-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1.3rem;
}

.menu-heading h2 {
  max-width: none;
  margin-bottom: 0;
}

.menu-heading > p:last-child {
  align-self: end;
  color: rgba(255, 255, 255, 0.62);
}

.menu-list {
  border-top: 1px solid var(--line-light);
}

.menu-list article {
  display: grid;
  grid-template-columns: 2rem 8.7rem minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: start;
  padding-block: clamp(1.15rem, 1.8vw, 1.5rem);
  border-bottom: 1px solid var(--line-light);
}

.menu-list .menu-intermezzo {
  margin-inline: -1.5rem;
  padding-inline: 1.5rem;
  color: var(--green-950);
  background: var(--terracotta-pale);
  border-color: var(--terracotta-pale);
}

.menu-number {
  padding-top: 0.25rem;
  color: var(--terracotta-pale);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
}

.menu-intermezzo .menu-number {
  color: var(--terracotta);
}

.menu-region {
  display: grid;
  padding-top: 0.2rem;
}

.menu-region span {
  color: var(--terracotta-pale);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-region small {
  margin-top: 0.12rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
}

.menu-intermezzo .menu-region span {
  color: var(--terracotta-dark);
}

.menu-intermezzo .menu-region small {
  color: var(--green-900);
}

.menu-dish h3 {
  margin-bottom: 0.28rem;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  font-weight: 600;
  line-height: 1.12;
}

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

.menu-intermezzo .menu-dish p {
  color: var(--green-900);
}

.menu-included {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 2rem;
  align-items: baseline;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  color: var(--green-950);
  background: var(--cream-100);
}

.menu-included > span {
  color: var(--terracotta-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-included p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.guests {
  background: var(--cream-100);
}

.guests-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  gap: 3rem;
  align-items: end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.guests-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1.3rem;
}

.guests-intro h2 {
  max-width: none;
  margin-bottom: 0;
}

.guest-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.guest-card {
  display: grid;
  min-height: 25rem;
  grid-template-columns: minmax(10rem, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  background: var(--cream-50);
  border: 1px solid var(--line);
}

.guest-photo {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--green-900);
}

.guest-photo picture {
  position: absolute;
  inset: 0;
}

.guest-photo picture,
.guest-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.guest-photo img {
  object-fit: cover;
}

.guest-photo-wojtek img {
  object-position: 20% 50%;
}

.guest-photo-krzysztof img {
  object-position: 74% 20%;
}

.guest-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.7rem);
}

.guest-role {
  margin-bottom: 1.25rem;
  color: var(--terracotta);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guest-list h3 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1;
}

.guest-copy > p:not(.guest-role) {
  max-width: 30rem;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.guest-list a {
  color: var(--terracotta-dark);
  font-size: 0.78rem;
  font-weight: 750;
}

.place {
  color: #fff;
  background: var(--terracotta-dark);
}

.place-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: stretch;
}

.place-copy h2 {
  max-width: 14ch;
}

.map-frame {
  min-height: 36rem;
  overflow: hidden;
  background: var(--cream-200);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 36rem;
  border: 0;
}

.address-block {
  display: grid;
  margin-top: 2rem;
  padding: 1.3rem 1.4rem;
  color: var(--ink);
  background: var(--cream-50);
}

.address-block > span {
  margin-bottom: 0.55rem;
  color: var(--terracotta-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.address-block strong {
  margin-bottom: 0.75rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.address-block a {
  justify-self: start;
  padding-bottom: 0.2rem;
  color: var(--terracotta-dark);
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.place-facts {
  margin-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.place-facts p {
  display: grid;
  grid-template-columns: 6.2rem 1fr;
  gap: 1rem;
  margin: 0;
  padding-block: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.place-facts span {
  color: var(--terracotta-pale);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.place-facts strong {
  font-size: 0.84rem;
  font-weight: 700;
}

.atmosphere-list {
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.atmosphere-list article {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.5rem;
  padding-block: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.atmosphere-list article > span {
  color: var(--terracotta-pale);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.atmosphere-list small {
  color: var(--terracotta-pale);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.atmosphere-list h3 {
  margin: 0.45rem 0 0.45rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1;
}

.atmosphere-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.booking {
  background: var(--cream-200);
}

.booking-shell {
  max-width: 58rem;
}

.reservation-card {
  position: relative;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--cream-50);
  border-top: 5px solid var(--green-800);
  box-shadow: var(--paper-shadow);
}

.booking-intro {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.form-kicker {
  margin-bottom: 0.7rem;
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reservation-card h2 {
  max-width: 15ch;
  margin: 0 auto 0.8rem;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 0.98;
}

.form-intro {
  margin-bottom: 1.25rem;
  color: var(--muted);
}

.booking-price {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.2rem;
  margin-bottom: 2.25rem;
  color: var(--green-900);
  font-size: 0.82rem;
}

.booking-price span {
  padding-left: 1.2rem;
  border-left: 1px solid var(--line);
}

.form-fields {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.field {
  margin-bottom: 0.9rem;
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--green-900);
  font-size: 0.76rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 3.7rem;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(23, 55, 41, 0.35);
  border-radius: 0;
  appearance: none;
}

.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green-900) 50%),
    linear-gradient(135deg, var(--green-900) 50%, transparent 50%);
  background-position:
    calc(100% - 1.15rem) 50%,
    calc(100% - 0.85rem) 50%;
  background-size: 0.35rem 0.35rem;
  background-repeat: no-repeat;
}

.field input::placeholder {
  color: #969a94;
}

.field input:focus,
.field select:focus {
  border-color: var(--green-800);
  outline: 3px solid rgba(70, 112, 84, 0.2);
  outline-offset: 0;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--terracotta);
  outline: 2px solid rgba(180, 74, 50, 0.14);
}

.field-help,
.field-error {
  display: block;
  min-height: 1.2rem;
  margin-top: 0.35rem;
  font-size: 0.7rem;
}

.field-help {
  color: var(--muted);
}

.field-error {
  color: var(--terracotta-dark);
  font-weight: 700;
}

.field-help + .field-error:empty {
  display: none;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.button-submit {
  width: 100%;
  margin-top: 0.35rem;
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-assurance {
  margin: 0.85rem 0 0;
  color: var(--green-800);
  font-size: 0.72rem;
  font-weight: 650;
  text-align: center;
}

.privacy-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.65rem;
  text-align: center;
}

.privacy-note a {
  font-weight: 700;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status[data-kind="error"] {
  padding: 0.9rem 1rem;
  color: var(--terracotta-dark);
  background: #f9e7df;
  border-left: 3px solid var(--terracotta);
}

.reservation-card[data-state="success"] {
  max-width: 44rem;
  margin-inline: auto;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-top-width: 4px;
}

.booking-success {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0.35rem 1rem;
  align-items: start;
  text-align: left;
}

.booking-success:focus {
  outline: none;
}

.success-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  color: #fff;
  background: var(--green-800);
  border-radius: 50%;
}

.success-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-success .success-copy h2 {
  max-width: none;
  margin: 0 0 0.35rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  line-height: 1.05;
}

.success-copy p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.calendar-actions {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.calendar-button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  color: var(--green-900);
  background: #fff;
  border: 1px solid rgba(23, 55, 41, 0.42);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.calendar-button:hover,
.calendar-button:focus-visible {
  color: #fff;
  background: var(--green-900);
  border-color: var(--green-900);
}

.calendar-button:focus-visible {
  outline: 3px solid rgba(70, 112, 84, 0.24);
  outline-offset: 2px;
}

.calendar-note {
  grid-column: 1 / -1;
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.65rem;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: end;
  padding: 3rem max(1.5rem, calc((100vw - var(--shell)) / 2));
  color: #fff;
  background: var(--green-950);
  border-top: 1px solid var(--line-light);
}

.footer-brand {
  display: grid;
}

.footer-brand span {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 0.5rem;
}

.footer-links a,
.cookie-settings {
  justify-self: end;
  color: var(--terracotta-pale);
  font-size: 0.78rem;
  font-weight: 800;
}

.cookie-settings {
  padding: 0;
  background: none;
  border: 0;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 210;
  display: grid;
  max-width: 55rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-inline: auto;
  padding: 1.25rem;
  color: #fff;
  background: var(--green-950);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 60px rgba(8, 24, 17, 0.35);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
}

.cookie-actions button {
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.73rem;
  font-weight: 800;
  cursor: pointer;
}

.cookie-actions .cookie-accept {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.mobile-cta {
  display: none;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-event {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.82fr;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 5.2vw, 3.6rem);
  }

  .program-layout,
  .place-grid {
    gap: 4rem;
  }

  .menu-list article {
    grid-template-columns: 2rem 7rem minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .section {
    padding-block: 5.5rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: min(calc(100% - 3rem), 45rem);
    margin-inline: auto;
    padding: 4.5rem 0;
  }

  .hero-photo {
    min-height: 38rem;
  }

  .program-layout,
  .place-grid {
    grid-template-columns: 1fr;
  }

  .section-intro h2,
  .menu-heading h2,
  .place-copy h2 {
    font-size: clamp(2.8rem, 7vw, 3.5rem);
  }

  .menu-heading,
  .guests-intro {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .menu-heading > *,
  .guests-intro > * {
    grid-column: 1;
  }

  .menu-heading .eyebrow,
  .guests-intro .eyebrow {
    margin-bottom: 0;
  }

  .guest-list {
    grid-template-columns: 1fr;
  }

  .guest-card {
    min-height: auto;
  }

}

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

  body {
    padding-bottom: 5.2rem;
  }

  .shell {
    width: min(calc(100% - 2.25rem), var(--shell));
  }

  .section {
    padding-block: 2.75rem;
  }

  .site-header {
    min-height: 4.1rem;
    grid-template-columns: 1fr;
    gap: 0;
    padding-inline: 1.1rem;
  }

  .brand {
    justify-self: center;
  }

  .site-nav {
    display: none;
  }

  .brand-window {
    width: 11rem;
    height: 3.55rem;
  }

  .brand-window img {
    top: -0.95rem;
    width: 11rem;
  }

  .header-cta {
    display: none;
  }

  .hero-copy {
    width: min(calc(100% - 2.25rem), 45rem);
    padding: 2.5rem 0 2.2rem;
  }

  .hero .eyebrow {
    max-width: 19rem;
    line-height: 1.5;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 10.5vw, 2.625rem);
    line-height: 0.94;
  }

  .hero h1 em {
    display: inline;
    margin-top: 0;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-button {
    width: 100%;
  }

  .hero-photo {
    height: 18.5rem;
    min-height: 18.5rem;
  }

  .section-intro h2,
  .menu-heading h2,
  .place-copy h2 {
    max-width: none;
    font-size: clamp(2.45rem, 10.6vw, 2.85rem);
    line-height: 0.98;
  }

  .program-layout,
  .place-grid {
    gap: 1.75rem;
  }

  .program-list li {
    grid-template-columns: 5.25rem 1fr;
    gap: 0.9rem;
    padding-block: 0.9rem;
  }

  .program-time strong {
    font-size: 0.78rem;
  }

  .program-list h3 {
    font-size: 1.15rem;
  }

  .program-list li > div:last-child > p:last-child {
    font-size: 0.82rem;
  }

  .menu-heading {
    padding-bottom: 1.5rem;
  }

  .menu-list article,
  .menu-list .menu-intermezzo {
    grid-template-columns: 1.4rem 5rem minmax(0, 1fr);
    gap: 0.7rem;
    margin-inline: 0;
    padding: 0.95rem 0;
  }

  .menu-list .menu-intermezzo {
    margin-inline: -1.1rem;
    padding-inline: 1.1rem;
  }

  .menu-region {
    align-self: center;
  }

  .menu-dish {
    grid-column: auto;
  }

  .menu-dish h3 {
    font-size: 1.15rem;
  }

  .menu-included {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin-top: 1rem;
    padding: 1rem;
  }

  .guests-intro {
    padding-bottom: 1.5rem;
  }

  .guest-card {
    grid-template-columns: 1fr;
  }

  .guest-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .guest-copy {
    padding: 1.3rem;
  }

  .guest-role {
    margin-bottom: 0.45rem;
  }

  .guest-list h3 {
    margin-bottom: 0.55rem;
    font-size: 1.9rem;
  }

  .guest-copy > p:not(.guest-role) {
    margin-bottom: 0.65rem;
    font-size: 0.88rem;
  }

  .address-block strong {
    font-size: 0.95rem;
  }

  .address-block {
    margin-top: 2rem;
    padding: 1.1rem;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 20rem;
  }

  .place-facts p {
    grid-template-columns: 5.6rem 1fr;
    gap: 0.7rem;
  }

  .atmosphere-list article {
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
    padding-block: 0.8rem;
  }

  .atmosphere-list h3 {
    margin-block: 0.28rem;
    font-size: 1.42rem;
  }

  .atmosphere-list p {
    font-size: 0.82rem;
  }

  .reservation-card {
    margin-inline: -0.15rem;
    padding: 1.3rem;
  }

  .reservation-card h2 {
    max-width: none;
    font-size: 2.35rem;
  }

  .reservation-card[data-state="success"] {
    padding: 1.15rem;
  }

  .booking-success {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 0.3rem 0.8rem;
  }

  .success-icon {
    width: 2.4rem;
    height: 2.4rem;
  }

  .booking-success .success-copy h2 {
    font-size: 1.6rem;
  }

  .success-copy p {
    font-size: 0.82rem;
  }

  .calendar-actions {
    grid-template-columns: 1fr;
    margin-top: 0.85rem;
  }

  .form-intro {
    margin-bottom: 1.25rem;
  }

  .booking-price {
    display: grid;
    gap: 0.2rem;
    margin-bottom: 1.5rem;
  }

  .booking-price span {
    padding-left: 0;
    border-left: 0;
  }

  .form-fields {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .field {
    margin-bottom: 1rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    align-items: start;
    padding: 2rem 1.15rem;
  }

  .site-footer p {
    text-align: left;
  }

  .footer-links {
    justify-items: start;
  }

  .section-cta {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: center;
    min-height: 4.85rem;
    padding: 0.65rem 0.8rem 0.65rem 1rem;
    color: #fff;
    background: var(--green-950);
    text-decoration: none;
    box-shadow: 0 -8px 30px rgba(16, 40, 29, 0.2);
    transform: translateY(0);
  }

  .mobile-cta > span {
    display: grid;
  }

  .mobile-cta strong {
    color: var(--terracotta-pale);
    font-size: 0.8rem;
  }

  .mobile-cta small {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.61rem;
  }

  .mobile-cta b {
    justify-self: stretch;
    padding: 0.82rem 0.65rem;
    background: var(--terracotta);
    font-size: 0.7rem;
    line-height: 1.15;
    text-align: center;
  }

  .cookie-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

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

  .cookie-actions button {
    padding-inline: 0.55rem;
  }

  .cookie-consent-open .mobile-cta {
    transform: translateY(120%);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
