:root {
  --ink: #25211d;
  --muted: #6f6257;
  --paper: #fbf8f2;
  --linen: #eee5d9;
  --clay: #9b6f5b;
  --terracotta: #8a4b37;
  --olive: #59654a;
  --charcoal: #171512;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(37, 33, 29, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(251, 248, 242, 0.92);
  border-bottom: 1px solid rgba(37, 33, 29, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
}

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

.brand span {
  font-size: 12px;
  color: var(--muted);
}

.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a,
.nav-cta,
.button {
  text-decoration: none;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--terracotta);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.48);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  padding: clamp(90px, 15vh, 160px) clamp(20px, 5vw, 72px) clamp(38px, 8vh, 80px);
  color: var(--white);
}

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

.hero-media {
  z-index: -2;
  background: var(--charcoal);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.95);
}

.hero-media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 21, 18, 0.82), rgba(23, 21, 18, 0.38) 54%, rgba(23, 21, 18, 0.25)),
    linear-gradient(0deg, rgba(23, 21, 18, 0.72), transparent 42%);
}

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

.kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker {
  color: #f2c7a4;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  max-width: 9ch;
  font-size: clamp(64px, 11vw, 148px);
}

h2 {
  max-width: 760px;
  font-size: clamp(40px, 6vw, 76px);
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(18px, 2.2vw, 24px);
}

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

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(24px, 6vh, 74px);
  width: min(330px, calc(100vw - 36px));
  padding: 20px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  background: rgba(23, 21, 18, 0.52);
  backdrop-filter: blur(12px);
}

.hero-card span,
.hero-card small {
  display: block;
  color: rgba(255, 253, 248, 0.72);
}

.hero-card strong {
  display: block;
  margin: 6px 0;
  font-size: 22px;
}

.section,
.section-band {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 72px);
}

.section-band {
  background: var(--linen);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}

.intro p:last-child,
.section-heading p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section-heading.centered {
  justify-items: center;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

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

.gallery-feature img {
  min-height: 578px;
}

.menu-section {
  background: var(--paper);
}

.written-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  margin-top: 32px;
}

.menu-card {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(37, 33, 29, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(37, 33, 29, 0.08);
}

.menu-card-wide {
  grid-column: 1 / -1;
}

.menu-card h3 {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

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

.menu-card li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(37, 33, 29, 0.1);
}

.menu-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.menu-card span {
  font-weight: 700;
}

.menu-card em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
}

.menu-card strong {
  white-space: nowrap;
  color: var(--olive);
}

.menu-note {
  max-width: 860px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

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

.contact .eyebrow,
.contact p {
  color: #d8b095;
}

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

.contact-link {
  min-height: 130px;
  padding: 22px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  text-decoration: none;
  background: rgba(255, 253, 248, 0.06);
}

.contact-link span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-link strong {
  font-size: clamp(22px, 3vw, 34px);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: rgba(255, 253, 248, 0.72);
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  font-size: 14px;
}

footer p {
  margin: 0;
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 780px;
    align-items: center;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .intro-grid,
  .contact-grid,
  .gallery,
  .written-menu,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .menu-card-wide {
    grid-column: auto;
  }

  .gallery img {
    min-height: 0;
    height: auto;
  }

  .gallery-feature {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand strong {
    font-size: 22px;
  }

  .nav-cta,
  .button {
    min-height: 42px;
    padding: 10px 14px;
  }

  .hero {
    min-height: 720px;
    padding: 88px 18px 34px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-copy,
  .intro p:last-child,
  .section-heading p,
  .contact p {
    font-size: 16px;
  }

  .section,
  .section-band {
    padding: 64px 18px;
  }

  .gallery {
    gap: 12px;
  }
}
