:root {
  --paper: #f6edda;
  --paper-light: #fffaf0;
  --ink: #243a50;
  --muted: #68737c;
  --blue: #315e78;
  --line: #c7d0d3;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #c75b36; outline-offset: 4px; }
[hidden] { display: none !important; }
.site-header { position: sticky; top: 0; z-index: 10; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; padding: 1rem clamp(1.25rem, 4vw, 4rem); background: rgba(246, 237, 218, .94); border-bottom: 1px solid var(--line); }
.brand { font-family: var(--serif); font-size: 1.35rem; text-decoration: none; }
nav { display: flex; gap: 1.5rem; }
nav a, .language-switch button { font: 700 .72rem/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; }
.language-switch { justify-self: end; display: flex; gap: .35rem; }
.portfolio-return { justify-self: end; display: inline-flex; min-height: 2.75rem; align-items: center; padding-inline: .9rem; border: 1px solid var(--blue); color: var(--blue); font: 700 .72rem/1 var(--sans); letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.portfolio-return:hover { background: var(--blue); color: white; }
.language-switch button { min-width: 2.75rem; min-height: 2.75rem; border: 1px solid var(--line); background: transparent; color: var(--ink); padding: .65rem; cursor: pointer; }
.language-switch button[aria-pressed="true"] { background: var(--blue); color: white; }
.hero { min-height: 78vh; display: grid; grid-template-columns: 1.2fr 1fr; }
.hero > img { width: 100%; height: 100%; min-height: 34rem; object-fit: cover; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(3rem, 8vw, 8rem); }
.eyebrow { color: var(--blue); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
h1 { max-width: 9ch; margin: 1rem 0; font-size: clamp(3.5rem, 7vw, 7rem); line-height: .92; }
h2 { max-width: 13ch; margin: .75rem 0 1.5rem; font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 1; }
p { line-height: 1.75; }
.button { display: inline-flex; margin-top: 1rem; padding: .9rem 1.2rem; background: var(--blue); color: white; text-decoration: none; font-weight: 700; }
.section { padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 7vw, 7rem); border-top: 1px solid var(--line); }
.story { display: grid; grid-template-columns: .6fr 1fr 1fr; gap: 2rem; align-items: start; }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.menu-grid article { padding: 2rem; background: var(--paper-light); }
.menu-grid h3 { margin: 0 0 .5rem; font-size: 1.8rem; }
.menu-grid span { color: var(--blue); font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.visit dl { display: grid; grid-template-columns: repeat(2, minmax(0, 16rem)); gap: 1rem; margin: 2rem 0; }
.visit dl div { border-top: 1px solid var(--line); padding-top: 1rem; }
dt { font-size: .72rem; font-weight: 700; text-transform: uppercase; }
dd { margin: .4rem 0 0; }
.text-link { font-weight: 700; text-underline-offset: .3em; }
footer { display: flex; justify-content: space-between; gap: 1rem; padding: 1.5rem clamp(1.25rem, 4vw, 4rem); border-top: 1px solid var(--line); font-size: .75rem; }

@media (max-width: 48rem) {
  .site-header { grid-template-columns: 1fr auto; gap: .75rem; }
  .portfolio-return { grid-column: 2; grid-row: 1; }
  .language-switch { grid-column: 2; grid-row: 1; }
  .site-header nav { grid-column: 1 / -1; width: 100%; overflow-x: auto; padding-bottom: .2rem; scrollbar-width: thin; }
  .site-header nav a { flex: 0 0 auto; min-height: 2.75rem; min-width: 2.75rem; display: inline-flex; align-items: center; justify-content: center; }
  .story, .menu, .visit { scroll-margin-top: 9rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero > img { min-height: 22rem; aspect-ratio: 4 / 3; }
  .hero-copy { padding: 3.5rem 1.25rem; }
  .story, .menu-grid, .gallery { grid-template-columns: 1fr; }
  .visit dl { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}

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