:root {
  --navy: #0e1f38;
  --navy-light: #16304f;
  --cream: #f6e8c8;
  --cream-light: #fbf3e2;
  --gold: #e2a13a;
  --gold-dark: #c6841f;
  --red: #b3272d;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --text-dark: #1c1a14;
  --font-display: 'Anton', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream-light);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  height: 56px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav a:hover { color: var(--gold); }

.nav-cta {
  background: var(--whatsapp);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta:hover { background: var(--whatsapp-dark); }

/* Hero */
.hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(226,161,58,0.15), transparent 40%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--cream);
  padding: 72px 0 88px;
  text-align: center;
}

.hero-logo {
  max-width: 260px;
  margin: 0 auto 20px;
}

.hero-tagline {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 1rem;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 0 0 16px;
  color: var(--cream-light);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(246,232,200,0.85);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover { background: var(--cream); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover { background: var(--whatsapp-dark); }

/* Section base */
.section {
  padding: 72px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--navy);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 8px;
}

.section-sub {
  text-align: center;
  color: #6b5f45;
  margin: 0 0 40px;
}

/* Carta */
.carta-section {
  background: var(--cream);
}

.carta-frame {
  display: block;
  max-width: 460px;
  margin: 0 auto;
  border: 6px solid var(--navy);
  border-radius: 12px;
  overflow: hidden;
  background: none;
  padding: 0;
  cursor: zoom-in;
  box-shadow: 0 20px 40px rgba(14,31,56,0.25);
  transition: transform 0.2s;
}

.carta-frame:hover { transform: scale(1.015); }

.carta-img { width: 100%; }

/* Location */
.location-section {
  background: var(--navy);
  color: var(--cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.location-info .section-title {
  color: var(--cream-light);
  text-align: left;
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.info-icon { font-size: 1.4rem; }

.info-label {
  margin: 0 0 4px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-value {
  margin: 0;
  line-height: 1.5;
  font-size: 1.05rem;
}

.info-value a { text-decoration: underline; text-underline-offset: 3px; }
.info-value a:hover { color: var(--gold); }

.location-map {
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--gold);
}

/* Hours banner */
.hours-banner {
  background: var(--red);
  color: var(--cream-light);
  text-align: center;
}

.hours-banner-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }

.hours-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.85;
}

.hours-big {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  margin: 0 0 20px;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(246,232,200,0.75);
  padding: 48px 0 32px;
  text-align: center;
}

.footer-logo {
  height: 44px;
  margin: 0 auto 16px;
}

.footer-social {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 16px 0;
}

.footer-social a { font-weight: 600; }
.footer-social a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.85rem;
  margin-top: 16px;
  opacity: 0.6;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14,31,56,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 32px;
}

.lightbox.is-open { display: flex; }

.lightbox img {
  max-height: 92vh;
  max-width: 92vw;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

/* Floating WhatsApp button */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 40;
  transition: transform 0.15s;
}

.float-whatsapp:hover { transform: scale(1.08); }

/* Responsive */
@media (max-width: 800px) {
  .nav { gap: 14px; }
  .nav a:not(.nav-cta) { display: none; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 280px; }
}
