:root {
  --bg: #080706;
  --text: #f7f0e6;
  --muted: rgba(247, 240, 230, 0.68);
  --soft: rgba(247, 240, 230, 0.12);
  --gold: #c6a15b;
  --gold-muted: #b58a57;
  --gold-soft: rgba(198, 161, 91, 0.18);

  --serif: "Cormorant Garamond", serif;
  --sans: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
}

/* NAVBAR */

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 28px 0;
  color: var(--text);
  transition:
    padding 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  padding: 16px 0;
  background: rgba(8, 7, 6, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.logo span:last-child {
  color: var(--gold);
}

nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 240, 230, 0.72);
  transition: color 0.25s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

nav a:hover,
nav a.active {
  color: var(--text);
}

nav a:hover::after,
nav a.active::after {
  width: 18px;
}

.nav-btn {
  padding: 14px 28px;
  border: 1px solid rgba(198, 161, 91, 0.42);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  transition: 0.25s ease;
}

.nav-btn:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
}

/* HERO */

.hero {
  position: relative;
  height: clamp(635px, 82vh, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: url("images/hero-bg2.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58) 72%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 28%, rgba(0, 0, 0, 0.82));
}

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 10px;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.hero-title {
  margin: 14px 0;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 7vw, 7.4rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: #f2e9dd;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
  color: var(--gold-muted);
}

.hero-location span {
  width: 72px;
  height: 1px;
  background: rgba(187, 148, 100, 0.55);
}

.hero-location p {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
}

.hero-description {
  margin-top: 30px;
  font-size: 0.82rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gold-muted);
}

.scroll-line {
  width: 1px;
  height: 46px;
  background: var(--gold-muted);
}

.scroll-dot {
  width: 15px;
  height: 15px;
  border: 1px solid var(--gold-muted);
  border-radius: 50%;
}

.scroll-indicator small {
  margin-top: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

/* INTRO */

.intro {
  padding: 90px 0 110px;
  background: var(--bg);
}

.intro-inner {
  max-width: 760px;
}

.eyebrow {
  display: block;
  margin-bottom: 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.intro h1 {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 8vw, 7rem);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.intro p {
  max-width: 560px;
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary {
  background: var(--gold);
  color: #130f09;
  border: 1px solid var(--gold);
}

.secondary {
  color: var(--text);
  border: 1px solid rgba(247, 240, 230, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

/* MENU PREVIEW */

.menu-preview {
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, rgba(198, 161, 91, 0.08), transparent 34%),
    var(--bg);
}

.menu-header {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 60px;
}

.menu-title h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5vw, 5.2rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #f2e9dd;
}

.menu-intro {
  max-width: 420px;
  margin-left: auto;
}

.menu-intro p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
}

.menu-link {
  display: inline-flex;
  margin-top: 28px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.menu-link:hover {
  opacity: 0.75;
}

.menu-editorial {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 26px;
}

.menu-feature {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-feature.large {
  min-height: 720px;
  grid-row: span 2;
}

.menu-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.9);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.menu-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent 58%),
    linear-gradient(to right, rgba(0, 0, 0, 0.34), transparent 48%);
}

.menu-feature:hover img {
  transform: scale(1.045);
  filter: brightness(0.85) saturate(0.95);
}

.menu-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 32px;
  z-index: 2;
}

.menu-copy h3 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 0.95;
  font-weight: 600;
  color: #f2e9dd;
}

.menu-feature:not(.large) .menu-copy h3 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.menu-copy p {
  max-width: 420px;
  margin-top: 14px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

/* RESERVATION */

.reservation-preview {
  padding: 130px 0;
  background:
    linear-gradient(180deg, var(--bg), #090807);
}

.reservation-inner {
  display: grid;
  gap: 52px;
}

.reservation-copy {
  max-width: 760px;
}

.reservation-copy h2 {
  margin: 14px 0 22px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5vw, 5.4rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #f2e9dd;
}

.reservation-copy p {
  max-width: 520px;
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--muted);
}

.booking-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 220px;
  min-height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 16, 13, 0.88);
}

.booking-display {
  border: 0;
  cursor: pointer;
  text-align: left;
  background: transparent;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-display span {
  display: block;
  margin-bottom: 9px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.booking-display strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text);
}

.booking-btn {
  border: 0;
  cursor: pointer;
  background: var(--gold);
  color: #120f09;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.booking-modal.open {
  display: grid;
}

.modal-panel {
  position: relative;
  width: min(520px, calc(100% - 32px));
  padding: 42px;
  background: #11100d;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
}

.modal-panel h3 {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: #f2e9dd;
}

.modal-options {
  display: grid;
  gap: 12px;
}

.modal-options button {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #171613;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.35rem;
  text-align: left;
  cursor: pointer;
}

.modal-options button:hover {
  border-color: var(--gold);
}

/* RESERVATION PAGE */

.reservation-page {
  background: var(--bg);
  min-height: 100vh;
}

.reservation-hero {
  padding: 170px 0 90px;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.84), var(--bg)),
    url("images/hero-bg2.png") center / cover no-repeat;
}

.reservation-page-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: end;
}

.reservation-page-copy h1 {
  max-width: 720px;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 6.5rem);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #f2e9dd;
}

.reservation-page-copy p {
  max-width: 520px;
  margin-top: 26px;
  color: var(--muted);
  line-height: 1.9;
}

.reservation-summary {
  padding: 34px;
  background: rgba(17, 16, 13, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reservation-summary span {
  display: block;
  margin-bottom: 24px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.reservation-summary strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text);
}

.reservation-summary strong + strong {
  margin-top: 14px;
}

.reservation-form-section {
  padding: 90px 0 130px;
}

.reservation-form-grid {
  max-width: 820px;
}

.full-reservation-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  outline: none;
  background: #11100d;
  color: var(--text);
  padding: 18px 20px;
  font-family: var(--sans);
  font-size: 0.95rem;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-submit {
  width: max-content;
  min-width: 260px;
  height: 60px;
  margin-top: 14px;
}

/* ==========================================================
   FOOTER
========================================================== */

.footer{
    padding:100px 0 0;
    border-top:1px solid rgba(255,255,255,.08);
    background:#070605;
}

.footer-inner{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:80px;

    padding-bottom:20px;
}

.footer-brand h2{

    font-family:var(--serif);

    font-size: 3.5rem;
    line-height: .9;

    font-weight:600;

    color:#F2E9DD;
}

.footer-brand p{

    margin-top:28px;

    line-height:1.9;

    color:var(--muted);
}

.footer-contact{

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap: 48px;
}

.footer-contact span{

    display:block;

    margin-bottom:12px;

    font-size:.7rem;

    font-weight:600;

    letter-spacing:.22em;

    text-transform:uppercase;

    color:var(--gold-muted);
}

.footer-contact a,
.footer-contact p{

    color:var(--text);

    line-height:1.8;
}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:24px 0;
}

.footer-bottom p{

    font-size:.82rem;

    color:rgba(255,255,255,.45);

    text-align:center;
}

.footer-cta {
    font-family: var(--serif);
    font-size: clamp(2rem,3vw,2.6rem);
    font-weight: 500;
    line-height: .95;
    color: #F2E9DD;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-cta p{
    margin-top: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-muted);
}