:root {
  --gold: #c6a05a;
  --cream: #efe7d6;
  --muted: #a89e8b;
  --bg: #100d0a;
  --bg2: #15110c;
  --line: rgba(239, 231, 214, 0.13);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--cream); }

input, select, textarea, button { font-family: inherit; }
input::placeholder, textarea::placeholder { color: rgba(239, 231, 214, 0.35); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold) !important; }
select option { background: #15110c; color: #efe7d6; }

.italic-gold { font-style: italic; color: var(--gold); }
.eyebrow { font-size: .74rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.h2 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(2.4rem, 4.5vw, 3.6rem); line-height: 1.08; margin-bottom: 28px; }
.body-muted { color: var(--muted); font-size: 1.02rem; line-height: 1.9; }
.sec-heading { text-align: center; margin-bottom: 66px; }

/* ---------- keyframes ---------- */
@keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.12); } }
@keyframes scrollpulse { 0%, 100% { transform: translateY(0); opacity: .9; } 50% { transform: translateY(9px); opacity: .3; } }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px; background: transparent;
  transition: background .5s ease, padding .5s ease, box-shadow .5s ease, backdrop-filter .5s ease;
}
.nav.scrolled {
  background: rgba(16, 13, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(239, 231, 214, 0.10);
  padding: 15px 48px;
}
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; letter-spacing: .14em; color: var(--cream); font-weight: 500; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a { color: var(--cream); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 400; }
.order-online { color: var(--muted); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 400; cursor: not-allowed; opacity: .55; display: inline-flex; align-items: center; gap: 7px; }
.soon-badge { font-size: .58rem; border: 1px solid var(--line); padding: 2px 6px; border-radius: 100px; letter-spacing: .12em; }
.nav-cta { padding: 12px 22px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 1.5px; background: var(--cream); display: block; }

/* ---------- buttons ---------- */
.btn-outline-gold { border: 1px solid var(--gold); color: var(--gold); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; transition: background .35s ease, color .35s ease; }
.btn-outline-gold:hover { background: var(--gold); color: #15110c; }
.btn-gold-solid { background: var(--gold); color: #15110c; border: none; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; cursor: pointer; transition: opacity .3s ease; }
.btn-gold-solid:hover { opacity: .85; }
.btn-plain { background: transparent; border: 1px solid var(--line); color: var(--cream); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; padding: 14px 28px; cursor: pointer; }
.icon-btn { width: 52px; height: 52px; border: 1px solid var(--line); background: transparent; color: var(--cream); cursor: pointer; font-size: 1.1rem; text-decoration: none; transition: border-color .3s ease, color .3s ease; display: flex; align-items: center; justify-content: center; }
.icon-btn:hover { border-color: var(--gold); color: var(--gold); }
.link-underline { display: inline-block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream); border-bottom: 1px solid var(--gold); padding-bottom: 6px; margin-bottom: 44px; transition: color .3s ease; }
.link-underline:hover { color: var(--gold); }
.scroll-cta { background: none; border: none; color: var(--muted); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; display: flex; align-items: center; gap: 9px; padding: 4px 0; transition: color .3s ease; }
.scroll-cta:hover { color: var(--cream); }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(16, 13, 10, 0.98);
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--cream); font-family: 'Cormorant Garamond', serif; font-size: 2rem; }
.mobile-menu .close-menu { position: absolute; top: 26px; right: 34px; background: none; border: none; color: var(--cream); font-size: 2rem; cursor: pointer; line-height: 1; }
.mobile-cta { margin-top: 14px; padding: 14px 30px; }

/* ---------- hero ---------- */
.hero { position: relative; height: 100vh; min-height: 720px; width: 100%; overflow: hidden; display: flex; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1534080564583-6be75777b70a?auto=format&fit=crop&w=2000&q=80');
  background-size: cover; background-position: center;
  animation: kenburns 26s ease-out forwards;
}
.hero-scrim-h { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,10,7,0.82) 0%, rgba(12,10,7,0.5) 42%, rgba(12,10,7,0.2) 70%, rgba(12,10,7,0.35) 100%); }
.hero-scrim-v { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,10,7,0.5) 0%, rgba(12,10,7,0) 30%, rgba(12,10,7,0) 55%, rgba(12,10,7,0.85) 100%); }
.hero-inner { position: relative; width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 48px 68px; display: flex; flex-direction: column; justify-content: flex-end; }
.hero-h1 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(3.6rem, 10vw, 8.5rem); line-height: 0.9; letter-spacing: .01em; color: var(--cream); margin-bottom: 8px; }
.hero-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.25rem, 2.6vw, 1.9rem); color: var(--cream); opacity: .92; max-width: 34ch; margin-bottom: 40px; }
[data-fade] { opacity: 0; transform: translateY(26px); transition: opacity 1.1s cubic-bezier(0.22,1,0.36,1), transform 1.1s cubic-bezier(0.22,1,0.36,1); }
[data-fade].visible { opacity: 1; transform: none; }

.resbar {
  display: inline-flex; align-self: flex-start; max-width: 100%; align-items: stretch;
  background: rgba(20, 16, 11, 0.55); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(239, 231, 214, 0.16); box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.resfield { display: flex; align-items: center; gap: 13px; padding: 16px 24px; border-right: 1px solid rgba(239,231,214,0.14); cursor: pointer; }
.field-stack { display: flex; flex-direction: column; gap: 3px; }
.field-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.resfield input, .resfield select { background: transparent; border: none; color: var(--cream); font-size: .92rem; padding: 0; cursor: pointer; }
.resfield input { color-scheme: dark; }
.resbar-submit { padding: 0 34px; white-space: nowrap; }
.hero-scroll-indicator { position: absolute; bottom: 30px; right: 48px; display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--muted); }
.hero-scroll-indicator span:first-child { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 38px; background: linear-gradient(var(--gold), transparent); animation: scrollpulse 2.2s ease-in-out infinite; }

/* ---------- reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1); }
[data-reveal].visible { opacity: 1; transform: none; }

/* ---------- intro / essence ---------- */
.sec { padding: 150px 48px; }
.intro-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 600px; object-fit: cover; display: block; }
.about-img-frame { position: absolute; inset: 0; box-shadow: inset 0 0 0 1px var(--line); }

/* ---------- signature experiences ---------- */
.sec-hs { padding: 150px 0; background: var(--bg); overflow: hidden; }
.hs-wrap { display: flex; align-items: center; gap: 70px; }
.hs-info { flex: 0 0 400px; max-width: 400px; padding-left: 48px; }
.hs-arrows { display: flex; gap: 14px; }
.hscroll {
  flex: 1 1 auto; min-width: 0; display: flex; gap: 28px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding: 6px 48px 6px 0; scroll-padding-right: 48px;
  scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none;
}
.hscroll::-webkit-scrollbar { display: none; }
.card { flex: 0 0 350px; scroll-snap-align: start; }
.card-img-wrap { overflow: hidden; }
.card-img-wrap img { width: 100%; height: 500px; object-fit: cover; display: block; transition: transform 1.1s ease; }
.card-img-wrap img:hover { transform: scale(1.06); }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.85rem; margin: 26px 0 12px; }
.card-desc { color: var(--muted); font-size: .94rem; line-height: 1.8; }

/* ---------- menu preview ---------- */
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 70px; }
.menu-item { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.menu-item-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; margin-bottom: 5px; }
.menu-item-desc { color: var(--muted); font-size: .86rem; line-height: 1.6; }
.menu-price { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; white-space: nowrap; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 14px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- reservations ---------- */
.res-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: start; }
.res-notes { display: flex; flex-direction: column; gap: 16px; color: var(--muted); font-size: .9rem; }
.res-notes > div { display: flex; gap: 14px; align-items: center; }
.dash { color: var(--gold); }
.opentable-note { margin-top: 34px; font-size: .82rem; color: var(--muted); font-style: italic; border-top: 1px solid var(--line); padding-top: 22px; }
.res-card { background: rgba(239, 231, 214, 0.03); border: 1px solid var(--line); padding: 44px; }
.form-row { display: grid; gap: 18px; margin-bottom: 18px; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-label { display: block; }
.form-label > span { display: block; font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.form-label input, .form-label select, .form-label textarea {
  width: 100%; background: transparent; border: 1px solid var(--line); color: var(--cream); padding: 13px 14px; font-size: .9rem;
}
.form-label input { color-scheme: dark; }
.form-label textarea { resize: vertical; }
.res-success { text-align: center; padding: 30px 10px; }
.check-badge { width: 58px; height: 58px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 26px; color: var(--gold); font-size: 1.6rem; }
.res-success-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-bottom: 16px; }

/* ---------- hours & location ---------- */
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 40px; }
.contact-label { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.contact-value { color: var(--cream); line-height: 1.8; font-size: .98rem; }
.hours-block { grid-column: span 2; border-top: 1px solid var(--line); padding-top: 30px; }
.hours-note { color: var(--muted); text-transform: none; letter-spacing: 0; }
.hours-list { display: flex; flex-direction: column; gap: 11px; color: var(--cream); font-size: .95rem; }
.hours-row { display: flex; justify-content: space-between; max-width: 320px; }
.hours-row .muted { color: var(--muted); }
.map-wrap { position: relative; height: 480px; border: 1px solid var(--line); overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(1.05) brightness(0.85); }

/* ---------- footer ---------- */
.footer { background: var(--bg2); border-top: 1px solid var(--line); padding: 80px 48px 40px; }
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 50px; padding-bottom: 56px; border-bottom: 1px solid var(--line); }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.social-row { display: flex; gap: 14px; margin-top: 26px; }
.social-row .icon-btn { width: 40px; height: 40px; font-size: .7rem; letter-spacing: .05em; }
.footer-links { display: flex; flex-direction: column; gap: 13px; font-size: .92rem; }
.footer-links a { color: var(--cream); }
.nl-success { color: var(--gold); font-size: .88rem; }
.nl-form { display: flex; border: 1px solid var(--line); }
.nl-form input { flex: 1; background: transparent; border: none; color: var(--cream); padding: 13px 14px; font-size: .85rem; }
.nl-form button { background: var(--gold); color: #15110c; border: none; padding: 0 18px; cursor: pointer; font-size: 1rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; flex-wrap: wrap; gap: 14px; }
.footer-copy { color: var(--muted); font-size: .78rem; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
}
@media (max-width: 900px) {
  .hs-wrap { flex-direction: column !important; align-items: stretch !important; gap: 44px !important; }
  .hs-info { flex-basis: auto !important; max-width: 100% !important; padding-right: 24px !important; padding-left: 24px !important; }
  .hscroll { padding-left: 24px !important; scroll-padding-left: 24px !important; }
  .card { flex-basis: 78vw !important; }
  .sec-hs { padding: 80px 0 !important; }
  .menu-grid, .intro-grid, .res-grid, .form-row { grid-template-columns: 1fr !important; }
  .gallery { grid-template-columns: 1fr 1fr !important; grid-auto-rows: 200px !important; }
  .hero-h1 { font-size: clamp(3rem, 17vw, 6rem) !important; }
  .sec { padding: 80px 24px !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .hours-block { grid-column: span 1; }
  .contact-details { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .hero-inner { padding: 0 24px 48px !important; }
  .resbar { flex-direction: column !important; align-self: stretch !important; width: 100%; }
  .resfield { border-right: none !important; border-bottom: 1px solid rgba(239,231,214,0.14) !important; }
  .resbar button[type="submit"] { padding: 17px !important; }
  .hero-scroll-indicator { display: none !important; }
}
