:root {
  --bg: #071421;
  --bg-soft: #0c1f31;
  --surface: rgba(10, 29, 45, 0.74);
  --surface-strong: #0d2538;
  --surface-light: rgba(255, 255, 255, 0.08);
  --text: #eaf7ff;
  --text-soft: #adc6d7;
  --line: rgba(255, 255, 255, 0.1);
  --primary: #45c6ff;
  --primary-strong: #1aa3ea;
  --accent: #6ef3c4;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(69, 198, 255, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(110, 243, 196, 0.1), transparent 30%),
    var(--bg);
  color: var(--text);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-shell {
  overflow: hidden;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-padding {
  padding: 6.5rem 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2 {
  margin: 0.4rem 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.03rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(110, 243, 196, 0.26);
  border-radius: 999px;
  background: rgba(110, 243, 196, 0.06);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(4, 13, 21, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(168px, 18vw, 246px);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  color: var(--text-soft);
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  padding: 0;
  background: transparent;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--text);
  display: block;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-bg,
.hero-overlay,
.hero-particles {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(135deg, rgba(1, 14, 25, 0.28), rgba(4, 15, 25, 0.82)),
    url('../img/oceano-bg.svg') center/cover no-repeat;
  transform: scale(1.04);
  animation: heroFloat 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    radial-gradient(circle at 75% 18%, rgba(96, 228, 255, 0.24), transparent 20%),
    radial-gradient(circle at 18% 78%, rgba(110, 243, 196, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(2, 11, 19, 0.06), rgba(2, 11, 19, 0.24));
}

.hero-overlay::before,
.hero-overlay::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
}

.hero-overlay::before {
  width: 42vw;
  height: 42vw;
  top: -14vw;
  right: -8vw;
  background: radial-gradient(circle, rgba(75, 224, 255, 0.12), transparent 60%);
  animation: glowDrift 22s ease-in-out infinite;
}

.hero-overlay::after {
  width: 28vw;
  height: 28vw;
  left: -6vw;
  bottom: -10vw;
  background: radial-gradient(circle, rgba(110, 243, 196, 0.08), transparent 62%);
  animation: glowDrift 20s ease-in-out infinite reverse;
}

.hero-particles {
  background:
    radial-gradient(circle at 8% 18%, rgba(255,255,255,0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 26% 66%, rgba(255,255,255,0.12) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 58% 26%, rgba(255,255,255,0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 62%, rgba(255,255,255,0.12) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 92% 24%, rgba(255,255,255,0.12) 0 2px, transparent 3px);
  opacity: 0.65;
  animation: bubblesRise 20s linear infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 2.25rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.96;
  max-width: 12ch;
}

.hero-copy p {
  max-width: 56ch;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.hero-stats {
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #062334;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-block {
  width: 100%;
}

.hero-highlights {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
  color: var(--text-soft);
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-highlights li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 6px rgba(69, 198, 255, 0.08);
}

.glass-card,
.info-card,
.pillar-card,
.hotel-card,
.gallery-card,
.form-card,
.contact-cards article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.card-stack,
.form-hub {
  padding: 1.5rem;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--accent);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel h2 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.hero-panel p {
  color: var(--text-soft);
}

.hero-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.25rem 0 1rem;
}

.hero-tab {
  min-height: 50px;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.045);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-tab:hover,
.hero-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(69, 198, 255, 0.28);
}

.hero-tab.is-active {
  background: linear-gradient(135deg, rgba(69, 198, 255, 0.16), rgba(110, 243, 196, 0.18));
  border-color: rgba(69, 198, 255, 0.32);
  color: #effcff;
}

.hero-form-panels {
  position: relative;
}

.hero-form-pane {
  display: none;
}

.hero-form-pane.is-active {
  display: block;
}

.request-card-top.compact {
  margin-bottom: 0.9rem;
}

.request-card-top.compact h3 {
  margin: 0.75rem 0 0.45rem;
}

.request-card-top.compact p {
  margin: 0;
}

.compact-form {
  display: grid;
  gap: 0.9rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.stats-grid article {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-grid strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.stats-grid span {
  color: var(--text-soft);
}

.trust-bar {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.1rem;
  color: var(--text-soft);
  font-weight: 600;
}

.trust-items span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-grid,
.pillars-grid,
.hotel-grid,
.gallery-grid,
.packages-grid,
.contact-cards,
.forms-grid {
  display: grid;
  gap: 1.2rem;
}

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

.info-card,
.pillar-card,
.gallery-card,
.contact-cards article {
  padding: 1.5rem;
}

.info-card h3,
.pillar-card h3,
.gallery-card h3,
.form-card h3,
.contact-cards h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.info-card p,
.pillar-card p,
.gallery-card p,
.contact-cards p {
  margin: 0;
  color: var(--text-soft);
}

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

.pillar-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(69, 198, 255, 0.14);
  color: var(--primary);
  font-weight: 800;
}

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

.hotel-card {
  position: relative;
  padding: 1.7rem;
  overflow: hidden;
}

.hotel-card::after {
  content: '';
  position: absolute;
  inset: auto -20% -40% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 198, 255, 0.14), transparent 65%);
}

.hotel-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(110, 243, 196, 0.08);
  border: 1px solid rgba(110, 243, 196, 0.2);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hotel-card h3 {
  margin-bottom: 0.7rem;
}

.hotel-card p,
.hotel-card li {
  position: relative;
  color: var(--text-soft);
}

.hotel-card ul {
  padding-left: 1rem;
}

.hotel-card a {
  display: inline-flex;
  margin-top: 0.4rem;
  color: var(--primary);
  font-weight: 700;
}

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

.gallery-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(4, 16, 25, 0.72)),
    radial-gradient(circle at top, rgba(69, 198, 255, 0.18), transparent 35%),
    var(--surface);
}

.gallery-icon {
  margin-bottom: auto;
  font-size: 2.2rem;
  color: var(--accent);
}

.season-switch {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  margin-bottom: 1.8rem;
}

.season-btn {
  min-height: 48px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.season-btn.is-active {
  background: linear-gradient(135deg, rgba(69, 198, 255, 0.18), rgba(110, 243, 196, 0.2));
  border-color: rgba(69, 198, 255, 0.3);
}

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

.package-card {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.package-card h3,
.package-card p,
.package-card ul {
  margin-top: 0;
}

.package-card p,
.package-card li,
.package-card small {
  color: var(--text-soft);
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 1rem 0;
}

.package-price strong {
  font-size: 2rem;
  line-height: 1;
}

.package-card ul {
  padding-left: 1rem;
  min-height: 145px;
}

.package-card .btn {
  width: 100%;
}

.transfer-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-grid.single-column {
  grid-template-columns: 1fr;
}

.request-intro {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.feature-list-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.forms-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.request-card {
  height: 100%;
}

.request-card-top {
  margin-bottom: 1.2rem;
}

.request-card-top p {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
}

.route-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1rem 0 1.5rem;
}

.route-chips span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-weight: 600;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list article {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-list strong {
  display: block;
  margin-bottom: 0.35rem;
}

.feature-list p {
  margin: 0;
  color: var(--text-soft);
}

.form-card {
  padding: 1.5rem;
}

.form-card form {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.field-grid.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 0.45rem;
}

label span {
  font-size: 0.95rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(69, 198, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

textarea {
  resize: vertical;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.7) 50%), linear-gradient(135deg, rgba(255,255,255,0.7) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 2px), calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 3rem;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-feedback {
  min-height: 1.4rem;
  font-weight: 600;
}

.form-feedback.is-success {
  color: var(--accent);
}

.form-feedback.is-error {
  color: #ff9fa8;
}

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

.contact-cards a {
  color: var(--accent);
}

.site-footer {
  padding: 1.6rem 0 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-inner p {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-soft);
}

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

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

@media (max-width: 1120px) {
  .pillars-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 960px) {
  .hero-grid,
  .transfer-grid,
  .contact-grid,
  .hotel-grid,
  .about-grid,
  .packages-grid,
  .forms-grid,
  .feature-list-three {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-tabs,
  .contact-cards,
  .field-grid.two-cols {
    grid-template-columns: 1fr;
  }

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

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 82px 1rem auto 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(5, 16, 25, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .section-padding {
    padding: 4.6rem 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .site-nav {
    top: 76px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .pillars-grid,
  .gallery-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

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

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


@keyframes heroFloat {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(0, -1.2%, 0); }
}

@keyframes glowDrift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(2.5%, -2%, 0); }
}

@keyframes bubblesRise {
  from { transform: translateY(0); }
  to { transform: translateY(-28px); }
}



/* Premium hero motion + ocean section backgrounds */
.hero {
  --hero-glow: rgba(76, 215, 255, 0.18);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.03), transparent 20%, rgba(255,255,255,0.03) 38%, transparent 54%),
    radial-gradient(circle at 78% 16%, rgba(255,255,255,0.14), transparent 18%);
  mix-blend-mode: screen;
  opacity: 0.45;
  z-index: 0;
  animation: shimmerSweep 18s linear infinite;
}

.hero-bg {
  background:
    linear-gradient(145deg, rgba(2, 11, 18, 0.25), rgba(3, 12, 20, 0.8)),
    url('../img/oceano-hero-premium.svg') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroFloat 22s ease-in-out infinite alternate;
}

.hero-beam,
.hero-wave,
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-beam {
  inset: auto;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.42;
  z-index: 0;
}

.hero-beam-1 {
  top: -10vw;
  right: -8vw;
  background: radial-gradient(circle, rgba(84, 235, 255, 0.24), transparent 62%);
  animation: beamDrift 18s ease-in-out infinite;
}

.hero-beam-2 {
  bottom: -18vw;
  left: -8vw;
  background: radial-gradient(circle, rgba(110, 243, 196, 0.18), transparent 62%);
  animation: beamDrift 24s ease-in-out infinite reverse;
}

.hero-wave {
  background-repeat: repeat-x;
  background-size: 1600px 240px;
  mix-blend-mode: screen;
  opacity: 0.38;
  z-index: 0;
}

.hero-wave-1 {
  bottom: 6%;
  background-image: url('../img/hero-wave-1.svg');
  background-position: 0 100%;
  animation: waveSlide 24s linear infinite;
}

.hero-wave-2 {
  bottom: 0;
  background-image: url('../img/hero-wave-2.svg');
  background-position: 0 100%;
  opacity: 0.22;
  animation: waveSlide 36s linear infinite reverse;
}

.hero-orbs span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.24), rgba(95,231,255,0.12), transparent 72%);
  box-shadow: 0 0 40px rgba(76, 215, 255, 0.12);
}

.hero-orbs span:nth-child(1) {
  width: 180px;
  height: 180px;
  left: 52%;
  top: 16%;
  animation: floatOrb 11s ease-in-out infinite;
}

.hero-orbs span:nth-child(2) {
  width: 120px;
  height: 120px;
  right: 16%;
  top: 30%;
  animation: floatOrb 15s ease-in-out infinite reverse;
}

.hero-orbs span:nth-child(3) {
  width: 88px;
  height: 88px;
  left: 14%;
  bottom: 18%;
  animation: floatOrb 14s ease-in-out infinite;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-premium-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.hero-premium-strip span {
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #eefbff;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.form-hub {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 27, 42, 0.88), rgba(8, 24, 38, 0.82)),
    rgba(10, 29, 45, 0.8);
}

.form-hub::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(77, 210, 255, 0.14), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(110, 243, 196, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 25%);
  pointer-events: none;
}

.form-hub > * {
  position: relative;
  z-index: 1;
}

.trip-selector {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trip-selector legend {
  width: 100%;
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.choice-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.choice-chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  pointer-events: none;
}

.choice-chip span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.choice-chip input:checked + span {
  color: #effcff;
  background: linear-gradient(135deg, rgba(69, 198, 255, 0.16), rgba(110, 243, 196, 0.18));
  border-color: rgba(69, 198, 255, 0.3);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.choice-chip:hover span,
.choice-chip input:focus-visible + span {
  transform: translateY(-1px);
  border-color: rgba(69, 198, 255, 0.26);
}

.field-grid.three-cols {
  grid-template-columns: 1fr 1fr 0.9fr;
}

.return-date-group[hidden] {
  display: none !important;
}

.ocean-section {
  position: relative;
  isolation: isolate;
}

.ocean-section > .container {
  position: relative;
  z-index: 1;
}

.ocean-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,16,25,0.68), rgba(5,16,25,0.38)),
    var(--section-bg) center/cover no-repeat;
  opacity: 0.28;
  z-index: 0;
  transform: scale(1.02);
}

.ocean-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,13,21,0.2), rgba(4,13,21,0.12));
  z-index: 0;
}

.ocean-section--about { --section-bg: url('../img/bg-about-ocean.svg'); }
.ocean-section--process { --section-bg: url('../img/bg-process-ocean.svg'); }
.ocean-section--hotels { --section-bg: url('../img/bg-hotels-ocean.svg'); }
.ocean-section--universe { --section-bg: url('../img/bg-universe-ocean.svg'); }
.ocean-section--packages { --section-bg: url('../img/bg-packages-ocean.svg'); }
.ocean-section--contact { --section-bg: url('../img/bg-contact-ocean.svg'); }

.info-card,
.pillar-card,
.hotel-card,
.gallery-card,
.package-card,
.contact-cards article {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
    rgba(7, 22, 34, 0.74);
}

@media (max-width: 960px) {
  .field-grid.three-cols {
    grid-template-columns: 1fr;
  }

  .hero-premium-strip {
    gap: 0.6rem;
  }

  .hero-beam {
    width: 56vw;
    height: 56vw;
  }
}

@media (max-width: 640px) {
  .trip-selector {
    align-items: stretch;
  }

  .choice-chip {
    flex: 1 1 auto;
  }

  .choice-chip span {
    width: 100%;
    justify-content: center;
  }

  .hero-premium-strip span {
    width: 100%;
    justify-content: center;
  }
}

@keyframes beamDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(2.5%, -3%, 0) scale(1.06); }
}

@keyframes waveSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-160px); }
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

@keyframes shimmerSweep {
  from { transform: translateX(-6%); }
  50% { transform: translateX(5%); }
  to { transform: translateX(-6%); }
}


/* Seamless premium scroll and section blending */
html {
  scroll-padding-top: 108px;
}

body {
  overflow-x: clip;
}

main {
  position: relative;
  isolation: isolate;
}

main::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(69, 198, 255, 0.10), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(110, 243, 196, 0.08), transparent 22%),
    radial-gradient(circle at 50% 74%, rgba(69, 198, 255, 0.05), transparent 28%);
  opacity: 0.9;
}

.section-muted {
  background: transparent;
}

.hero {
  --hero-scroll: 0px;
  --hero-depth: 0px;
  margin-bottom: -3.8rem;
  padding-bottom: 9.5rem;
}

.hero-bg {
  transform: translate3d(0, var(--hero-scroll), 0) scale(1.08);
  will-change: transform;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 18rem;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 12, 20, 0) 0%, rgba(3, 12, 20, 0.20) 26%, rgba(3, 12, 20, 0.78) 74%, rgba(4, 13, 21, 0.98) 100%),
    radial-gradient(120% 100% at 50% 0%, rgba(95, 231, 255, 0.12), transparent 62%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 18%, #000 100%);
}

.hero-beam-1 {
  transform: translate3d(calc(var(--hero-depth) * 0.35), calc(var(--hero-depth) * -0.6), 0);
}

.hero-beam-2 {
  transform: translate3d(calc(var(--hero-depth) * -0.3), calc(var(--hero-depth) * 0.45), 0);
}

.hero-wave-1 {
  transform: translate3d(0, calc(var(--hero-depth) * 0.12), 0);
}

.hero-wave-2 {
  transform: translate3d(0, calc(var(--hero-depth) * 0.2), 0);
}

.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: -6.4rem;
  padding: 1.35rem 0 1.6rem;
  border-top: 0;
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(4, 13, 21, 0.12), rgba(4, 13, 21, 0.64) 36%, rgba(4, 13, 21, 0.22) 100%);
  backdrop-filter: blur(12px);
}

.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 5.5rem;
  pointer-events: none;
}

.trust-bar::before {
  top: -5rem;
  background: linear-gradient(180deg, transparent, rgba(4, 13, 21, 0.78));
}

.trust-bar::after {
  bottom: -4rem;
  background: linear-gradient(180deg, rgba(4, 13, 21, 0.72), transparent);
}

.ocean-section {
  --section-shift: 0px;
  --section-tilt: 0px;
  --section-glow: 0.18;
  position: relative;
  isolation: isolate;
  margin-top: -5.8rem;
  padding-top: 11.5rem;
  padding-bottom: 8rem;
}

.ocean-section:first-of-type {
  margin-top: -3rem;
}

.ocean-section::before {
  inset: -6.5rem 0;
  opacity: 0.50;
  transform: translate3d(0, var(--section-shift), 0) scale(1.08);
  filter: saturate(1.05) contrast(1.02);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.92) 16%, #000 50%, rgba(0,0,0,0.92) 84%, transparent 100%);
  will-change: transform, opacity;
}

.ocean-section::after {
  inset: -6rem 0;
  background:
    linear-gradient(180deg, rgba(4, 13, 21, 0) 0%, rgba(4, 13, 21, 0.34) 12%, rgba(4, 13, 21, 0.46) 52%, rgba(4, 13, 21, 0.26) 86%, rgba(4, 13, 21, 0) 100%),
    radial-gradient(circle at 50% calc(50% + var(--section-tilt)), rgba(95, 231, 255, var(--section-glow)), transparent 34%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.ocean-section > .container {
  transform: translate3d(0, calc(var(--section-shift) * -0.08), 0);
}

.ocean-section + .ocean-section {
  margin-top: -7rem;
}

.site-footer {
  position: relative;
  margin-top: -4rem;
  padding-top: 6rem;
  background: linear-gradient(180deg, rgba(4, 13, 21, 0) 0%, rgba(4, 13, 21, 0.72) 26%, rgba(4, 13, 21, 0.96) 100%);
  border-top: 0;
}

.site-footer::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -4rem;
  height: 4rem;
  background: linear-gradient(180deg, transparent, rgba(4, 13, 21, 0.76));
  pointer-events: none;
}

html.is-programmatic-scroll {
  scroll-behavior: auto;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-bg,
  .ocean-section::before,
  .ocean-section > .container,
  .hero-beam-1,
  .hero-beam-2,
  .hero-wave-1,
  .hero-wave-2 {
    transform: none !important;
  }
}

@media (max-width: 960px) {
  .hero {
    margin-bottom: -2rem;
    padding-bottom: 6rem;
  }

  .trust-bar {
    margin-top: -3.6rem;
  }

  .ocean-section {
    margin-top: -2.8rem;
    padding-top: 8rem;
    padding-bottom: 6rem;
  }

  .ocean-section + .ocean-section {
    margin-top: -3.5rem;
  }

  .site-footer {
    margin-top: -2rem;
    padding-top: 4.8rem;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 94px;
  }

  .hero::after {
    height: 9rem;
  }

  .trust-bar {
    margin-top: -1.4rem;
    padding-top: 0.72rem;
  }

  .ocean-section,
  .ocean-section + .ocean-section {
    margin-top: -1.2rem;
  }
}


/* Cinematic snap, 3D depth and premium hotel media */
html {
  scroll-snap-type: y proximity;
}

.hero,
.ocean-section,
.site-footer {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.hero,
.ocean-section,
.site-footer,
.hero-grid,
.hotel-showcase-grid {
  transform-style: preserve-3d;
}

main::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 14%, transparent 86%, rgba(255,255,255,0.018)),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.013) 0, rgba(255,255,255,0.013) 1px, transparent 1px, transparent 4px);
  opacity: 0.18;
  mix-blend-mode: soft-light;
}

.hero,
.ocean-section {
  perspective: 1400px;
}

.hero-copy,
.hero-panel,
.hotel-showcase-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift-y: 0px;
  --lift-z: 0px;
  --card-scale: 1;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  transform:
    translate3d(0, var(--lift-y), var(--lift-z))
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    scale(var(--card-scale));
  will-change: transform;
}

.hero-copy {
  --lift-z: 36px;
}

.hero-panel {
  --lift-z: 52px;
  box-shadow: 0 38px 100px rgba(2, 8, 14, 0.42);
}

.hero::before {
  opacity: 0.56;
}

.hero::after {
  height: 22rem;
}

.hero-bg {
  transform: translate3d(0, var(--hero-scroll), calc(var(--hero-depth) * 0.2)) scale(calc(1.08 + var(--hero-cine-scale, 0)));
}

.hero-orbs span,
.hero-beam,
.hero-wave {
  will-change: transform;
}

.ocean-section {
  --section-rotate-x: 0deg;
  --section-scale: 1;
  --section-float-z: 0px;
}

.ocean-section::before {
  transform: translate3d(0, var(--section-shift), var(--section-float-z)) scale(var(--section-scale));
}

.ocean-section > .container {
  transform:
    translate3d(0, calc(var(--section-shift) * -0.08), calc(var(--section-float-z) * 0.08))
    rotateX(var(--section-rotate-x));
}

.ocean-section::after {
  background:
    linear-gradient(180deg, rgba(4, 13, 21, 0) 0%, rgba(4, 13, 21, 0.34) 12%, rgba(4, 13, 21, 0.46) 52%, rgba(4, 13, 21, 0.26) 86%, rgba(4, 13, 21, 0) 100%),
    radial-gradient(circle at 50% calc(50% + var(--section-tilt)), rgba(95, 231, 255, var(--section-glow)), transparent 34%),
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.05), transparent 20%),
    radial-gradient(circle at 82% 76%, rgba(115, 222, 255, 0.05), transparent 24%);
}

.hotel-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
}

.hotel-showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    rgba(7, 22, 34, 0.84);
  box-shadow: 0 30px 90px rgba(2, 8, 14, 0.34), inset 0 1px 0 rgba(255,255,255,0.06);
}

.hotel-showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(76, 215, 255, 0.14), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(110, 243, 196, 0.12), transparent 24%);
  pointer-events: none;
}

.hotel-media {
  position: relative;
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(2, 11, 18, 0.10), rgba(2, 11, 18, 0.58)),
    var(--hotel-poster) center/cover no-repeat;
  overflow: hidden;
}

.hotel-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.22), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 30%, rgba(4, 13, 21, 0.68) 100%);
  mix-blend-mode: screen;
}

.hotel-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(4, 13, 21, 0.9));
}

.hotel-media-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hotel-media-badges span {
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  background: rgba(4, 13, 21, 0.5);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  color: #f5feff;
  font-size: 0.82rem;
  font-weight: 700;
}

.hotel-video-trigger {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: rgba(4, 13, 21, 0.52);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 36px rgba(2, 8, 14, 0.28);
}

.hotel-video-trigger strong,
.hotel-video-trigger small {
  display: block;
  text-align: left;
}

.hotel-video-trigger small {
  color: var(--text-soft);
}

.play-ring {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(69, 198, 255, 0.9), rgba(110, 243, 196, 0.72));
  color: #04111c;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(69, 198, 255, 0.26);
}

.hotel-showcase-content {
  position: relative;
  z-index: 1;
  padding: 1.7rem;
}

.hotel-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 1.1rem;
}

.hotel-meta-row span {
  padding: 0.6rem 0.82rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-soft);
  font-size: 0.86rem;
}

.hotel-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem 1rem;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.hotel-feature-list li {
  position: relative;
  padding-left: 1.2rem;
}

.hotel-feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: -0.02rem;
  color: var(--accent-2);
}

.hotel-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.text-link {
  color: #d9fbff;
  font-weight: 700;
  text-decoration: none;
}

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

.hotel-booking-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1.8rem;
  padding: 1.4rem 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    rgba(7, 22, 34, 0.72);
}

.hotel-booking-strip h3 {
  margin: 0.35rem 0 0.45rem;
}

.hotel-booking-strip p {
  margin: 0;
}

.hotel-booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 6, 10, 0.74);
  backdrop-filter: blur(18px);
}

.video-modal-dialog {
  position: relative;
  width: min(980px, calc(100% - 2rem));
  margin: 5vh auto 0;
  padding: 1.2rem;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(9, 28, 43, 0.92), rgba(7, 22, 34, 0.92));
  box-shadow: 0 32px 120px rgba(0,0,0,0.4);
}

.video-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1.45rem;
}

.video-modal-header h3 {
  margin: 0.25rem 0 0;
}

.video-embed-frame {
  position: relative;
  margin-top: 1rem;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(2, 8, 14, 0.8);
}

.video-embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-note {
  margin: 0.9rem 0 0;
  color: var(--text-soft);
}

body.video-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  .hotel-showcase-grid {
    grid-template-columns: 1fr;
  }

  .hotel-booking-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  html {
    scroll-snap-type: y proximity;
  }

  .hotel-feature-list {
    grid-template-columns: 1fr;
  }

  .hotel-media {
    min-height: 260px;
  }

  .hotel-video-trigger {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    justify-content: flex-start;
  }

  .video-modal-dialog {
    width: min(100% - 1rem, 980px);
    margin-top: 3vh;
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-snap-type: none;
  }

  .hero-copy,
  .hero-panel,
  .hotel-showcase-card,
  .hero-bg,
  .ocean-section::before,
  .ocean-section > .container {
    transform: none !important;
  }
}

/* Immersive underwater hero + stronger parallax continuity */
body {
  background:
    radial-gradient(circle at 12% 8%, rgba(112, 227, 255, 0.1), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(94, 222, 193, 0.08), transparent 28%),
    #04111b;
}

main::before {
  background:
    linear-gradient(180deg, rgba(3, 12, 20, 0.14), rgba(3, 12, 20, 0.42) 52%, rgba(2, 10, 18, 0.86) 100%),
    url('../img/oceano-hero-underwater.svg') center top / cover no-repeat;
  opacity: 0.26;
  transform: scale(1.08);
  filter: saturate(1.04) contrast(1.04);
}

main::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.022), transparent 16%, transparent 82%, rgba(255,255,255,0.015)),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.012) 0, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 4px),
    radial-gradient(circle at 50% 18%, rgba(196, 243, 255, 0.08), transparent 26%);
  opacity: 0.24;
}

.hero {
  --hero-water-shift: 0px;
  --hero-kelp-shift: 0px;
  --hero-veil-opacity: 0.18;
  overflow: clip;
}

.hero::before {
  background:
    linear-gradient(118deg, rgba(255,255,255,0.06), transparent 16%, rgba(255,255,255,0.05) 28%, transparent 40%, rgba(255,255,255,0.03) 56%, transparent 74%),
    radial-gradient(circle at 52% 2%, rgba(228, 249, 255, 0.22), transparent 18%),
    radial-gradient(circle at 78% 18%, rgba(172, 238, 255, 0.16), transparent 24%);
  opacity: 0.72;
  mix-blend-mode: screen;
}

.hero-bg {
  background:
    linear-gradient(180deg, rgba(3, 13, 22, 0.08), rgba(3, 13, 22, 0.16) 26%, rgba(3, 12, 20, 0.38) 62%, rgba(3, 12, 20, 0.7) 100%),
    url('../img/oceano-hero-underwater.svg') center 34% / cover no-repeat;
  transform: translate3d(0, calc(var(--hero-scroll) + var(--hero-water-shift)), calc(var(--hero-depth) * 0.22)) scale(calc(1.12 + var(--hero-cine-scale, 0)));
  filter: saturate(1.08) contrast(1.05);
}

.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  inset: -5%;
  background:
    radial-gradient(circle at 50% 4%, rgba(206, 247, 255, 0.16), transparent 18%),
    linear-gradient(128deg, rgba(255,255,255,0.04), transparent 20%, rgba(255,255,255,0.05) 38%, transparent 58%);
  mix-blend-mode: screen;
  opacity: 0.75;
  transform: translate3d(0, calc(var(--hero-water-shift) * -0.15), 0);
}

.hero-bg::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 18%),
    linear-gradient(180deg, rgba(3, 12, 20, 0) 0%, rgba(3, 12, 20, 0.14) 42%, rgba(3, 12, 20, 0.44) 100%);
  opacity: 0.68;
}

.hero-overlay {
  background:
    radial-gradient(circle at 52% 3%, rgba(222, 250, 255, 0.18), transparent 16%),
    radial-gradient(circle at 74% 20%, rgba(117, 224, 255, 0.14), transparent 22%),
    radial-gradient(circle at 18% 82%, rgba(110, 243, 196, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(3, 12, 20, 0.06), rgba(3, 12, 20, 0.16) 30%, rgba(3, 12, 20, 0.34) 68%, rgba(3, 12, 20, 0.72) 100%);
  backdrop-filter: blur(1.5px);
}

.hero-overlay::before {
  width: 54vw;
  height: 54vw;
  top: -20vw;
  right: -8vw;
  background: radial-gradient(circle, rgba(152, 239, 255, 0.16), transparent 62%);
  filter: blur(34px);
}

.hero-overlay::after {
  width: 34vw;
  height: 34vw;
  left: -10vw;
  bottom: -14vw;
  background: radial-gradient(circle, rgba(83, 206, 179, 0.1), transparent 62%);
  filter: blur(30px);
}

.hero-particles {
  background:
    radial-gradient(circle at 10% 18%, rgba(255,255,255,0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 24% 66%, rgba(255,255,255,0.16) 0 1.7px, transparent 2.6px),
    radial-gradient(circle at 40% 30%, rgba(255,255,255,0.14) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 58% 24%, rgba(255,255,255,0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 62%, rgba(255,255,255,0.15) 0 1.8px, transparent 2.7px),
    radial-gradient(circle at 91% 26%, rgba(255,255,255,0.18) 0 2px, transparent 3px);
  opacity: 0.42;
  animation: bubblesRise 28s linear infinite;
}

.hero-wave {
  opacity: 0.22;
}

.hero-wave-1 {
  transform: translate3d(0, calc(var(--hero-depth) * 0.18), 0);
}

.hero-wave-2 {
  transform: translate3d(0, calc(var(--hero-depth) * 0.3), 0);
}

.hero-copy {
  --lift-z: 52px;
  position: relative;
  padding: clamp(1.25rem, 2vw, 2rem);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(3, 16, 28, 0.22), rgba(3, 16, 28, 0.08));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 90px rgba(2, 8, 14, 0.18), inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(22px) saturate(1.18);
}

.hero-copy::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 16%, rgba(255,255,255,0.08), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 24%);
  pointer-events: none;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-panel {
  --lift-z: 64px;
  background: linear-gradient(180deg, rgba(7, 25, 40, 0.64), rgba(7, 22, 36, 0.5));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 42px 110px rgba(2, 8, 14, 0.34);
  backdrop-filter: blur(26px) saturate(1.2);
}

.form-hub {
  background:
    linear-gradient(180deg, rgba(6, 27, 43, 0.76), rgba(7, 24, 38, 0.6)),
    rgba(9, 28, 44, 0.44);
}

.hero::after {
  height: 24rem;
  background:
    linear-gradient(180deg, rgba(3, 12, 20, 0) 0%, rgba(3, 12, 20, 0.12) 20%, rgba(3, 12, 20, 0.82) 74%, rgba(4, 13, 21, 0.98) 100%),
    radial-gradient(120% 100% at 50% 0%, rgba(165, 238, 255, 0.14), transparent 60%);
}

.trust-bar {
  background:
    linear-gradient(180deg, rgba(4, 13, 21, 0.08), rgba(4, 13, 21, 0.68) 36%, rgba(4, 13, 21, 0.22) 100%);
}

.ocean-section {
  --section-bg-parallax: 0px;
  --section-content-lift: 0px;
  --section-local-opacity: 0.42;
  --section-local-scale: 1.06;
  --section-ripple-shift: 50%;
}

.ocean-section::before {
  inset: -7rem 0;
  background:
    linear-gradient(180deg, rgba(4, 14, 22, 0.34), rgba(4, 14, 22, 0.12) 22%, rgba(4, 14, 22, 0.28) 74%, rgba(4, 14, 22, 0.58) 100%),
    var(--section-bg) center / cover no-repeat;
  opacity: var(--section-local-opacity);
  transform: translate3d(0, calc(var(--section-shift) + var(--section-bg-parallax)), var(--section-float-z)) scale(var(--section-local-scale));
  filter: saturate(1.06) contrast(1.04) brightness(1.03);
}

.ocean-section::after {
  background:
    linear-gradient(180deg, rgba(4, 13, 21, 0) 0%, rgba(4, 13, 21, 0.24) 14%, rgba(4, 13, 21, 0.42) 52%, rgba(4, 13, 21, 0.2) 86%, rgba(4, 13, 21, 0) 100%),
    radial-gradient(circle at 50% var(--section-ripple-shift), rgba(130, 235, 255, var(--section-glow)), transparent 34%),
    radial-gradient(circle at 18% 16%, rgba(255,255,255,0.05), transparent 22%),
    radial-gradient(circle at 82% 76%, rgba(115, 222, 255, 0.05), transparent 24%);
}

.ocean-section > .container {
  transform:
    translate3d(0, calc(var(--section-content-lift) + (var(--section-shift) * -0.05)), calc(var(--section-float-z) * 0.08))
    rotateX(var(--section-rotate-x));
}

.info-card,
.pillar-card,
.hotel-card,
.gallery-card,
.package-card,
.contact-cards article,
.hotel-showcase-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    rgba(6, 22, 35, 0.68);
  border-color: rgba(255,255,255,0.12);
}

@media (max-width: 960px) {
  main::before {
    opacity: 0.22;
  }

  .hero-copy {
    padding: 1.2rem;
  }

  .hero::after {
    height: 16rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-bg::before,
  .ocean-section::before,
  .ocean-section > .container {
    transform: none !important;
  }
}

.hero::before {
  opacity: calc(0.56 + var(--hero-veil-opacity));
}

.hero-overlay {
  opacity: calc(0.58 + var(--hero-veil-opacity));
}

.hero-wave-1 {
  transform: translate3d(0, calc(var(--hero-depth) * 0.18 + (var(--hero-kelp-shift) * -0.18)), 0);
}

.hero-wave-2 {
  transform: translate3d(0, calc(var(--hero-depth) * 0.3 + (var(--hero-kelp-shift) * -0.12)), 0);
}

/* ===== Final premium header, contact map + form, and floating back-to-top ===== */
:root {
  --header-height: 76px;
}

html {
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  padding-top: calc(var(--header-height) + 14px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 80;
  padding-top: 0.9rem;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.header-inner {
  min-height: var(--header-height);
  padding: 0 0.95rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(4, 17, 27, 0.94), rgba(7, 23, 36, 0.8)),
    rgba(5, 17, 27, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(18px) saturate(125%);
}

.site-header.is-scrolled .header-inner {
  background:
    linear-gradient(135deg, rgba(4, 17, 27, 0.98), rgba(7, 22, 34, 0.9)),
    rgba(5, 17, 27, 0.86);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}

.brand {
  min-width: 0;
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(112px, 10vw, 146px);
}

.site-nav {
  gap: 0.38rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.7rem 0.88rem;
  border-radius: 999px;
  color: rgba(234, 247, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid rgba(255,255,255,0.03);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #f4fbff;
  background: rgba(255, 255, 255, 0.052);
  border-color: rgba(110, 243, 196, 0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035), 0 8px 20px rgba(0, 0, 0, 0.14);
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 9px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(69, 198, 255, 0), rgba(69, 198, 255, 0.88), rgba(110, 243, 196, 0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.nav-cta::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  color: #052030;
  border-color: rgba(110, 243, 196, 0.4);
  background: linear-gradient(135deg, rgba(69, 198, 255, 0.98), rgba(110, 243, 196, 0.96));
  box-shadow: 0 12px 24px rgba(69, 198, 255, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #052030;
  background: linear-gradient(135deg, rgba(104, 219, 255, 1), rgba(132, 248, 210, 1));
}

.hero {
  min-height: calc(100vh - var(--header-height) - 14px);
}

.hero-copy,
.hero-panel,
.info-card,
.pillar-card,
.hotel-card,
.gallery-card,
.package-card,
.form-card,
.map-card,
.footer-inner > div,
.footer-links,
.stats-grid article,
.feature-list article {
  min-width: 0;
}

.hero-copy p,
.section-heading p,
.info-card p,
.pillar-card p,
.gallery-card p,
.package-card p,
.hotel-card p,
.form-card p,
.map-card p,
.footer-inner p,
.request-card-top p {
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
}

h1, h2, h3, p, li, a, button, span {
  overflow-wrap: anywhere;
}

.btn {
  white-space: normal;
}

.contact-premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.5rem;
  align-items: stretch;
}

.contact-form-card,
.map-card {
  padding: 1.55rem;
  background: linear-gradient(180deg, rgba(11, 28, 44, 0.86), rgba(8, 22, 34, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.26);
  backdrop-filter: blur(18px);
}

.map-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
}

.map-card-top h3 {
  margin: 0.8rem 0 0.55rem;
}

.map-card-top p {
  margin: 0;
  color: var(--text-soft);
}

.map-embed {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 18px 40px rgba(0,0,0,0.2);
}

.map-embed::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 17, 27, 0.08), rgba(5, 17, 27, 0.18));
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  filter: saturate(1.06) contrast(1.02);
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-ghost {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.footer-links a {
  padding: 0.72rem 0.96rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 75;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(69, 198, 255, 0.96), rgba(110, 243, 196, 0.92));
  color: #052030;
  box-shadow: 0 18px 38px rgba(69, 198, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.back-to-top span {
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  box-shadow: 0 24px 44px rgba(69, 198, 255, 0.38);
  transform: translate3d(0, -2px, 0) scale(1.02);
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 0.46rem;
  }

  .site-nav a {
    padding-inline: 0.88rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  body {
    padding-top: calc(var(--header-height) + 12px);
  }

  .site-header {
    padding-top: 0.72rem;
  }

  .header-inner {
    padding: 0 1rem;
    border-radius: 26px;
  }

  .site-nav {
    inset: calc(var(--header-height) + 0.9rem) 1rem auto 1rem;
    border-radius: 26px;
    padding: 0.9rem;
    background: rgba(5, 16, 25, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    padding-inline: 1rem;
  }

  .contact-premium-grid {
    grid-template-columns: 1fr;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: clamp(102px, 30vw, 126px);
  }

  .site-nav {
    inset: calc(var(--header-height) + 0.8rem) 0.8rem auto 0.8rem;
  }

  .back-to-top {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}

/* ===== Apoios premium ===== */
.ocean-section--support {
  position: relative;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.5rem;
  align-items: stretch;
}

.support-card {
  position: relative;
  min-width: 0;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(11, 28, 44, 0.88), rgba(7, 22, 34, 0.78)),
    rgba(7, 22, 34, 0.8);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.support-card-link {
  display: grid;
  gap: 1.2rem;
  height: 100%;
}

.support-card--docs {
  display: grid;
  gap: 1.15rem;
}

.support-logo-shell {
  display: grid;
  place-items: center;
  min-height: 170px;
  padding: 1rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.support-logo-shell img {
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
}

.support-logo-shell--gea {
  min-height: 220px;
}

.support-logo-shell--public {
  min-height: 190px;
}

.support-copy h3 {
  margin: 0.8rem 0 0.65rem;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.support-copy p {
  margin: 0;
  color: var(--text-soft);
  text-align: justify;
}

.support-link-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.support-link-label::after {
  content: '↗';
  font-size: 1rem;
}

.support-pdfs {
  display: grid;
  gap: 0.8rem;
}

.support-pdf {
  display: grid;
  gap: 0.28rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.support-pdf strong {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.support-pdf span {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.45;
}

.support-pdf:hover,
.support-pdf:focus-visible,
.support-card-link:hover .support-logo-shell,
.support-card-link:focus-visible .support-logo-shell {
  transform: translateY(-2px);
  border-color: rgba(110, 243, 196, 0.24);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(3, 12, 19, 0.76), rgba(3, 10, 17, 0.94));
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
}

.footer-inner p {
  max-width: 520px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: rgba(110, 243, 196, 0.28);
  background: rgba(255,255,255,0.08);
}

@media (max-width: 960px) {
  .support-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* ===== Updated support logos + dynamic footer date ===== */
.support-logo-shell--gea,
.support-logo-shell--public {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.9));
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.38), 0 14px 28px rgba(0, 0, 0, 0.12);
}

.support-logo-shell--gea {
  min-height: 164px;
  padding: 0.7rem;
}

.support-logo-shell--public {
  min-height: 176px;
  padding: 0.55rem 0.4rem;
}

.support-logo-shell--gea img,
.support-logo-shell--public img {
  display: block;
  filter: none;
}

.support-logo-shell--gea img {
  width: min(100%, 165px);
}

.support-logo-shell--public img {
  width: min(100%, 860px);
  max-width: none;
}

.footer-brand-block {
  display: grid;
  gap: 0.65rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  color: rgba(225, 235, 244, 0.76);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.footer-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-date {
  font-weight: 700;
  color: rgba(248, 252, 255, 0.92);
}

@media (max-width: 960px) {
  .footer-meta {
    justify-content: flex-start;
  }
}

/* ===== Final support section cleanup ===== */
.ocean-section--support .section-heading {
  max-width: 980px;
}

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

.support-card--public-wide {
  display: grid;
  gap: 1.4rem;
}

.support-card-top {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(0, 0.85fr);
  gap: 1.4rem;
  align-items: center;
}

.support-card--public-wide .support-logo-shell--public {
  min-height: 210px;
  padding: 0.45rem 0.7rem;
}

.support-card--public-wide .support-logo-shell--public img {
  width: 100%;
  max-width: 100%;
}

.support-card--public-wide .support-copy {
  align-self: center;
}

.support-card--public-wide .support-copy p {
  max-width: 46ch;
}

.footer-brand-block {
  gap: 0.35rem;
}

@media (max-width: 960px) {
  .support-card-top {
    grid-template-columns: 1fr;
  }

  .support-card--public-wide .support-logo-shell--public {
    min-height: 160px;
  }
}

/* ===== Performance + premium header refinement ===== */
:root {
  --header-premium-bg: linear-gradient(135deg, rgba(4, 15, 25, 0.95), rgba(8, 27, 41, 0.82));
  --header-premium-stroke: rgba(151, 215, 255, 0.08);
  --header-link: rgba(231, 243, 252, 0.78);
  --header-link-hover: #f6fbff;
  --header-link-pill: rgba(255, 255, 255, 0.02);
  --header-link-pill-hover: rgba(255, 255, 255, 0.055);
}

.site-header {
  padding-top: 0.78rem;
}

.header-inner {
  gap: 1.1rem;
  background: var(--header-premium-bg);
  border: 1px solid var(--header-premium-stroke);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(12px) saturate(118%);
}

.site-header.is-scrolled .header-inner {
  background: linear-gradient(135deg, rgba(4, 15, 25, 0.96), rgba(8, 27, 41, 0.88));
  border-color: rgba(151, 215, 255, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255,255,255,0.06);
}

.site-nav {
  padding: 0.36rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.site-nav a {
  color: var(--header-link);
  background: transparent;
  border-color: transparent;
  min-height: 42px;
  padding: 0.76rem 0.96rem;
  letter-spacing: 0.15em;
}

.site-nav a::after {
  left: 16px;
  right: 16px;
  bottom: 9px;
  opacity: 0.95;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--header-link-hover);
  background: var(--header-link-pill-hover);
  border-color: rgba(110, 243, 196, 0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.site-nav a.is-active::after,
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.nav-cta::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  color: #052030;
  background: linear-gradient(135deg, rgba(88, 211, 255, 0.98), rgba(125, 246, 208, 0.96));
  border-color: rgba(125, 246, 208, 0.42);
  box-shadow: 0 12px 24px rgba(69, 198, 255, 0.2);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta.is-active {
  color: #052030;
  background: linear-gradient(135deg, rgba(104, 219, 255, 1), rgba(141, 248, 214, 1));
  border-color: rgba(186, 252, 231, 0.46);
  box-shadow: 0 14px 28px rgba(69, 198, 255, 0.24);
}

.hero-copy,
.hero-panel,
.contact-form-card,
.map-card {
  backdrop-filter: blur(14px) saturate(112%);
}

.hero-copy {
  background: linear-gradient(180deg, rgba(3, 16, 28, 0.18), rgba(3, 16, 28, 0.08));
  box-shadow: 0 20px 56px rgba(2, 8, 14, 0.16), inset 0 1px 0 rgba(255,255,255,0.1);
}

.hero-panel {
  box-shadow: 0 26px 66px rgba(2, 8, 14, 0.24);
}

.hero-bg,
.ocean-section::before,
.ocean-section > .container,
.hero-copy,
.hero-panel {
  will-change: transform;
}

.hero-bg {
  transform: translate3d(0, calc(var(--hero-scroll) + var(--hero-water-shift)), 0) scale(calc(1.06 + var(--hero-cine-scale, 0)));
}

.hero-overlay {
  backdrop-filter: blur(0.5px);
}

.ocean-section::before {
  transform: translate3d(0, calc(var(--section-shift) + var(--section-bg-parallax)), 0) scale(var(--section-local-scale));
}

.ocean-section > .container {
  transform: translate3d(0, calc(var(--section-content-lift) + (var(--section-shift) * -0.05)), 0);
}

.back-to-top {
  box-shadow: 0 14px 30px rgba(69, 198, 255, 0.22);
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 0.34rem;
  }

  .site-nav a {
    padding-inline: 0.82rem;
    letter-spacing: 0.13em;
  }
}

@media (max-width: 960px) {
  .header-inner {
    backdrop-filter: blur(10px) saturate(110%);
  }

  .site-nav {
    background: linear-gradient(180deg, rgba(5, 18, 29, 0.96), rgba(7, 23, 36, 0.94));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 38px rgba(0,0,0,0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .ocean-section::before,
  .ocean-section > .container,
  .hero-copy,
  .hero-panel {
    will-change: auto;
  }
}
