:root {
  --primary: #0f3b5c;
  --primary-dark: #0a2740;
  --accent: #2a9fd6;
  --bg: #ffffff;
  --surface: #f2f7fa;
  --text: #1a2332;
  --text-light: #55677a;
  --border: #dfe7ee;
  --radius: 14px;
  --max-width: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Heebo', system-ui, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* Header */
.site-header {
  background: var(--primary);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.site-header .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-header .brand img { height: 48px; width: auto; }
.site-header .brand span { color: #fff; font-weight: 800; font-size: 1.15rem; }
.desktop-nav { display: flex; gap: 24px; }
.desktop-nav a { color: #fff; text-decoration: none; font-weight: 600; font-size: .95rem; }
.desktop-nav a:hover { color: var(--accent); }
.site-header .header-phone {
  display: flex; align-items: center; gap: 8px;
  color: #fff; text-decoration: none; font-weight: 700; font-size: 1rem;
  background: rgba(255,255,255,.12); padding: 8px 16px; border-radius: 999px;
}
.site-header .header-phone svg { width: 18px; height: 18px; }
.site-header .header-phone:hover { background: rgba(255,255,255,.22); }

.nav-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 6px; }
.nav-toggle svg { width: 28px; height: 28px; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--primary-dark);
  padding: 8px 24px 16px;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-nav[hidden] { display: none; }

/* Hero */
.hero {
  background: linear-gradient(180deg, #8fcfe8 0%, var(--primary) 100%);
  color: #fff;
  text-align: center;
  padding: 72px 24px 56px;
}
.hero .logo-emblem { max-width: 220px; margin: 0 auto 24px; }
.hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 18px; }
.hero p { font-size: 1.1rem; max-width: 720px; margin: 0 auto 12px; color: rgba(255,255,255,.95); }

/* Gallery */
.gallery { padding: 48px 0; background: var(--surface); }
.gallery h2 { text-align: center; font-size: 1.6rem; color: var(--primary); margin-bottom: 28px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); }

/* Amenities */
.amenities { padding: 56px 0; }
.amenities h2 { text-align: center; font-size: 1.6rem; color: var(--primary); margin-bottom: 32px; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.amenity-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.amenity-card svg { width: 36px; height: 36px; color: var(--accent); margin: 0 auto 12px; }
.amenity-card span { font-weight: 600; font-size: .95rem; }

/* Reservation block */
.reservation {
  background: var(--primary-dark);
  color: #fff;
  padding: 56px 0;
}
.reservation .container { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between; }
.reservation-text { flex: 1 1 320px; }
.reservation-text h2 { font-size: 1.8rem; margin-bottom: 12px; }
.reservation-text p { color: rgba(255,255,255,.85); margin-bottom: 8px; }
.reservation-actions { flex: 1 1 280px; display: flex; flex-direction: column; gap: 14px; }
.res-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 20px; border-radius: 12px; font-weight: 700; font-size: 1.05rem;
  text-decoration: none; transition: transform .15s ease;
}
.res-btn:hover { transform: translateY(-2px); }
.res-btn svg { width: 22px; height: 22px; }
.res-btn.call { background: #fff; color: var(--primary); }
.res-btn.whatsapp { background: #25D366; color: #fff; }
.reservation-hours { margin-top: 8px; font-size: .9rem; color: rgba(255,255,255,.75); }

/* Contact form */
.contact-section { padding: 56px 0; background: var(--surface); }
.contact-section h2 { text-align: center; font-size: 1.6rem; color: var(--primary); margin-bottom: 8px; }
.contact-section .subtitle { text-align: center; color: var(--text-light); margin-bottom: 32px; }
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.contact-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .92rem; }
.contact-form .field { margin-bottom: 18px; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 1rem;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  width: 100%; padding: 14px; background: var(--primary); color: #fff; border: none;
  border-radius: 8px; font-weight: 700; font-size: 1.05rem; cursor: pointer;
}
.contact-form button:hover { background: var(--primary-dark); }
.contact-form button:disabled { opacity: .6; cursor: default; }

/* GMB reviews section */
.reviews-section { padding: 56px 0; }

/* Map */
.map-section { padding: 0 0 56px; }
.map-section iframe { width: 100%; height: 360px; border: 0; border-radius: var(--radius); }

/* Footer (B.6.1 — clean, human, 6-8 lines) */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  padding: 40px 0 20px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding-bottom: 24px;
}
.footer-brand h3 { color: #fff; font-size: 1.15rem; margin-bottom: 8px; }
.footer-brand p { font-size: .9rem; }
.footer-contact p, .footer-hours p { font-size: .92rem; margin-bottom: 6px; }
.footer-contact a { color: #fff; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-hours h4 { color: #fff; font-size: .95rem; margin-bottom: 8px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.85); text-decoration: none; font-size: .92rem; }
.footer-links a:hover { text-decoration: underline; }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 16px;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

/* FAB (B.3) */
.fab-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 2147483000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.fab {
  pointer-events: auto;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.fab:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.fab.wa { background: #25D366; }
.fab.call { background: var(--primary); }
.fab svg { width: 28px; height: 28px; fill: white; }

@media (max-width: 480px) {
  .fab { width: 48px; height: 48px; }
  .fab svg { width: 24px; height: 24px; }
}
@media print { .fab-container { display: none; } }

/* Mobile nav */
@media (max-width: 860px) {
  .desktop-nav { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 600px) {
  .hero { padding: 48px 20px 40px; }
  .hero h1 { font-size: 1.5rem; }
  .reservation .container { flex-direction: column; align-items: stretch; }
}

/* Thanks page */
.thanks-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}
.thanks-page h1 { color: var(--primary); font-size: 2rem; margin-bottom: 16px; }
.thanks-page p { color: var(--text-light); max-width: 480px; margin-bottom: 24px; }
.thanks-page .back-home {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
