:root {
  --bg: #070304;
  --bg-soft: #130709;
  --card: rgba(30, 10, 12, 0.78);
  --card-strong: rgba(48, 13, 17, 0.92);
  --red: #b90f1d;
  --red-soft: #7b0a13;
  --gold: #d9ad63;
  --gold-soft: #80603a;
  --text: #fff2df;
  --muted: #c9b5a1;
  --line: rgba(217, 173, 99, 0.22);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
  --radius: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'PT Sans', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(185, 15, 29, 0.28), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(217, 173, 99, 0.12), transparent 30%),
    linear-gradient(180deg, #070304 0%, #120609 48%, #050203 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  z-index: -1;
}

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

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

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  right: -180px;
  top: 20%;
  border-radius: 999px;
  background: rgba(185, 15, 29, 0.22);
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(7, 3, 4, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 173, 99, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(185, 15, 29, 0.18);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 242, 223, 0.04);
}

.lang-btn {
  border: 0;
  color: var(--muted);
  background: transparent;
  padding: 7px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.lang-btn.active {
  color: var(--bg);
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  padding: 96px clamp(18px, 4vw, 64px);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.1);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 3, 4, 0.96) 0%, rgba(18, 6, 9, 0.78) 42%, rgba(18, 6, 9, 0.42) 100%),
    linear-gradient(0deg, rgba(7, 3, 4, 0.95), transparent 50%, rgba(7, 3, 4, 0.42)),
    radial-gradient(circle at 24% 44%, rgba(185, 15, 29, 0.35), transparent 30%);
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 10vw, 7.8rem);
  max-width: 950px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  text-wrap: balance;
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  max-width: 610px;
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-buttons,
.location-card {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #fff8ed;
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  border: 1px solid rgba(217, 173, 99, 0.32);
  box-shadow: 0 18px 42px rgba(185, 15, 29, 0.34);
}

.btn-ghost,
.btn-outline {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 242, 223, 0.06);
}

.btn-small {
  min-height: 40px;
  padding: 8px 15px;
  font-size: 0.92rem;
}

.btn-large {
  min-width: min(100%, 280px);
}

.whatsapp-icon {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.32);
}

.location-badge span:first-child {
  color: var(--red);
}

section:not(.hero) {
  padding: 92px clamp(18px, 4vw, 64px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 18px;
  font-size: 1.08rem;
}

.benefit-grid,
.steps-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.benefit-card,
.step-card,
.about-card,
.location-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(48, 13, 17, 0.75), rgba(13, 5, 6, 0.84));
  box-shadow: var(--shadow);
}

.benefit-card,
.step-card {
  padding: 28px;
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(185, 15, 29, 0.12);
  font-size: 1.35rem;
}

.benefit-card p,
.step-card p,
.about-card p,
.contact-card p {
  color: var(--muted);
  margin-top: 12px;
}

.about-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 62px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.location-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px;
  justify-content: space-between;
}

.pin {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(185, 15, 29, 0.2);
  border: 1px solid var(--line);
  font-size: 1.7rem;
}

.location-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.location-card strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
}

.gallery-grid {
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 280px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(217, 173, 99, 0.18);
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}

.gallery-item:first-child,
.gallery-item:nth-child(3) {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.04);
  transition: transform 900ms ease, filter 900ms ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(0.95) contrast(1.12);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 3, 4, 0.65), rgba(7, 3, 4, 0.05)), radial-gradient(circle at 20% 20%, rgba(185, 15, 29, 0.2), transparent 45%);
}


.patricia-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.patricia-photo-slot {
  min-height: 360px;
  border: 1px solid rgba(217, 173, 99, 0.26);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 15, 29, 0.2), transparent 44%),
    linear-gradient(145deg, rgba(48, 13, 17, 0.72), rgba(7, 3, 4, 0.9));
  box-shadow: var(--shadow);
}

.patricia-photo-slot img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.photo-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(217, 173, 99, 0.32);
  margin: 14px;
  border-radius: calc(var(--radius) - 12px);
  background: rgba(255, 242, 223, 0.035);
}

.photo-placeholder span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid var(--line);
  background: rgba(185, 15, 29, 0.16);
  font-size: 2rem;
}

.photo-placeholder strong {
  color: var(--text);
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
}

.photo-placeholder small {
  color: var(--gold);
  opacity: 0.75;
}

.step-card span {
  display: inline-block;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.contact-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(34px, 7vw, 80px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 15, 29, 0.34), transparent 44%),
    linear-gradient(145deg, rgba(48, 13, 17, 0.82), rgba(7, 3, 4, 0.9));
}

.contact-card .btn {
  margin-top: 28px;
}

.site-footer {
  padding: 42px 20px 100px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.site-footer strong {
  color: var(--text);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
}

.mobile-booking-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 70;
  display: none;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 3, 4, 0.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.55);
}

.mobile-action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 700;
}

.mobile-action:first-child {
  background: linear-gradient(135deg, var(--red), var(--red-soft));
}

.mobile-action:last-child {
  border: 1px solid var(--line);
  color: var(--gold);
}

.section-fade {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 900ms ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowZoom {
  to {
    transform: scale(1.08);
  }
}

@media (max-width: 900px) {
  .top-actions .btn-small {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 76px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7, 3, 4, 0.96), rgba(18, 6, 9, 0.68)),
      radial-gradient(circle at 24% 44%, rgba(185, 15, 29, 0.34), transparent 42%);
  }

  .benefit-grid,
  .steps-grid,
  .patricia-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-item:first-child,
  .gallery-item:nth-child(3) {
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand span:last-child {
    font-size: 0.95rem;
  }

  .language-switcher {
    transform: scale(0.92);
    transform-origin: right center;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  section:not(.hero) {
    padding: 72px 16px;
  }

  .hero {
    padding: 72px 16px 110px;
  }

  .hero-buttons .btn,
  .location-card .btn {
    width: 100%;
  }

  .benefit-grid,
  .steps-grid,
  .gallery-grid,
  .patricia-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .benefit-card,
  .step-card,
  .location-card {
    padding: 22px;
  }

  .location-card {
    align-items: flex-start;
  }

  .mobile-booking-bar {
    display: flex;
  }
}
