:root {
  --bg: #f6efe7;
  --surface: rgba(252, 241, 232, 0.8);
  --surface-strong: #f3e6da;
  --text: #25344a;
  --muted: #5f6f83;
  --line: rgba(111, 124, 153, 0.18);
  --peach: #efc6b0;
  --mint: #cce7db;
  --sky: #bfd8ec;
  --sand: #e8d8bf;
  --accent: #547ca3;
  --accent-strong: #395f80;
  --shadow: 0 18px 40px rgba(66, 68, 98, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 15%, rgba(239, 198, 176, 0.52), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(204, 231, 219, 0.52), transparent 26%),
    linear-gradient(180deg, #f5ebe1 0%, #e9ddd0 100%);
}

body {
  min-height: 100vh;
}

a,
button,
input,
textarea,
select {
  font: inherit;
}

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

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

.ambient-shape {
  position: fixed;
  inset: auto;
  z-index: 0;
  pointer-events: none;
  filter: blur(12px);
  opacity: 0.7;
}

.ambient-left {
  top: 120px;
  left: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(239, 198, 176, 0.54);
}

.ambient-right {
  top: 380px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 38% 62% 58% 42%;
  background: rgba(191, 216, 236, 0.6);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 36px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 234, 226, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 22px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(145deg, #f6d8c5, #d9ebf7);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #3f5b72;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #4b556a;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  background: rgba(217, 239, 230, 0.65);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(248, 237, 229, 0.96);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #3e4657;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 0 20px 18px;
}

.mobile-nav a,
.mobile-cta {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.mobile-cta {
  color: #fff;
  background: var(--accent);
  border-color: transparent;
}

.panel,
.section,
.modal-dialog {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.92fr);
  gap: 18px;
}

.hero-copy {
  border-radius: var(--radius-xl);
  padding: 34px;
  align-self: stretch;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #637289;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1,
.section h2,
.experience-card h2,
.modal-dialog h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-copy p,
.section-copy p,
.wide-card p,
.modal-copy {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

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

.btn,
.text-link {
  border: 0;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(145deg, #6a95b4, #527f9f);
  color: #fff;
  box-shadow: 0 12px 26px rgba(82, 127, 159, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.86);
  color: #405267;
  border: 1px solid var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stat-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(116, 132, 157, 0.14);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.hero-visual {
  border-radius: var(--radius-xl);
  padding: 16px;
  display: grid;
  gap: 14px;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 200px;
}

.large-photo {
  min-height: 470px;
}

.hero-photo img,
.package-card img,
.image-card img {
  height: 100%;
  object-fit: cover;
}

.media-reveal {
  opacity: 0;
  transform: translateY(38px) scale(0.96);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.photo-note {
  position: absolute;
  left: 18px;
  bottom: 18px;
}

.glass {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(12px);
}

.glass span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

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

.section {
  margin-top: 18px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: center;
}

.section-copy h2,
.section-head h2,
.wide-card h2,
.modal-dialog h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.destination-card {
  min-height: 220px;
  padding: 22px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #3a4a5d;
}

.destination-card span {
  margin-bottom: 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.destination-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.sea-card {
  background: linear-gradient(160deg, #dbeef8, #f4f9fc);
}

.city-card {
  background: linear-gradient(160deg, #f9e5d7, #fff8f3);
}

.relax-card {
  background: linear-gradient(160deg, #dff0e7, #fbfffd);
}

.section-head {
  margin-bottom: 18px;
  max-width: 840px;
}

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

.package-card,
.review-card,
.experience-card {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.package-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(52, 64, 89, 0.12);
}

.package-image-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
}

.package-card img {
  aspect-ratio: 16 / 11;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.package-card:hover img,
.package-image-trigger:focus-visible img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.03);
}

.package-overlay {
  position: absolute;
  inset: auto 16px 16px 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  background: rgba(32, 45, 64, 0.34);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.package-card:hover .package-overlay,
.package-image-trigger:focus-visible .package-overlay {
  opacity: 1;
  transform: translateY(0);
}

.package-body {
  padding: 18px;
}

.package-body span,
.review-stars {
  color: #7c8aa1;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-body h3 {
  margin: 8px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.package-body p,
.review-card p,
.soft-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}

.package-footer strong {
  font-size: 1.05rem;
}

.text-link {
  padding: 0;
  background: none;
  color: var(--accent-strong);
  font-weight: 700;
}

.layered-section {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 0.75fr;
  gap: 16px;
  align-items: stretch;
}

.experience-card {
  padding: 22px;
}

.wide-card {
  background: linear-gradient(145deg, rgba(232, 216, 191, 0.88), rgba(243, 230, 218, 0.84));
}

.soft-card {
  background: linear-gradient(145deg, rgba(204, 231, 219, 0.86), rgba(234, 222, 211, 0.84));
}

.soft-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.image-card {
  padding: 0;
}

.image-card img {
  min-height: 100%;
}

.review-card {
  padding: 20px;
}

.review-card strong {
  display: block;
  margin-top: 18px;
  font-size: 0.95rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  padding: 16px 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 35, 45, 0.45);
}

.modal-dialog {
  position: relative;
  width: min(760px, calc(100% - 24px));
  margin: 64px auto;
  padding: 28px;
  border-radius: 30px;
  background: rgba(245, 234, 226, 0.97);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 237, 229, 0.96);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.modal-copy {
  max-width: 560px;
}

body.modal-open .whatsapp-float {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
}

.info-form {
  margin-top: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.info-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

.info-form input,
.info-form textarea,
.info-form select {
  width: 100%;
  border: 1px solid rgba(116, 132, 157, 0.18);
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(249, 239, 233, 0.92);
  color: var(--text);
}

.info-form textarea {
  min-height: 140px;
  resize: vertical;
}

.consent-check {
  margin: 16px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.consent-check a {
  color: var(--accent-strong);
  text-decoration: underline;
}

.form-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--accent-strong);
}

.legal-main {
  padding-top: 6px;
}

.legal-panel {
  padding: 30px;
  border-radius: var(--radius-xl);
}

.legal-panel h1 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.legal-panel h2 {
  margin: 22px 0 8px;
  font-size: 1.05rem;
}

.legal-panel p,
.legal-panel li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-panel ul {
  padding-left: 20px;
}

.site-footer {
  margin-top: 18px;
  padding: 20px 8px 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: transform 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 1120px) {
  .hero,
  .split-section,
  .layered-section {
    grid-template-columns: 1fr;
  }

  .package-grid,
  .review-grid,
  .destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100%, calc(100% - 18px));
    padding-top: 12px;
  }

  .site-header {
    border-radius: 22px;
  }

  .nav-links {
    display: none;
  }

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

  .site-header.is-open .mobile-nav {
    display: block;
  }

  .hero-copy,
  .hero-visual,
  .section,
  .modal-dialog {
    padding: 20px;
  }

  .modal {
    padding: 10px 0;
  }

  .modal-dialog {
    width: min(100%, calc(100% - 18px));
    margin: 10px auto;
    max-height: calc(100vh - 20px);
    border-radius: 26px;
  }

  .hero-copy h1,
  .section h2,
  .experience-card h2,
  .modal-dialog h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-stats,
  .hero-mini-grid,
  .package-grid,
  .review-grid,
  .destination-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .large-photo {
    min-height: 320px;
  }

  .site-footer {
    padding-inline: 2px;
  }

  .package-overlay {
    opacity: 1;
    transform: translateY(0);
    inset: auto 12px 12px 12px;
    font-size: 0.76rem;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 60px;
    height: 60px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
