@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/cormorant-garamond-400.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/cormorant-garamond-500.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/cormorant-garamond-600.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/cormorant-garamond-700.ttf") format("truetype");
}

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

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

:root {
  --ink: #181611;
  --muted: #70695f;
  --ivory: #f6f1e8;
  --paper: #fffdf8;
  --panel: #ffffff;
  --coal: #193a31;
  --coal-deep: #10251f;
  --sage: #2f5a49;
  --wine: #7d2434;
  --wine-dark: #5e1926;
  --brass: #c6a15f;
  --brass-dark: #8a6638;
  --line: rgba(24, 22, 17, 0.13);
  --soft-line: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 70px rgba(16, 37, 31, 0.15);
  --radius: 4px;
  --content: 1180px;
  --font-body: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-display: "Cormorant Garamond", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-ui: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.topbar {
  background: var(--coal-deep);
  color: #efe8dc;
  font-family: var(--font-ui);
  font-size: 13px;
}

.topbar__inner,
.nav__inner,
.section__inner,
.footer__inner {
  margin: 0 auto;
  max-width: var(--content);
  padding-left: 24px;
  padding-right: 24px;
}

.topbar__inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 42px;
}

.topbar a {
  text-decoration: none;
}

.topbar__tour {
  color: var(--brass);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.topbar__tour:hover {
  color: #fff7e8;
}

.nav {
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-ui);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav__inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 96px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 0;
  text-decoration: none;
}

.brand img {
  height: 74px;
  object-fit: contain;
  width: 74px;
}

.nav__links {
  align-items: center;
  display: flex;
  gap: 22px;
}

.nav__links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav__links a:hover {
  color: var(--wine);
}

.nav__links a.nav__cta {
  align-items: center;
  background: var(--wine);
  border: 1px solid var(--wine);
  border-radius: var(--radius);
  color: #fff;
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
}

.nav__links a.nav__cta:hover {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
  color: #fff;
}

.nav__mobile-cta {
  align-items: center;
  background: var(--wine);
  border: 1px solid var(--wine);
  border-radius: var(--radius);
  color: #fff;
  display: none;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  padding: 9px 13px;
  text-decoration: none;
  white-space: nowrap;
}

.nav__mobile-cta:hover {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
  color: #fff;
}

.nav__toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  display: none;
  font-weight: 700;
  padding: 10px 12px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(18, 16, 13, 0.88), rgba(18, 16, 13, 0.56) 48%, rgba(18, 16, 13, 0.18)),
    url("img/hero-897.jpg") center 44%/cover;
  color: #fff;
  min-height: 720px;
}

.hero__inner {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) 390px;
  margin: 0 auto;
  max-width: var(--content);
  padding: 112px 24px 66px;
}

.eyebrow {
  color: var(--brass);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 600;
  line-height: 0.95;
  margin: 0 0 24px;
  max-width: 760px;
}

.hero__lead {
  color: #f4ece0;
  font-size: 20px;
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 670px;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.glf-button-shell {
  align-items: center;
  background: var(--wine);
  border: 1px solid var(--wine);
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  min-height: 50px;
  padding: 14px 19px;
  text-decoration: none;
}

.button:hover,
.glf-button-shell:hover {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
}

.button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
}

.button--ghost:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.button--quiet {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.button--dark {
  background: var(--coal);
  border-color: var(--coal);
  color: #fff;
}

.button--light {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.hero__info {
  align-self: end;
  background: rgba(255, 253, 248, 0.96);
  border-top: 4px solid var(--brass);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 28px;
}

.hero__info h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 18px;
}

.hero__info dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hero__info div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.hero__info dt,
.contact-list dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__info dd {
  line-height: 1.5;
  margin: 6px 0 0;
}

.section {
  padding: 86px 0;
}

.section--white {
  background: #fff;
}

.section--ivory {
  background: var(--ivory);
}

.section--dark {
  background: var(--coal-deep);
  color: #fff;
}

.section__header {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.66fr) minmax(260px, 0.34fr);
  margin-bottom: 42px;
}

.section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1.04;
  margin: 0;
}

.section__header p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}

.section--dark .section__header p {
  color: #d8cec0;
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  margin: 0 0 12px;
}

.menu-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.intro-layout {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
}

.intro-copy {
  display: grid;
  gap: 22px;
}

.intro-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}

.intro-list {
  border-left: 3px solid var(--brass);
  display: grid;
  gap: 15px;
  margin: 6px 0 0;
  padding-left: 22px;
}

.intro-list div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.intro-list dt {
  font-family: var(--font-display);
  font-size: 24px;
}

.intro-list dd {
  color: var(--muted);
  line-height: 1.55;
  margin: 5px 0 0;
}

.intro-image {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.intro-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.menu-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.1fr 0.9fr;
}

.menu-card {
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
  overflow: hidden;
}

.menu-card--stack {
  display: block;
}

.menu-card img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  width: 100%;
}

.menu-card__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  padding: 32px;
}

.menu-list {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px 0 0;
}

.menu-list div {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.menu-list dt {
  font-weight: 700;
}

.menu-list dd {
  color: var(--muted);
  margin: 0;
}

.dish-hero {
  background:
    linear-gradient(90deg, rgba(18, 16, 13, 0.9), rgba(18, 16, 13, 0.58) 52%, rgba(18, 16, 13, 0.24)),
    url("img/cordon-bleu.jpg") center 48%/cover;
  color: #fff;
}

.traditional-hero {
  background:
    linear-gradient(90deg, rgba(18, 16, 13, 0.86), rgba(18, 16, 13, 0.48) 52%, rgba(18, 16, 13, 0.18)),
    url("img/hero-traditional-alps.jpg") center 46%/cover;
}

.dish-hero__inner {
  margin: 0 auto;
  max-width: var(--content);
  padding: 112px 24px 120px;
}

.dish-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 600;
  line-height: 0.98;
  margin: 0 0 24px;
  max-width: 840px;
}

.dish-hero p {
  color: #f2e9dd;
  font-size: 20px;
  line-height: 1.7;
  margin: 0 0 30px;
  max-width: 720px;
}

.dishes-layout {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.66fr) minmax(280px, 0.34fr);
}

.dishes-list {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 34px;
}

.dishes-list h2,
.dishes-aside h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 28px;
}

.dish-row {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 18px 0;
}

.dish-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.dish-row h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 4px;
}

.dish-row p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.dish-price {
  color: var(--wine);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  white-space: nowrap;
}

.dishes-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 18px 0 0;
  padding-top: 18px;
}

.dishes-aside {
  display: grid;
  gap: 22px;
}

.featured-dish {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.featured-dish img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.featured-dish__body {
  padding: 28px;
}

.featured-dish h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 14px;
}

.featured-dish p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 18px;
}

.dishes-aside__panel {
  background: var(--coal-deep);
  color: #fff;
  padding: 30px;
}

.dishes-aside__panel p {
  color: #f2e9dd;
  line-height: 1.65;
  margin: 0 0 20px;
}

.children-menu {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 30px;
}

.children-menu .dish-row {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 14px 0;
}

.children-menu .dish-row h3 {
  font-size: 23px;
}

.specialty-hero {
  background:
    linear-gradient(90deg, rgba(18, 16, 13, 0.88), rgba(18, 16, 13, 0.5) 52%, rgba(18, 16, 13, 0.2)),
    url("img/hero-specialties-fondue.jpg") center 50%/cover;
  color: #fff;
}

.specialties-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.specialty-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.specialty-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.specialty-placeholder {
  align-items: center;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(16, 37, 31, 0.94), rgba(125, 36, 52, 0.86)),
    url("img/paper-texture.jpg") center/cover;
  color: #fff;
  display: grid;
  justify-items: center;
  padding: 28px;
  text-align: center;
}

.specialty-placeholder span {
  border: 1px solid rgba(198, 161, 95, 0.72);
  color: #fff7e8;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: 1;
  padding: 34px 20px;
  width: 100%;
}

.specialty-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}

.specialty-card h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

.specialty-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.specialty-card .eyebrow {
  margin-bottom: 0;
}

.specialty-note {
  background: var(--coal-deep);
  color: #fff;
  margin-top: 34px;
  padding: 34px;
}

.specialty-note h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 16px;
}

.specialty-note p {
  color: #f2e9dd;
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 780px;
}

.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.gallery img:first-child {
  grid-row: span 2;
  height: 100%;
}

.events-cta {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
}

.events-cta__panel {
  border: 1px solid var(--soft-line);
  padding: 30px;
}

.events-cta__panel p {
  color: #d8cec0;
  line-height: 1.7;
  margin: 0 0 20px;
}

.events-hero {
  background:
    linear-gradient(90deg, rgba(18, 16, 13, 0.88), rgba(18, 16, 13, 0.58)),
    url("img/hero-instagram-room.png") center 42%/cover;
  color: #fff;
}

.events-hero__inner {
  margin: 0 auto;
  max-width: var(--content);
  padding: 118px 24px;
}

.events-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 600;
  line-height: 0.98;
  margin: 0 0 24px;
  max-width: 860px;
}

.events-hero p {
  color: #f2e9dd;
  font-size: 20px;
  line-height: 1.7;
  margin: 0 0 30px;
  max-width: 760px;
}

.events-split {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
}

.events-split img {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.events-list {
  display: grid;
  gap: 18px;
}

.events-list article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.events-list h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 8px;
}

.events-list p {
  color: var(--muted);
  line-height: 1.68;
  margin: 0;
}

.events-highlights {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.events-highlights div {
  border-top: 2px solid var(--brass);
  padding-top: 16px;
}

.events-highlights strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
}

.events-highlights span {
  color: var(--muted);
  line-height: 1.5;
}

.events-gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr 1fr;
}

.events-gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.events-tour {
  margin-top: 24px;
}

.contact-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.42fr);
}

.contact-panel,
.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 32px;
}

.contact-list {
  display: grid;
  gap: 17px;
  margin: 0;
}

.contact-list div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 15px;
}

.contact-list dd {
  font-size: 18px;
  line-height: 1.5;
  margin: 6px 0 0;
}

.reservation-page {
  background: linear-gradient(180deg, var(--ivory) 0%, #fff 100%);
}

.contact-page {
  background: linear-gradient(180deg, var(--ivory) 0%, #fff 52%, var(--paper) 100%);
}

.page-title,
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 18px;
}

.panel-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  margin: 0 0 18px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field--trap {
  height: 0;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.date-choice {
  display: grid;
  gap: 8px;
}

label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 13px;
  width: 100%;
}

textarea {
  min-height: 124px;
  resize: vertical;
}

.form-note {
  background: #fbf5ea;
  border-left: 4px solid var(--brass);
  color: var(--muted);
  line-height: 1.55;
  margin: 18px 0;
  padding: 15px 16px;
}

.form-note--error {
  background: #fff0f0;
  border-left-color: var(--wine);
  color: var(--wine-dark);
}

.status {
  border-radius: var(--radius);
  display: none;
  line-height: 1.5;
  margin-top: 16px;
  padding: 14px;
}

.status.is-visible {
  display: block;
}

.status--ok {
  background: #edf5ec;
  border: 1px solid rgba(111, 121, 100, 0.55);
}

.status--manual {
  background: #fff6de;
  border: 1px solid rgba(184, 148, 95, 0.68);
}

.map-card {
  background: #f4efe4;
  border: 1px solid var(--line);
  margin-bottom: 22px;
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.map-card img,
.map-frame {
  display: block;
  height: 100%;
  min-height: 320px;
  width: 100%;
}

.map-card img {
  object-fit: cover;
}

.map-card.is-loaded {
  background: #fff;
}

.map-frame {
  border: 0;
}

.map-card__overlay {
  align-items: center;
  background: linear-gradient(180deg, rgba(16, 37, 31, 0.12), rgba(16, 37, 31, 0.72));
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  padding: 22px;
  position: absolute;
  right: 0;
  top: 0;
}

.map-card__button {
  background: #fff;
  border: 1px solid rgba(16, 37, 31, 0.18);
  color: var(--coal);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 48px;
  padding: 12px 18px;
}

.contact-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
}

.lunch-page {
  background: linear-gradient(180deg, var(--ivory) 0%, #fff 48%, var(--paper) 100%);
}

.pdf-page {
  background: linear-gradient(180deg, var(--ivory) 0%, #fff 52%, var(--paper) 100%);
}

.lunch-section {
  padding-top: 44px;
}

.lunch-section .section__header {
  margin-bottom: 22px;
}

.lunch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin: 0 0 26px;
}

.lunch-date-pill {
  color: var(--wine);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin: 10px 0 0;
}

.button--ghost-light {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button--ghost-light:hover {
  background: #fff;
  border-color: var(--brass);
}

.menu-preview-pages {
  display: grid;
  gap: 26px;
  margin: 0 auto;
  max-width: 760px;
}

.menu-preview-page {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(16, 37, 31, 0.12);
  margin: 0;
  padding: 10px;
}

.menu-preview-page img {
  height: auto;
  width: 100%;
}

.lunch-intro-panel {
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  margin: 42px 0 0;
  padding: 28px 0;
}

.lunch-intro-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.3vw, 44px);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 16px;
}

.lunch-intro-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
  max-width: 680px;
}

.lunch-intro-panel dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.lunch-intro-panel div > dt,
.lunch-intro-panel dt {
  color: var(--wine);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lunch-intro-panel dd {
  color: var(--muted);
  line-height: 1.55;
  margin: 5px 0 0;
}

.lunch-menu-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: 0 auto;
  max-width: 1080px;
  overflow: hidden;
}

.lunch-menu-ribbon {
  align-items: center;
  border-top: 2px solid var(--coal-deep);
  border-bottom: 1px solid var(--line);
  color: var(--coal-deep);
  display: flex;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding: 11px 0;
  text-transform: uppercase;
}

.lunch-menu-ribbon span:first-child {
  color: var(--brass);
}

.lunch-menu-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 0 22px;
  text-align: center;
}

.lunch-menu-header img {
  height: 86px;
  margin: 0 auto;
  object-fit: contain;
  width: 86px;
}

.lunch-menu-date {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.08em;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.lunch-menu-header h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 58px);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 10px;
}

.lunch-menu-header p:last-child {
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 auto;
  max-width: 560px;
  text-transform: uppercase;
}

.lunch-menu-items {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 24px 0 18px;
}

.lunch-menu-item {
  align-items: start;
  background: transparent;
  border: 0;
  display: block;
  min-height: auto;
  padding: 14px 0 0;
  position: relative;
  text-align: center;
}

.lunch-menu-item + .lunch-menu-item {
  margin-top: 16px;
  padding-top: 42px;
}

.lunch-menu-item + .lunch-menu-item::before {
  color: var(--brass);
  content: "* * *";
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  left: 0;
  letter-spacing: 0.18em;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 0;
}

.lunch-menu-item--wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.lunch-menu-item .lunch-menu-label {
  color: var(--wine);
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  padding-bottom: 3px;
  position: relative;
  text-transform: uppercase;
}

.lunch-menu-item .lunch-menu-label::after {
  background: currentColor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}

.lunch-menu-item .lunch-menu-label span {
  margin-left: 6px;
}

.lunch-menu-item h3,
.lunch-menu-dish-line {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 600;
  line-height: 1.18;
  margin: 0 auto;
  max-width: 920px;
  text-transform: none;
}

.lunch-menu-dish-line {
  margin-top: 7px;
}

.lunch-menu-footer {
  border-top: 1px solid var(--line);
  background: transparent;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1.15fr 1fr;
  padding: 18px 0 22px;
  text-align: center;
}

.lunch-menu-footer strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.lunch-menu-footer p {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}

.lunch-weekend-panel {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 760px;
  padding: 42px;
}

.lunch-weekend-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 14px;
}

.lunch-weekend-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

.admin-page {
  background: linear-gradient(180deg, var(--ivory) 0%, #fff 52%, var(--paper) 100%);
  min-height: 100vh;
}

.admin-shell {
  margin: 0 auto;
  max-width: 1040px;
  padding: 42px 24px 72px;
}

.admin-top {
  align-items: center;
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}

.admin-top h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

.admin-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-top: 22px;
  padding: 32px;
}

.admin-card--login {
  max-width: 520px;
}

.admin-card--small {
  box-shadow: none;
}

.admin-card h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 14px;
}

.admin-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 20px;
}

.admin-card__header {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  margin-bottom: 26px;
  padding-bottom: 22px;
}

.admin-card__header p:last-child {
  margin: 0;
}

.admin-toolbar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.admin-login-form,
.admin-menu-form {
  display: grid;
  gap: 18px;
}

.admin-form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-menu-block {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.admin-menu-block__title {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 150px;
  margin-bottom: 16px;
}

.admin-menu-block h3 {
  color: var(--wine);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.admin-price-field input {
  font-weight: 800;
  text-align: right;
}

.admin-menu-block textarea {
  min-height: 78px;
}

.admin-actions {
  align-items: end;
  display: flex;
  justify-content: flex-start;
}

.admin-alert {
  border: 1px solid var(--line);
  font-family: var(--font-ui);
  font-weight: 700;
  margin-bottom: 18px;
  padding: 14px 16px;
}

.admin-alert--success {
  background: #edf5ec;
  border-color: rgba(47, 90, 73, 0.32);
  color: var(--coal);
}

.admin-alert--error {
  background: #fff0f0;
  border-color: rgba(125, 36, 52, 0.32);
  color: var(--wine-dark);
}

.footer {
  background:
    linear-gradient(rgba(16, 37, 31, 0.96), rgba(16, 37, 31, 0.98)),
    url("img/paper-texture.jpg") center/cover;
  color: #fff;
  padding: 76px 0 30px;
}

.footer__inner {
  align-items: start;
  display: grid;
  gap: 46px;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 auto;
  max-width: var(--content);
  padding-left: 24px;
  padding-right: 24px;
}

.footer__center {
  text-align: center;
}

.footer__center img {
  filter: grayscale(1) brightness(5);
  height: 118px;
  margin: 0 auto 14px;
  object-fit: contain;
  width: 118px;
}

.footer__center h2,
.footer__column h3 {
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 500;
  margin: 0 0 30px;
  text-transform: uppercase;
}

.footer__center h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 28px;
}

.footer__column {
  text-align: center;
}

.footer__column p {
  line-height: 1.75;
  margin: 0 0 18px;
}

.footer__column a {
  color: #fff;
  text-decoration: none;
}

.footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(184, 148, 95, 0.7);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin: 36px auto 0;
  max-width: var(--content);
  padding: 26px 24px 0;
}

.footer__credit {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-align: center;
}

.footer__links {
  align-items: center;
  display: flex;
  gap: 16px;
}

.footer__links a,
.footer__credit a,
.footer__link-button {
  color: #fff;
  text-decoration: none;
}

.footer__link-button {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.legal-page {
  max-width: 860px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.7;
}

.cookie-banner {
  background: #fffaf3;
  border: 1px solid rgba(184, 148, 95, 0.42);
  box-shadow: 0 22px 70px rgba(16, 37, 31, 0.2);
  color: var(--coal);
  display: none;
  gap: 20px;
  grid-template-columns: 1fr auto;
  left: 24px;
  max-width: 760px;
  padding: 20px;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner__copy h2 {
  color: var(--coal);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.cookie-banner__copy p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 10px;
}

.cookie-banner__copy a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.cookie-banner__actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  min-width: 210px;
}

.cookie-banner__button {
  background: #fff;
  border: 1px solid rgba(16, 37, 31, 0.2);
  color: var(--coal);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  min-height: 44px;
  padding: 10px 14px;
}

.cookie-banner__button--primary {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

@media (max-width: 940px) {
  .nav {
    top: 0;
  }

  .nav__inner {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    min-height: 78px;
    padding-left: 16px;
    padding-right: 170px;
    position: relative;
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand img {
    height: 58px;
    width: 58px;
  }

  .nav__mobile-cta {
    display: inline-flex;
    margin-left: 0;
    position: absolute;
    right: 88px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav__toggle {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    min-height: 42px;
    min-width: 62px;
    padding: 9px 12px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav__links {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 45px rgba(16, 37, 31, 0.12);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 8px 16px 18px;
    position: absolute;
    right: 0;
    top: 78px;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links > a {
    border-bottom: 1px solid var(--line);
    display: block;
    padding: 13px 2px;
    width: 100%;
  }

  .nav__links a.nav__cta {
    display: none;
  }

  .hero__inner,
  .section__header,
  .contact-layout,
  .intro-layout,
  .dishes-layout,
  .specialties-grid,
  .lunch-intro-panel,
  .events-cta,
  .events-split {
    grid-template-columns: 1fr;
  }

  .events-highlights {
    grid-template-columns: 1fr;
  }

  .admin-card__header,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .lunch-menu-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lunch-menu-header img {
    margin: 0 auto;
  }

  .lunch-menu-header p:last-child {
    margin-left: auto;
    margin-right: auto;
  }

  .lunch-menu-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .topbar {
    font-size: 11px;
  }

  .topbar__inner {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    min-height: auto;
    overflow: hidden;
    padding: 7px 16px;
  }

  .topbar__inner span:first-child,
  .topbar__inner span:nth-child(3) {
    display: none;
  }

  .topbar__inner a {
    flex: 0 1 auto;
    line-height: 1.2;
    min-width: 0;
    white-space: nowrap;
  }

  .topbar__tour {
    flex: 0 0 auto;
    margin-left: auto;
    max-width: 128px;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__credit {
    text-align: left;
  }

  .footer__links {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .cookie-banner.is-visible {
    display: block;
  }

  .cookie-banner {
    left: 12px;
    max-height: calc(100dvh - 24px);
    overflow: auto;
    padding: 16px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__actions {
    margin-top: 16px;
    min-width: 0;
  }

  .nav__inner {
    min-height: 68px;
  }

  .brand img {
    height: 52px;
    width: 52px;
  }

  .nav__mobile-cta,
  .nav__toggle {
    font-size: 12px;
    min-height: 38px;
    padding: 8px 10px;
  }

  .nav__mobile-cta {
    max-width: 118px;
  }

  .nav__links.is-open {
    top: 68px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    gap: 34px;
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(44px, 16vw, 64px);
  }

  .page-title,
  .section__header p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .lunch-page .page-title {
    font-size: clamp(40px, 11vw, 52px);
  }

  .hero__lead {
    font-size: 18px;
  }

  .menu-card {
    display: block;
  }

  .menu-card img {
    min-height: 220px;
  }

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

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .admin-shell {
    padding: 28px 18px 58px;
  }

  .admin-top,
  .admin-menu-block__title {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .admin-top {
    flex-direction: column;
  }

  .lunch-menu-card {
    margin-left: 0;
    margin-right: 0;
  }

  .menu-preview-pages {
    gap: 16px;
    max-width: 100%;
  }

  .menu-preview-page {
    padding: 6px;
  }

  .lunch-menu-ribbon {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 12px 20px;
  }

  .lunch-menu-header {
    padding: 28px 0 24px;
  }

  .lunch-menu-header p:last-child {
    font-size: 13px;
    line-height: 1.45;
    max-width: 330px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .lunch-menu-items {
    padding: 22px 0;
  }

  .lunch-menu-item {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px;
  }

  .lunch-menu-footer {
    padding: 22px 0;
  }

  .lunch-weekend-panel {
    padding: 28px 22px;
  }

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

  .gallery img:first-child {
    grid-row: auto;
  }

  .events-gallery {
    grid-template-columns: 1fr;
  }

}

@media print {
  @page {
    margin: 12mm;
    size: A4;
  }

  body {
    background: #fff;
    color: #000;
  }

  .topbar,
  .nav,
  .footer,
  .lunch-actions,
  .lunch-page .section__header {
    display: none !important;
  }

  .lunch-section {
    padding: 0;
  }

  .section__inner {
    max-width: none;
    padding: 0;
  }

  .lunch-menu-card {
    border: 0;
    box-shadow: none;
    max-width: none;
  }

  .lunch-menu-ribbon {
    background: #fff;
    border-bottom: 1px solid #000;
    color: #000;
    padding: 0 0 8px;
  }

  .lunch-menu-ribbon span:first-child {
    color: #000;
  }

  .lunch-menu-header {
    gap: 16px;
    grid-template-columns: 72px 1fr;
    padding: 18px 0 16px;
    text-align: left;
  }

  .lunch-menu-header img {
    height: 68px;
    margin: 0;
    width: 68px;
  }

  .lunch-menu-header h2 {
    font-size: 34pt;
  }

  .lunch-menu-items {
    gap: 9px;
    grid-template-columns: 1fr 1fr;
    margin: 0;
    padding: 18px 0;
  }

  .lunch-menu-item {
    break-inside: avoid;
    min-height: 94px;
    padding: 10px;
  }

  .lunch-menu-item h3 {
    font-size: 17pt;
  }

  .lunch-menu-footer {
    background: #fff;
    grid-template-columns: 1fr 1.15fr 1fr;
    padding: 14px 0 0;
  }
}
