/* ─────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { width: 100%; overflow-x: hidden; font-family: 'Montserrat', sans-serif; color: #fff; background: #0a0a0a; }

/* ─────────────────────────────────────────────
   SHARED HELPERS
───────────────────────────────────────────── */
.section-eyebrow       { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: #8b6f47; margin-bottom: 14px; }
.section-eyebrow.light { color: #c9a96e; }
.section-title         { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 400; color: #fff; line-height: 1.1; margin-bottom: 18px; }
.section-title.light   { color: #fff; }

.ms-divider {
  display: flex; align-items: center; gap: 12px; margin-bottom: 40px; color: #b89a6a;
}
.ms-divider span { flex: 1; height: 1px; background: linear-gradient(to right, transparent, #b89a6a 40%, transparent); }
.ms-divider svg  { flex-shrink: 0; }

/* ─────────────────────────────────────────────
   VIDEO BACKGROUND
───────────────────────────────────────────── */
.video-wrapper { position: fixed; inset: 0; z-index: 0; overflow: hidden; }
#bg-video {
  position: absolute; top: 50%; left: 50%;
  min-width: 100%; min-height: 100%; width: auto; height: auto;
  transform: translate(-50%, -50%); object-fit: cover;
}
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 40%, rgba(0,0,0,0.65) 100%);
}

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 48px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.40) 0%, transparent 100%);
  transition: background 0.4s, padding 0.4s;
}
.navbar.scrolled { background: rgba(8,6,12,0.92); backdrop-filter: blur(14px); padding: 16px 48px; }

.nav-menu-btn { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 6px; padding: 4px; }
.nav-menu-btn span { display: block; width: 28px; height: 1.5px; background: #fff; }

.nav-logo { position: absolute; left: 50%; transform: translateX(-50%); }
.nav-logo img { height: 80px; width: auto; display: block; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); transition: opacity 0.3s; }
.nav-logo img:hover { opacity: 0.85; }

.nav-contact-btn {
  text-decoration: none; color: #fff;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.55); padding: 10px 24px; border-radius: 40px;
  transition: background 0.3s, border-color 0.3s;
}
.nav-contact-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.9); }

/* ─────────────────────────────────────────────
   MENU OVERLAY
───────────────────────────────────────────── */
.menu-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6,4,14,0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1);
}
.menu-overlay.open { opacity: 1; pointer-events: all; }
.menu-close-btn { position: absolute; top: 32px; right: 48px; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 28px; cursor: pointer; transition: color 0.2s, transform 0.2s; }
.menu-close-btn:hover { color: #fff; transform: rotate(90deg); }
.menu-nav ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 10px; }
.menu-link {
  text-decoration: none; color: rgba(255,255,255,0.75);
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 400; letter-spacing: 0.04em;
  display: inline-block; position: relative;
  opacity: 0; transform: translateY(24px);
  transition: color 0.3s, opacity 0.45s ease, transform 0.45s ease;
}
.menu-overlay.open .menu-link { opacity: 1; transform: translateY(0); }
.menu-overlay.open li:nth-child(1) .menu-link { transition-delay: 0.08s; }
.menu-overlay.open li:nth-child(2) .menu-link { transition-delay: 0.14s; }
.menu-overlay.open li:nth-child(3) .menu-link { transition-delay: 0.20s; }
.menu-overlay.open li:nth-child(4) .menu-link { transition-delay: 0.26s; }
.menu-link::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: rgba(255,255,255,0.5); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.menu-link:hover { color: #fff; }
.menu-link:hover::after { transform: scaleX(1); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero { position: relative; z-index: 10; height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-content { text-align: center; padding: 0 24px; transform: translateY(20px); opacity: 0; animation: fadeUp 1.1s 0.4s cubic-bezier(0.4,0,0.2,1) forwards; }
@keyframes fadeUp { to { transform: translateY(0); opacity: 1; } }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 8vw, 7rem); font-weight: 400; letter-spacing: 0.06em; color: #fff; text-shadow: 0 2px 32px rgba(0,0,0,0.5); margin-bottom: 18px; }
.hero-sub { font-size: clamp(0.75rem, 1.8vw, 1rem); letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

.scroll-indicator { position: absolute; bottom: 42px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: fadeIn 1.2s 1.2s ease forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.scroll-text { font-size: 10px; letter-spacing: 0.28em; color: rgba(255,255,255,0.55); text-transform: uppercase; }
.scroll-lines { display: flex; gap: 4px; animation: pulse 1.8s ease-in-out infinite; }
.scroll-lines span { display: block; width: 1.5px; background: rgba(255,255,255,0.5); border-radius: 2px; }
.scroll-lines span:nth-child(1) { height: 12px; } .scroll-lines span:nth-child(2) { height: 20px; }
.scroll-lines span:nth-child(3) { height: 28px; } .scroll-lines span:nth-child(4) { height: 28px; }
.scroll-lines span:nth-child(5) { height: 20px; } .scroll-lines span:nth-child(6) { height: 12px; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ─────────────────────────────────────────────
   MENU SECTION  (DARK)
───────────────────────────────────────────── */
.ms {
  position: relative; z-index: 10;
  background: #0c0a08;
  padding-bottom: 0;
}

/* Header */
.ms-header {
  text-align: center;
  padding: 100px 40px 52px;
  background: #0c0a08;
}
.ms-eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: #8b6f47; margin-bottom: 14px; }
.ms-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 400; color: #f0e8d8; margin-bottom: 20px; }

/* Tabs */
.ms-tabs { display: flex; gap: 3px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.ms-tab {
  background: none; border: 1px solid rgba(184,154,106,0.3);
  color: rgba(184,154,106,0.7); padding: 11px 30px; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  transition: all 0.3s;
}
.ms-tab:hover  { border-color: #b89a6a; color: #b89a6a; }
.ms-tab.active { background: #b89a6a; border-color: #b89a6a; color: #0c0a08; }

/* Body — sticky left image + scrollable right */
.ms-body {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 600px;
}

/* Left: category image */
.ms-img-col {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.ms-cat-img {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.6s ease;
}
.ms-cat-img.active { opacity: 1; }
.ms-cat-img img { width: 100%; height: 100%; object-fit: cover; }
.ms-img-label {
  position: absolute; bottom: 40px; left: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400; font-style: italic;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
  letter-spacing: 0.04em;
}
/* dark gradient over image bottom */
.ms-cat-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.10) 50%, transparent 100%);
}
.ms-img-label { z-index: 1; }

/* Right: item list */
.ms-items-col {
  background: #100e0b;
  border-left: 1px solid rgba(184,154,106,0.15);
  padding: 0;
}
.ms-panel { display: none; }
.ms-panel.active { display: block; }

.ms-item {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.25s;
  cursor: default;
}
.ms-item:hover { background: rgba(184,154,106,0.06); }

.ms-thumb {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  filter: brightness(0.92) saturate(1.1);
  transition: transform 0.3s;
}
.ms-item:hover .ms-thumb { transform: scale(1.05); }

.ms-item-body { flex: 1; min-width: 0; }
.ms-item-header { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.ms-item-name  { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: #f0e8d8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ms-item-dots  { flex: 1; height: 1px; border-bottom: 1px dotted rgba(184,154,106,0.4); margin-bottom: 3px; min-width: 12px; }
.ms-item-price { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: #b89a6a; white-space: nowrap; }
.ms-item-desc  { font-size: 11.5px; color: rgba(255,255,255,0.38); line-height: 1.6; letter-spacing: 0.02em; }

/* ─────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────── */
.gallery-section { position: relative; z-index: 10; background: #0a0807; padding-top: 100px; }
.gallery-header { text-align: center; padding: 0 40px 60px; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.g-item { position: relative; aspect-ratio: 1/1; overflow: hidden; cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.g-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background 0.4s; }
.g-item:hover img { transform: scale(1.08); }
.g-item:hover .g-overlay { background: rgba(0,0,0,0.25); }

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.contact-section { position: relative; z-index: 10; background: #0f0d0a; padding: 110px 0 100px; }
.contact-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }

.contact-details { list-style: none; margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.contact-details li { display: flex; flex-direction: column; gap: 6px; }
.cd-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: #8b6f47; }
.cd-value  { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: rgba(255,255,255,0.8); line-height: 1.6; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { display: flex; flex-direction: column; gap: 8px; }
.cf-field label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.cf-field input, .cf-field select, .cf-field textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); color: #fff;
  padding: 13px 16px; font-family: 'Montserrat', sans-serif; font-size: 13px;
  border-radius: 3px; outline: none; transition: border-color 0.3s; resize: none;
}
.cf-field input::placeholder, .cf-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.cf-field select { appearance: none; cursor: pointer; }
.cf-field select option { background: #1a1a1a; }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-color: #b89a6a; }
.cf-submit {
  align-self: flex-start; background: none; border: 1px solid #b89a6a; color: #b89a6a;
  padding: 14px 36px; font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px; transition: background 0.3s, color 0.3s;
}
.cf-submit:hover { background: #b89a6a; color: #0f0d0a; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer { position: relative; z-index: 10; background: #080508; padding: 60px 0 0; }
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 48px 48px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 64px; width: auto; display: block; margin-bottom: 16px; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: rgba(255,255,255,0.35); font-style: italic; }
.footer-links { display: flex; flex-direction: column; gap: 14px; padding-top: 8px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.45); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: #c9a96e; }
.footer-social { display: flex; gap: 16px; padding-top: 8px; }
.social-icon { color: rgba(255,255,255,0.4); transition: color 0.2s; display: flex; }
.social-icon:hover { color: #c9a96e; }
.footer-bottom { text-align: center; padding: 20px 0; }
.footer-bottom p { font-size: 11px; letter-spacing: 0.1em; color: rgba(255,255,255,0.2); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 900px) {
  .ms-body { grid-template-columns: 1fr; }
  .ms-img-col { position: relative; height: 360px; }
  .ms-item.no-thumb { padding-left: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .navbar { padding: 20px 24px; }
  .navbar.scrolled { padding: 14px 24px; }
  .nav-logo img { height: 68px; }
  .nav-contact-btn { font-size: 10px; padding: 8px 16px; }
  .menu-close-btn { top: 24px; right: 24px; }
  .ms-header { padding: 80px 20px 40px; }
  .ms-tab { padding: 9px 16px; font-size: 10px; }
  .ms-item { padding: 18px 20px; }
  .ms-item.no-thumb { padding-left: 20px; }
  .ms-thumb { width: 56px; height: 56px; }
  .contact-inner { padding: 0 24px; }
  .cf-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; padding: 0 24px 40px; }
}
