:root {
  --bg: #120f0c;
  --bg-soft: #1c1712;
  --panel: rgba(248, 238, 221, 0.07);
  --text: #f4ebdc;
  --muted: #c5b7a2;
  --line: rgba(244, 235, 220, 0.1);
  --accent: #e6a756;
  --accent-2: #883f2d;
  --accent-3: #7f8a56;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(230, 167, 86, 0.18), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(136, 63, 45, 0.22), transparent 24%),
    linear-gradient(180deg, #16110d 0%, #0f0c09 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 90%);
  opacity: 0.25;
}

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

button,
input {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 15, 12, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(230, 167, 86, 0.22), rgba(136, 63, 45, 0.18));
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #f2be78);
  color: #22170d;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(230, 167, 86, 0.2);
}

.button-outline,
.button-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 30px 0 40px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 7vw, 6.3rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-text,
.section-heading p,
.story-panel p,
.reservation-copy p,
.footer p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
}

.hero-metrics li,
.feature-strip article,
.menu-card,
.story-panel,
.story-stats article,
.experience-card,
.gallery-card,
.detail-card,
.reservation-section,
.footer {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-metrics li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius-sm);
}

.hero-metrics strong,
.story-stats strong {
  font-size: 1.4rem;
  font-weight: 800;
}

.hero-metrics .metric-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-metrics .metric-value small {
  font-size: 1rem;
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-metrics span,
.story-stats span,
.detail-card span {
  color: var(--muted);
  line-height: 1.45;
}

.hero-art {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 18px;
  padding: 18px;
  min-height: 620px;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 35%, rgba(230, 167, 86, 0.25), transparent 22%),
    radial-gradient(circle at 70% 70%, rgba(127, 138, 86, 0.18), transparent 22%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08));
  border: 1px solid var(--line);
}

.photo-card,
.gallery-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(244, 235, 220, 0.12);
  border-radius: 28px;
  background: rgba(13, 10, 8, 0.74);
  overflow: hidden;
}

.photo-card figcaption,
.gallery-card figcaption {
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.55;
}

.photo-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 260px;
  max-height: 360px;
  object-fit: cover;
}

.photo-media-tall {
  aspect-ratio: 4 / 5;
  min-height: 470px;
  max-height: 470px;
}

.photo-card-tall {
  min-height: 560px;
}

.hero-side-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
}

.photo-card-small {
  min-height: 0;
}

.photo-placeholder {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 220px;
  padding: 20px;
  border-radius: 22px;
  overflow: hidden;
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 18px;
}

.photo-placeholder span,
.photo-placeholder small {
  position: relative;
  z-index: 1;
}

.photo-placeholder span {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.photo-placeholder small {
  color: rgba(244, 235, 220, 0.7);
}

.photo-warm {
  min-height: 470px;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 237, 199, 0.26), transparent 28%),
    linear-gradient(160deg, #4f301f, #1d1612 64%);
}

.photo-olive {
  min-height: 250px;
  background:
    radial-gradient(circle at 55% 34%, rgba(226, 215, 177, 0.28), transparent 22%),
    linear-gradient(160deg, #5c3f1d, #2b3120 72%);
}

.photo-burgundy {
  background:
    radial-gradient(circle at 45% 25%, rgba(255, 225, 208, 0.2), transparent 22%),
    linear-gradient(160deg, #5a241f, #1c1614 72%);
}

.photo-gold {
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 244, 217, 0.24), transparent 22%),
    linear-gradient(160deg, #81562f, #22170d 72%);
}

.photo-soft {
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 247, 229, 0.18), transparent 22%),
    linear-gradient(160deg, #59504a, #1b1612 72%);
}

.hero-badge {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px;
  border: 1px solid rgba(244, 235, 220, 0.12);
  border-radius: 22px;
  background: rgba(13, 10, 8, 0.78);
  box-shadow: var(--shadow);
}

.hero-badge span {
  color: var(--muted);
}

.hero-badge strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  line-height: 0.95;
}

.feature-strip,
.menu-grid,
.story-section,
.experience-grid,
.detail-list {
  display: grid;
  gap: 22px;
}

.feature-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0 26px;
}

.feature-strip article,
.experience-card,
.detail-card {
  padding: 24px;
  border-radius: var(--radius-md);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(230, 167, 86, 0.12);
  color: var(--accent);
  margin-bottom: 18px;
}

.feature-strip span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.feature-strip h3,
.menu-copy h3,
.experience-card h3 {
  margin: 14px 0 8px;
  font-size: 1.18rem;
}

.feature-strip p,
.experience-card p,
.menu-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 88px 0 0;
}

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

.section h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
}

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

.menu-card {
  overflow: hidden;
  border-radius: 28px;
}

.menu-art {
  min-height: 220px;
}

.menu-art-amber {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 223, 182, 0.82), transparent 24%),
    radial-gradient(circle at 65% 60%, rgba(158, 41, 18, 0.72), transparent 30%),
    linear-gradient(135deg, #5b2f18, #d99643);
}

.menu-art-olive {
  background:
    radial-gradient(circle at 35% 30%, rgba(250, 239, 208, 0.75), transparent 26%),
    radial-gradient(circle at 60% 65%, rgba(100, 120, 65, 0.7), transparent 28%),
    linear-gradient(135deg, #28331e, #8b925c);
}

.menu-art-burgundy {
  background:
    radial-gradient(circle at 32% 35%, rgba(252, 219, 196, 0.82), transparent 24%),
    radial-gradient(circle at 72% 62%, rgba(88, 18, 22, 0.65), transparent 29%),
    linear-gradient(135deg, #2b1213, #9a4e43);
}

.menu-art-cream {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.82), transparent 24%),
    radial-gradient(circle at 68% 58%, rgba(230, 188, 98, 0.65), transparent 30%),
    linear-gradient(135deg, #57442d, #cfb37f);
}

.menu-copy {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
}

.menu-copy strong {
  white-space: nowrap;
  color: var(--accent);
}

.story-section {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.story-panel,
.reservation-section {
  border-radius: 30px;
}

.story-panel {
  padding: 34px;
}

.story-stats {
  display: grid;
  gap: 18px;
}

.story-stats article {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 26px 28px;
  border-radius: 24px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 700;
}

.experience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 26px;
}

.gallery-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-top: 8px;
  padding-bottom: 4px;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  scroll-snap-align: start;
  flex: 0 0 calc(50% - 9px);
  min-width: 0;
}

.detail-list {
  grid-template-columns: 1fr;
  margin-top: 28px;
}

.detail-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.02rem;
}

.reservation-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  margin-top: 8px;
  padding: 30px;
}

.reservation-form {
  display: grid;
  gap: 14px;
}

.reservation-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.96rem;
}

.reservation-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.reservation-form input::placeholder {
  color: rgba(197, 183, 162, 0.65);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 88px;
  padding: 24px 28px;
  border-radius: 26px;
}

.footer p {
  margin: 8px 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.cta-float {
  display: none;
}

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

  .hero {
    min-height: auto;
    padding-top: 14px;
  }

  .hero-art {
    min-height: 520px;
  }
}

@media (max-width: 860px) {
  .cta-float {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    min-height: 54px;
    padding: 0 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #f2be78);
    color: #22170d;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 8px 40px rgba(230, 167, 86, 0.45);
    white-space: nowrap;
    transition: opacity 280ms ease, transform 280ms ease;
  }

  .cta-float.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(16px);
  }

  .page-shell {
    width: min(calc(100% - 22px), var(--max-width));
    padding-bottom: 88px;
  }

  .topbar {
    position: static;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
  }

  .topbar-content {
    flex-wrap: wrap;
    width: min(calc(100% - 22px), var(--max-width));
    padding: 14px 0 22px;
  }

  .topbar-content > .button {
    display: none;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-mask-image: linear-gradient(to right, black 82%, transparent 100%);
    mask-image: linear-gradient(to right, black 82%, transparent 100%);
  }

  .hero-metrics,
  .feature-strip,
  .menu-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    grid-template-columns: 1fr;
  }

  .hero-side-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .menu-copy {
    flex-direction: column;
  }

  .gallery-card {
    flex: 0 0 calc(65% - 9px);
  }
}

@media (max-width: 768px) {
  .section {
    padding-top: 64px;
  }

  .footer {
    margin-top: 64px;
  }

  .nav {
    font-size: 0.9rem;
    gap: 10px;
  }

  .nav a {
    padding: 6px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

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

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

  .gallery-card {
    flex: 0 0 calc(72% - 9px);
  }
}

@media (max-width: 640px) {
  :root {
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 12px;
  }

  .page-shell {
    padding-top: 12px;
  }

  .section {
    padding-top: 48px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .footer {
    margin-top: 48px;
  }

  .topbar-content {
    gap: 16px;
    padding-bottom: 12px;
  }

  .nav {
    font-size: 0.88rem;
    gap: 8px;
  }

  .button,
  .button-outline,
  .button-ghost {
    width: 100%;
    min-height: 56px;
  }

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

  .hero {
    padding-bottom: 40px;
  }

  .hero-art {
    min-height: auto;
    padding: 14px;
  }

  .hero-metrics {
    gap: 10px;
  }

  .hero-metrics li {
    padding: 14px;
    gap: 6px;
  }

  .hero-side-stack {
    grid-template-columns: 1fr;
  }

  .feature-strip article,
  .experience-card,
  .detail-card {
    padding: 18px;
  }

  .menu-copy {
    padding: 18px;
  }

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

  .menu-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
    gap: 16px;
  }

  .menu-grid::-webkit-scrollbar {
    display: none;
  }

  .menu-card {
    scroll-snap-align: start;
    flex: 0 0 82%;
    min-width: 0;
  }

  .gallery-card {
    flex: 0 0 84%;
  }

  .story-stats article {
    padding: 18px 20px;
  }

  .photo-warm {
    min-height: 360px;
  }

  .photo-olive {
    min-height: 220px;
  }

  .photo-media {
    max-height: 280px;
  }

  .photo-media-tall {
    min-height: 360px;
    max-height: 360px;
  }

  .hero-text,
  .section-heading p,
  .story-panel p,
  .reservation-copy p,
  .footer p {
    font-size: 0.97rem;
    line-height: 1.65;
  }

  .hero-badge {
    position: static;
  }

  .story-panel,
  .reservation-section,
  .footer {
    padding: 22px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
