:root {
  --bg: #0a0908;
  --bg-soft: #141211;
  --card: rgba(255,255,255,0.06);
  --text: #f3ede3;
  --muted: #cbbda9;
  --accent: #b88d52;
  --accent-2: #e2c79a;
  --line: rgba(255,255,255,0.12);
  --shadow: 0 18px 40px rgba(0,0,0,.28);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.3) 35%, rgba(10,9,8,.92));
}

.nav {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  border-radius: 999px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  letter-spacing: .14em;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.2);
}
.nav-links {
  display: flex;
  gap: 22px;
  color: #f5ede0;
}
.nav-links a { opacity: .88; }
.nav-links a:hover { opacity: 1; color: var(--accent-2); }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 96px;
}
.eyebrow,
.section-tag {
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent-2);
  font-size: .82rem;
  margin-bottom: 16px;
}
.section-tag.light { color: #f1d6ab; }
.hero h1,
.section-heading h2,
.intro h2,
.menu-card h2,
.video-card h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: .95;
  margin: 0;
}
.hero h1 {
  font-size: clamp(3.4rem, 9vw, 6.6rem);
  max-width: 820px;
}
.hero-text {
  max-width: 640px;
  font-size: 1.1rem;
  color: #f0e7db;
  margin: 20px 0 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: .25s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #8b6431);
  color: white;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}
.btn-secondary:hover { background: rgba(255,255,255,.14); }

.intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: center;
}
.intro h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 18px;
}
.intro-copy > p:not(.section-tag) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.intro-image img {
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.info-card,
.social-card,
.menu-card,
.video-card,
.contact-form,
.map-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card {
  padding: 22px;
}
.info-card h3 {
  margin-top: 0;
  font-size: 1rem;
}
.info-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.soft-bg { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)); }
.dark-bg { background: linear-gradient(180deg, #13100d, #0a0908); }
.center { text-align: center; }
.section-heading { margin-bottom: 28px; }
.section-heading h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  margin-bottom: 12px;
}
.section-heading p:last-child { color: var(--muted); }

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.social-card {
  padding: 28px;
  display: grid;
  gap: 10px;
  transition: .25s ease;
}
.social-card:hover {
  transform: translateY(-5px);
  border-color: rgba(226,199,154,.35);
}
.social-name {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .78rem;
}
.social-card strong {
  font-size: 1.35rem;
  font-family: 'Cormorant Garamond', serif;
}
.social-card span:last-child { color: var(--muted); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
}
.menu-card,
.video-card {
  padding: 32px;
}
.menu-card p:not(.section-tag),
.video-card p:not(.section-tag) { color: var(--muted); }
.menu-card h2,
.video-card h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 14px; }
.video-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
}
.contact-form {
  padding: 28px;
  display: grid;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #bcae9c; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-cards {
  display: grid;
  gap: 16px;
}
.map-card {
  overflow: hidden;
  min-height: 320px;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 34px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  flex-wrap: wrap;
}
.footer a { color: var(--accent-2); }

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}
.whatsapp-float a {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #24d366, #128c7e);
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
  color: white;
}
.whatsapp-float svg { width: 34px; height: 34px; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  display: none;
  place-items: center;
  padding: 24px;
  z-index: 50;
}
.lightbox.active { display: grid; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.lightbox p {
  color: #fff;
  margin-top: 14px;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 2.4rem;
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
}

@media (max-width: 980px) {
  .intro,
  .split,
  .contact-layout,
  .social-grid,
  .gallery-grid,
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .intro { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav {
    border-radius: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .hero-content { padding: 84px 0 72px; }
  .field-row,
  .contact-layout,
  .split,
  .social-grid,
  .gallery-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item img { height: 240px; }
  .intro-image img { min-height: auto; }
  .section { padding: 72px 0; }
  .footer-inner { flex-direction: column; }
}
