:root {
  --charcoal: #171717;
  --ink: #24201c;
  --cream: #fff7ea;
  --paper: #fffcf6;
  --tomato: #d64123;
  --tomato-dark: #a92f1d;
  --basil: #2f7d46;
  --gold: #d99a2b;
  --teal: #1f6d72;
  --line: rgba(36, 32, 28, 0.13);
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: white;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 252, 246, 0.94);
  box-shadow: 0 12px 32px rgba(23, 23, 23, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--tomato);
  color: white;
  font-weight: 800;
  letter-spacing: 0;
}

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

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  font-size: 0.75rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-left: auto;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.9;
}

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

.header-cta,
.btn,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  color: white;
  background: var(--tomato);
}

.nav-toggle {
  display: none;
  border: 0;
  color: inherit;
  background: transparent;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(94vh, 920px);
  overflow: hidden;
  color: white;
}

.hero-image,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 9, 6, 0.86), rgba(12, 9, 6, 0.54) 46%, rgba(12, 9, 6, 0.12)),
    linear-gradient(0deg, rgba(12, 9, 6, 0.5), rgba(12, 9, 6, 0.08) 48%);
}

.hero-content {
  align-self: end;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(58px, 10vh, 108px) clamp(18px, 7vw, 92px);
  padding-top: 120px;
}

.eyebrow,
.section-kicker,
.menu-category {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 7rem;
}

h2 {
  margin-bottom: 20px;
  font-size: 4.4rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.btn {
  padding: 0 22px;
  border: 1px solid transparent;
}

.btn-primary {
  color: white;
  background: var(--tomato);
  box-shadow: 0 12px 32px rgba(214, 65, 35, 0.32);
}

.btn-primary:hover {
  background: var(--tomato-dark);
}

.btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn-outline {
  color: var(--ink);
  border-color: var(--line);
  background: white;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  color: #ffd07a;
  font-size: 1.18rem;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.intro-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 92px;
  padding: 18px;
  background: var(--cream);
  font-weight: 800;
  text-align: center;
}

.intro-item span {
  min-width: 0;
}

.intro-item svg {
  color: var(--tomato);
  flex: 0 0 auto;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.about-grid p,
.gallery-copy p,
.section-lead,
.contact-content p {
  max-width: 740px;
  color: rgba(36, 32, 28, 0.74);
  font-size: 1.05rem;
}

.about-card {
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.about-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-card-copy {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.about-card-copy span {
  color: rgba(36, 32, 28, 0.65);
}

.menu-section {
  width: min(1220px, calc(100% - 36px));
}

.section-heading,
.reviews-top,
.contact-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.link-button {
  min-width: max-content;
  padding: 0 18px;
  color: var(--tomato);
  background: rgba(214, 65, 35, 0.08);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 32px rgba(23, 23, 23, 0.05);
}

.menu-card p {
  color: rgba(36, 32, 28, 0.68);
}

.menu-card strong {
  margin-top: auto;
  color: var(--tomato);
  font-size: 1.15rem;
}

.feature-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 20px;
  align-items: stretch;
  min-height: 320px;
}

.feature-card img {
  height: 100%;
  min-height: 248px;
  border-radius: 6px;
  object-fit: cover;
}

.gallery-section {
  padding: clamp(76px, 10vw, 124px) 0;
  background: var(--charcoal);
  color: white;
}

.gallery-copy {
  padding-top: 0;
  padding-bottom: 38px;
}

.gallery-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: minmax(230px, 24vw);
  gap: 12px;
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.gallery-grid figure {
  position: relative;
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-large {
  grid-row: span 2;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.reviews-section {
  width: min(1220px, calc(100% - 36px));
}

.rating-card {
  display: grid;
  min-width: 170px;
  padding: 22px;
  border-radius: 8px;
  color: white;
  background: var(--basil);
}

.rating-card strong {
  font-size: 3rem;
  line-height: 1;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.review-card {
  min-height: 230px;
  padding: 26px;
  border-radius: 8px;
  background: var(--cream);
}

.review-card p {
  font-size: 1.08rem;
  font-weight: 700;
}

.review-card span {
  color: rgba(36, 32, 28, 0.56);
  font-weight: 800;
}

.stars {
  margin-bottom: 18px;
  color: var(--gold);
  letter-spacing: 0;
}

.contact-section {
  padding: clamp(74px, 10vw, 120px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(115deg, rgba(214, 65, 35, 0.95), rgba(31, 109, 114, 0.93)),
    url("assets/images/mocktails.png") center / cover;
  color: white;
}

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

.contact-content .section-kicker,
.contact-content p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-content h2 {
  max-width: 680px;
}

.contact-panel {
  display: grid;
  gap: 18px;
  width: min(480px, 100%);
  padding: 26px;
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 700;
}

.contact-row svg {
  color: var(--tomato);
  flex: 0 0 auto;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 56px);
  color: white;
  background: #111;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

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

svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 5.6rem;
  }

  h2 {
    font-size: 3.4rem;
  }

  .site-header {
    gap: 14px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid currentColor;
    border-radius: 50%;
  }

  .site-nav {
    position: fixed;
    inset: 78px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 10px;
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
    border-radius: 6px;
  }

  .site-nav a:hover {
    background: var(--cream);
  }

  .header-cta {
    display: none;
  }

  .intro-band,
  .about-grid,
  .review-grid,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .intro-band {
    display: grid;
  }

  .about-grid {
    display: grid;
  }

  .section-heading,
  .reviews-top,
  .contact-content,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .feature-card {
    grid-column: span 2;
  }

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

  .gallery-large {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: min(96vh, 920px);
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(12, 9, 6, 0.92), rgba(12, 9, 6, 0.34)),
      linear-gradient(90deg, rgba(12, 9, 6, 0.64), rgba(12, 9, 6, 0.18));
  }

  .hero-content {
    width: calc(100% - 32px);
    max-width: calc(100vw - 32px);
    margin: 0 16px 44px;
  }

  h1 {
    font-size: 3rem;
    max-width: 100%;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero-copy {
    max-width: 28ch;
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .intro-band,
  .menu-grid,
  .feature-card,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .intro-item {
    justify-content: flex-start;
    text-align: left;
    line-height: 1.35;
    font-size: 0.96rem;
  }

  .feature-card,
  .gallery-large {
    grid-column: auto;
  }

  .feature-card {
    display: flex;
  }

  .gallery-grid {
    grid-auto-rows: 280px;
  }

  .site-footer {
    padding-bottom: 36px;
  }
}
