:root {
  --navy: #0b2d5c;
  --navy-soft: #123f7f;
  --blue: #1453a4;
  --aqua: #42c4d0;
  --aqua-deep: #087f91;
  --sun: #ffbe3d;
  --sand: #eaf3fb;
  --paper: #ffffff;
  --white: #ffffff;
  --ink: #0c2440;
  --muted: #5f7082;
  --line: rgba(11, 45, 92, .15);
  --shell: min(1180px, calc(100vw - 48px));
  --serif: "Montserrat", Arial, sans-serif;
  --sans: "Nunito Sans", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

::selection {
  background: var(--aqua);
  color: var(--navy);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: none;
}

.section {
  position: relative;
  padding: 132px 0;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 42px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: rgba(255, 255, 255, .72);
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .035em;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

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

.button-light {
  background: var(--white);
  color: var(--navy);
}

.button-light:hover {
  border-color: var(--aqua);
  background: var(--aqua);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1);
}

.reveal-delay {
  transition-delay: .14s;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition: background .3s ease, color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(248, 246, 241, .97);
  color: var(--navy);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1280px, calc(100vw - 48px));
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-inline: auto;
}

.brand {
  width: 173px;
  height: 87px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand img {
  width: auto;
  height: 81px;
  filter: brightness(0) invert(1);
  transition: filter .3s ease;
}

.site-header.is-scrolled .brand img,
.site-header.is-menu-open .brand img {
  filter: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 700;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, .52);
  font-size: 12px;
  font-weight: 800;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.header-cta-mobile {
  display: none;
}

.header-cta svg,
.form-submit svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header-cta:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.site-header.is-scrolled .header-cta,
.site-header.is-menu-open .header-cta {
  border-color: var(--navy);
}

.site-header.is-scrolled .header-cta:hover,
.site-header.is-menu-open .header-cta:hover {
  background: var(--navy);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-photo,
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background: url("uploads/2%20PORTARIA.png") center / cover no-repeat;
  animation: hero-scale 14s ease-out both;
}

.hero-video {
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 56.25vh);
  height: max(177.78vw, 100vh);
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@keyframes hero-scale {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 14, 35, .91) 0%, rgba(9, 14, 35, .7) 39%, rgba(9, 14, 35, .12) 73%),
    linear-gradient(0deg, rgba(9, 14, 35, .75) 0%, transparent 38%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100vw - 48px));
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: center;
  gap: 80px;
  margin-inline: auto;
  padding: 132px 0 170px;
}

.hero-copy {
  max-width: 820px;
}

.hero-copy h1,
.concept h2,
.club h2,
.life h2,
.plan h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7.6vw, 112px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .88;
}

.hero-copy h1 em,
.concept h2 em,
.club h2 em,
.life h2 em,
.plan h2 em,
.contact h2 em {
  color: var(--aqua);
  font-style: normal;
  font-weight: 800;
}

.hero-lead {
  max-width: 590px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.play-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  transition: background .25s ease, color .25s ease;
}

.play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
  transform: translate(-40%, -50%);
}

.text-action:hover .play-icon {
  background: var(--white);
  color: var(--navy);
}

.hero-note {
  align-self: center;
  padding: 34px 0 34px 32px;
  border-left: 1px solid rgba(255, 255, 255, .35);
}

.hero-note-index {
  color: var(--aqua);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero-note p {
  margin: 72px 0 26px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.25;
}

.hero-note-line {
  width: 48px;
  height: 1px;
  display: block;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, .5);
}

.hero-note strong {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 98px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  border-top: 1px solid rgba(255, 255, 255, .22);
  background: rgba(9, 14, 35, .5);
  backdrop-filter: blur(10px);
}

.hero-bottom div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 20px clamp(18px, 4vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.hero-bottom div:first-child {
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.hero-bottom strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.hero-bottom span {
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.scroll-hint {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 122px;
  width: 28px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 99px;
}

.scroll-hint span {
  width: 3px;
  height: 7px;
  border-radius: 99px;
  background: var(--white);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { transform: translateY(-7px); opacity: .35; }
  50% { transform: translateY(7px); opacity: 1; }
}

.project-film {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(66, 196, 208, .16), transparent 28%),
    var(--navy);
  color: var(--white);
}

.project-film-grid {
  display: grid;
  grid-template-columns: .48fr 1fr;
  gap: clamp(46px, 8vw, 110px);
  align-items: center;
}

.project-film-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
}

.project-film-copy h2 em {
  color: var(--aqua);
  font-style: normal;
}

.project-film-copy > p:not(.eyebrow) {
  margin: 27px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 15px;
  line-height: 1.8;
}

.project-film-action {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.project-film-action:hover .play-icon,
.project-film-overlay:hover .play-icon {
  background: var(--white);
  color: var(--navy);
}

.project-film-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #050914;
  box-shadow: 28px 32px 0 rgba(66, 196, 208, .09);
}

.project-film-media iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  pointer-events: none;
}

.project-film-media::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(5, 9, 20, .76));
  pointer-events: none;
}

.project-film-overlay {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 18px 10px 10px;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(11, 45, 92, .56);
  color: var(--white);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.project-film-overlay strong {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.concept {
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(17, 25, 54, .05) 50%, transparent calc(50% + 1px)),
    var(--paper);
}

.concept-grid {
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  gap: 11vw;
  align-items: end;
}

.concept h2,
.life h2,
.contact h2 {
  font-size: clamp(45px, 6.3vw, 84px);
  line-height: .98;
}

.concept-copy {
  max-width: 470px;
  padding-bottom: 4px;
}

.concept-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.concept-copy .lead-copy {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.35;
}

.line-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding: 16px 0;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.line-link span {
  font-size: 19px;
  transition: transform .25s ease;
}

.line-link:hover span {
  transform: translate(3px, -3px);
}

.concept-media {
  position: relative;
  min-height: 680px;
  margin-top: 100px;
}

.concept-media figure {
  margin: 0;
  overflow: hidden;
}

.concept-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.22, 1, .36, 1);
}

.concept-media figure:hover img {
  transform: scale(1.025);
}

.concept-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 76%;
  height: 540px;
}

.concept-detail {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 42%;
  min-width: 350px;
  height: 370px;
  border: 12px solid var(--paper);
  background: var(--paper);
}

.concept-detail img {
  height: 250px;
}

.concept-detail figcaption {
  display: grid;
  gap: 6px;
  padding: 19px 6px 0;
}

.concept-detail figcaption span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.concept-detail figcaption strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.concept-seal {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 64px;
  width: 138px;
  height: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--navy);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .35),
    0 18px 38px rgba(11, 45, 92, .18);
  animation: seal-float 5s ease-in-out infinite;
}

.concept-seal span {
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1;
  white-space: nowrap;
}

.concept-seal b {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
}

.concept-seal small {
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .17em;
  line-height: 1;
  white-space: nowrap;
}

@keyframes seal-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

.word-stream {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--sand);
}

.word-stream > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 32px;
  animation: stream 28s linear infinite;
}

.word-stream span {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 54px);
}

.word-stream i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--aqua-deep);
}

@keyframes stream {
  to { transform: translateX(-50%); }
}

.benefits {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 4%, rgba(66, 196, 208, .18), transparent 25%),
    var(--white);
}

.benefits-heading {
  max-width: 900px;
}

.benefits-heading h2,
.audience-heading h2,
.offer-copy h2,
.proof-copy h2,
.faq-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(45px, 5.6vw, 76px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
}

.benefits-heading h2 em,
.audience-heading h2 em,
.offer-copy h2 em,
.faq-heading h2 em {
  color: var(--aqua-deep);
  font-style: normal;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-card {
  min-height: 300px;
  padding: 30px 24px;
  border-left: 1px solid var(--line);
}

.benefit-card:last-child {
  border-right: 1px solid var(--line);
}

.benefit-card > span {
  display: block;
  margin-bottom: 82px;
  color: var(--aqua-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.benefit-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.club {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.club::before {
  content: "";
  position: absolute;
  top: -18vw;
  right: -12vw;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(119, 197, 194, .18);
  border-radius: 50%;
}

.club-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}

.club h2,
.plan h2 {
  font-size: clamp(48px, 6.6vw, 88px);
  line-height: .95;
}

.club-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.club-photo {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
}

.club-photo img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.image-expand {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(255, 255, 255, .94);
  color: var(--navy);
  cursor: pointer;
}

.image-expand svg,
.plan-zoom svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.club-copy {
  padding: 32px 0;
}

.section-number {
  color: var(--aqua);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.club-copy h3 {
  margin: 28px 0 22px;
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.club-copy > p {
  color: rgba(255, 255, 255, .65);
  font-size: 15px;
  line-height: 1.8;
}

.feature-list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
  font-family: var(--serif);
  font-size: 18px;
}

.feature-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.feature-list span {
  color: var(--aqua);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
}

.amenity-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 100px;
  background: rgba(255, 255, 255, .18);
}

.amenity-card {
  min-width: 0;
  background: var(--navy);
}

.amenity-card button {
  width: 100%;
  height: 250px;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82);
  transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .4s ease;
}

.amenity-card:hover img {
  transform: scale(1.055);
  filter: saturate(1);
}

.amenity-card > div {
  min-height: 108px;
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.amenity-card span {
  color: var(--aqua);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.amenity-card h3 {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.life {
  background: var(--paper);
}

.life-intro {
  display: grid;
  grid-template-columns: 1fr .5fr;
  gap: 9vw;
  align-items: end;
}

.life-intro > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-rows: 330px 330px;
  gap: 18px;
  margin-top: 80px;
}

.mosaic figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.mosaic-tall {
  grid-row: 1 / 3;
}

.mosaic figure button {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.mosaic figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1), opacity .4s ease;
}

.mosaic figure:hover img {
  opacity: .83;
  transform: scale(1.035);
}

.mosaic figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 45px 22px 20px;
  background: linear-gradient(transparent, rgba(9, 14, 35, .8));
  color: var(--white);
  font-family: var(--serif);
  font-size: 22px;
  pointer-events: none;
}

.mosaic figcaption span {
  color: var(--aqua);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
}

.audience {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(66, 196, 208, .12), transparent 42%),
    var(--navy-soft);
  color: var(--white);
}

.audience::after {
  content: "";
  position: absolute;
  top: -220px;
  right: -140px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.audience-heading {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.audience-heading h2 em {
  color: var(--aqua);
}

.audience-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 62px;
}

.audience-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .07);
}

.audience-card > span {
  display: block;
  margin-bottom: 28px;
  color: var(--aqua);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.audience-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.65;
}

.audience-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--aqua);
  font-weight: 900;
}

.audience-no {
  background: rgba(4, 24, 54, .26);
}

.audience-no > span {
  color: rgba(255, 255, 255, .68);
}

.audience-no li::before {
  content: "—";
  color: rgba(255, 255, 255, .55);
}

.offer {
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(20, 83, 164, .07) 50%, transparent calc(50% + 1px)),
    var(--sand);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.offer-copy h2 {
  color: var(--navy);
}

.offer-copy > p:not(.eyebrow) {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.offer-copy .offer-highlight {
  max-width: 620px;
  margin-top: 18px;
  padding: 13px 16px;
  border-left: 3px solid var(--sun);
  background: rgba(255, 255, 255, .7);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.offer-steps {
  display: grid;
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.offer-steps > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.offer-steps span {
  color: var(--aqua-deep);
  font-size: 10px;
  font-weight: 900;
}

.offer-steps p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  color: var(--navy);
  font-size: 14px;
}

.offer-steps strong {
  font-weight: 800;
}

.offer-assurance {
  margin-top: 32px;
  padding: 20px 22px;
  border-left: 4px solid var(--aqua-deep);
  background: rgba(255, 255, 255, .68);
}

.offer-assurance strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 13px;
}

.offer-assurance p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.price-card {
  position: relative;
  padding: clamp(34px, 5vw, 60px);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  box-shadow: 22px 26px 0 rgba(20, 83, 164, .12);
}

.price-card::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 330px;
  height: 330px;
  border: 50px solid rgba(66, 196, 208, .1);
  border-radius: 50%;
}

.price-tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 8px 11px;
  background: var(--sun);
  color: var(--navy);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}

.price-kicker,
.price-label {
  position: relative;
  z-index: 1;
  margin: 32px 0 8px;
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-size {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 86px);
  font-weight: 900;
  line-height: 1;
}

.price-size small {
  font-size: .38em;
}

.price-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  margin: 28px 0;
  background: rgba(255, 255, 255, .2);
}

.price-value {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  color: var(--aqua);
}

.price-value small {
  margin: 12px 7px 0 0;
  font-size: 15px;
  font-weight: 800;
}

.price-value strong {
  font-family: var(--serif);
  font-size: clamp(72px, 9vw, 106px);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .85;
}

.price-value sup {
  margin-top: 6px;
  font-size: 25px;
  font-weight: 900;
}

.button-offer {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 34px;
  background: var(--aqua);
  color: var(--navy);
  text-align: center;
}

.button-offer:hover {
  background: var(--white);
}

.price-note {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  line-height: 1.6;
}

.plan {
  background: var(--blue);
  color: var(--white);
}

.plan-heading {
  display: grid;
  grid-template-columns: 1fr .42fr;
  gap: 8vw;
  align-items: end;
}

.plan-heading > p {
  margin: 0 0 3px;
  color: rgba(255, 255, 255, .67);
  font-size: 15px;
  line-height: 1.8;
}

.plan-switcher {
  margin-top: 74px;
}

.plan-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.plan-tabs button {
  position: relative;
  min-height: 52px;
  padding: 10px 30px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.plan-tabs button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--aqua);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.plan-tabs button[aria-selected="true"] {
  color: var(--white);
}

.plan-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.plan-panel {
  position: relative;
  min-height: 500px;
  background: var(--white);
}

.plan-panel[hidden] {
  display: none;
}

.plan-panel img {
  width: 100%;
  max-height: 670px;
  object-fit: contain;
}

.plan-zoom {
  position: absolute;
  right: 20px;
  bottom: 20px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.plan-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.plan-download > div {
  display: grid;
  gap: 5px;
}

.plan-download strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 800;
}

.plan-download span {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.plan-download > a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .4);
  font-size: 11px;
  font-weight: 800;
}

.plan-download > a:hover {
  border-color: var(--aqua);
  background: var(--aqua);
  color: var(--navy);
}

.location {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  background: var(--sand);
}

.location-map {
  min-height: 720px;
  filter: grayscale(.75) sepia(.18) contrast(.9);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 720px;
  display: block;
  border: 0;
}

.location-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(70px, 9vw, 150px);
  background: var(--navy);
  color: var(--white);
}

.location-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 400;
  line-height: 1;
}

.location-card > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 38px;
  color: rgba(255, 255, 255, .67);
  font-size: 15px;
  line-height: 1.8;
}

.proof {
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: clamp(50px, 10vw, 150px);
  align-items: center;
}

.proof-logo {
  min-height: 330px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 34px;
  padding: 44px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(66, 196, 208, .13), transparent 55%),
    var(--white);
}

.proof-logo span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.proof-logo img {
  width: min(290px, 100%);
}

.proof-copy h2 {
  color: var(--navy);
  font-size: clamp(40px, 4.8vw, 66px);
}

.proof-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.faq {
  background:
    linear-gradient(135deg, rgba(66, 196, 208, .08), transparent 42%),
    var(--navy);
  color: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: clamp(54px, 9vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-heading h2 em {
  color: var(--aqua);
}

.faq-heading > p:not(.eyebrow) {
  max-width: 450px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.faq-list summary {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
}

.faq-list summary span {
  color: var(--aqua);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 400;
  transition: transform .25s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -4px 54px 26px 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.75;
}

.contact {
  overflow: hidden;
  background: var(--aqua);
}

.contact::after {
  content: "PF";
  position: absolute;
  right: -20px;
  bottom: -140px;
  color: rgba(17, 25, 54, .055);
  font-family: var(--serif);
  font-size: 420px;
  line-height: 1;
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 10vw;
}

.contact-copy h2 {
  max-width: 760px;
  font-size: clamp(46px, 5.8vw, 78px);
}

.contact-copy h2 em {
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 32px 0;
  color: rgba(17, 25, 54, .75);
  line-height: 1.8;
}

.contact-direct {
  display: grid;
  gap: 6px;
  margin-top: 54px;
}

.contact-direct span {
  color: rgba(17, 25, 54, .68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-direct a {
  width: max-content;
  border-bottom: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 30px;
}

.lead-form {
  align-self: center;
  padding: clamp(30px, 4vw, 54px);
  background: var(--white);
  box-shadow: 20px 26px 0 rgba(17, 25, 54, .12);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field label {
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 9px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  transition: border-color .2s ease;
}

.field input:focus,
.field select:focus {
  border-color: var(--aqua-deep);
}

.form-submit {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding: 14px 20px;
  border: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background .25s ease;
}

.form-submit:hover {
  background: var(--aqua-deep);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.site-footer {
  padding: 88px 0 28px;
  background: var(--paper);
  color: var(--navy);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(270px, .9fr) repeat(2, minmax(220px, 1fr));
  align-items: start;
  gap: clamp(42px, 7vw, 100px);
}

.footer-brands {
  width: min(100%, 300px);
  display: grid;
  justify-items: center;
  gap: 28px;
}

.footer-brands img {
  display: block;
  max-width: 100%;
  height: auto;
  background: transparent;
  object-fit: contain;
}

.footer-central-logo {
  width: 190px;
}

.footer-partner-logos {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.footer-castel-logo {
  width: 138px;
}

.footer-porto-logo {
  width: 102px;
}

.footer-info {
  display: grid;
  justify-items: start;
  gap: 13px;
  padding-top: 12px;
}

.footer-title {
  margin-bottom: 2px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-info p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-info > a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease;
}

.footer-info > a:hover {
  color: var(--aqua-deep);
}

.footer-whatsapp {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  color: var(--navy) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

.footer-whatsapp svg {
  width: 18px;
  fill: currentColor;
}

.footer-brand > img {
  width: 145px;
}

.footer-brand p {
  max-width: 340px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer-nav,
.footer-contact,
.footer-developer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-nav > span,
.footer-contact > span,
.footer-developer > span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  font-size: 12px;
  font-weight: 700;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--aqua-deep);
}

.footer-contact p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.footer-developer img {
  width: 170px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 76px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(13, 22, 46, .24);
  transition: transform .25s ease, background .25s ease;
}

.floating-whatsapp:hover {
  background: #1eae55;
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 27px;
  fill: currentColor;
}

.video-dialog {
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(7, 11, 27, .96);
  color: var(--white);
}

.video-dialog::backdrop {
  background: rgba(7, 11, 27, .96);
}

.video-modal-shell {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  place-items: center;
  padding: 72px 7vw 36px;
}

.video-frame {
  width: min(1180px, 100%);
  max-height: calc(100svh - 145px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-modal-shell > p {
  width: min(1180px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.video-modal-shell > p span {
  margin-right: 14px;
  color: var(--aqua);
  font-weight: 800;
}

.video-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .34);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.video-close:hover {
  background: var(--white);
  color: var(--navy);
}

.video-close svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.gallery-dialog {
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(7, 11, 27, .96);
  color: var(--white);
}

.gallery-dialog::backdrop {
  background: rgba(7, 11, 27, .96);
}

.gallery-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 70px 110px 42px;
}

.gallery-stage figure {
  width: min(1180px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  margin: 0;
}

.gallery-stage figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.gallery-stage figcaption {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--serif);
  font-size: 23px;
}

.gallery-stage figcaption span {
  color: var(--aqua);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
}

.gallery-close,
.gallery-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .34);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.gallery-close:hover,
.gallery-arrow:hover {
  background: var(--white);
  color: var(--navy);
}

.gallery-close {
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
}

.gallery-arrow {
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
}

.gallery-prev { left: 26px; }
.gallery-next { right: 26px; }

.gallery-close svg,
.gallery-arrow svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
    gap: 22px;
  }

  .main-nav {
    gap: 19px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr 240px;
    gap: 45px;
  }

  .concept-grid {
    gap: 7vw;
  }

  .club-feature {
    grid-template-columns: 1.15fr .85fr;
    gap: 46px;
  }

  .amenity-rail {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .benefit-card:last-child {
    border-right: 1px solid var(--line);
  }

  .footer-main {
    grid-template-columns: 1.2fr .8fr .8fr;
  }

  .footer-developer {
    grid-column: 2;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(calc(100% - 32px), 640px);
  }

  html {
    scroll-padding-top: 72px;
  }

  .section {
    padding: 88px 0;
  }

  .header-inner {
    width: calc(100vw - 28px);
    min-height: 84px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 129px;
    height: 72px;
    justify-content: start;
  }

  .brand img {
    width: auto;
    height: 66px;
  }

  .header-cta {
    min-height: 42px;
    gap: 10px;
    padding: 9px 12px;
  }

  .header-cta-desktop {
    display: none;
  }

  .header-cta-mobile {
    display: inline;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .45);
    background: transparent;
    cursor: pointer;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-menu-open .menu-toggle {
    border-color: var(--line);
  }

  .menu-toggle span {
    width: 20px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform .25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 48px 24px;
    background: var(--paper);
    color: var(--navy);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }

  .site-header.is-menu-open .main-nav {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .main-nav a {
    width: 100%;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-photo {
    background-position: 58% center;
  }

  .hero-video iframe {
    width: max(100vw, 56.25svh);
    height: max(177.78vw, 100svh);
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(9, 14, 35, .95) 0%, rgba(9, 14, 35, .72) 53%, rgba(9, 14, 35, .32) 100%),
      linear-gradient(90deg, rgba(9, 14, 35, .64), transparent);
  }

  .hero-grid {
    width: calc(100vw - 32px);
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding: 110px 0 172px;
  }

  .hero-copy h1 {
    font-size: clamp(49px, 15vw, 74px);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note,
  .scroll-hint {
    display: none;
  }

  .hero-bottom {
    min-height: 116px;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
  }

  .hero-bottom div {
    gap: 4px;
    padding: 16px 9px;
    text-align: center;
  }

  .hero-bottom strong {
    font-size: 16px;
  }

  .hero-bottom span {
    font-size: 7px;
    line-height: 1.35;
  }

  .concept {
    background: var(--paper);
  }

  .project-film-grid,
  .concept-grid,
  .life-intro,
  .plan-heading,
  .audience-grid,
  .offer-grid,
  .proof-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .project-film {
    padding-top: 34px;
  }

  .project-film-media {
    order: -1;
    box-shadow: 10px 12px 0 rgba(66, 196, 208, .09);
  }

  .project-film-overlay {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 54px;
    padding: 7px 12px 7px 7px;
  }

  .project-film-overlay .play-icon {
    width: 38px;
    height: 38px;
  }

  .project-film-overlay strong {
    font-size: 9px;
  }

  .concept h2,
  .life h2,
  .contact h2 {
    font-size: clamp(42px, 12vw, 61px);
  }

  .concept-media {
    min-height: 560px;
    margin-top: 62px;
  }

  .concept-main {
    width: 92%;
    height: 400px;
  }

  .concept-detail {
    width: 76%;
    min-width: 0;
    height: 278px;
    border-width: 8px;
  }

  .concept-detail img {
    height: 180px;
  }

  .concept-detail figcaption {
    padding-top: 13px;
  }

  .concept-detail figcaption span {
    display: none;
  }

  .concept-detail figcaption strong {
    font-size: 19px;
  }

  .benefits-heading h2,
  .audience-heading h2,
  .offer-copy h2,
  .proof-copy h2,
  .faq-heading h2 {
    font-size: clamp(39px, 11vw, 58px);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .benefit-card {
    min-height: 0;
    padding: 25px 20px;
    border-right: 1px solid var(--line);
  }

  .benefit-card > span {
    margin-bottom: 36px;
  }

  .concept-seal {
    right: 1%;
    bottom: 20px;
    width: 104px;
    height: 104px;
  }

  .concept-seal span {
    font-size: 8px;
  }

  .concept-seal b {
    font-size: 32px;
  }

  .concept-seal small {
    font-size: 6px;
  }

  .club-heading {
    margin-bottom: 50px;
  }

  .club h2,
  .plan h2 {
    font-size: clamp(43px, 12vw, 62px);
  }

  .club-feature {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .club-photo,
  .club-photo img {
    min-height: 390px;
  }

  .club-photo img {
    object-position: center;
  }

  .club-copy {
    padding: 0;
  }

  .amenity-rail {
    width: 100%;
    grid-template-columns: repeat(4, 76vw);
    gap: 1px;
    margin-top: 68px;
    padding-left: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .amenity-rail::-webkit-scrollbar {
    display: none;
  }

  .amenity-card {
    scroll-snap-align: start;
  }

  .amenity-card button {
    height: 250px;
  }

  .mosaic {
    display: flex;
    gap: 14px;
    margin-top: 52px;
    padding-right: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .mosaic::-webkit-scrollbar {
    display: none;
  }

  .mosaic figure {
    width: 82vw;
    min-width: 82vw;
    height: 440px;
    scroll-snap-align: start;
  }

  .audience-grid {
    margin-top: 44px;
  }

  .audience-card {
    padding: 28px 22px;
  }

  .offer {
    background: var(--sand);
  }

  .offer-grid {
    gap: 52px;
  }

  .offer-steps p {
    align-items: flex-end;
    flex-direction: column;
    gap: 4px;
    text-align: right;
  }

  .price-card {
    padding: 34px 24px;
    box-shadow: 10px 14px 0 rgba(20, 83, 164, .12);
  }

  .plan-switcher {
    margin-top: 48px;
  }

  .plan-tabs button {
    flex: 1;
    padding-inline: 10px;
  }

  .plan-panel {
    min-height: 300px;
  }

  .plan-panel img {
    min-height: 300px;
  }

  .plan-zoom span {
    display: none;
  }

  .plan-download {
    align-items: flex-start;
    flex-direction: column;
  }

  .plan-download > a {
    width: 100%;
    justify-content: space-between;
  }

  .location {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .location-map,
  .location-map iframe {
    min-height: 390px;
  }

  .location-card {
    padding: 72px 24px;
  }

  .proof-logo {
    min-height: 250px;
  }

  .faq-heading {
    position: static;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 14px;
  }

  .contact-grid {
    gap: 55px;
  }

  .contact-direct {
    margin-top: 34px;
  }

  .lead-form {
    padding: 30px 22px;
    box-shadow: 10px 14px 0 rgba(17, 25, 54, .12);
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact::after {
    display: none;
  }

  .site-footer {
    padding-top: 70px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .footer-brands {
    width: min(100%, 300px);
    justify-self: center;
  }

  .footer-info {
    width: 100%;
    padding-top: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 52px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .video-modal-shell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 14px 28px;
  }

  .video-frame {
    width: 100%;
    max-height: none;
  }

  .video-modal-shell > p {
    font-size: 9px;
  }

  .gallery-stage {
    padding: 74px 16px 24px;
  }

  .gallery-stage figure {
    height: calc(100% - 74px);
    align-self: start;
  }

  .gallery-stage figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    font-size: 18px;
  }

  .gallery-arrow {
    top: auto;
    bottom: 18px;
    width: 46px;
    height: 46px;
    transform: none;
  }

  .gallery-prev { left: auto; right: 74px; }
  .gallery-next { right: 18px; }
}

@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions .text-action {
    font-size: 11px;
  }

  .concept-detail {
    width: 82%;
  }

  .concept-seal {
    right: -8px;
  }

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

  .footer-partner-logos {
    gap: 20px;
  }

  .footer-castel-logo {
    width: 128px;
  }

  .footer-porto-logo {
    width: 94px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-video {
    display: none;
  }
}
