
:root {
  --color-bg: #faf7f2;
  --color-bg-alt: #ffffff;
  --color-primary: #c49a64;
  --color-primary-dark: #8f6c3c;
  --color-accent: #1f3344;
  --color-text: #222222;
  --color-muted: #6d747b;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.18);
  --max-width: 1120px;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header / nav */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(250, 247, 242, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0.8rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--color-accent);
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  outline: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.96);
}

.btn-full {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #fff;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 16px;
  height: 2px;
  background: #222;
  border-radius: 999px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.nav.open .nav-links {
  display: flex;
}

.nav.open .nav-toggle span {
  transform: rotate(45deg);
}

.nav.open .nav-toggle span::before {
  transform: rotate(90deg);
  top: 0;
}

.nav.open .nav-toggle span::after {
  opacity: 0;
}

/* Hero */

.hero {
  padding: 3.5rem 1.4rem 3rem;
}

.hero-inner {
  margin: 0 auto;
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.4rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 0.25rem 0.75rem 0.25rem 0.25rem;
  font-size: 0.75rem;
  color: var(--color-muted);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.badge-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #19c37d;
  box-shadow: 0 0 0 6px rgba(25, 195, 125, 0.25);
}

.hero-title {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--color-accent);
}

.hero-title span {
  color: var(--color-primary-dark);
}

.hero-subtitle {
  margin-top: 0.8rem;
  font-size: 0.98rem;
  color: var(--color-muted);
  max-width: 32rem;
}

.hero-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.8rem;
  font-size: 0.86rem;
  color: var(--color-muted);
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-primary);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.hero-media {
  position: relative;
}

.hero-card {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #000;
  position: relative;
  isolation: isolate;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.05));
  mix-blend-mode: multiply;
}

.hero-pill {
  position: absolute;
  right: 1.3rem;
  top: 1.3rem;
  background: rgba(250, 247, 242, 0.95);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
}

.hero-tag {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-width: 14rem;
}

.hero-tag-title {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--color-accent);
}

.hero-tag-sub {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* Sections */

section {
  padding: 3.1rem 1.4rem;
}

.section-inner {
  margin: 0 auto;
  max-width: var(--max-width);
}

.section-header {
  margin-bottom: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
}

.section-title {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--color-muted);
  max-width: 26rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.3rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--color-accent);
}

.card p {
  margin: 0.2rem 0 0.7rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: var(--color-muted);
}

.card li + li {
  margin-top: 0.25rem;
}

/* About / espacio */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}

.about-text p {
  font-size: 0.96rem;
  color: var(--color-muted);
}

.about-highlights {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.chip {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.chip strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-accent);
  margin-bottom: 0.15rem;
}

.about-aside .info-card {
  background: #111827;
  color: #f9fafb;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem 1.2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.5);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
  font-size: 0.86rem;
}

.info-card li + li {
  margin-top: 0.35rem;
}

.info-card li span:first-child {
  opacity: 0.7;
  margin-right: 0.2rem;
}

.small {
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* Reservas */

.reservas {
  background: linear-gradient(145deg, #f4efe5, #fbf7f1);
}

.reservas-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 2rem;
}

.reservas-form form {
  background: var(--color-bg-alt);
  border-radius: 20px;
  padding: 1.5rem 1.3rem 1.3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.form-row {
  margin-bottom: 0.9rem;
}

.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 0.15rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background: rgba(255, 255, 255, 0.96);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(196, 154, 100, 0.6);
}

.form-row-inline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.form-note {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.reservas-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.info-block {
  background: var(--color-bg-alt);
  border-radius: 16px;
  padding: 1rem 1rem 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.info-block h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  color: var(--color-accent);
}

.info-block p {
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
  color: var(--color-muted);
}

.phone-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.btn-whatsapp {
  margin-top: 0.3rem;
}

.contacto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
}

.contact-list li + li {
  margin-top: 0.4rem;
}

.contact-list .label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.map-embed iframe {
  width: 100%;
  min-height: 260px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

/* Footer */

.footer {
  padding: 2.2rem 1.4rem 2rem;
  background: #0f172a;
  color: #e5e7eb;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-main .brand-name {
  color: #f9fafb;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer .small {
  color: #9ca3af;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }

  .about-grid,
  .reservas-grid,
  .contacto-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    padding-inline: 1rem;
  }

  .nav-links {
    position: absolute;
    inset: 100% 0 auto 0;
    background: rgba(250, 247, 242, 0.98);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
    padding: 0.75rem 1.1rem 1rem;
    flex-direction: column;
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding: 2.4rem 1rem 2.4rem;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .form-row-inline {
    grid-template-columns: minmax(0, 1fr);
  }
}
