@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/cormorant-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/cormorant-medium-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #17201d;
  --ink-rich: #101713;
  --ink-soft: #334039;
  --ivory: #f1eee5;
  --ivory-soft: #f8f6f0;
  --stone: #d7d2c5;
  --walnut: #72513b;
  --copper: #a57452;
  --moss: #52644a;
  --sage: #84907a;
  --white: #fffefa;
  --whatsapp: #25d366;
  --line-dark: rgba(23, 32, 29, .15);
  --line-light: rgba(255, 254, 250, .16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Trebuchet MS", sans-serif;
  --container: min(1240px, calc(100vw - 80px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background: var(--ink-rich);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--ink-rich);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

main {
  background: var(--ivory-soft);
}

body::selection {
  color: var(--white);
  background: var(--walnut);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--copper));
  box-shadow: 0 0 16px rgba(165, 116, 82, .55);
}

.page-grain {
  position: fixed;
  inset: 0;
  z-index: 190;
  opacity: .032;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 88px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: height .35s var(--ease), background .35s ease, color .35s ease, border-color .35s ease;
}

.site-header.is-scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(248, 246, 240, .91);
  border-color: var(--line-dark);
  box-shadow: 0 8px 30px rgba(16, 23, 19, .06);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.brand-rays {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .01em;
}

.brand-copy small {
  margin-top: 5px;
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .66;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

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

.header-cta {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid currentColor;
  border-radius: 100px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease, transform .3s var(--ease);
}

.header-cta:hover {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.site-header.is-scrolled .header-cta:hover {
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 940px;
  height: max(100svh, 940px);
  padding: 148px max(5vw, calc((100vw - 1440px) / 2)) 72px;
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(16, 23, 19, .98) 0%, rgba(23, 32, 29, .98) 48%, rgba(40, 49, 43, .98) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48%;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, .15) 18%, rgba(255, 255, 255, .15) 82%, transparent);
}

.hero-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-ambient-one {
  width: 52vw;
  height: 52vw;
  top: -28vw;
  left: -12vw;
  background: radial-gradient(circle, rgba(114, 81, 59, .38), transparent 68%);
}

.hero-ambient-two {
  width: 44vw;
  height: 44vw;
  right: -20vw;
  bottom: -18vw;
  background: radial-gradient(circle, rgba(82, 100, 74, .42), transparent 70%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 24px 7vw 82px 0;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--copper);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #d7b79e;
}

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

.hero h1,
.manifesto h2,
.gallery-title-row h2,
.private-inner h2,
.location-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: .91;
  letter-spacing: -.035em;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(4.5rem, 6.4vw, 7.7rem);
}

.hero h1 em,
.manifesto h2 em,
.gallery-title-row h2 em,
.private-inner h2 em,
.location-copy h2 em,
.final-cta h2 em {
  color: #c7aa94;
  font-weight: 500;
}

.hero-intro {
  max-width: 590px;
  margin: 36px 0 0;
  color: rgba(255, 254, 250, .67);
  font-size: clamp(.98rem, 1.15vw, 1.12rem);
  line-height: 1.8;
}

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

.button {
  position: relative;
  min-height: 58px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s ease, background .35s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .4) 48%, transparent 76%);
  transform: translateX(-130%);
  transition: transform .75s var(--ease);
}

.button:hover::before {
  transform: translateX(130%);
}

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

.button-primary {
  color: var(--ink-rich);
  background: var(--ivory);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .18);
}

.button-primary:hover {
  box-shadow: 0 22px 54px rgba(0, 0, 0, .27);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .74);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform .3s var(--ease);
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero-signature {
  margin-top: 54px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, .45);
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-signature i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--copper);
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: min(100%, 690px);
  justify-self: end;
  align-self: center;
}

.hero-photo-wrap {
  position: relative;
  height: min(68vh, 720px);
  min-height: 620px;
  overflow: hidden;
  background: var(--stone);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .32);
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 23, 19, .05), transparent 52%, rgba(16, 23, 19, .36));
  pointer-events: none;
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  filter: saturate(.82) contrast(1.03);
  transform: scale(1.02);
  transition: transform 1.4s var(--ease);
}

.hero-photo-wrap:hover img {
  transform: scale(1.055);
}

.photo-index {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: 26px;
  padding: 8px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 100px;
  background: rgba(16, 23, 19, .25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.photo-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 116px;
  max-width: 170px;
  color: rgba(255, 255, 255, .78);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.08;
  text-align: right;
}

.countdown-panel {
  position: absolute;
  right: -32px;
  bottom: -48px;
  width: min(600px, calc(100% - 36px));
  padding: 24px 28px;
  color: var(--ink);
  background: rgba(241, 238, 229, .96);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .26);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.countdown-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.countdown-heading p,
.countdown-heading strong {
  margin: 0;
  font-size: .57rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.countdown-heading p {
  font-weight: 700;
}

.countdown-heading strong {
  margin-left: auto;
  color: var(--walnut);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 0 rgba(165, 116, 82, .5);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(165, 116, 82, 0); }
  100% { box-shadow: 0 0 0 0 rgba(165, 116, 82, 0); }
}

.countdown {
  padding-top: 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.countdown div {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.countdown strong {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.2vw, 3.65rem);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.04em;
}

.countdown span {
  color: rgba(23, 32, 29, .5);
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.countdown i {
  color: rgba(23, 32, 29, .25);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-style: normal;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: max(5vw, calc((100vw - 1440px) / 2));
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .38);
}

.hero-scroll span {
  position: relative;
  width: 44px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}

.hero-scroll span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--copper);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

.hero-scroll p {
  margin: 0;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.marquee {
  padding: 17px 0;
  color: var(--ivory);
  background: var(--walnut);
  overflow: hidden;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  animation: marquee 30s linear infinite;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.marquee-track i {
  color: #d8bca8;
  font-style: normal;
}

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

.section {
  padding: 140px 0;
}

.section-number {
  width: var(--container);
  margin: 0 auto 54px;
  padding-bottom: 18px;
  color: rgba(23, 32, 29, .5);
  border-bottom: 1px solid var(--line-dark);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-number.light {
  color: rgba(255, 255, 255, .45);
  border-color: var(--line-light);
}

.manifesto {
  background:
    radial-gradient(circle at 14% 10%, rgba(165, 116, 82, .09), transparent 24%),
    var(--ivory-soft);
}

.manifesto-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr);
  gap: 9vw;
  align-items: start;
}

.manifesto-kicker {
  margin: 12px 0 0;
  color: var(--walnut);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-style: italic;
  line-height: 1.08;
}

.manifesto h2,
.gallery-title-row h2,
.location-copy h2 {
  font-size: clamp(4rem, 6.8vw, 7.6rem);
}

.manifesto h2 em,
.location-copy h2 em {
  color: var(--walnut);
}

.manifesto-copy > p {
  max-width: 650px;
  margin: 36px 0 0 auto;
  color: rgba(23, 32, 29, .64);
  font-size: 1.06rem;
  line-height: 1.9;
}

.feature-rail {
  width: var(--container);
  margin: 110px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.feature-card {
  min-height: 290px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
  transition: color .4s ease, background .4s ease;
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card:hover {
  color: var(--white);
  background: var(--ink);
}

.feature-card > span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.feature-card h3 {
  max-width: 260px;
  margin: auto 0 20px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
}

.feature-card p {
  max-width: 300px;
  margin: 0;
  color: rgba(23, 32, 29, .56);
  font-size: .83rem;
  line-height: 1.7;
  transition: color .4s ease;
}

.feature-card:hover p {
  color: rgba(255, 255, 255, .55);
}

.gallery-section {
  color: var(--white);
  background: var(--ink-rich);
}

.gallery-heading,
.gallery-grid {
  width: var(--container);
  margin-inline: auto;
}

.gallery-heading .section-number {
  width: 100%;
}

.gallery-title-row {
  margin-bottom: 84px;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 8vw;
  align-items: end;
}

.gallery-title-row h2 em {
  color: #d2b29a;
}

.gallery-title-row p {
  max-width: 370px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .52);
  font-size: .94rem;
  line-height: 1.85;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 100px 36px;
  align-items: start;
}

.gallery-item {
  margin: 0;
}

.gallery-item:nth-child(3) {
  width: 82%;
  margin-left: 12%;
}

.gallery-item:nth-child(4) {
  margin-top: 80px;
}

.image-shell {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #252b27;
}

.gallery-item-tall .image-shell {
  aspect-ratio: .82 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.02);
  transition: transform 1.2s var(--ease), filter .7s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(.96) contrast(1.02);
}

.gallery-item figcaption {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-light);
}

.gallery-item figcaption span {
  color: #ba987e;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.gallery-item figcaption p {
  margin: 0;
  color: rgba(255, 255, 255, .67);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  text-align: right;
}

.private-section {
  position: relative;
  min-height: 880px;
  padding-inline: 5vw;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 45%, rgba(114, 81, 59, .25), transparent 28%),
    radial-gradient(circle at 50% 45%, transparent 0 34%, rgba(132, 144, 122, .08) 34.2% 34.5%, transparent 34.7%),
    var(--ink);
  overflow: hidden;
}

.private-section::before,
.private-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.private-section::before {
  width: min(75vw, 1050px);
  height: min(75vw, 1050px);
}

.private-section::after {
  width: min(55vw, 760px);
  height: min(55vw, 760px);
}

.private-orbit {
  position: absolute;
  z-index: 1;
  top: 52px;
  right: 5vw;
  width: 146px;
  height: 146px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
}

.private-orbit::after {
  content: "RS";
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--ink);
  border-radius: 50%;
  background: #d4b49c;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.private-orbit span {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .2em;
  animation: orbit 18s linear infinite;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.private-inner {
  position: relative;
  z-index: 2;
  max-width: 990px;
  text-align: center;
}

.private-inner .eyebrow {
  justify-content: center;
}

.private-inner h2 {
  font-size: clamp(4.4rem, 7.5vw, 8rem);
}

.private-inner h2 em {
  color: #d4b49c;
}

.private-lead {
  max-width: 700px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, .58);
  font-size: 1rem;
  line-height: 1.9;
}

.private-benefits {
  max-width: 820px;
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.private-benefits div {
  padding: 24px 18px;
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: flex-start;
  border-right: 1px solid var(--line-light);
}

.private-benefits div:last-child {
  border-right: 0;
}

.private-benefits strong {
  color: #bd9b82;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1;
}

.private-benefits span {
  color: rgba(255, 255, 255, .68);
  font-size: .7rem;
  line-height: 1.55;
  text-align: left;
}

.button-luminous {
  margin-top: 44px;
  color: var(--ink);
  background: #d7b79e;
  box-shadow: 0 0 0 8px rgba(215, 183, 158, .07), 0 18px 60px rgba(0, 0, 0, .28);
}

.location-section {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 8vw;
  align-items: center;
  background: var(--ivory-soft);
}

.location-image {
  position: relative;
  height: 760px;
  overflow: hidden;
}

.location-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(16, 23, 19, .35));
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  filter: saturate(.78);
}

.location-badge {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--ivory);
  box-shadow: 0 16px 35px rgba(0, 0, 0, .16);
}

.location-badge span {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: .9;
}

.location-badge strong {
  margin-top: 8px;
  color: var(--walnut);
  font-size: .55rem;
  letter-spacing: .2em;
}

.location-copy .section-number {
  width: 100%;
  margin-bottom: 46px;
}

.location-copy h2 {
  font-size: clamp(3.8rem, 5.7vw, 6.5rem);
}

.location-copy > p {
  margin: 34px 0 0;
  color: rgba(23, 32, 29, .62);
  font-size: .98rem;
  line-height: 1.9;
}

.location-list {
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.location-list li {
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line-dark);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.location-list span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1rem;
}

.final-cta {
  position: relative;
  min-height: 760px;
  padding: 120px 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  background: #15201b;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  opacity: .19;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, .18) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(255, 255, 255, .13) 50%, transparent 50.1%),
    radial-gradient(circle at center, rgba(165, 116, 82, .7), transparent 38%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
}

.final-cta::before {
  width: 670px;
  height: 670px;
}

.final-cta::after {
  width: 500px;
  height: 500px;
}

.final-cta > *:not(.final-cta-bg) {
  position: relative;
  z-index: 2;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  max-width: 1050px;
  font-size: clamp(4.2rem, 7.4vw, 8.2rem);
}

.final-cta h2 em {
  color: #d4b49c;
}

.final-cta > p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, .58);
}

.final-cta .button {
  margin-top: 42px;
}

.site-footer {
  min-height: 170px;
  padding: 50px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  color: rgba(255, 255, 255, .58);
  background: #0b100d;
  font-size: .66rem;
  letter-spacing: .08em;
}

.footer-brand {
  color: var(--white);
}

.site-footer > p {
  justify-self: center;
  text-align: center;
}

.site-footer > span {
  justify-self: end;
}

.floating-whatsapp {
  position: fixed;
  z-index: 150;
  right: 26px;
  bottom: 28px;
  min-width: 290px;
  min-height: 72px;
  padding: 10px 16px 10px 10px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--ink-rich);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 18px;
  background: rgba(255, 254, 250, .92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px) scale(.97);
  transition: opacity .35s ease, transform .35s var(--ease), box-shadow .35s ease;
}

.floating-whatsapp.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 1px solid rgba(37, 211, 102, .26);
  border-radius: 23px;
  animation: floatHalo 2.4s ease-out infinite;
}

@keyframes floatHalo {
  70%, 100% { transform: scale(1.06); opacity: 0; }
}

.floating-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .3);
}

.whatsapp-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 13px;
  background: var(--whatsapp);
  box-shadow: 0 9px 20px rgba(37, 211, 102, .26);
}

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

.whatsapp-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.whatsapp-copy small {
  color: rgba(23, 32, 29, .48);
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.whatsapp-copy strong {
  margin-top: 5px;
  font-size: .78rem;
  letter-spacing: -.01em;
}

.whatsapp-arrow {
  margin-left: auto;
  font-size: 1rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1100px) {
  :root {
    --container: min(100% - 48px, 980px);
  }

  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 850px;
    height: auto;
    padding: 142px 42px 96px;
    grid-template-columns: 1fr 1fr;
  }

  .hero::before {
    left: 50%;
  }

  .hero-copy {
    padding-right: 5vw;
  }

  .hero h1 {
    font-size: clamp(4rem, 7.2vw, 6rem);
  }

  .hero-photo-wrap {
    min-height: 580px;
    height: 680px;
  }

  .countdown-panel {
    right: -18px;
  }

  .countdown {
    gap: 7px;
  }

  .countdown div {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .manifesto-grid {
    gap: 5vw;
  }

  .location-section {
    gap: 5vw;
  }

  .location-image {
    height: 650px;
  }
}

@media (max-width: 800px) {
  :root {
    --container: calc(100% - 36px);
  }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
    background:
      radial-gradient(circle at 100% 12%, rgba(82, 100, 74, .2), transparent 34%),
      var(--ink-rich);
    overscroll-behavior-y: none;
  }

  .site-header,
  .site-header.is-scrolled {
    height: calc(68px + env(safe-area-inset-top, 0px));
    padding: env(safe-area-inset-top, 0px) 18px 0;
    color: var(--white);
    background: rgba(16, 23, 19, .94);
    border-color: rgba(255, 255, 255, .1);
    box-shadow: none;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

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

  .brand-copy small {
    font-size: .46rem;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 13px;
    font-size: .56rem;
  }

  .hero {
    min-height: 0;
    height: auto;
    padding: calc(118px + env(safe-area-inset-top, 0px)) 18px 96px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    padding: 0;
  }

  .eyebrow {
    margin-bottom: 18px;
    gap: 9px;
    font-size: .54rem;
    letter-spacing: .16em;
  }

  .eyebrow > span {
    width: 24px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(3.85rem, 16.5vw, 6rem);
    line-height: .88;
  }

  .hero-intro {
    margin-top: 26px;
    font-size: .91rem;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 30px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .button {
    min-height: 56px;
    padding-inline: 20px;
    font-size: .65rem;
  }

  .text-link {
    align-self: flex-start;
    margin-top: 8px;
    font-size: .6rem;
  }

  .hero-signature {
    margin-top: 30px;
    align-items: flex-start;
    gap: 9px;
    font-size: .5rem;
    line-height: 1.55;
  }

  .hero-signature i {
    margin-top: 5px;
  }

  .hero-visual {
    width: calc(100% - 22px);
    margin-top: 42px;
    align-self: flex-end;
  }

  .hero-photo-wrap {
    height: 63vh;
    min-height: 500px;
    max-height: 640px;
  }

  .hero-photo-wrap img {
    object-position: 50% 46%;
  }

  .photo-index {
    top: 16px;
    left: 16px;
  }

  .photo-caption {
    right: 14px;
    bottom: 132px;
    font-size: 1.02rem;
  }

  .countdown-panel {
    right: auto;
    bottom: -54px;
    left: -22px;
    width: calc(100% + 4px);
    padding: 18px 14px;
  }

  .countdown-heading {
    padding-bottom: 12px;
  }

  .countdown-heading p,
  .countdown-heading strong {
    font-size: .47rem;
    letter-spacing: .1em;
  }

  .countdown {
    padding-top: 12px;
    gap: 4px;
  }

  .countdown strong {
    font-size: clamp(2.15rem, 11.3vw, 3.35rem);
  }

  .countdown span {
    font-size: .4rem;
  }

  .countdown i {
    font-size: 1.5rem;
  }

  .hero-scroll {
    display: none;
  }

  .marquee {
    padding: 14px 0;
  }

  .section {
    padding: 88px 0;
  }

  .section-number {
    margin-bottom: 38px;
  }

  .manifesto-grid,
  .gallery-title-row,
  .location-section {
    grid-template-columns: 1fr;
  }

  .manifesto-grid {
    gap: 34px;
  }

  .manifesto-kicker {
    margin-top: 0;
  }

  .manifesto h2,
  .gallery-title-row h2,
  .location-copy h2 {
    font-size: clamp(3.55rem, 15vw, 5.3rem);
    line-height: .9;
  }

  .manifesto-copy > p {
    margin-top: 28px;
    font-size: .9rem;
    line-height: 1.8;
  }

  .feature-rail {
    margin-top: 68px;
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 220px;
    padding: 26px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .feature-card h3 {
    margin: 38px 0 15px;
  }

  .gallery-title-row {
    margin-bottom: 52px;
    gap: 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .gallery-item:nth-child(3) {
    width: 100%;
    margin-left: 0;
  }

  .gallery-item:nth-child(4) {
    margin-top: 0;
  }

  .gallery-item-tall .image-shell {
    aspect-ratio: 4 / 5;
  }

  .gallery-item figcaption {
    gap: 14px;
  }

  .gallery-item figcaption p {
    max-width: 64%;
    font-size: 1rem;
  }

  .private-section {
    min-height: 830px;
    padding-inline: 18px;
  }

  .private-orbit {
    top: 26px;
    right: 18px;
    width: 90px;
    height: 90px;
  }

  .private-orbit::after {
    width: 38px;
    height: 38px;
    font-size: .9rem;
  }

  .private-orbit span {
    display: none;
  }

  .private-inner h2,
  .final-cta h2 {
    font-size: clamp(3.75rem, 15.5vw, 5.8rem);
    line-height: .88;
  }

  .private-lead {
    margin-top: 28px;
    font-size: .88rem;
    line-height: 1.8;
  }

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

  .private-benefits div {
    justify-content: flex-start;
    padding: 17px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .private-benefits div:last-child {
    border-bottom: 0;
  }

  .button-luminous {
    width: 100%;
    margin-top: 34px;
  }

  .location-section {
    width: 100%;
    gap: 58px;
    padding-inline: 18px;
  }

  .location-image {
    height: 610px;
  }

  .location-copy .section-number {
    margin-bottom: 38px;
  }

  .location-copy > p {
    font-size: .9rem;
    line-height: 1.8;
  }

  .final-cta {
    min-height: 690px;
    padding-inline: 18px;
  }

  .final-cta::before {
    width: 540px;
    height: 540px;
  }

  .final-cta::after {
    width: 380px;
    height: 380px;
  }

  .final-cta .button {
    width: 100%;
    max-width: 390px;
  }

  .site-footer {
    padding: 48px 18px;
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }

  .site-footer > *,
  .site-footer > span,
  .site-footer > p {
    justify-self: center;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: auto;
    min-width: 0;
    min-height: 50px;
    padding: 6px 12px 6px 7px;
    gap: 9px;
    color: var(--white);
    border-color: rgba(215, 183, 158, .42);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(16, 23, 19, .97), rgba(39, 49, 43, .95));
    box-shadow: 0 12px 34px rgba(0, 0, 0, .28);
  }

  .floating-whatsapp::before {
    display: none;
  }

  .whatsapp-icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    color: #d7b79e;
    border: 1px solid rgba(215, 183, 158, .36);
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
  }

  .whatsapp-icon svg {
    width: 19px;
    height: 19px;
  }

  .whatsapp-copy small {
    display: none;
  }

  .whatsapp-copy strong {
    margin: 0;
    color: var(--white);
    font-size: 0;
  }

  .whatsapp-copy strong::after {
    content: "Acesso VIP";
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .whatsapp-arrow {
    margin-left: 2px;
    color: #d7b79e;
    font-size: .74rem;
  }
}

@media (max-width: 420px) {
  .header-cta {
    padding-inline: 11px;
  }

  .header-cta span {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 16vw, 4.45rem);
  }

  .countdown-heading p {
    max-width: 128px;
    line-height: 1.3;
  }

  .countdown {
    gap: 2px;
  }

  .countdown strong {
    font-size: 2.12rem;
  }

  .countdown i {
    font-size: 1.25rem;
  }

  .floating-whatsapp {
    right: 10px;
  }
}

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

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