/* ============================================================
   FERNANDO'S · Grau de Castelló
   Tema: Marítim premium · arròs front al port
   Palette: navy marí · sorra / or càlid · crema
   Brand colors validats des del rètol real (navy + teal)
   Fonts: Cormorant Garamond (display serif) + Inter (UI)
   ============================================================ */

:root {
  /* Navy marí (hex fallback) */
  --navy-950: #081826;
  --navy-900: #0c2438;
  --navy-800: #123249;
  --navy-700: #1b4561;
  --navy-600: #2a5f80;
  /* Teal accent (del rètol Fernando's) */
  --teal-500: #3a8fa3;
  --teal-400: #5bb0c2;
  /* Sorra / or càlid */
  --gold-700: #a87833;
  --gold-500: #c69a52;
  --gold-300: #e2c186;
  --sand-200: #ead9be;
  /* Crema */
  --cream-100: #f4ede1;
  --cream-50: #fbf7ef;
  --ink-900: #06121d;
  --white-pure: #ffffff;
  /* Glass marí (tint blau subtil) */
  --glass-bg: rgba(230, 240, 247, 0.07);
  --glass-border: rgba(210, 228, 240, 0.20);
  --glass-bg-dark: rgba(12, 36, 56, 0.58);
  --shadow-color: 8, 24, 38;
}

@supports (color: oklch(0 0 0)) {
  :root {
    --navy-950: oklch(20% 0.04 240);
    --navy-900: oklch(26% 0.05 240);
    --navy-800: oklch(32% 0.06 240);
    --navy-700: oklch(40% 0.07 240);
    --navy-600: oklch(50% 0.08 240);
    --teal-500: oklch(62% 0.08 215);
    --teal-400: oklch(72% 0.09 215);
    --gold-700: oklch(58% 0.10 75);
    --gold-500: oklch(70% 0.11 75);
    --gold-300: oklch(82% 0.10 78);
    --sand-200: oklch(88% 0.05 80);
    --cream-100: oklch(94% 0.02 80);
    --cream-50: oklch(97% 0.013 80);
    --ink-900: oklch(16% 0.025 240);
  }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--cream-100);
  background: var(--ink-900);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---- Fons aurora marí animat (sol sobre l'aigua) ---- */
.bg-aurora {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 80% 55% at 78% 22%, rgba(198, 154, 82, 0.26), transparent 60%),
    radial-gradient(ellipse 70% 50% at 18% 70%, rgba(42, 95, 128, 0.50), transparent 62%),
    radial-gradient(ellipse 65% 75% at 55% 48%, rgba(58, 143, 163, 0.18), transparent 60%),
    linear-gradient(180deg, #0c2438 0%, #123249 55%, #06121d 100%);
  animation: aurora-shift 34s ease-in-out infinite;
}
@keyframes aurora-shift {
  0%, 100% { background-position: 0% 0%, 0% 0%, 0% 0%; }
  50% { background-position: -6% 5%, 7% -6%, 4% 5%; }
}
.bg-grain {
  position: fixed; inset: 0; z-index: -1; opacity: 0.035; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Liquid Glass (marí, specular highlight com sol sobre aigua) ---- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow:
    0 8px 32px rgba(8, 24, 38, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
  position: relative;
  isolation: isolate;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease;
}
.glass::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.03) 38%, rgba(255,255,255,0) 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}
.glass:hover {
  transform: translateY(-3px);
  border-color: rgba(210, 228, 240, 0.34);
}
.glass-dark {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-color: rgba(210, 228, 240, 0.14);
}
.depth {
  box-shadow:
    0 1px 1px rgba(0,0,0,0.07),
    0 2px 4px rgba(0,0,0,0.08),
    0 4px 8px rgba(0,0,0,0.09),
    0 8px 16px rgba(0,0,0,0.11),
    0 18px 36px rgba(0,0,0,0.14);
}

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
section { padding: 92px 0; position: relative; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 16px;
}
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--cream-50);
}
h1 { font-size: clamp(3.2rem, 9vw, 6.4rem); font-weight: 600; }
h2 { font-size: clamp(2.3rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h4 { font-size: 1.2rem; font-weight: 600; }
p { color: rgba(244, 237, 225, 0.82); font-size: 1rem; }

/* ---- Demo banner ---- */
.demo-banner {
  position: relative; z-index: 100;
  text-align: center; padding: 10px 24px;
  background: rgba(198, 154, 82, 0.16);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(198, 154, 82, 0.3);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--cream-100);
}

/* ---- Header ---- */
header.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(8, 24, 38, 0.42);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(210, 228, 240, 0.10);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cream-50);
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--teal-400), var(--navy-700));
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: var(--cream-50);
  box-shadow: 0 4px 14px rgba(42, 95, 128, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}
.nav-links { display: none; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: rgba(244, 237, 225, 0.78);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--gold-300); }
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -5px; left: 50%;
  width: 0; height: 1.5px;
  background: var(--gold-300);
  transition: width 0.3s ease, left 0.3s ease;
}
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

/* ---- Mobile menu ---- */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 24px 16px;
  background: rgba(8, 24, 38, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(210, 228, 240, 0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 4px;
  font-size: 15px; font-weight: 500;
  color: rgba(244, 237, 225, 0.85);
  border-bottom: 1px solid rgba(210, 228, 240, 0.08);
}
.mobile-menu a:last-child { border-bottom: none; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

/* ===== Mobile/tablet header fit (≤1023px) — evita overflow horizontal ===== */
@media (max-width: 1023px) {
  .nav-row { gap: 12px; }
  .brand { flex: 1 1 auto; min-width: 0; font-size: 20px; gap: 9px; }
  .brand span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .brand-mark { width: 34px; height: 34px; font-size: 19px; flex-shrink: 0; }
  .nav-actions { flex-shrink: 0; gap: 8px; }
  .nav-actions .btn-primary { display: none; } /* Reservar vive en menú + hero + WhatsApp flotante */
  .lang-switch { padding: 3px; }
  .lang-switch button { padding: 5px 8px; font-size: 10px; }
}
@media (max-width: 380px) {
  .lang-switch button { padding: 4px 6px; font-size: 9.5px; letter-spacing: 0.04em; }
  .brand { font-size: 18px; }
}

/* ---- Lang switch ---- */
.lang-switch {
  display: inline-flex; gap: 2px; padding: 4px;
  background: rgba(230, 240, 247, 0.07);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  border: 1px solid rgba(210, 228, 240, 0.14);
}
.lang-switch button {
  padding: 6px 11px;
  background: transparent; border: none;
  color: var(--cream-100);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer; border-radius: 999px;
  transition: all 0.3s; opacity: 0.55;
}
.lang-switch button.active {
  background: rgba(230, 240, 247, 0.16);
  opacity: 1; color: var(--cream-50);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.lang-switch button:hover { opacity: 1; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #2a1c08;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid rgba(244, 237, 225, 0.22);
  border-radius: 999px;
  box-shadow:
    0 8px 24px rgba(168, 120, 51, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 30px rgba(168, 120, 51, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-glass {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: rgba(230, 240, 247, 0.10);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(210, 228, 240, 0.24);
  border-radius: 999px;
  color: var(--cream-50);
  font-size: 14px; font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: all 0.3s ease;
}
.btn-glass:hover {
  background: rgba(230, 240, 247, 0.17);
  border-color: rgba(210, 228, 240, 0.36);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 30px; font-size: 15px; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  padding: 110px 0 90px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background-image: url('assets/fernandos-12.jpg');
  background-size: cover; background-position: center 38%;
  filter: saturate(108%) brightness(0.66);
  transform: scale(1.08);
  animation: bg-zoom 28s ease-in-out infinite alternate;
}
@keyframes bg-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.17); }
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 24, 38, 0.42) 0%, transparent 28%, rgba(8, 24, 38, 0.82) 92%),
    linear-gradient(105deg, rgba(8, 24, 38, 0.62) 0%, transparent 62%);
}
.hero-inner { position: relative; z-index: 2; max-width: 740px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: rgba(58, 143, 163, 0.20);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(91, 176, 194, 0.42);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 26px;
  box-shadow: 0 6px 20px rgba(58, 143, 163, 0.25);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 12px var(--teal-500);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.65; }
}
.hero h1 {
  color: var(--cream-50);
  margin-bottom: 14px;
  text-shadow: 0 4px 36px rgba(0, 0, 0, 0.55);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-300);
  font-weight: 500;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 500;
  color: var(--sand-200);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: rgba(244, 237, 225, 0.9);
  margin-bottom: 36px;
  max-width: 560px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(244, 237, 225, 0.4);
  border-radius: 14px;
  display: grid; place-items: start center;
  padding-top: 7px;
  z-index: 2;
}
.scroll-cue span {
  width: 4px; height: 8px; border-radius: 2px;
  background: var(--gold-300);
  animation: scroll-bob 1.8s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ---- Trust strip ---- */
.trust-strip { padding: 56px 0; }
.trust-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  padding: 26px 18px; text-align: center;
  border-radius: 20px;
}
.trust-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--cream-50);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-star { color: var(--gold-300); font-size: 0.7em; }
.trust-sub { color: rgba(244,237,225,0.5); font-size: 0.5em; font-weight: 500; }
.trust-item small {
  font-size: 13.5px; letter-spacing: 0.05em;
  color: rgba(244, 237, 225, 0.72);
  text-transform: uppercase; font-weight: 600;
}

/* ---- Section head ---- */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p {
  font-size: 1.06rem; max-width: 580px; margin: 0 auto;
  color: rgba(244, 237, 225, 0.76);
}
.section-foot { text-align: center; margin-top: 48px; }

/* ---- Arrossos showcase ---- */
.arrossos-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.dish-card {
  position: relative; border-radius: 26px;
  overflow: hidden; aspect-ratio: 4 / 5;
  isolation: isolate; cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.dish-card:hover { transform: translateY(-6px); }
.dish-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.dish-card:hover img { transform: scale(1.07); }
.dish-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(8, 24, 38, 0.94) 100%);
  z-index: 1;
}
.feature-card { aspect-ratio: 4 / 5; }
@media (min-width: 768px) {
  .feature-card { grid-column: span 1; }
}
.dish-flag {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #2a1c08;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(168, 120, 51, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}
.dish-card .dish-info {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 2;
  padding: 16px 18px;
  background: rgba(8, 24, 38, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(210, 228, 240, 0.18);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}
.dish-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.72rem; font-weight: 600;
  color: var(--cream-50);
  margin-bottom: 6px;
  line-height: 1.1;
}
.dish-card .dish-info p {
  font-size: 15px;
  color: rgba(244, 237, 225, 0.8);
  line-height: 1.5;
  margin-bottom: 10px;
}
.price-tag {
  display: inline-block;
  font-size: 13px;
  color: var(--gold-300);
  font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- Mariscos ---- */
.mariscos-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.marisco-card {
  position: relative; border-radius: 22px;
  overflow: hidden; aspect-ratio: 1 / 1;
  isolation: isolate; cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.marisco-card:hover { transform: translateY(-5px); }
.marisco-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.marisco-card:hover img { transform: scale(1.08); }
.marisco-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 24, 38, 0.92) 100%);
}
.marisco-info {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  z-index: 2;
}
.marisco-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 600;
  color: var(--cream-50);
  margin-bottom: 3px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* ---- VAPI section (estrella) ---- */
.vapi-section { padding: 88px 0; }
.vapi-content {
  padding: 56px 44px; text-align: center;
  max-width: 800px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.vapi-content::after {
  content: ''; position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(58, 143, 163, 0.28), transparent 70%);
  top: -120px; right: -100px;
  pointer-events: none; z-index: -1;
}
.vapi-pulse-ring {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(91, 176, 194, 0.3);
  bottom: -110px; left: -80px;
  pointer-events: none; z-index: -1;
  animation: ring-pulse 4s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0.1; }
}
.vapi-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: rgba(58, 143, 163, 0.22);
  border: 1px solid rgba(91, 176, 194, 0.45);
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 20px;
}
.vapi-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 10px var(--teal-500);
  animation: pulse 2s ease-in-out infinite;
}
.vapi-content h2 { margin-bottom: 14px; }
.vapi-lead {
  font-size: 1.08rem;
  color: rgba(244, 237, 225, 0.85);
  max-width: 620px; margin: 0 auto 32px;
}
.vapi-features {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 14px;
  margin-bottom: 34px;
}
.vapi-feat {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px;
  background: rgba(230, 240, 247, 0.06);
  border: 1px solid rgba(210, 228, 240, 0.14);
  border-radius: 14px;
  font-size: 13.5px; font-weight: 500;
  color: rgba(244, 237, 225, 0.88);
}
.vapi-feat-ico { font-size: 18px; }
.vapi-cta { font-size: 16px; }
.vapi-content small {
  display: block; margin-top: 20px;
  font-size: 12.5px; color: rgba(244, 237, 225, 0.55);
}

/* ---- Reservar (WhatsApp form) ---- */
.reservar-layout {
  display: grid; gap: 44px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .reservar-layout { grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
}
.reservar-intro h2 { margin-bottom: 16px; }
.reservar-intro p { font-size: 1.04rem; margin-bottom: 24px; }
.reservar-points { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.reservar-points li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14.5px; color: rgba(244, 237, 225, 0.84);
}
.rp-ico {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(58, 143, 163, 0.22);
  border: 1px solid rgba(91, 176, 194, 0.4);
  color: var(--teal-400);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
  margin-top: 1px;
}
.reservar-card { padding: 40px 36px; }
.form-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold-300);
}
.field input,
.field select,
.field textarea {
  padding: 12px 15px;
  background: rgba(230, 240, 247, 0.05);
  border: 1px solid rgba(210, 228, 240, 0.16);
  border-radius: 12px;
  color: var(--cream-50);
  font-family: inherit; font-size: 15px;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: rgba(230, 240, 247, 0.10);
  box-shadow: 0 0 0 3px rgba(198, 154, 82, 0.18);
}
.field select option { background: var(--navy-900); color: var(--cream-50); }
.field textarea { min-height: 84px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder {
  color: rgba(244, 237, 225, 0.4);
}
.form-foot {
  margin-top: 22px; text-align: center;
  font-size: 13px; color: rgba(244, 237, 225, 0.6);
}
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .reservar-card { padding: 30px 22px; }
}

/* ---- About ---- */
.about-layout {
  display: grid; gap: 44px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .about-layout { grid-template-columns: 1fr 1fr; gap: 60px; }
}
.about-media {
  position: relative; border-radius: 28px;
  overflow: hidden; aspect-ratio: 4 / 3;
  border: 1px solid rgba(210, 228, 240, 0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: 18px; left: 18px;
  padding: 14px 20px; border-radius: 16px;
  display: flex; flex-direction: column; gap: 2px;
}
.about-img-badge span {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-300); font-weight: 600;
}
.about-img-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--cream-50);
}
.about-text h2 { margin-bottom: 18px; }
.about-text p { font-size: 1.05rem; margin-bottom: 16px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 30px;
}
.about-stat {
  padding: 18px 14px;
  background: rgba(230, 240, 247, 0.05);
  border: 1px solid rgba(210, 228, 240, 0.12);
  border-radius: 16px;
  text-align: center;
}
.about-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--gold-300);
  margin-bottom: 4px;
}
.about-stat small { font-size: 11.5px; color: rgba(244, 237, 225, 0.66); }

/* ---- Reviews ---- */
.reviews-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.review-card { padding: 34px 30px; }
.review-card .stars {
  color: var(--gold-300);
  font-size: 16px; letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.review-card .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--cream-50);
  margin-bottom: 18px;
}
.review-card .author {
  font-size: 12px; color: rgba(244, 237, 225, 0.6);
  font-weight: 600; letter-spacing: 0.04em;
}

/* ---- Instagram ---- */
.instagram-link { padding: 78px 0; text-align: center; }
.instagram-link h2 { margin-bottom: 8px; }
.ig-handle {
  display: inline-block; margin-top: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--teal-400));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transition: transform 0.3s ease;
}
.ig-handle:hover { transform: scale(1.02); }
.ig-followers {
  margin-top: 12px; font-size: 14px;
  color: rgba(244, 237, 225, 0.6);
}
.ig-socials {
  display: flex; justify-content: center; gap: 14px;
  margin-top: 26px;
}
.ig-social-btn {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(230, 240, 247, 0.07);
  border: 1px solid rgba(210, 228, 240, 0.16);
  color: var(--cream-50);
  transition: all 0.3s ease;
}
.ig-social-btn:hover {
  background: rgba(58, 143, 163, 0.22);
  border-color: rgba(91, 176, 194, 0.4);
  transform: translateY(-3px);
  color: var(--teal-400);
}

/* ---- Info strip ---- */
.info-strip { padding: 78px 0; }
.info-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.info-card { padding: 30px 26px; }
.info-card .icon-wrap {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(58, 143, 163, 0.18);
  border: 1px solid rgba(91, 176, 194, 0.3);
  margin-bottom: 16px;
  font-size: 21px;
}
.info-card h4 { font-size: 1.28rem; margin-bottom: 8px; color: var(--cream-50); }
.info-card p { font-size: 15.5px; color: rgba(244, 237, 225, 0.8); margin-bottom: 2px; }
.info-card a { color: var(--gold-300); font-weight: 500; word-break: break-word; }
.info-card a:hover { color: var(--gold-500); }
.info-highlight { color: var(--teal-400) !important; font-weight: 600; font-size: 13px !important; margin-top: 6px !important; }

/* ---- Maps ---- */
.maps-section { padding: 0 0 80px; }
.maps-frame {
  border-radius: 28px; overflow: hidden;
  border: 1px solid rgba(210, 228, 240, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  aspect-ratio: 16 / 9;
}
.maps-frame iframe {
  width: 100%; height: 100%; border: 0;
  filter: saturate(0.85) brightness(0.92) contrast(1.05);
}

/* ---- Footer ---- */
footer.site-footer {
  padding: 62px 0 30px;
  border-top: 1px solid rgba(210, 228, 240, 0.10);
  background: rgba(8, 24, 38, 0.6);
  backdrop-filter: blur(20px);
}
.footer-grid {
  display: grid; gap: 36px;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin-bottom: 38px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.footer-brand p { font-size: 13.5px; color: rgba(244, 237, 225, 0.65); max-width: 340px; margin-bottom: 8px; }
.footer-addr { color: rgba(244, 237, 225, 0.5) !important; font-size: 13px !important; }
.footer-col h5 {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 700; margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  font-size: 14px; color: rgba(244, 237, 225, 0.7);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold-300); }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(210, 228, 240, 0.08);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(244, 237, 225, 0.5);
}
.footer-bottom .credit { color: var(--gold-300); font-weight: 500; }

/* ---- WhatsApp float ---- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 0 14px rgba(37, 211, 102, 0); }
}
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ---- Mobile toggle ---- */
.mobile-toggle {
  display: flex; flex-direction: column; gap: 5px;
  width: 32px; background: transparent; border: none;
  padding: 4px;
}
.mobile-toggle span {
  width: 100%; height: 2px;
  background: var(--cream-50);
  border-radius: 1px;
  transition: all 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

/* ---- Fade up animation ---- */
.fade-up {
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.fade-up.delay-1 { animation-delay: 0.1s; }
.fade-up.delay-2 { animation-delay: 0.22s; }
.fade-up.delay-3 { animation-delay: 0.36s; }
.fade-up.delay-4 { animation-delay: 0.5s; }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
