*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:     #0d0a08;
  --bg1:    #110e0b;
  --bg2:    #181410;
  --bg3:    #201a15;
  --gold:   #c9a84c;
  --gold2:  #e0c070;
  --text:   #f0ece4;
  --muted:  #6b5f52;
  --sub:    #9e8e7e;
  --border: rgba(201,168,76,0.12);
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: Georgia, 'Times New Roman', serif; line-height: 1.7; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(13,10,8,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-size: 1.3rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); text-decoration: none; font-weight: normal; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: var(--sub); text-decoration: none; font-family: -apple-system, sans-serif; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-res { font-family: -apple-system, sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bg); background: var(--gold); padding: 10px 22px; border-radius: 2px; text-decoration: none; transition: background 0.2s; }
.nav-res:hover { background: var(--gold2); }

/* ── UTILS ── */
.container { max-width: 1100px; margin: 0 auto; }
.section-pad { padding: 120px 60px; }
.bg1 { background: var(--bg1); }
.eyebrow { font-family: -apple-system, sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: normal; line-height: 1.2; margin-bottom: 20px; }
.section-sub { color: var(--sub); max-width: 520px; margin: 0 auto 48px; }
.btn { display: inline-block; padding: 14px 32px; font-family: -apple-system, sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; }
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--gold2); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── HERO ── */
#hero { height: 100vh; min-height: 640px; position: relative; display: flex; align-items: center; overflow: hidden; }
.page-hero { height: 50vh; min-height: 360px; position: relative; display: flex; align-items: flex-end; overflow: hidden; padding-bottom: 60px; }
.hero-img, .page-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-overlay, .page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,10,8,0.88) 0%, rgba(13,10,8,0.5) 55%, rgba(13,10,8,0.15) 100%); }
.page-hero-overlay { background: linear-gradient(to top, rgba(13,10,8,0.9) 0%, rgba(13,10,8,0.4) 60%, rgba(13,10,8,0.2) 100%); }
.hero-content { position: relative; z-index: 1; padding: 0 80px; max-width: 680px; }
.page-hero-content { position: relative; z-index: 1; padding: 0 80px; }
.hero-rule { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.hero-rule span { font-family: -apple-system, sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.hero-rule::before { content: ''; width: 60px; height: 1px; background: var(--gold); opacity: 0.5; }
#hero h1 { font-size: clamp(3rem, 5.5vw, 5rem); font-weight: normal; line-height: 1.1; color: var(--text); margin-bottom: 24px; }
#hero h1 em { font-style: italic; color: var(--gold); }
#hero p { color: var(--sub); font-size: 1.05rem; max-width: 460px; margin-bottom: 44px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.page-hero-content .eyebrow { margin-bottom: 8px; }
.page-hero-content h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: normal; color: var(--text); }

/* ── STRIP ── */
.strip { background: var(--bg1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 60px; display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
.strip-item { display: flex; align-items: center; gap: 12px; font-family: -apple-system, sans-serif; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sub); }
.strip-item span { color: var(--gold); font-size: 1.1rem; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-imgs { position: relative; height: 520px; }
.about-img-main { position: absolute; top: 0; left: 0; right: 60px; bottom: 60px; background-size: cover; background-position: center; border-radius: 2px; }
.about-img-accent { position: absolute; bottom: 0; right: 0; width: 52%; height: 52%; background-size: cover; background-position: center; border-radius: 2px; border: 4px solid var(--bg); }
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--sub); margin-bottom: 20px; line-height: 1.9; }
.about-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border); }
.stat-num { font-size: 2.2rem; color: var(--gold); font-weight: normal; line-height: 1; margin-bottom: 4px; }
.stat-lbl { font-family: -apple-system, sans-serif; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ── MENU TEASERS ── */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; text-align: left; }
.teaser-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; transition: border-color 0.2s, transform 0.2s; }
.teaser-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.teaser-img { height: 200px; background-size: cover; background-position: center; }
.teaser-body { padding: 24px; }
.teaser-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.teaser-body p { color: var(--sub); font-size: 0.88rem; font-family: -apple-system, sans-serif; line-height: 1.6; }

/* ── EXPERIENCE SPLIT ── */
.exp-split { display: grid; grid-template-columns: 1fr 1fr; }
.exp-img { min-height: 560px; background-size: cover; background-position: center; }
.exp-content { padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; background: var(--bg2); }
.exp-content h2 { margin-bottom: 20px; }
.exp-content p { color: var(--sub); margin-bottom: 20px; line-height: 1.9; }
.exp-list { list-style: none; margin: 24px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.exp-list li { display: flex; gap: 14px; align-items: flex-start; font-family: -apple-system, sans-serif; font-size: 0.9rem; color: var(--sub); }
.exp-list li::before { content: '✦'; color: var(--gold); flex-shrink: 0; margin-top: 3px; font-size: 0.65rem; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 240px 240px; gap: 8px; }
.gallery-grid .g1 { grid-column: span 2; grid-row: span 2; }
.gallery-item { overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── MENU PAGE ── */
.menu-intro { text-align: center; padding: 80px 60px 48px; }
.menu-intro h2 { margin-bottom: 16px; }
.menu-sections { padding: 0 60px 100px; }
.menu-section { max-width: 1100px; margin: 0 auto 72px; }
.menu-section-header { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.menu-section-header h3 { font-size: 1.4rem; font-weight: normal; letter-spacing: 0.04em; }
.menu-section-icon { font-size: 1.5rem; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2px; }
.menu-item { background: var(--bg2); padding: 28px 32px; border: 1px solid var(--border); transition: background 0.2s, border-color 0.2s; }
.menu-item:hover { background: var(--bg3); border-color: rgba(201,168,76,0.25); }
.menu-item-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; gap: 16px; }
.menu-item h4 { font-size: 1rem; font-weight: bold; color: var(--text); letter-spacing: 0.02em; }
.menu-price { font-family: -apple-system, sans-serif; font-weight: 700; color: var(--gold); font-size: 0.95rem; white-space: nowrap; }
.menu-item p { color: var(--sub); font-size: 0.85rem; line-height: 1.7; font-family: -apple-system, sans-serif; }
.menu-tag { display: inline-block; margin-top: 10px; font-family: -apple-system, sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 10px; border-radius: 2px; }
.tag-house { background: rgba(139,26,26,0.3); color: #e07070; border: 1px solid rgba(139,26,26,0.4); }
.tag-wagyu { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid var(--border); }
.tag-chef  { background: rgba(255,255,255,0.05); color: var(--sub); border: 1px solid var(--border); }
.wine-note { background: var(--bg2); border: 1px solid var(--border); border-radius: 2px; padding: 28px 32px; max-width: 1100px; margin: 0 auto 72px; display: flex; gap: 20px; align-items: flex-start; }
.wine-note p { color: var(--sub); font-size: 0.9rem; font-family: -apple-system, sans-serif; line-height: 1.7; }

/* ── PRIVATE DINING ── */
.pd-intro { padding: 80px 60px; text-align: center; }
.pd-intro h2 { margin-bottom: 16px; }
.pd-rooms { padding: 0 60px 100px; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto 80px; }
.room-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; transition: border-color 0.2s, transform 0.2s; }
.room-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.room-img { height: 220px; background-size: cover; background-position: center; }
.room-body { padding: 28px; }
.room-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.room-body p { color: var(--sub); font-size: 0.88rem; font-family: -apple-system, sans-serif; line-height: 1.6; margin-bottom: 16px; }
.room-cap { font-family: -apple-system, sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.pd-details { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.pd-detail-box { background: var(--bg2); border: 1px solid var(--border); padding: 36px; border-radius: 2px; }
.pd-detail-box h3 { font-size: 1.1rem; margin-bottom: 16px; }
.pd-detail-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pd-detail-box li { font-family: -apple-system, sans-serif; font-size: 0.88rem; color: var(--sub); display: flex; gap: 10px; }
.pd-detail-box li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; margin-top: 4px; flex-shrink: 0; }

/* ── RESERVATIONS ── */
.res-page { padding: 80px 60px 100px; }
.res-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.res-info h2 { margin-bottom: 20px; }
.res-info p { color: var(--sub); margin-bottom: 32px; font-size: 0.95rem; line-height: 1.9; }
.info-block { margin-bottom: 28px; }
.info-block h4 { font-family: -apple-system, sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.info-block p { color: var(--sub); font-family: -apple-system, sans-serif; font-size: 0.9rem; line-height: 1.8; }
.res-form-wrap { background: var(--bg2); border: 1px solid var(--border); padding: 48px; border-radius: 2px; }
.res-form-wrap h3 { font-size: 1.3rem; font-weight: normal; margin-bottom: 32px; }
.res-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.res-form .full { grid-column: span 2; }
label { display: block; font-family: -apple-system, sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
input, select, textarea { width: 100%; background: var(--bg3); border: 1px solid var(--border); color: var(--text); padding: 14px 16px; font-size: 0.95rem; font-family: Georgia, serif; border-radius: 2px; transition: border-color 0.2s; appearance: none; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }
input::placeholder, textarea::placeholder { color: var(--muted); }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239e8e7e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; cursor: pointer; }
select option { background: var(--bg2); }
textarea { resize: vertical; min-height: 100px; }
.res-submit { grid-column: span 2; margin-top: 8px; }
.res-submit .btn-gold { width: 100%; text-align: center; font-size: 0.82rem; padding: 16px; display: block; }

/* ── CTA BANNER ── */
.cta-banner { position: relative; padding: 120px 60px; text-align: center; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1600891964092-4316c288032e?w=1600&q=80') center/cover; }
.cta-overlay { position: absolute; inset: 0; background: rgba(13,10,8,0.82); }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-content p { color: var(--sub); margin-bottom: 36px; font-size: 1.05rem; }

/* ── FOOTER ── */
footer { background: var(--bg1); border-top: 1px solid var(--border); padding: 80px 60px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; line-height: 1.8; max-width: 260px; margin-top: 8px; }
.footer-col h4 { font-family: -apple-system, sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: var(--muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; font-family: -apple-system, sans-serif; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col p { color: var(--muted); font-size: 0.88rem; line-height: 1.9; font-family: -apple-system, sans-serif; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; color: var(--muted); font-family: -apple-system, sans-serif; font-size: 0.78rem; }
.disclaimer-bar { background: #0a0805; border-top: 1px solid rgba(201,168,76,0.08); padding: 12px 24px; text-align: center; font-family: -apple-system, sans-serif; font-size: 0.75rem; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 16px 24px; }
  .section-pad { padding: 80px 24px; }
  .menu-intro, .pd-intro, .res-page { padding: 60px 24px; }
  .menu-sections, .pd-rooms { padding: 0 24px 80px; }
  .about-grid, .exp-split, .res-layout, .pd-details { grid-template-columns: 1fr; }
  .about-imgs { height: 320px; }
  .exp-img { min-height: 280px; }
  .teaser-grid, .rooms-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 24px; }
  footer { padding: 60px 0 32px; }
  .footer-bottom { padding: 0 24px; }
  .hero-content { padding: 0 24px; }
  .page-hero-content { padding: 0 24px; }
  .strip { padding: 24px; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid .g1 { grid-column: span 2; grid-row: span 1; }
  .cta-banner { padding: 80px 24px; }
  .res-form-wrap { padding: 32px 24px; }
  .exp-content { padding: 60px 36px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .teaser-grid, .rooms-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .g1 { grid-column: span 1; }
  .res-form { grid-template-columns: 1fr; }
  .res-form .full, .res-submit { grid-column: span 1; }
  .pd-details { grid-template-columns: 1fr; }
}
