:root {
  --ink: #14110f;
  --paper: #f7f1e8;
  --cream: #fffaf1;
  --wood: #8a4c22;
  --wine: #8f1728;
  --green: #153f32;
  --gold: #b58a46;
  --muted: #6f6258;
  --line: rgba(20, 17, 15, 0.18);
  --header: rgba(20, 17, 15, 0.82);
  --shadow: 0 20px 60px rgba(20, 17, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
  transition: background 180ms ease, min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: var(--header);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.brand {
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  overflow: hidden;
  background: #efe7dc;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

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

.site-nav {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-action {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.site-nav .nav-action::after {
  display: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: #fff;
  overflow: hidden;
}

.hero picture,
.hero img {
  width: 100%;
  height: 100svh;
}

.hero img {
  object-fit: cover;
  object-position: center;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.08));
  content: "";
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 6vw, 86px);
  bottom: clamp(42px, 12vh, 118px);
  max-width: 760px;
}

.hero-copy p,
.section-kicker,
.menu-preview span {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 9vw, 128px);
  font-weight: 500;
  line-height: 0.92;
}

.hero-copy span {
  display: block;
  max-width: 540px;
  margin-top: 22px;
  font-size: clamp(18px, 2.2vw, 28px);
}

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

.hero-actions a,
.visit-actions a {
  border: 1px solid currentColor;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-actions a:first-child,
.visit-actions a:first-child {
  color: var(--ink);
  background: var(--cream);
  border-color: var(--cream);
}

.section-band {
  padding: clamp(70px, 10vw, 132px) clamp(20px, 6vw, 86px);
}

.intro {
  background: var(--cream);
}

.intro-grid,
.menu-head,
.press-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.72fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.02;
}

.intro-copy p,
.menu-head p,
.press-head p,
.split-copy p,
.visit-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
}

.photo-feature {
  position: relative;
  min-height: 82svh;
  color: #fff;
}

.photo-feature img {
  width: 100%;
  height: 82svh;
  object-fit: cover;
}

.photo-feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.06));
  content: "";
}

.feature-copy {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 6vw, 86px);
  bottom: clamp(30px, 8vw, 86px);
  max-width: 680px;
}

.feature-copy p {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-section {
  background: var(--green);
  color: #fff;
}

.menu-section .section-kicker,
.menu-section .menu-preview span {
  color: #e4bd78;
}

.menu-head p,
.menu-preview p {
  color: rgba(255, 255, 255, 0.76);
}

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.menu-actions a {
  border: 1px solid rgba(255, 255, 255, 0.62);
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-actions a:first-child {
  color: var(--ink);
  background: var(--cream);
  border-color: var(--cream);
}

.menu-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 54px;
}

.menu-images figure {
  margin: 0;
}

.menu-images img {
  width: 100%;
  background: var(--cream);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.menu-images figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: rgba(255, 255, 255, 0.22);
}

.menu-highlights article {
  padding: 26px;
  background: var(--green);
}

.menu-highlights h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 500;
}

.menu-highlights p {
  margin: 0;
  font-size: 17px;
}

.split-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  min-height: 80svh;
  background: var(--paper);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 80svh;
  object-fit: cover;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 98px);
}

.split-copy h2 {
  margin-bottom: 26px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  background: var(--cream);
}

.gallery img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.gallery img:nth-child(2) {
  margin-top: 70px;
}

.gallery img:nth-child(3) {
  margin-top: 24px;
}

.gallery img:nth-child(4) {
  margin-top: 94px;
}

.press {
  background: var(--wine);
  color: #fff;
}

.press .section-kicker {
  color: #f0c36c;
}

.press-head p {
  color: rgba(255, 255, 255, 0.78);
}

.press-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: rgba(255, 255, 255, 0.25);
}

.press-links a {
  min-height: 132px;
  display: flex;
  align-items: end;
  padding: 22px;
  background: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.05;
}

.press-links a:hover,
.press-links a:focus-visible {
  color: var(--ink);
  background: var(--cream);
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  min-height: 76svh;
  background: var(--ink);
  color: #fff;
}

.visit-image img {
  width: 100%;
  height: 100%;
  min-height: 76svh;
  object-fit: cover;
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 98px);
}

.visit-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 86px);
  color: #fff;
  background: #0d0b0a;
  font-size: 14px;
}

.site-footer p,
.site-footer span {
  margin: 0;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.64);
    color: #fff;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    color: var(--ink);
    background: var(--cream);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-action {
    margin-top: 12px;
    border-color: var(--ink);
    text-align: center;
  }

  .intro-grid,
  .menu-head,
  .press-head,
  .split-story,
  .visit {
    grid-template-columns: 1fr;
  }

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

  .split-media img,
  .visit-image img {
    min-height: 56svh;
  }

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

  .gallery img,
  .gallery img:nth-child(2),
  .gallery img:nth-child(3),
  .gallery img:nth-child(4) {
    height: auto;
    margin-top: 0;
  }

  .press-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand {
    width: 62px;
    height: 62px;
  }

  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .site-nav {
    top: 70px;
  }

  .hero-copy {
    right: 20px;
  }

  .hero-actions a,
  .visit-actions a {
    width: 100%;
    text-align: center;
  }

  .menu-actions a {
    width: 100%;
    text-align: center;
  }

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

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

  .press-links a {
    min-height: 94px;
  }
}
