:root {
  --bg: #120f0d;
  --bg-soft: #1d1713;
  --panel: #231a16;
  --panel-light: #f2eadf;
  --ink: #16120f;
  --text: #f2ede6;
  --muted: #c9b9ab;
  --muted-dark: #79695e;
  --line: rgba(255, 255, 255, .12);
  --ember: #d66e34;
  --brick: #a24c28;
  --olive: #87914a;
  --cream: #efe5d6;
  --shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(214, 110, 52, .12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(135, 145, 74, .08), transparent 28%),
    var(--bg);
  font-family: Manrope, Arial, sans-serif;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 52px);
  background: rgba(18, 15, 13, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: .03em;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: currentColor;
}

.nav-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero,
.story,
.experience,
.feature,
.menu-preview,
.visit {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  padding: clamp(34px, 6vw, 72px) 0 clamp(56px, 7vw, 90px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--ember);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: .95;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(54px, 8vw, 108px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 70px);
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.hero__text {
  max-width: 640px;
  color: rgba(242, 237, 230, .9);
  font-size: clamp(18px, 2vw, 22px);
}

.hero__actions,
.menu-preview__actions,
.visit__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .24s ease, background-color .24s ease, border-color .24s ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ember), var(--brick));
}

.button--secondary {
  color: var(--text);
  border-color: rgba(242, 237, 230, .16);
  background: rgba(242, 237, 230, .06);
}

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

.hero__visual {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: end;
}

.hero__card,
.story__photo,
.feature__image,
.menu-preview__image,
.gallery a,
.visit__card,
.hero__fact,
.experience__grid article {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero__card {
  background: var(--panel);
}

.hero__card--tall {
  min-height: 540px;
}

.hero__card--wide {
  min-height: 300px;
}

.hero__fact {
  grid-column: 2;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(214, 110, 52, .18), rgba(214, 110, 52, .05)),
    var(--panel);
  border: 1px solid rgba(214, 110, 52, .16);
}

.hero__fact span {
  display: block;
  margin-bottom: 10px;
  color: var(--ember);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hero__fact strong {
  display: block;
  font-size: 23px;
  line-height: 1.35;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: clamp(70px, 9vw, 120px);
  background: rgba(242, 237, 230, .08);
  border: 1px solid rgba(242, 237, 230, .08);
  border-radius: 24px;
  overflow: hidden;
}

.stats article {
  min-height: 156px;
  padding: 28px;
  background: rgba(255, 255, 255, .03);
}

.stats__value,
.stats__label {
  display: block;
}

.stats__value {
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
}

.stats__label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.story,
.feature,
.menu-preview,
.visit {
  padding-bottom: clamp(70px, 9vw, 120px);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(28px, 6vw, 56px);
  align-items: center;
}

.story__copy p + p {
  margin-top: 16px;
}

.story__photo {
  min-height: 440px;
}

.experience {
  padding-bottom: clamp(70px, 9vw, 120px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

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

.experience__grid article {
  min-height: 260px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02)),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, .06);
}

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

.feature {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 56px);
  align-items: center;
}

.feature__image {
  min-height: 420px;
}

.gallery {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: clamp(70px, 9vw, 120px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery a {
  min-height: 280px;
}

.menu-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: clamp(28px, 6vw, 56px);
  align-items: center;
}

.menu-preview__image {
  min-height: 520px;
}

.visit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.visit__card {
  flex: 1 1 auto;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(242, 237, 230, .06), rgba(242, 237, 230, .02)),
    var(--panel);
  border: 1px solid rgba(242, 237, 230, .08);
}

.visit__card p {
  max-width: 620px;
}

@media (max-width: 1100px) {
  .hero,
  .story,
  .feature,
  .menu-preview {
    grid-template-columns: 1fr;
  }

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

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

  .hero__fact {
    grid-column: 1 / -1;
  }

  .visit {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 28px;
  }

  .hero__visual,
  .stats,
  .gallery,
  .experience__grid {
    grid-template-columns: 1fr;
  }

  .hero__card--tall,
  .hero__card--wide,
  .story__photo,
  .feature__image,
  .menu-preview__image,
  .gallery a {
    min-height: 260px;
  }

  .visit__card {
    padding: 24px;
  }
}
