:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --ink: #23201d;
  --muted: #6f6960;
  --brand: #a7352f;
  --brand-dark: #76231f;
  --header-red: #670202;
  --header-height: 153px;
  --hero-height: clamp(
    520px,
    calc(100svh - var(--header-height)),
    660px
  );
  --olive: #667245;
  --gold: #c39a52;
  --line: #e2ddd5;
  --shadow: 0 22px 60px rgba(48, 38, 30, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 100;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--ink);
  color: white;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: var(--header-height);
  padding: 36px clamp(18px, 4vw, 55px);
  background: var(--header-red);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

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

.brand img {
  border-radius: 50%;
  background: white;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  color: white;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 26px;
  font-size: 1.18rem;
}

.main-nav a,
.header-call,
.lang-link,
.button,
.social-links a,
.site-footer a {
  text-decoration: none;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: white;
}

.header-call {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: white;
  font-weight: 700;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.lang-link.active {
  background: var(--ink);
  color: white;
}

.flag {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 15px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.16);
}

.flag-fr {
  background: linear-gradient(
    90deg,
    #21468b 0 33.333%,
    #fff 33.333% 66.666%,
    #ef4135 66.666% 100%
  );
}

.flag-uk {
  background: #1f3f8f;
}

.flag-uk::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(34deg, transparent 43%, #fff 43% 57%, transparent 57%),
    linear-gradient(-34deg, transparent 43%, #fff 43% 57%, transparent 57%),
    linear-gradient(34deg, transparent 47%, #c8102e 47% 53%, transparent 53%),
    linear-gradient(-34deg, transparent 47%, #c8102e 47% 53%, transparent 53%),
    linear-gradient(90deg, transparent 40%, #fff 40% 60%, transparent 60%),
    linear-gradient(0deg, transparent 36%, #fff 36% 64%, transparent 64%),
    linear-gradient(90deg, transparent 46%, #c8102e 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 44%, #c8102e 44% 56%, transparent 56%);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: var(--hero-height);
  overflow: hidden;
  background: var(--ink);
}

.hero-gallery {
  display: grid;
  align-items: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slider::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(20, 16, 13, 0.46);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-image: var(--slide-image);
  background-position: var(--slide-position, 50% 50%);
  background-size: cover;
  transition: opacity 1200ms ease;
}

.hero-slide img {
  display: none;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 8vw, 92px);
}

.hero-overlay {
  align-items: center;
  min-height: var(--hero-height);
  max-width: 820px;
  margin: 0 auto;
  color: white;
  text-align: center;
}

.hero-overlay .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.hero-overlay .hero-text {
  color: rgba(255, 255, 255, 0.84);
}

.hero-overlay .button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  backdrop-filter: blur(12px);
}

.hero-overlay .hero-actions {
  justify-content: center;
}

.hero-map-button {
  flex-basis: 100%;
  max-width: max-content;
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 10.5em;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 6.4rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  background: var(--brand);
  color: white;
}

.button.secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.button:hover,
.button:focus-visible,
.header-call:hover,
.header-call:focus-visible,
.lang-link:hover,
.lang-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(48, 38, 30, 0.12);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 42px 0 0;
}

.hero-facts div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-facts dt {
  color: var(--brand);
  font-weight: 800;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 4vw, 36px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.section-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.image-pair {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 16px;
  align-items: end;
}

.image-pair img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(48, 38, 30, 0.1);
}

.image-pair img:first-child {
  height: 460px;
}

.image-pair img:last-child {
  height: 560px;
}

.menu-section {
  max-width: none;
  background: #f0eee9;
}

.menu-feature {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 48px);
  background: #f0eee9;
  color: white;
}

.menu-feature-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr) minmax(
      280px,
      1fr
    );
  max-width: 1220px;
  min-height: 440px;
  margin: 0 auto;
}

.menu-motion-card {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  background: #7e221e;
}

.menu-motion-card img {
  position: absolute;
  top: -13%;
  left: -13%;
  width: 126%;
  max-width: none;
  height: 126%;
  object-fit: cover;
  transform: translate3d(var(--photo-x, 0px), var(--photo-y, 0px), 0);
  transition: transform 1000ms cubic-bezier(0, 0.33, 0.07, 1.03);
}

.menu-motion-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(20, 16, 13, 0.06),
    rgba(20, 16, 13, 0.38)
  );
  pointer-events: none;
}

.menu-motion-card--text::after {
  background: rgba(20, 16, 13, 0.42);
}

.menu-photo-copy {
  position: absolute;
  z-index: 1;
  inset: auto clamp(28px, 5vw, 76px) clamp(44px, 7vw, 96px);
}

.menu-photo-copy .eyebrow,
.menu-feature-panel .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.menu-photo-copy h3 {
  max-width: 300px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.95rem, 3.8vw, 3.85rem);
  line-height: 0.98;
}

.menu-feature-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 440px;
  padding: clamp(44px, 6vw, 86px);
  background: #b95544;
}

.menu-feature-panel h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.9;
}

.menu-feature-panel p:not(.eyebrow) {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.menu-feature .button.primary {
  background: white;
  color: #b95544;
}

.menu-feature .button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
  color: white;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.menu-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.preview-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-self: stretch;
}

.preview-prices span,
.preview-card,
.menu-summary,
.menu-chapter {
  border: 1px solid rgba(102, 114, 69, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(48, 38, 30, 0.08);
}

.preview-prices span {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 20px 14px;
  text-align: center;
}

.preview-prices small,
.menu-summary span,
.dish-row p {
  color: var(--muted);
}

.preview-prices small {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-prices strong {
  color: var(--brand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.preview-card {
  padding: clamp(26px, 4vw, 42px);
}

.preview-card h3 {
  max-width: 640px;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.preview-card p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.menu-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(68px, 9vw, 118px) clamp(20px, 4vw, 36px) clamp(38px, 6vw, 72px);
}

.menu-page-hero h1 {
  margin-bottom: 14px;
}

.menu-page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.menu-page-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.menu-board {
  display: grid;
  grid-template-columns: minmax(250px, 0.33fr) minmax(0, 1fr);
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 36px) clamp(76px, 10vw, 126px);
}

.menu-paper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 36px) clamp(82px, 10vw, 132px);
  background: #fff;
}

.wine-paper {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 66px) clamp(20px, 4vw, 36px)
    clamp(82px, 10vw, 132px);
  background: #fff;
}

.wine-list-note {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  text-align: center;
}

.wine-family {
  padding-top: clamp(56px, 8vw, 84px);
}

.wine-family + .wine-family {
  margin-top: clamp(58px, 8vw, 86px);
  border-top: 1px solid var(--line);
}

.wine-family-heading {
  margin-bottom: 42px;
  text-align: center;
}

.wine-family-heading .eyebrow {
  margin-bottom: 10px;
  color: #b6574b;
}

.wine-family-heading h2 {
  margin: 0;
  color: #b6574b;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.wine-region {
  max-width: 780px;
  margin: 0 auto;
}

.wine-region + .wine-region {
  margin-top: clamp(34px, 5vw, 50px);
}

.wine-region h3 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(182, 87, 75, 0.58);
  color: #5d5b58;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.7vw, 1.75rem);
  font-weight: 500;
}

.wine-region--gems h3 {
  color: #b6574b;
}

.wine-column-head,
.wine-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px 58px;
  gap: 14px;
}

.wine-column-head {
  padding: 0 0 8px;
  color: #96928d;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
}

.wine-row {
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #ece8e2;
}

.wine-row h4 {
  margin: 0;
  color: #5d5b58;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.28;
}

.wine-row p {
  margin: 3px 0 0;
  color: #96928d;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.94rem;
  font-style: italic;
  line-height: 1.3;
}

.wine-row--natural h4,
.wine-row--natural p {
  color: var(--olive);
}

.wine-price {
  color: #56534f;
  font-size: 1rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.monthly-special {
  max-width: 780px;
  margin: clamp(36px, 5vw, 56px) auto 0;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid #b6574b;
  border-radius: 2px;
  background: #fff;
  text-align: center;
}

.monthly-special .eyebrow {
  margin-bottom: 10px;
  color: #b6574b;
  letter-spacing: 0.14em;
}

.monthly-special h2 {
  margin-bottom: 10px;
  color: #5d5b58;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.special-description {
  max-width: 620px;
  margin: 0 auto;
  color: #7f7a74;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.special-note {
  margin: 18px 0 0;
  color: #b6574b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.special-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 560px;
  margin: 24px auto 0;
  border-top: 1px solid #ded9d2;
  border-bottom: 1px solid #ded9d2;
}

.special-prices div {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}

.special-prices div + div {
  border-left: 1px solid #ded9d2;
}

.special-prices span {
  color: #5d5b58;
  text-align: left;
}

.special-prices strong {
  color: #b6574b;
  font-size: 1.16rem;
  white-space: nowrap;
}

.paper-section {
  margin: 0 auto;
  padding-top: clamp(36px, 6vw, 64px);
  text-align: center;
}

.paper-section h2 {
  margin: 0 0 22px;
  color: #b6574b;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  line-height: 1;
}

.paper-dish {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  gap: 18px;
  align-items: start;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 0 18px;
}

.paper-dish + .paper-dish {
  padding-top: 6px;
}

.paper-dish:not(:last-child)::after {
  position: absolute;
  right: 50%;
  bottom: 3px;
  width: 6px;
  height: 6px;
  content: "";
  border: 1px solid #b6574b;
  transform: rotate(45deg);
}

.paper-dish h3 {
  margin: 0;
  color: #5d5b58;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.18rem, 2.1vw, 1.5rem);
  font-weight: 400;
  line-height: 1.24;
}

.paper-dish p {
  margin: 2px 0 0;
  color: #96928d;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.98rem, 1.7vw, 1.18rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
}

.paper-dish strong {
  color: #56534f;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

.menu-summary {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 24px;
}

.menu-summary h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.menu-summary h2:not(:first-child) {
  margin-top: 26px;
}

.menu-summary ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-summary li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.menu-summary strong {
  color: var(--brand);
}

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

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

.menu-chapter {
  padding: clamp(24px, 4vw, 38px);
}

.menu-chapter.accent {
  background: var(--brand-dark);
  color: white;
}

.chapter-title {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.chapter-title span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f2eee6;
  color: var(--brand-dark);
  font-weight: 900;
}

.menu-chapter.accent .chapter-title span {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.chapter-title h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.dish-row {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.menu-chapter.accent .dish-row {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.dish-row h3 {
  margin-bottom: 4px;
  font-size: 1.12rem;
}

.dish-row p {
  margin-bottom: 0;
}

.menu-chapter.accent .dish-row p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-section {
  max-width: none;
  background: var(--surface);
}

.section-heading.compact {
  margin-bottom: 34px;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 92px;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
  max-width: 1060px;
  margin: 0 auto;
}

.gallery-item {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #f0eee9;
  box-shadow: 0 12px 28px rgba(48, 38, 30, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item--wide {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-item--tall {
  grid-column: span 2;
  grid-row: span 4;
}

.gallery-item--square {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--large {
  grid-column: span 4;
  grid-row: span 2;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
}

.contact-card,
.address-block {
  border-radius: 8px;
  padding: clamp(26px, 5vw, 46px);
}

.contact-card {
  background: var(--brand);
  color: white;
}

.contact-card .eyebrow,
.contact-card p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card h2 {
  color: white;
}

.address-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-style: normal;
}

.address-block strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.address-block a {
  color: var(--brand-dark);
  font-weight: 800;
}

.opening-hours {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.opening-hours h3 {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.opening-hours p {
  margin-bottom: 0;
  color: var(--muted);
}

.opening-hours dl {
  display: grid;
  gap: 4px;
  margin: 10px 0 0;
}

.opening-hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.opening-hours dt {
  font-weight: 700;
}

.opening-hours dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.opening-hours .closed-days {
  margin-top: 8px;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.social-links a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 42px 20px 90px;
  background: var(--ink);
  color: white;
}

.site-footer img {
  border-radius: 50%;
}

.site-footer p {
  margin: 0;
}

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

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  :root {
    --header-height: 112px;
    --hero-height: clamp(
      520px,
      calc(100svh - var(--header-height)),
      620px
    );
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 26px clamp(18px, 4vw, 36px);
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

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

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .main-nav,
  .header-call {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .main-nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    gap: 10px;
    justify-self: stretch;
    padding: 14px 0 4px;
  }

  .main-nav.is-open a {
    padding: 10px 0;
    border-top: 1px solid var(--line);
  }

  .hero,
  .intro,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .menu-preview,
  .menu-board,
  .menu-page-hero {
    grid-template-columns: 1fr;
  }

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

  .menu-feature-panel {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .menu-summary {
    position: static;
  }

  .intro {
    gap: 34px;
  }

  .image-pair {
    grid-template-columns: 1fr 1fr;
  }

  .image-pair img:first-child,
  .image-pair img:last-child {
    height: 360px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 86px;
    --hero-height: max(600px, calc(100svh - var(--header-height)));
  }

  .site-header {
    padding: 14px 16px;
  }

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

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

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

  .hero-content {
    padding: 24px 20px 88px;
  }

  .hero-overlay {
    min-height: var(--hero-height);
    justify-content: end;
  }

  .hero-slide {
    background-position: var(
      --slide-position-mobile,
      var(--slide-position, 50% 50%)
    );
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-overlay .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 420px);
  }

  .hero-overlay .hero-actions .button {
    padding: 11px 12px;
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .hero-overlay .hero-map-button {
    grid-column: 1 / -1;
    max-width: none;
  }

  .menu-feature {
    padding: 36px 16px;
  }

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

  .menu-motion-card,
  .menu-feature-panel {
    min-height: 340px;
  }

  .menu-feature-panel {
    padding: 42px 22px 52px;
  }

  .menu-feature-panel h2 {
    font-size: clamp(3.2rem, 20vw, 5.2rem);
  }

  .menu-photo-copy {
    inset: auto 24px 42px;
  }

  .hero-facts,
  .gallery-grid,
  .image-pair {
    grid-template-columns: 1fr;
  }

  .image-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

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

  .gallery-item--wide,
  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 3;
  }

  .gallery-item--square {
    grid-column: span 1;
    grid-row: span 2;
  }

  .image-pair img:first-child,
  .image-pair img:last-child {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .section {
    padding: 68px 20px;
  }

  .preview-prices {
    grid-template-columns: 1fr;
  }

  .preview-prices span {
    min-height: 104px;
  }

  .menu-page-hero {
    padding-top: 48px;
  }

  .menu-page-hero .button {
    width: 100%;
  }

  .menu-paper {
    padding-right: 16px;
    padding-left: 16px;
  }

  .wine-paper {
    padding-right: 16px;
    padding-left: 16px;
  }

  .wine-family-heading h2 {
    font-size: 1.55rem;
    letter-spacing: 0.12em;
  }

  .wine-column-head,
  .wine-row {
    grid-template-columns: minmax(0, 1fr) 44px 44px;
    gap: 8px;
  }

  .wine-row h4 {
    font-size: 1rem;
  }

  .wine-row p {
    font-size: 0.88rem;
  }

  .wine-price {
    font-size: 0.92rem;
  }

  .monthly-special {
    padding: 28px 20px;
  }

  .special-prices {
    grid-template-columns: 1fr;
  }

  .special-prices div + div {
    border-top: 1px solid #ded9d2;
    border-left: 0;
  }

  .paper-section h2 {
    letter-spacing: 0.28em;
  }

  .paper-dish {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 10px;
  }

  .paper-dish h3 {
    font-size: 1.05rem;
  }

  .paper-dish p {
    font-size: 0.94rem;
  }

  .mobile-cta {
    position: fixed;
    z-index: 60;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(226, 221, 213, 0.88);
    border-radius: 999px;
    background: rgba(251, 250, 247, 0.96);
    box-shadow: 0 16px 42px rgba(35, 32, 29, 0.2);
    backdrop-filter: blur(18px);
  }

  .mobile-cta a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--brand);
    color: white;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-cta a + a {
    background: var(--ink);
  }
}

@media (max-width: 380px) {
  .brand > span {
    display: none;
  }

  h1 {
    font-size: clamp(2.15rem, 10.5vw, 2.75rem);
  }

  .hero-content {
    padding-bottom: 92px;
  }

  .lang-link {
    padding: 6px;
  }

  .lang-link span:last-child {
    display: none;
  }
}

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

  .hero-slide,
  .gallery-item img,
  .menu-motion-card img {
    transition: none;
  }
}
