:root {
  --ink: #171a18;
  --charcoal: #32383a;
  --charcoal-2: #3b4244;
  --paper: #f7f3ec;
  --paper-2: #fffaf1;
  --muted: #6d7069;
  --line: rgba(23, 26, 24, 0.16);
  --line-light: rgba(255, 250, 241, 0.22);
  --olive: #6f7c44;
  --terracotta: #a64f38;
  --brass: #b99b62;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(23, 26, 24, 0.18);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
  --shell: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--paper-2);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--paper-2);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.solid,
.site-header.is-scrolled {
  background: rgba(50, 56, 58, 0.96);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--shell);
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 132px;
}

.brand img {
  width: 132px;
  height: auto;
}

.site-nav {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a,
.footer-links a,
.text-link {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.78;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  color: var(--paper-2);
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 17, 16, 0.86) 0%, rgba(14, 17, 16, 0.5) 42%, rgba(14, 17, 16, 0.12) 100%),
    linear-gradient(0deg, rgba(14, 17, 16, 0.55), rgba(14, 17, 16, 0.1) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  min-height: 88svh;
  margin: 0 auto;
  padding: 142px 0 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  max-width: 820px;
  font-size: clamp(4rem, 12vw, 9.5rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

h3 {
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.86);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
}

.hero-actions,
.reservation-band-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--paper-2);
  border-color: var(--terracotta);
}

.btn-primary:hover {
  background: #8f432f;
  border-color: #8f432f;
}

.btn-secondary {
  color: var(--paper-2);
  border-color: var(--line-light);
  background: rgba(255, 250, 241, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 250, 241, 0.16);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--paper-2);
  border-color: var(--charcoal);
}

.btn-dark:hover {
  background: var(--charcoal-2);
  border-color: var(--charcoal-2);
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.intro-section,
.gallery-section,
.menu-section {
  padding: 104px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: 72px;
  align-items: start;
}

.intro-copy p,
.split-copy p,
.reservation-copy p,
.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.quick-facts {
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.quick-facts dt {
  color: var(--ink);
  font-weight: 800;
}

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

.split-section {
  padding: 96px 0;
  background: var(--charcoal);
  color: var(--paper-2);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.split-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.split-copy p {
  color: rgba(255, 250, 241, 0.74);
  margin-top: 26px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--brass);
  font-weight: 800;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  gap: 16px;
}

.photo-tile {
  position: relative;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.photo-tile.tall {
  grid-row: span 2;
}

.photo-tile.wide {
  grid-column: span 2;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-tile:hover img {
  transform: scale(1.035);
}

.photo-tile figcaption {
  position: absolute;
  inset: auto 12px 12px;
  display: inline-flex;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  background: rgba(23, 26, 24, 0.72);
  color: var(--paper-2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.reservation-section {
  padding: 104px 0;
  background: var(--paper-2);
}

.reservation-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: start;
}

.reservation-copy {
  position: sticky;
  top: 112px;
}

.reservation-copy p {
  margin-top: 22px;
}

.phone-link {
  display: inline-flex;
  margin-top: 30px;
  color: var(--terracotta);
  font-size: 1.6rem;
  font-family: var(--serif);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.reservation-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

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

.three-columns {
  grid-template-columns: 1fr 0.9fr 1fr;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(111, 124, 68, 0.2);
}

.form-submit {
  width: 100%;
  margin-top: 20px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note.success {
  color: var(--olive);
}

.form-note.error {
  color: var(--terracotta);
}

.page-hero {
  padding: 148px 0 78px;
  background: var(--charcoal);
  color: var(--paper-2);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.56fr);
  gap: 72px;
  align-items: end;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(3rem, 5.8vw, 5.2rem);
  line-height: 1.04;
}

.page-hero p {
  color: rgba(255, 250, 241, 0.74);
}

.menu-status {
  margin: 0 0 28px;
  padding: 22px;
  border: 1px solid rgba(166, 79, 56, 0.28);
  border-radius: var(--radius);
  background: rgba(166, 79, 56, 0.08);
  color: var(--ink);
}

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

.menu-category {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.menu-category h3 {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.menu-items {
  display: grid;
  gap: 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
}

.menu-item strong,
.menu-price {
  color: var(--ink);
}

.menu-item p {
  grid-column: 1 / -1;
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.menu-price {
  font-weight: 800;
  white-space: nowrap;
}

.menu-empty {
  color: var(--muted);
}

.reservation-band {
  padding: 72px 0;
  background: var(--olive);
  color: var(--paper-2);
}

.reservation-band-inner {
  justify-content: space-between;
}

.reservation-band .eyebrow {
  color: rgba(255, 250, 241, 0.72);
}

.thanks-section {
  padding: 104px 0;
  background: var(--paper-2);
}

.thanks-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  gap: 72px;
  align-items: center;
}

.thanks-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.thanks-copy p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.thanks-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.thanks-image {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.thanks-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.site-footer {
  background: var(--charcoal);
  color: var(--paper-2);
}

.footer-map {
  height: 360px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

.footer-content {
  width: var(--shell);
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(220px, 0.8fr) minmax(180px, 0.65fr);
  gap: 42px;
  align-items: start;
}

.footer-brand img {
  width: 230px;
  height: auto;
}

.footer-brand p,
address,
.footer-links {
  color: rgba(255, 250, 241, 0.74);
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
}

address {
  font-style: normal;
}

address strong {
  display: block;
  color: var(--paper-2);
  margin-bottom: 8px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--paper-2);
}

.footer-bottom {
  width: var(--shell);
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 250, 241, 0.62);
  font-size: 0.88rem;
}

@media (max-width: 940px) {
  :root {
    --shell: min(100vw - 28px, 720px);
  }

  .header-inner {
    min-height: 92px;
    grid-template-columns: 1fr auto;
    gap: 12px 18px;
  }

  .brand {
    width: 116px;
  }

  .brand img {
    width: 116px;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero,
  .hero-content {
    min-height: 86svh;
  }

  .hero-content {
    padding-top: 158px;
  }

  .intro-grid,
  .split-grid,
  .reservation-grid,
  .page-hero-grid,
  .thanks-grid,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .reservation-copy {
    position: static;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-nav {
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(3.4rem, 20vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .hero,
  .hero-content {
    min-height: 84svh;
  }

  .hero-media img {
    object-position: 50% 62%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(14, 17, 16, 0.72) 0%, rgba(14, 17, 16, 0.4) 42%, rgba(14, 17, 16, 0.76) 100%);
  }

  .hero-content {
    padding-top: 166px;
    padding-bottom: 46px;
    justify-content: flex-end;
  }

  .btn {
    width: 100%;
  }

  .intro-section,
  .gallery-section,
  .menu-section,
  .reservation-section,
  .thanks-section {
    padding: 72px 0;
  }

  .split-section {
    padding: 72px 0;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 340px;
  }

  .photo-tile.tall,
  .photo-tile.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .two-columns,
  .three-columns {
    grid-template-columns: 1fr;
  }

  .reservation-form,
  .menu-category {
    padding: 22px;
  }

  .page-hero {
    padding: 152px 0 64px;
  }

  .page-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .reservation-band-inner {
    align-items: flex-start;
  }

  .footer-map {
    height: 300px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
