:root {
  --ink: #171612;
  --paper: #f7f4ed;
  --white: #ffffff;
  --gold: #d99a21;
  --gold-dark: #b7780c;
  --muted: #6d685e;
  --line: #ded8cb;
  --wood: #2b1c13;
  --max-width: 1120px;
  --shadow: 0 18px 45px rgba(26, 19, 11, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.65;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-small {
  padding: 80px 0;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(4rem, 9vw, 7.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 7px;
  font-size: 1.02rem;
  line-height: 1.35;
}

.eyebrow {
  margin-bottom: 14px;
  color: #f2b23d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold-dark);
}

.button,
.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 23px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button-gold {
  color: var(--ink);
  background: var(--gold);
}

.button-gold:hover {
  background: #efad30;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=2000&q=88")
    center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 25%, transparent 0 12%, rgba(0, 0, 0, 0.2) 65%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.08));
}

.nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: inline-grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
}

.brand-text small {
  margin-top: 5px;
  font-size: 0.53rem;
  letter-spacing: 0.24em;
}

.nav-links {
  display: flex;
  gap: 35px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-button {
  min-height: 39px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 145px;
  padding-bottom: 110px;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0;
  align-items: center;
}

.about-card {
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin-right: -55px;
  padding: 58px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-photo {
  height: 520px;
  margin: 0;
}

.about-photo img {
  height: 100%;
  object-fit: cover;
}

.section-heading.centered {
  max-width: 700px;
  margin: 0 auto 45px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature {
  padding: 35px 40px;
}

.feature + .feature {
  border-left: 1px solid var(--line);
}

.feature-number {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.category-banner {
  padding: 55px 0;
  color: var(--white);
  background:
    linear-gradient(rgba(18, 9, 4, 0.55), rgba(18, 9, 4, 0.7)),
    url("https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?auto=format&fit=crop&w=1800&q=85")
    center/cover no-repeat;
}

.category-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 20px;
}

.category-inner a {
  min-width: 145px;
  padding: 13px 18px;
  border-radius: 100px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-inner a:hover {
  background: #f1b442;
}

.menu-intro {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  color: var(--white);
}

.menu-intro-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.25)),
    url("https://images.unsplash.com/photo-1548943487-a2e4e43b4853?auto=format&fit=crop&w=1800&q=85")
    center/cover no-repeat;
}

.menu-intro-copy {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 70px;
}

.menu-intro h2 {
  margin-bottom: 16px;
}

.menu-intro p:last-child {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.menu-section {
  position: relative;
  padding-top: 90px;
  padding-bottom: 100px;
}

.menu-section + .menu-section {
  border-top: 1px solid var(--line);
}

.menu-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 36px;
  overflow: hidden;
}

.menu-title h2 {
  margin-bottom: 0;
}

.menu-ornament {
  position: absolute;
  right: 0;
  bottom: -20px;
  color: rgba(217, 154, 33, 0.08);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.menu-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 55px;
}

.menu-list.compact {
  grid-template-columns: 1fr;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  padding: 18px 0;
  border-bottom: 1px dotted #bdb5a6;
}

.menu-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.menu-item > span {
  padding-top: 2px;
  color: var(--gold-dark);
  font-weight: 700;
  white-space: nowrap;
}

.menu-photo {
  height: 250px;
  margin: 55px 0 0;
  overflow: hidden;
  background: var(--ink);
}

.menu-photo img {
  height: 100%;
  object-fit: cover;
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.drinks-grid h3 {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.simple-row {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 12px 0;
  border-bottom: 1px dotted #bdb5a6;
  font-size: 0.86rem;
}

.simple-row strong {
  color: var(--gold-dark);
  white-space: nowrap;
}

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  box-shadow: var(--shadow);
}

.map-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 40px;
  background:
    linear-gradient(rgba(247, 244, 237, 0.7), rgba(247, 244, 237, 0.7)),
    repeating-linear-gradient(35deg, #c9d2cb 0 2px, transparent 2px 28px),
    repeating-linear-gradient(125deg, #dcd7ca 0 2px, transparent 2px 34px),
    #e8e4da;
  text-align: center;
}

.map-placeholder span {
  display: block;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.map-placeholder p {
  max-width: 280px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-copy {
  padding: 60px;
  background: var(--white);
}

.contact-copy h2 {
  margin-bottom: 25px;
}

.contact-copy p {
  color: var(--muted);
}

.contact-copy a:not(.button) {
  color: var(--ink);
}

.footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #0b0b0a;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}

.footer-brand {
  color: var(--white);
}

.footer p {
  margin: 0;
  font-size: 0.72rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 0.7rem;
  text-transform: uppercase;
}

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding-top: 150px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    max-width: none;
    margin: 0 25px -60px;
  }

  .about-photo {
    height: 460px;
  }

  .features-grid,
  .menu-list,
  .drinks-grid {
    grid-template-columns: 1fr;
  }

  .feature + .feature {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .section {
    padding: 75px 0;
  }

  h1 {
    font-size: clamp(3.7rem, 18vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero {
    min-height: 620px;
  }

  .nav-button {
    display: none;
  }

  .brand-text strong {
    font-size: 1.1rem;
  }

  .hero-content {
    padding-top: 125px;
  }

  .about-card {
    margin: 0 10px -45px;
    padding: 38px 28px;
  }

  .about-photo {
    height: 380px;
  }

  .feature {
    padding: 30px 15px;
  }

  .category-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .category-inner a {
    min-width: 0;
  }

  .menu-section {
    padding-top: 70px;
    padding-bottom: 75px;
  }

  .menu-photo {
    height: 190px;
  }

  .contact-copy {
    padding: 42px 28px;
  }

  .map-placeholder {
    min-height: 300px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
