@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #c9a84c;
  --gold-light: #e2cc8a;
  --gold-dark: #a07c2a;
  --black: #0a0a0a;
  --black-light: #141414;
  --black-card: #111111;
  --cream: #e8dcc8;
  --cream-muted: #998b70;
  --border: #2a2218;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }

/* ── Loading ── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-text {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  font-weight: 600;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }

/* ── Ambient ── */
.ambient-glow {
  position: fixed; top: -30%; left: -20%; width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
  animation: ambientDrift 20s ease-in-out infinite;
}
@keyframes ambientDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10vw, 15vh); }
}

/* ── Header ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,.1);
  transition: background .3s;
}
header.scrolled { background: rgba(10,10,10,.95); }

nav {
  max-width: 1200px; margin: 0 auto;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: .02em;
}
.nav-brand span { color: var(--cream); font-weight: 400; }

.nav-links {
  list-style: none; display: flex; gap: 2.5rem;
}
.nav-links a {
  color: var(--cream-muted);
  font-size: .8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .12em;
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none; background: none; border: none;
  color: var(--gold); font-size: 1.5rem; cursor: pointer;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201,168,76,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201,168,76,.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero-logo {
  width: clamp(120px, 20vw, 200px);
  height: auto;
  margin-bottom: 2rem;
  animation: logoFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(201,168,76,.3));
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: .5rem;
  letter-spacing: .02em;
}

.tagline {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--cream);
  font-style: italic;
  font-weight: 400;
  margin-bottom: .5rem;
}

.motto {
  font-size: .85rem;
  color: var(--cream-muted);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-size: .85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  transition: all .3s;
  border: none; cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
}
.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(201,168,76,.35);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,.1);
}

/* ── Sections ── */
.section {
  padding: clamp(4rem, 8vw, 7rem) 2rem;
  max-width: 1200px; margin: 0 auto;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  text-align: center;
  font-weight: 600;
  margin-bottom: .5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--cream-muted);
  font-size: .9rem;
  margin-bottom: 1rem;
}

.gold-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto 3rem;
}

/* ── Services Banner ── */
.services-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.service-icon { font-size: 2rem; margin-bottom: .75rem; }
.service-card h3 {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: .5rem;
}
.service-card p {
  color: var(--cream-muted);
  font-size: .82rem;
  line-height: 1.5;
}

/* ── Menu ── */
.menu-category {
  margin-bottom: 3rem;
}

.menu-category h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(42,34,24,.5);
  transition: background .3s;
}
.menu-item:hover {
  background: rgba(201,168,76,.03);
  padding-left: .5rem;
  padding-right: .5rem;
}

.menu-item-info h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 600;
}
.menu-item-info p {
  color: var(--cream-muted);
  font-size: .82rem;
  margin-top: .2rem;
}
.menu-item-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  margin-left: 1rem;
}

/* ── Payment ── */
.payment-grid {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
}
.payment-badge {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .6rem 1.5rem;
  font-size: .85rem;
  color: var(--cream);
  font-weight: 500;
  transition: border-color .3s;
}
.payment-badge:hover { border-color: var(--gold); }

/* ── Contact ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.info-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.info-icon { font-size: 1.8rem; margin-bottom: .75rem; }
.info-card h3 {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.info-card p {
  color: var(--cream-muted);
  font-size: .85rem;
}
.info-card a {
  color: var(--gold);
  transition: color .3s;
}
.info-card a:hover { color: var(--gold-light); }

/* ── CTA ── */
.cta-section {
  background: var(--black-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 2rem;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border);
  color: var(--cream-muted);
  font-size: .8rem;
}
footer a { color: var(--gold); }

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,.98);
    padding: 1.5rem 2rem; gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: block; }
  .hero { padding-top: 8rem; }
}
