:root {
  --bg: #07090f;
  --bg-soft: #0d111b;
  --panel: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f8f7f3;
  --muted: #b9bbc6;
  --accent: #b9d8ff;
  --accent-2: #d7c5ff;
  --warm: #f0d7a5;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(75, 110, 170, .13), transparent 30%),
    radial-gradient(circle at 90% 65%, rgba(125, 90, 160, .10), transparent 28%);
  z-index: -2;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: min(calc(100% - 48px), var(--max));
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.brand img { width: 122px; }
.site-header nav { display: flex; gap: 30px; font-size: 13px; color: rgba(255,255,255,.78); }
.site-header nav a { transition: color .2s ease; }
.site-header nav a:hover { color: white; }
.site-header > .button { justify-self: end; }

.button {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  min-height: 54px;
  padding: 0 27px;
  color: #05070b;
  background: linear-gradient(135deg, #fff 0%, #d6e7ff 48%, #d8c8ff 100%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(171, 196, 255, .18);
  transition: transform .22s ease, box-shadow .22s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(171, 196, 255, .28); }
.button-small { min-height: 42px; padding: 0 20px; font-size: 12px; }
.text-link { color: #fff; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 5px; }

.hero {
  min-height: 900px;
  padding: 180px max(24px, calc((100vw - var(--max))/2)) 90px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 90px;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(3,5,10,.94) 0%, rgba(3,5,10,.72) 42%, rgba(3,5,10,.40) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 30%),
    url('/assets/page-11-img-1.webp') center/cover no-repeat;
  filter: saturate(.72) contrast(1.04);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(120deg, rgba(15,22,42,.5), transparent 45%, rgba(37,23,59,.22));
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); z-index: -1; }
.hero-orb-one { width: 380px; height: 380px; right: 20%; top: 7%; border: 1px solid rgba(196,220,255,.16); box-shadow: inset 0 0 100px rgba(161,195,255,.08); }
.hero-orb-two { width: 180px; height: 180px; left: 8%; bottom: 15%; background: rgba(182,153,255,.06); filter: blur(18px); }
.hero-content { max-width: 760px; }
.eyebrow, .section-kicker {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
}
.hero h1, h2, h3 { font-family: var(--serif); margin: 0; }
.hero h1 { font-size: clamp(64px, 7.6vw, 118px); line-height: .79; letter-spacing: -.04em; font-weight: 600; }
.hero h1 em { color: var(--accent-2); font-weight: 500; }
.hero-lead { max-width: 650px; font-size: 20px; line-height: 1.65; color: rgba(255,255,255,.78); margin: 34px 0; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.hero-meta { margin-top: 66px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.17); padding-top: 24px; max-width: 700px; }
.hero-meta div { display: flex; flex-direction: column; gap: 8px; }
.hero-meta span { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.hero-meta strong { font-size: 13px; }
.hero-card { align-self: end; width: min(100%, 420px); justify-self: end; position: relative; border: 1px solid rgba(255,255,255,.18); padding: 10px; background: rgba(0,0,0,.20); backdrop-filter: blur(8px); }
.hero-card img { width: 100%; height: 550px; object-fit: cover; filter: saturate(.68) contrast(1.06); }
.hero-card-caption { position: absolute; left: 28px; bottom: 26px; display: flex; flex-direction: column; text-shadow: 0 2px 20px #000; }
.hero-card-caption span { text-transform: uppercase; letter-spacing: .14em; font-size: 10px; color: var(--accent); }
.hero-card-caption strong { font-family: var(--serif); font-size: 30px; }

.trust-strip { min-height: 76px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; gap: 10px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: rgba(255,255,255,.72); padding: 0 max(24px, calc((100vw - var(--max))/2)); font-size: 12px; letter-spacing: .04em; }

.section { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 130px 0; }
.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; margin-top: 30px; }
h2 { font-size: clamp(48px, 5.8vw, 78px); line-height: .98; letter-spacing: -.03em; font-weight: 600; }
.intro-copy { color: var(--muted); font-size: 17px; line-height: 1.8; }
.intro-copy p:first-child { margin-top: 4px; }
.feature-grid { display: grid; grid-template-columns: 1.45fr 1fr; grid-template-rows: repeat(2, 280px); gap: 18px; margin-top: 75px; }
.feature { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.1); min-height: 280px; }
.feature-large { grid-row: 1 / span 2; }
.feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; filter: saturate(.78); }
.feature:hover img { transform: scale(1.035); }
.feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.85), transparent 68%); }
.feature-overlay { position: absolute; z-index: 2; left: 28px; bottom: 25px; right: 25px; }
.feature-overlay span { text-transform: uppercase; letter-spacing: .15em; font-size: 10px; color: var(--accent); }
.feature-overlay h3 { font-size: 38px; margin-top: 6px; }
.feature-overlay p { color: rgba(255,255,255,.72); max-width: 520px; line-height: 1.6; }

.highlights { border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; align-items: end; margin-bottom: 70px; }
.section-heading.compact { align-items: start; }
.section-heading p { color: var(--muted); line-height: 1.75; margin: 0; max-width: 500px; justify-self: end; }
.section-heading h2 { margin-top: 18px; }
.highlight-cards { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.highlight-cards article { min-height: 290px; padding: 32px 25px; border-right: 1px solid var(--line); }
.highlight-cards article:last-child { border-right: 0; }
.highlight-cards .number { color: var(--accent); font-family: var(--serif); font-size: 20px; }
.highlight-cards h3 { font-size: 31px; margin: 58px 0 16px; }
.highlight-cards p { color: var(--muted); line-height: 1.65; font-size: 14px; }

.itinerary-section { border-top: 1px solid var(--line); }
.itinerary { border-top: 1px solid var(--line); }
.itinerary details { border-bottom: 1px solid var(--line); }
.itinerary summary { list-style: none; display: grid; grid-template-columns: 110px 1fr 180px 24px; gap: 24px; align-items: center; padding: 28px 0; cursor: pointer; }
.itinerary summary::-webkit-details-marker { display:none; }
.itinerary summary::after { content: "+"; font-size: 26px; color: var(--accent); }
.itinerary details[open] summary::after { content: "−"; }
.itinerary summary span { color: var(--accent); text-transform: uppercase; font-size: 11px; letter-spacing: .14em; }
.itinerary summary strong { font-family: var(--serif); font-size: 31px; font-weight: 600; }
.itinerary summary small { color: var(--muted); }
.details-content { padding: 0 210px 34px 134px; color: var(--muted); line-height: 1.7; }
.details-content ul { padding-left: 18px; }

.included { display: grid; grid-template-columns: .88fr 1.12fr; gap: 85px; align-items: stretch; }
.included-media img { width: 100%; height: 100%; min-height: 760px; object-fit: cover; filter: saturate(.72) contrast(1.04); }
.included-content h2 { margin: 18px 0 44px; }
.included-list { border-top: 1px solid var(--line); }
.included-list > div { display: grid; grid-template-columns: 38px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.included-list span { width: 29px; height: 29px; border: 1px solid rgba(187,219,255,.35); border-radius: 50%; display: grid; place-items: center; color: var(--accent); }
.included-list p { margin: 0; display: flex; flex-direction: column; gap: 4px; }
.included-list strong { font-size: 15px; }
.included-list small { color: var(--muted); line-height: 1.5; }
.reserve-card { margin-top: 35px; padding: 28px; background: linear-gradient(135deg, rgba(174,204,255,.12), rgba(201,175,255,.07)); border: 1px solid rgba(190,212,255,.22); }
.reserve-card > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.reserve-card > div span { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.reserve-card > div strong { font-family: var(--serif); font-size: 72px; font-weight: 600; }
.reserve-card p { color: var(--muted); line-height: 1.6; }
.reserve-card .button { width: 100%; margin-top: 10px; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 430px; }
.gallery figure { margin: 0; position: relative; overflow: hidden; }
.gallery img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; filter: grayscale(.18) saturate(.76); transition: transform .6s ease; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.72), transparent 48%); }
.gallery figcaption { position: absolute; z-index: 2; left: 22px; bottom: 20px; font-family: var(--serif); font-size: 25px; }

.faq { border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 50px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq summary { cursor: pointer; list-style: none; font-weight: 600; display: flex; justify-content: space-between; gap: 18px; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content: "+"; color: var(--accent); }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); line-height: 1.7; max-width: 560px; }

.final-cta { width: 100%; min-height: 690px; margin: 0; padding: 130px 24px; position: relative; display: grid; place-items: center; text-align: center; overflow: hidden; isolation: isolate; }
.final-cta-bg { position: absolute; inset: 0; z-index: -2; background: linear-gradient(0deg, rgba(5,7,12,.92), rgba(5,7,12,.45)), url('/assets/page-8-img-1.webp') center/cover no-repeat; filter: saturate(.55); }
.final-cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at center, rgba(138,169,235,.16), transparent 48%); }
.final-cta-content { max-width: 900px; }
.final-cta-content > img { width: 145px; margin: 0 auto 30px; }
.final-cta h2 { font-size: clamp(48px, 6vw, 82px); }
.final-cta h2 em { color: var(--accent-2); }
.final-cta p:not(.eyebrow) { color: rgba(255,255,255,.72); max-width: 620px; margin: 30px auto; line-height: 1.7; }

footer { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 44px 0; display: grid; grid-template-columns: 180px 1fr 2fr; gap: 40px; align-items: start; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
footer img { width: 110px; }
footer p { margin: 4px 0; line-height: 1.65; }
footer .legal { text-align: right; }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 15; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(11,15,24,.86); color: white; backdrop-filter: blur(12px); min-height: 52px; padding: 0 20px; display: flex; align-items: center; gap: 10px; cursor: pointer; box-shadow: 0 12px 35px rgba(0,0,0,.28); }
.floating-whatsapp span { color: var(--accent); font-size: 22px; }
.floating-whatsapp strong { font-size: 12px; }
.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 18px); z-index: 30; background: #f5f3ee; color: #10131a; padding: 14px 20px; border-radius: 8px; opacity: 0; pointer-events: none; transition: .25s ease; box-shadow: 0 15px 45px rgba(0,0,0,.35); font-size: 13px; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 170px; }
  .hero-card { display: none; }
  .intro-grid, .section-heading, .included { grid-template-columns: 1fr; gap: 40px; }
  .highlight-cards { grid-template-columns: repeat(2, 1fr); }
  .highlight-cards article:nth-child(2) { border-right: 0; }
  .highlight-cards article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .included-media img { min-height: 460px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .details-content { padding-left: 0; padding-right: 40px; }
  footer { grid-template-columns: 1fr 1fr; }
  footer .legal { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 700px) {
  .site-header { width: calc(100% - 32px); min-height: 74px; }
  .brand img { width: 100px; }
  .site-header > .button { display: none; }
  .hero { padding: 130px 20px 70px; }
  .hero h1 { font-size: 61px; line-height: .84; }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-meta { grid-template-columns: 1fr; gap: 18px; margin-top: 44px; }
  .hero-meta div { border-bottom: 1px solid rgba(255,255,255,.11); padding-bottom: 15px; }
  .trust-strip { grid-template-columns: 1fr 1fr; min-height: 120px; padding-top: 18px; padding-bottom: 18px; }
  .section { width: calc(100% - 40px); padding: 85px 0; }
  h2 { font-size: 48px; }
  .intro-grid { gap: 25px; }
  .feature-grid { grid-template-columns: 1fr; grid-template-rows: 430px 260px 260px; }
  .feature-large { grid-row: auto; }
  .section-heading { gap: 24px; margin-bottom: 45px; }
  .section-heading p { justify-self: start; }
  .highlight-cards { grid-template-columns: 1fr; }
  .highlight-cards article { border-right: 0; border-bottom: 1px solid var(--line); min-height: 245px; }
  .highlight-cards article:last-child { border-bottom: 0; }
  .highlight-cards h3 { margin-top: 38px; }
  .itinerary summary { grid-template-columns: 68px 1fr 20px; gap: 14px; }
  .itinerary summary small { grid-column: 2; grid-row: 2; }
  .itinerary summary::after { grid-column: 3; grid-row: 1 / span 2; }
  .itinerary summary strong { font-size: 25px; }
  .details-content { padding: 0 0 25px 82px; }
  .included { gap: 35px; }
  .included-media img { min-height: 420px; }
  .reserve-card > div strong { font-size: 62px; }
  .gallery { grid-template-columns: 1fr 1fr; min-height: auto; }
  .gallery img { min-height: 280px; }
  .faq-grid { grid-template-columns: 1fr; }
  .final-cta { min-height: 620px; padding: 90px 20px; }
  .final-cta h2 { font-size: 48px; }
  footer { grid-template-columns: 1fr; }
  footer .legal { grid-column: auto; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
}
