:root {
  --ink: #0e120d;
  --ink-soft: #2a3027;
  --paper: #f7f0e5;
  --paper-deep: #e5d8c5;
  --clay: #8e513a;
  --olive: #4f5d3e;
  --gold: #c7a76a;
  --white: #fffaf1;
  --line: rgba(17, 20, 15, 0.16);
  --shadow: 0 28px 80px rgba(17, 20, 15, 0.18);
  --max: 1440px;
  --content: min(100% - 2rem, var(--max));
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(14, 18, 13, 0.035) 1px, transparent 1px) 0 0 / 8.333vw 8.333vw,
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

::selection {
  background: rgba(199, 167, 106, 0.32);
}

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

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

.skip-link {
  left: 1rem;
  position: fixed;
  top: -4rem;
  z-index: 20;
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  left: 0;
  padding: 1rem clamp(1rem, 3.5vw, 4rem);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 15;
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 240, 229, 0.92);
  box-shadow: 0 18px 60px rgba(17, 20, 15, 0.11);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.8rem;
  min-width: max-content;
}

.brand-mark {
  align-items: center;
  border: 1px solid rgba(199, 167, 106, 0.72);
  display: inline-flex;
  font-family: var(--serif);
  font-size: 1.2rem;
  height: 2.7rem;
  justify-content: center;
  width: 2.7rem;
}

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

.brand strong {
  font-family: var(--serif);
  font-size: 1.06rem;
  line-height: 1.1;
}

.brand small {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(0.8rem, 1.55vw, 1.65rem);
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 600;
}

.nav a {
  opacity: 0.9;
  position: relative;
}

.nav a::after {
  background: currentColor;
  bottom: -0.35rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  width: 100%;
}

.nav a:hover,
.text-link:hover,
.footer a:hover {
  color: var(--gold);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}

.language-switch,
.menu-toggle {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
}

.language-switch {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.menu-toggle {
  display: none;
  height: 2.75rem;
  position: relative;
  width: 2.75rem;
}

.menu-toggle span {
  background: currentColor;
  height: 2px;
  left: 0.65rem;
  position: absolute;
  right: 0.65rem;
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  top: 1rem;
}

.menu-toggle span:last-child {
  top: 1.65rem;
}

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

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

.button {
  align-items: center;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #17130b;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  line-height: 1.15;
  min-height: 3.25rem;
  padding: 0.85rem 1.2rem;
  position: relative;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: #d7bc83;
  border-color: #d7bc83;
  box-shadow: 0 18px 40px rgba(14, 18, 13, 0.18);
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.65rem;
  padding: 0.62rem 0.95rem;
}

.button-ghost {
  background: rgba(255, 250, 241, 0.08);
  border-color: rgba(255, 250, 241, 0.5);
  color: var(--white);
}

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

.hero {
  color: var(--white);
  min-height: 760px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  border: 1px solid rgba(255, 250, 241, 0.2);
  content: "";
  inset: 5.8rem clamp(1rem, 3.5vw, 4rem) 2rem;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.hero picture,
.hero img,
.hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero img {
  object-fit: cover;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 40%, rgba(199, 167, 106, 0.16), transparent 26rem),
    linear-gradient(90deg, rgba(14, 18, 13, 0.86), rgba(14, 18, 13, 0.32) 55%, rgba(14, 18, 13, 0.62)),
    linear-gradient(0deg, rgba(14, 18, 13, 0.76), rgba(14, 18, 13, 0.04) 45%);
}

.hero-content {
  max-width: 860px;
  padding: clamp(10rem, 24vh, 15rem) clamp(1rem, 7vw, 7rem) 15rem;
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-kicker,
.menu-card span,
.event-list span,
.hero-card span,
.intro-item span {
  color: var(--gold);
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  line-height: 0.98;
}

h1 {
  font-size: 7.2rem;
  max-width: 10.5ch;
}

h2 {
  font-size: 4.1rem;
}

h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.1;
}

.hero-copy {
  color: rgba(255, 250, 241, 0.86);
  font-size: 1.18rem;
  max-width: 740px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-card {
  background: rgba(14, 18, 13, 0.78);
  border-left: 1px solid rgba(200, 169, 109, 0.6);
  bottom: 2rem;
  max-width: 410px;
  padding: 1.45rem;
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  z-index: 3;
  backdrop-filter: blur(16px);
}

.hero-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.hero-card p {
  color: rgba(255, 250, 241, 0.76);
  margin-bottom: 1rem;
}

.hero-card a,
.intro-reserve a,
.menu-meta a {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-band {
  background: var(--ink);
  color: var(--white);
}

.intro {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}

.intro-item {
  background: rgba(255, 250, 241, 0.04);
  padding: clamp(1.4rem, 4vw, 3rem);
}

.intro-reserve {
  background: rgba(199, 167, 106, 0.12);
}

.intro-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.35rem;
  line-height: 1.05;
}

.intro-item p {
  color: rgba(255, 250, 241, 0.68);
  margin-bottom: 0;
}

.story,
.menu-section,
.gallery,
.service,
.reservation,
.press {
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 5vw, 5rem);
}

.story-grid,
.section-heading,
.reservation {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.story,
.menu-section,
.gallery,
.service,
.press {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

.story-copy {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 720px;
}

.brand-principles {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 7vw, 6rem);
}

.brand-principles article {
  border-right: 1px solid var(--line);
  padding: clamp(1.4rem, 3vw, 2.4rem) clamp(1rem, 2.4vw, 2rem) 0 0;
}

.brand-principles article:last-child {
  border-right: 0;
}

.brand-principles span {
  color: var(--clay);
  display: block;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.brand-principles p {
  color: var(--ink-soft);
}

.signature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 680px;
}

.signature img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.signature-panel {
  align-content: center;
  background:
    linear-gradient(135deg, rgba(14, 18, 13, 0.18), transparent 42%),
    var(--olive);
  color: var(--white);
  display: grid;
  padding: clamp(2rem, 5vw, 5rem);
}

.signature-panel p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.78);
  font-size: 1.08rem;
}

.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--gold);
  font-weight: 800;
  justify-self: start;
  padding-bottom: 0.2rem;
}

.section-heading {
  align-items: end;
  margin-bottom: 3rem;
}

.section-heading.compact {
  align-items: start;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.menu-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1.22fr 0.78fr;
  border: 1px solid var(--line);
}

.menu-card {
  background: rgba(255, 250, 241, 0.72);
  border: 0;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  min-height: 260px;
  padding: clamp(1.25rem, 3vw, 2rem);
  transition: background 220ms ease, transform 220ms ease;
}

.menu-card:hover {
  background: rgba(255, 250, 241, 0.96);
}

.menu-card.feature {
  display: grid;
  gap: 1.5rem;
  grid-row: span 3;
  grid-template-rows: 1fr auto;
  padding: 0;
  border-left: 0;
  border-top: 0;
}

.menu-card.feature img {
  aspect-ratio: 1.3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.menu-card.feature div {
  padding: 0 2rem 2rem;
}

.menu-card p {
  color: var(--ink-soft);
}

.menu-card strong {
  color: var(--clay);
  display: block;
  font-weight: 800;
}

.menu-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.tasting-note {
  align-items: end;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 2rem 0;
}

.tasting-note blockquote {
  font-family: var(--serif);
  font-size: 2.35rem;
  line-height: 1.12;
  margin: 0;
  max-width: 900px;
}

.tasting-note p {
  color: var(--clay);
  font-weight: 800;
  margin: 0;
  min-width: max-content;
}

.gallery {
  background: var(--paper-deep);
}

.gallery-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-grid img {
  aspect-ratio: 1;
  height: 100%;
  object-fit: cover;
  transition: filter 240ms ease, transform 240ms ease;
  width: 100%;
}

.gallery-grid img:hover {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.015);
}

.gallery-grid .wide {
  aspect-ratio: 2.05;
  grid-column: span 2;
}

.gallery-grid .tall {
  aspect-ratio: 0.7;
  grid-row: span 2;
}

.events {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: 0.9fr 1.1fr;
  padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.events-copy p {
  color: rgba(255, 250, 241, 0.72);
  font-size: 1.07rem;
}

.button-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
  margin-top: 1rem;
}

.event-list {
  display: grid;
  gap: 1px;
}

.event-list article {
  background: rgba(255, 250, 241, 0.06);
  border-left: 1px solid rgba(199, 167, 106, 0.28);
  padding: clamp(1.3rem, 3vw, 2rem);
}

.event-list p {
  color: rgba(255, 250, 241, 0.72);
  margin-bottom: 0;
}

.reservation {
  background:
    linear-gradient(90deg, rgba(247, 240, 229, 0.95), rgba(247, 240, 229, 0.86)),
    url("https://images.unsplash.com/photo-1502301103665-0b95cc738daf?auto=format&fit=crop&w=1600&q=80") center/cover;
  align-items: start;
  max-width: none;
}

.reservation-copy {
  max-width: 680px;
}

.reservation-steps {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.reservation-steps span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 1rem 0.75rem 1rem 0;
  text-transform: uppercase;
}

.contact-lines {
  display: grid;
  gap: 0.55rem;
  margin-top: 2rem;
}

.contact-lines a,
.contact-lines span {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.55rem;
}

.visit-card {
  align-items: end;
  background: var(--ink);
  color: var(--white);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1.4rem;
  padding: 1.25rem;
}

.visit-card span,
.visit-card small {
  color: rgba(255, 250, 241, 0.66);
  display: block;
}

.visit-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 0.25rem 0;
}

.booking-form {
  background: rgba(255, 250, 241, 0.94);
  border: 1px solid rgba(199, 167, 106, 0.36);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  position: sticky;
  top: 7rem;
}

.form-head {
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.4rem;
  padding-bottom: 1rem;
}

.form-head span {
  color: var(--clay);
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-head strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.15;
  margin-top: 0.25rem;
}

.booking-form label {
  color: var(--ink-soft);
  display: grid;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 0.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  background: #fffdf8;
  border: 1px solid var(--line);
  color: var(--ink);
  min-height: 3.2rem;
  padding: 0.75rem 0.9rem;
  width: 100%;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 167, 106, 0.18);
  outline: 0;
}

.booking-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

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

details {
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}

summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.55rem;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  color: var(--ink-soft);
  margin: 0.8rem 0 0;
  max-width: 820px;
}

.press {
  background: var(--paper);
}

.page-hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
  min-height: 760px;
  padding: clamp(8rem, 14vw, 12rem) clamp(1rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
}

.page-hero > div {
  max-width: 760px;
}

.page-hero h1 {
  color: var(--ink);
  font-size: 6.4rem;
  max-width: 11ch;
}

.page-hero p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.page-hero img {
  aspect-ratio: 1.02;
  height: 100%;
  max-height: 680px;
  object-fit: cover;
  width: 100%;
}

.page-hero-dark {
  background: var(--ink);
  color: var(--white);
  max-width: none;
}

.page-hero-dark > div,
.page-hero-dark > img {
  width: min(100%, 680px);
}

.page-hero-dark h1,
.page-hero-dark p:not(.eyebrow) {
  color: var(--white);
}

.home-gateway {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 5vw, 5rem);
}

.gateway-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.gateway-card {
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid var(--line);
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 260px;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  transition: background 220ms ease, transform 220ms ease;
}

.gateway-card:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.gateway-card.large {
  grid-row: span 2;
  padding: 0;
}

.gateway-card.large img {
  aspect-ratio: 1.15;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gateway-card.large span,
.gateway-card.large h3 {
  margin-left: clamp(1.3rem, 3vw, 2.2rem);
  margin-right: clamp(1.3rem, 3vw, 2.2rem);
}

.gateway-card.large span {
  margin-top: 1.4rem;
}

.gateway-card.large h3 {
  margin-bottom: 1.6rem;
}

.gateway-card span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.gateway-card h3 {
  align-self: end;
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

.gateway-card.reserve {
  background: var(--ink);
  color: var(--white);
}

.home-preview,
.home-atmosphere,
.home-concierge {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.home-preview {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  padding-top: 0;
}

.preview-copy {
  max-width: 620px;
}

.preview-copy p,
.atmosphere-copy p,
.home-concierge p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.75;
}

.preview-dish {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 26px 70px rgba(17, 20, 15, 0.12);
}

.preview-dish img {
  aspect-ratio: 1.55;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.preview-dish div {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.preview-dish span {
  color: var(--gold);
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.preview-dish strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.1;
  margin-bottom: 0.65rem;
}

.preview-dish p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.home-atmosphere {
  align-items: end;
  background: var(--paper-deep);
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1.1fr 0.9fr;
  max-width: none;
}

.atmosphere-strip {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.atmosphere-strip img {
  aspect-ratio: 0.95;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.atmosphere-strip img:first-child {
  grid-row: span 2;
}

.atmosphere-strip img:not(:first-child) {
  aspect-ratio: 1.12;
}

.atmosphere-copy {
  max-width: 620px;
}

.home-concierge {
  align-items: end;
  background:
    linear-gradient(135deg, rgba(199, 167, 106, 0.12), transparent 45%),
    var(--ink);
  color: var(--white);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: none;
}

.home-concierge > div:first-child {
  max-width: 820px;
}

.home-concierge h2 {
  max-width: 11ch;
}

.home-concierge p {
  color: rgba(255, 250, 241, 0.74);
  max-width: 720px;
}

.concierge-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.press-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr 1fr 0.8fr;
}

.press blockquote,
.award-seal {
  background: rgba(255, 250, 241, 0.64);
  border: 1px solid var(--line);
  margin: 0;
  min-height: 260px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.press blockquote {
  display: grid;
  align-content: space-between;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.press cite {
  color: var(--clay);
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 2rem;
  text-transform: uppercase;
}

.award-seal {
  align-content: center;
  display: grid;
  text-align: center;
}

.award-seal span {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.award-seal strong {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  margin: 0.6rem 0;
}

.award-seal small {
  color: var(--ink-soft);
}

.footer {
  background:
    linear-gradient(135deg, rgba(199, 167, 106, 0.1), transparent 42%),
    #0d100c;
  color: var(--white);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 5vw, 5rem);
}

.footer p,
.footer span {
  color: rgba(255, 250, 241, 0.66);
}

.footer h2 {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.legal-page {
  min-height: 100svh;
  padding: clamp(1.2rem, 4vw, 3rem);
}

.legal-brand {
  margin-bottom: clamp(3rem, 8vw, 6rem);
}

.legal-content {
  border-top: 1px solid var(--line);
  max-width: 820px;
  padding-top: clamp(2rem, 5vw, 4rem);
}

.legal-content h1 {
  color: var(--ink);
  font-size: 5.5rem;
  line-height: 0.95;
  margin-bottom: 2rem;
}

.legal-content p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 680px;
}

.legal-content a:not(.button) {
  color: var(--clay);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-soft {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav {
    background: rgba(247, 240, 229, 0.98);
    box-shadow: 0 28px 80px rgba(17, 20, 15, 0.14);
    color: var(--ink);
    display: none;
    flex-direction: column;
    font-size: 1.18rem;
    gap: 1.15rem;
    inset: 4.75rem 1rem auto;
    padding: 2rem;
    position: fixed;
    text-align: center;
  }

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

  .menu-toggle {
    display: inline-block;
  }

  .language-switch {
    display: none;
  }

  h1 {
    font-size: 5.8rem;
  }

  h2,
  .page-hero h1 {
    font-size: 4.5rem;
  }

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

  .page-hero {
    min-height: 680px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav {
    background: var(--paper);
    color: var(--ink);
    display: none;
    flex-direction: column;
    font-size: 1.2rem;
    inset: 4.75rem 0 auto;
    padding: 2rem 1rem 3rem;
    position: fixed;
  }

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

  .menu-toggle {
    display: inline-block;
  }

  .language-switch {
    display: none;
  }

  .hero-content {
    padding-top: 20vh;
  }

  h1 {
    font-size: 5.2rem;
  }

  h2,
  .page-hero h1 {
    font-size: 3.8rem;
  }

  h3 {
    font-size: 1.65rem;
  }

  .intro-item strong,
  .tasting-note blockquote,
  .press blockquote {
    font-size: 1.8rem;
  }

  .booking-form {
    position: static;
    top: auto;
  }

  .hero-card {
    bottom: 1rem;
    left: 1rem;
    max-width: none;
    right: 1rem;
  }

  .intro,
  .story-grid,
  .section-heading,
  .signature,
  .events,
  .reservation,
  .page-hero,
  .home-preview,
  .home-atmosphere,
  .home-concierge,
  .footer,
  .brand-principles,
  .press-grid,
  .gateway-grid {
    grid-template-columns: 1fr;
  }

  .signature {
    min-height: 0;
  }

  .signature img {
    aspect-ratio: 1.15;
  }

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

  .menu-card.feature {
    grid-row: auto;
  }

  .menu-card,
  .menu-card.feature {
    border-left: 0;
  }

  .tasting-note {
    align-items: start;
    grid-template-columns: 1fr;
  }

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

  .brand-principles article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding-bottom: 1.2rem;
  }

  .gateway-card.large {
    grid-row: auto;
  }

  .home-concierge {
    align-items: start;
  }

  .concierge-actions {
    justify-content: flex-start;
  }
}

@media (min-width: 621px) and (max-width: 980px) {
  .intro {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gateway-card.large {
    grid-column: span 2;
  }

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

  .award-seal {
    grid-column: span 2;
  }

  .page-hero {
    min-height: 0;
    padding-top: 8rem;
  }

  .page-hero img {
    aspect-ratio: 1.45;
    max-height: 440px;
  }

  .home-preview {
    padding-top: 4rem;
  }

  .atmosphere-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .atmosphere-strip img,
  .atmosphere-strip img:first-child,
  .atmosphere-strip img:not(:first-child) {
    aspect-ratio: 1;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.8rem 0.85rem;
  }

  .brand small,
  .header-actions .button-small {
    display: none;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero::after {
    inset: 4.9rem 0.75rem 0.75rem;
  }

  .hero-content {
    padding: 8rem 1rem 18rem;
  }

  h1 {
    font-size: 3.2rem;
    line-height: 1;
    max-width: 12ch;
  }

  h2 {
    font-size: 2.35rem;
    line-height: 1.05;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero-copy,
  .page-hero p:not(.eyebrow),
  .section-heading p,
  .story-copy {
    font-size: 1rem;
    line-height: 1.68;
  }

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

  .hero-card {
    padding: 1.1rem;
  }

  .hero-card strong {
    font-size: 1.18rem;
  }

  .hero-card p {
    font-size: 0.94rem;
  }

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

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

  .story,
  .menu-section,
  .gallery,
  .service,
  .reservation,
  .home-gateway,
  .home-preview,
  .home-atmosphere,
  .home-concierge,
  .press {
    padding: 4rem 1rem;
  }

  .page-hero {
    min-height: 0;
    padding: 6.8rem 1rem 3.2rem;
  }

  .page-hero h1 {
    font-size: 3rem;
    max-width: 12ch;
  }

  .page-hero img {
    aspect-ratio: 1.12;
    max-height: none;
  }

  .gateway-card {
    min-height: 210px;
  }

  .press blockquote,
  .award-seal {
    min-height: 0;
  }

  .preview-dish img {
    aspect-ratio: 1.08;
  }

  .preview-dish strong {
    font-size: 1.45rem;
  }

  .atmosphere-strip {
    grid-template-columns: 1fr;
  }

  .atmosphere-strip img,
  .atmosphere-strip img:first-child,
  .atmosphere-strip img:not(:first-child) {
    aspect-ratio: 1.15;
    grid-row: auto;
  }

  .home-concierge h2 {
    max-width: 12ch;
  }

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

  .form-row,
  .reservation-steps,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .wide,
  .gallery-grid .tall {
    aspect-ratio: 1.1;
    grid-column: auto;
    grid-row: auto;
  }
}
