﻿:root {
  --deep: #0a2f38;
  --deep-2: #13353f;
  --accent: #ba9e74;
  --accent-strong: #c9ad84;
  --sand: #f7f7f2;
  --mist: #e7e5e0;
  --paper: #ffffff;
  --ink: #102f37;
  --muted: #5c6a68;
  --line: rgba(10, 47, 56, 0.12);
  --shadow: 0 20px 40px rgba(10, 47, 56, 0.18);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f7f7f2 0%, #ffffff 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

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

a:hover {
  color: var(--deep);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Georgia", serif;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.4rem, 2.4vw + 1.5rem, 3.8rem);
  line-height: 1.15;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--deep);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 10;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8vw;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 247, 242, 0.9);
  border-bottom: 1px solid rgba(10, 47, 56, 0.05);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.brand-text {
  font-size: 0.95rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.92rem;
}

.site-nav a {
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--deep);
  font-weight: 600;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(186, 158, 116, 0.28);
}

.btn:hover {
  background: var(--accent-strong);
  color: var(--deep);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: none;
}

.btn.brand-airbnb {
  background: #ff385c;
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 56, 92, 0.3);
}

.btn.brand-airbnb:hover {
  background: #e31c5f;
  color: #fff;
}

.btn.brand-booking {
  background: #003580;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 53, 128, 0.3);
}

.btn.brand-booking:hover {
  background: #00224f;
  color: #fff;
}

.btn.brand-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.3);
}

.btn.brand-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
}

.btn.small {
  padding: 10px 16px;
  font-size: 0.9rem;
}

main {
  padding-bottom: 90px;
}

.hero {
  position: relative;
  padding: 130px 8vw 90px;
  color: #f7f7f2;
  background: var(--deep);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 47, 56, 0.92), rgba(10, 47, 56, 0.55));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-logo {
  width: 140px;
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.7rem;
  color: rgba(247, 247, 242, 0.75);
  margin: 0 0 8px;
}

.lead {
  font-size: 1.05rem;
  color: rgba(247, 247, 242, 0.85);
  max-width: 540px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.badge {
  background: rgba(186, 158, 116, 0.2);
  color: #f7f7f2;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-media {
  display: grid;
  gap: 18px;
  position: relative;
}

.hero-image {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image.secondary {
  width: 70%;
  margin-left: auto;
  margin-top: -20px;
}

.page-hero {
  position: relative;
  padding: 120px 8vw 70px;
  color: #f7f7f2;
  background: var(--deep);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 47, 56, 0.94), rgba(10, 47, 56, 0.6));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.section {
  margin: 80px 8vw 0;
}

.section--light {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 60px;
  box-shadow: 0 16px 40px rgba(10, 47, 56, 0.08);
}

.section--tone {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 60px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.7rem;
  color: var(--accent);
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
}

.section-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.amenities-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.amenity-preview-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(10, 47, 56, 0.08);
  box-shadow: 0 12px 28px rgba(10, 47, 56, 0.08);
}

.amenity-preview-card h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.amenity-preview-lead {
  color: var(--muted);
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.amenity-preview-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.amenity-preview-card li {
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
  color: var(--muted);
  font-size: 0.9rem;
}

.amenity-preview-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 9px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.amenity-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(10, 47, 56, 0.08);
  box-shadow: 0 14px 32px rgba(10, 47, 56, 0.1);
}

.amenity-card h3 {
  font-size: 1.1rem;
}

.amenity-lead {
  color: var(--muted);
  margin: 0 0 14px;
}

.amenity-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.amenity-list li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
  color: var(--muted);
}

.amenity-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 8px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.info-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(10, 47, 56, 0.08);
  box-shadow: 0 12px 28px rgba(10, 47, 56, 0.08);
}

.info-card h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(10, 47, 56, 0.08);
  box-shadow: 0 12px 28px rgba(10, 47, 56, 0.08);
}

.contact-card h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.contact-card p {
  margin: 8px 0;
  color: var(--muted);
}

.contact-card a {
  color: inherit;
  text-decoration: underline;
}

.contact-card .btn {
  margin-top: 12px;
  text-decoration: none;
}

.btn-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.95fr);
  gap: 48px;
  margin-top: 32px;
  align-items: start;
}

.split-copy p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.feature-card {
  padding: 18px 20px;
  border: 1px solid rgba(186, 158, 116, 0.2);
  border-radius: 16px;
  background: rgba(186, 158, 116, 0.08);
}

.feature-card h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.split-media {
  display: grid;
  gap: 20px;
  align-content: start;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.media-card {
  margin: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.media-card img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.media-card figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 10px;
}

.media-card::after {
  content: "";
  display: block;
  width: 45%;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--accent);
}

.brand-stamp {
  width: 140px;
  opacity: 0.75;
  justify-self: end;
  margin-top: -8px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.fact {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  border: 1px solid var(--line);
}

.fact-value {
  font-size: 1.4rem;
  font-weight: 700;
}

.fact-label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.fact.highlight {
  background: rgba(186, 158, 116, 0.15);
  border-color: rgba(186, 158, 116, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.gallery-item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(10, 47, 56, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s ease;
  cursor: zoom-in;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 47, 56, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 30;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: min(960px, 90vw);
  max-height: 85vh;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #0a2f38;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.lightbox-open {
  overflow: hidden;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.pill {
  background: rgba(10, 47, 56, 0.06);
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid rgba(10, 47, 56, 0.12);
  color: var(--deep);
  text-align: center;
  font-weight: 500;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
  margin-top: 28px;
}

.location-info h3 {
  margin-top: 0;
}

.coords {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  margin: 16px 0 24px;
}

.map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.cta {
  margin: 90px 8vw 0;
}

.cta-card {
  background: linear-gradient(120deg, #0a2f38 0%, #0f3b45 100%);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: #f7f7f2;
  box-shadow: var(--shadow);
}

.cta-card p {
  color: rgba(247, 247, 242, 0.8);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  margin-top: 90px;
  padding: 40px 8vw 50px;
  background: var(--deep);
  color: rgba(247, 247, 242, 0.85);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 70px;
}

.footer-title {
  margin: 0;
  font-weight: 600;
}

.footer-column h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin: 0 0 10px;
  color: rgba(247, 247, 242, 0.7);
}

.footer-column p,
.footer-column a {
  margin: 8px 0;
  color: rgba(247, 247, 242, 0.8);
  font-size: 0.9rem;
}

.footer-link {
  display: block;
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(247, 247, 242, 0.25);
  color: rgba(247, 247, 242, 0.85);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
  color: #fff;
  border-color: rgba(247, 247, 242, 0.65);
  transform: translateY(-2px);
}

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

.social-icon {
  width: 18px;
  height: 18px;
}

.footer-disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(247, 247, 242, 0.55);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .section--light,
  .section--tone {
    padding: 48px 36px;
  }

  .brand-stamp {
    position: static;
    margin-top: 12px;
  }

  .media-card.offset {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    gap: 12px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-image.secondary {
    width: 100%;
    margin: 0;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .brand-stamp {
    justify-self: start;
    margin-top: 4px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 6vw;
  }

  .hero {
    padding: 110px 6vw 80px;
  }

  .page-hero {
    padding: 110px 6vw 70px;
  }

  .section {
    margin: 70px 6vw 0;
  }

  .section--light,
  .section--tone {
    padding: 32px 24px;
  }

  .cta {
    margin: 70px 6vw 0;
  }

  .cta-card {
    padding: 28px;
  }

  .section-actions {
    justify-content: flex-start;
  }

  .footer-inner {
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
