:root {
  --ink: #f7efe2;
  --muted: #c8bda9;
  --soft: #958876;
  --deep: #071112;
  --deep-2: #0c1a1c;
  --cedar: #9e6f43;
  --cedar-light: #d3a36d;
  --sea: #53777c;
  --line: rgba(247, 239, 226, 0.16);
  --glass: rgba(7, 17, 18, 0.72);
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--deep);
  color: var(--ink);
  font-family: Optima, Candara, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select {
  font: inherit;
}

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

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

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  transition: background 260ms ease, border-color 260ms ease, padding 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 18, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  padding-block: 0.7rem;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
  min-width: 0;
  position: relative;
  z-index: 101;
}

.brand-mark {
  align-items: center;
  border: 1px solid rgba(247, 239, 226, 0.36);
  border-radius: 50%;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  height: 2.65rem;
  justify-content: center;
  width: 2.65rem;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(247, 239, 226, 0.78);
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--cedar-light);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 101;
}

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

.hero-image,
.hero-scrim {
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image {
  height: 112%;
  object-fit: cover;
  top: -6%;
  transform: scale(1.05);
}

.hero-scrim {
  height: 100%;
  background:
    radial-gradient(circle at 35% 45%, rgba(83, 119, 124, 0.18), transparent 34rem),
    linear-gradient(90deg, rgba(7, 17, 18, 0.88), rgba(7, 17, 18, 0.46) 52%, rgba(7, 17, 18, 0.68)),
    linear-gradient(0deg, var(--deep), transparent 34%);
}

.hero-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  max-width: 760px;
  padding: 8rem clamp(1.25rem, 7vw, 7rem) 6rem;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker,
.dish-label {
  color: var(--cedar-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-size: clamp(4rem, 13vw, 10rem);
}

h2 {
  font-size: clamp(2.35rem, 6vw, 5.2rem);
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.08;
}

.hero-copy {
  color: rgba(247, 239, 226, 0.82);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  max-width: 42rem;
}

.hero-actions,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  align-items: center;
  border: 1px solid rgba(247, 239, 226, 0.2);
  display: inline-flex;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--cedar-light);
  border-color: var(--cedar-light);
  color: #11100d;
}

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

.button-secondary {
  background: rgba(7, 17, 18, 0.4);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--cedar-light);
  color: var(--cedar-light);
}

.hero-details {
  bottom: 2rem;
  display: flex;
  gap: 1px;
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  z-index: 2;
}

.hero-details span {
  background: rgba(7, 17, 18, 0.58);
  border: 1px solid var(--line);
  color: rgba(247, 239, 226, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  padding: 0.8rem 1rem;
  text-transform: uppercase;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 4vw, 2rem);
}

.story-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 1fr);
}

.story-copy p,
.chef-copy p,
.cellar-copy p,
.visit-card p,
.contact-inner p {
  color: var(--muted);
  font-size: 1.03rem;
  max-width: 42rem;
}

.editorial-image {
  margin: 0;
  position: relative;
}

.editorial-image img,
.cellar-image img,
.chef-image img,
.gallery-section img,
.dish-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.editorial-image img {
  aspect-ratio: 4 / 5;
}

figcaption {
  color: var(--soft);
  font-size: 0.84rem;
  margin-top: 0.85rem;
}

.story-stat {
  align-self: end;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.story-stat strong {
  color: var(--cedar-light);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 400;
  line-height: 0.85;
}

.story-stat span {
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  max-width: 860px;
}

.menu-section {
  max-width: 1320px;
}

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

.dish-card {
  background: #0e2021;
  border: 1px solid var(--line);
  min-height: 24rem;
  overflow: hidden;
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease;
}

.dish-card:hover {
  border-color: rgba(211, 163, 109, 0.54);
  transform: translateY(-4px);
}

.dish-card img {
  aspect-ratio: 1 / 1;
  filter: saturate(0.92);
}

.dish-content {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.dish-content p {
  color: var(--muted);
  margin: 0;
}

.text-card {
  min-height: 100%;
}

.price {
  color: var(--cedar-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  margin-top: auto;
}

.chef-section {
  background: #0b1719;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.chef-image {
  min-height: 34rem;
  overflow: hidden;
}

.chef-copy {
  align-self: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 6vw, 6rem);
}

.chef-notes {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
}

.chef-notes div {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.chef-notes dt {
  color: var(--cedar-light);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chef-notes dd {
  color: var(--muted);
  margin: 0.35rem 0 0;
}

.cellar-section {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.feature-list {
  color: var(--muted);
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.feature-list li {
  border-top: 1px solid var(--line);
  padding: 0.85rem 0;
}

.cellar-image {
  min-height: 28rem;
  overflow: hidden;
}

.parallax-media {
  will-change: transform;
}

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

blockquote {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2rem);
}

blockquote p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  line-height: 1.25;
  margin: 0 0 1.5rem;
}

cite {
  color: var(--cedar-light);
  font-style: normal;
}

.gallery-section {
  display: grid;
  gap: 0.35rem;
  grid-template-columns: repeat(2, 1fr);
  padding: 0.35rem;
}

.gallery-section img {
  aspect-ratio: 4 / 5;
  filter: saturate(0.86);
}

.reservation-section {
  background:
    linear-gradient(rgba(7, 17, 18, 0.78), rgba(7, 17, 18, 0.86)),
    url("assets/hero-dining.png") center / cover fixed;
  padding: clamp(5rem, 11vw, 10rem) clamp(1.25rem, 4vw, 2rem);
}

.reservation-panel {
  background: rgba(7, 17, 18, 0.82);
  border: 1px solid var(--line);
  margin: 0 auto;
  max-width: 940px;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.reservation-panel p {
  color: var(--muted);
  max-width: 45rem;
}

.reservation-form {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.reservation-form label {
  display: grid;
  gap: 0.45rem;
}

.reservation-form span {
  color: var(--cedar-light);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reservation-form input,
.reservation-form select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--ink);
  min-height: 3.2rem;
  padding: 0 1rem;
}

.reservation-form select option {
  background: var(--deep);
}

.visit-section {
  display: grid;
  gap: 1.5rem;
}

.visit-card,
.hours-grid {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.hours-grid {
  display: grid;
  gap: 1.5rem;
}

.hours-grid h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.hours-grid p {
  color: var(--muted);
}

.hours-grid a:hover {
  color: var(--cedar-light);
}

.contact-section {
  background: #d8b37e;
  color: #11100d;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 2rem);
}

.contact-inner {
  align-items: end;
  display: grid;
  gap: 1.5rem;
  margin: 0 auto;
  max-width: var(--max);
}

.contact-inner .eyebrow,
.contact-inner p {
  color: #3e3327;
}

.contact-inner .button-secondary {
  background: transparent;
  border-color: rgba(17, 16, 13, 0.32);
  color: #11100d;
  justify-self: start;
}

.site-footer {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
}

.site-footer p,
.site-footer a {
  color: var(--soft);
}

.site-footer a:hover {
  color: var(--cedar-light);
}

.copyright {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

@media (min-width: 700px) {
  .story-grid {
    grid-template-columns: 0.9fr 1fr;
  }

  .story-stat {
    grid-column: 1 / 2;
  }

  .editorial-image {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }

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

  .reservation-form {
    align-items: end;
    grid-template-columns: 1.2fr 1fr 1fr auto;
  }

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

  .gallery-section {
    grid-template-columns: 1.2fr 0.8fr 1fr 0.9fr;
  }

  .gallery-section img {
    aspect-ratio: 3 / 4;
  }

  .contact-inner {
    grid-template-columns: 1fr auto;
  }

  .contact-inner h2 {
    max-width: 760px;
  }
}

@media (min-width: 940px) {
  .chef-section {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  }

  .chef-image {
    min-height: 46rem;
  }

  .cellar-section,
  .visit-section {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .site-footer {
    align-items: center;
    grid-template-columns: 1fr auto auto;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    align-items: center;
    background: rgba(7, 17, 18, 0.35);
    border: 1px solid var(--line);
    display: inline-flex;
    flex-direction: column;
    gap: 0.35rem;
    height: 2.75rem;
    justify-content: center;
    width: 2.75rem;
  }

  .nav-toggle span {
    background: var(--ink);
    display: block;
    height: 1px;
    width: 1.15rem;
  }

  .site-nav {
    background: rgba(7, 17, 18, 0.96);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 0;
    left: 0;
    opacity: 0;
    padding: 5rem 1.25rem 1.25rem;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateY(-1rem);
    transition: opacity 220ms ease, transform 220ms ease;
    z-index: 90;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-top: 1px solid var(--line);
    padding: 1rem 0;
  }

  .hero-content {
    padding-top: 7rem;
  }

  .hero-details {
    bottom: 1rem;
    left: 1.25rem;
    right: auto;
  }

  .hero-details span {
    font-size: 0.65rem;
    padding: 0.65rem 0.7rem;
  }

  .reservation-section {
    background-attachment: scroll;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
