:root {
  --butter: #fff4c7;
  --butter-soft: #fff3b8;
  --butter-deep: #ffe05c;
  --ink: #2f2f2d;
  --ink-soft: #44423f;
  --paper: #fff8dc;
  --paper-warm: #fbefbd;
  --line: rgba(47, 47, 45, 0.16);
  --line-light: rgba(255, 243, 184, 0.22);
  --shadow: 0 24px 70px rgba(47, 47, 45, 0.18);
  --container: min(1180px, calc(100vw - 40px));
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  scroll-behavior: smooth;
}

body.is-nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100px;
  width: 100%;
  padding: 18px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(60, 60, 60, 0.92);
  color: var(--paper);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-light);
}

.brand {
  width: min(260px, 58vw);
}

.brand img {
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: rgba(255, 248, 220, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease;
}

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

.nav-toggle {
  display: none;
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(60px, 6vw, 100px) max(20px, calc((100vw - 1180px) / 2)) 42px;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(60, 60, 60, 0.5) 0%, rgba(60, 60, 60, 0.2) 44%, rgba(60, 60, 60, 0) 100%),
    linear-gradient(180deg, rgba(60, 60, 60, 0), rgba(60, 60, 60, 0.72));
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: calc(100% + 300px);
}

.hero-parallax img {
  height: 118%;
  transform: translate3d(0, -4%, 0) scale(1.12);
}

.hero-content,
.opening-card {
  position: relative;
  z-index: 1;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.96;
}

h1 {
  font-size: clamp(4.6rem, 13vw, 11rem);
  color: #fff;
}

.hero-lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 248, 220, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

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

.button-ghost {
  color: var(--paper);
  border-color: var(--line-light);
  background: rgba(255, 248, 220, 0.06);
}

.opening-card {
  justify-self: end;
  width: min(340px, 100%);
  margin-top: 72px;
  padding: 24px;
  background: var(--butter);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.opening-card span,
.instagram-profile span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.opening-card strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}

.opening-card p {
  margin: 18px 0 0;
  color: rgba(47, 47, 45, 0.78);
  font-weight: 800;
  line-height: 1.5;
}

section:not(.hero),
.site-footer {
  padding: clamp(72px, 10vw, 128px) max(20px, calc((100vw - 1180px) / 2));
}

.section-heading {
  width: var(--container);
  margin: 0 auto 34px;
}

.section-heading h2 {
  max-width: 820px;
  font-size: clamp(2.8rem, 6vw, 6.4rem);
}

.welcome-grid,
.hours-grid,
.instagram-layout {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 24px;
  align-items: stretch;
}

.welcome-copy {
  display: grid;
  align-content: end;
  padding: clamp(24px, 4vw, 44px);
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.welcome-copy p,
.menu-note,
.reservation-panel p,
.footer-brand p {
  color: rgba(47, 47, 45, 0.74);
  line-height: 1.8;
}

.welcome-copy p {
  max-width: 66ch;
  margin: 0;
}

.welcome-copy p + p {
  margin-top: 18px;
}

.welcome-image,
.gallery-item,
.post-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.welcome-image {
  min-height: 620px;
  box-shadow: var(--shadow);
}

.welcome-image img,
.gallery-item img,
.post-card img {
  height: 100%;
  object-fit: cover;
}
.welcome-image img{
  object-position: right;
}
.gallery .section-heading h2 {
  color: var(--paper);
}

.gallery-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.gallery-item {
  min-height: 430px;
  background: #191918;
}

.gallery-wide {
  grid-row: span 2;
  min-height: 876px;
}

.menu-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-card {
  padding: 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
}

.menu-card h3 {
  color: var(--butter);
  font-size: 2.2rem;
}

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

.menu-card li {
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
}

.menu-card span,
.menu-card strong {
  display: block;
}

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

.menu-card strong {
  margin-top: 4px;
  color: rgba(255, 248, 220, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.menu-note {
  width: var(--container);
  margin: 20px auto 0;
}

.hours .section-heading h2 {
  color: var(--paper);
}

.hours-panel,
.reservation-panel {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.hours-panel {
  display: grid;
}

.hours-panel div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
}

.hours-panel div + div {
  border-top: 1px solid var(--line-light);
}

.hours-panel span {
  color: rgba(255, 248, 220, 0.72);
}

.hours-panel strong {
  color: var(--butter);
  font-size: 1.1rem;
}

.reservation-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
  background: rgba(255, 243, 184, 0.08);
}

.reservation-panel p {
  margin: 0;
  color: rgba(255, 248, 220, 0.74);
}

.instagram-profile {
  display: grid;
  align-content: end;
  min-height: 420px;
  padding: 28px;
  background: var(--butter);
  color: var(--ink);
  border-radius: var(--radius);
}

.instagram-profile strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.95;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.post-card {
  min-height: 420px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.post-card:nth-child(1) img {
  object-position: center 16%;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  border-top: 1px solid var(--line-light);
}

.footer-brand img {
  width: min(320px, 100%);
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255, 248, 220, 0.74);
}

.footer-contact {
  display: grid;
  gap: 10px;
  color: rgba(255, 248, 220, 0.86);
  font-style: normal;
}

.footer-contact a:hover {
  color: var(--butter);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 640ms ease,
    transform 820ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.parallax-media img {
  transform: translate3d(0, 0, 0) scale(1.06);
  transition: transform 220ms linear;
  will-change: transform;
}

.hero-parallax img {
  transition: transform 120ms linear;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .parallax-media img,
  .button {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  .site-nav {
    position: fixed;
    inset: 100px 0 0 0;
    display: none;
    min-height: calc(100svh - 74px);
    padding: 0;
    background: rgba(47, 47, 45, 0.98);
    border-top: 1px solid var(--line-light);
  }

  body.is-nav-open .site-nav {
    display: grid;
    grid-template-rows: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .site-nav a {
    display: grid;
    place-items: center;
    padding: 0 24px;
    border-bottom: 1px solid var(--line-light);
    color: var(--paper);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.5rem, 4vw, 5.8rem);
    font-weight: 600;
    line-height: 1;
    text-align: center;
    height: 100%;
  
  }

  .nav-toggle {
    display: grid;
    gap: 7px;
    width: 44px;
    height: 44px;
    place-content: center;
    padding: 0;
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--butter);
  }

  .hero {
    min-height: auto;
  }

  .opening-card {
    justify-self: start;
  }

  .welcome-grid,
  .hours-grid,
  .instagram-layout,
  .gallery-grid,
  .menu-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .welcome-image,
  .gallery-wide,
  .gallery-item,
  .post-card,
  .instagram-profile {
    min-height: 440px;
  }

  .post-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100%, calc(100vw - 32px));
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand {
    width: min(220px, 62vw);
  }

  .site-nav {
    min-height: calc(100svh - 100px);
  }

  .hero {
    padding: 92px 16px 32px;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 7rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  section:not(.hero),
  .site-footer {
    padding: 68px 16px;
  }

  .welcome-copy,
  .menu-card,
  .reservation-panel,
  .hours-panel div,
  .opening-card,
  .instagram-profile {
    padding: 22px;
  }

  .hours-panel div {
    display: grid;
  }

  .welcome-image,
  .gallery-wide,
  .gallery-item,
  .post-card,
  .instagram-profile {
    min-height: 360px;
  }
}
