@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #071725;
  --ink-soft: #13283a;
  --midnight: #061827;
  --midnight-2: #0b2940;
  --sky: #42c6f4;
  --sky-deep: #167db5;
  --blue: #0e79b0;
  --orange: #ef8b55;
  --orange-soft: #f5b07d;
  --sand: #f7f2eb;
  --paper: #fbfaf8;
  --line: rgba(7, 23, 37, .13);
  --line-light: rgba(255, 255, 255, .18);
  --white: #fff;
  --serif: 'Manrope', Arial, sans-serif;
  --sans: 'DM Sans', Arial, sans-serif;
  --shell: min(1180px, calc(100% - 64px));
  --shadow: 0 22px 70px rgba(4, 21, 35, .14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; color: inherit; font: inherit; }
.shell { width: var(--shell); margin: 0 auto; }
.skip-link {
  position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-160%);
  padding: 10px 16px; border-radius: 8px; background: var(--white); color: var(--ink);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; z-index: 50; top: 0; left: 0; width: 100%;
  color: var(--white); border-bottom: 1px solid transparent; transition: .35s ease;
}
.site-header.is-scrolled { background: rgba(6, 24, 39, .92); border-bottom-color: rgba(255,255,255,.12); backdrop-filter: blur(18px); }
.header-inner { display: flex; align-items: center; gap: 36px; min-height: 82px; }
.wordmark { display: inline-grid; width: 94px; grid-template-columns: auto auto; grid-template-rows: 33px 15px; column-gap: 6px; line-height: 1; }
.wordmark-sky { align-self: end; font-family: var(--serif); font-size: 31px; font-weight: 800; letter-spacing: -.09em; }
.wordmark-barra { align-self: end; padding-bottom: 2px; font-size: 9px; font-weight: 800; letter-spacing: .2em; writing-mode: vertical-rl; transform: rotate(180deg); opacity: .9; }
.wordmark-sub { grid-column: 1 / -1; font-size: 8px; font-weight: 600; letter-spacing: .24em; color: var(--sky); }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { position: relative; padding: 8px 0; color: rgba(255,255,255,.76); font-size: 13px; font-weight: 600; transition: color .2s ease; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: var(--sky); content: ''; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 50px; padding: 0 22px; border-radius: 999px; cursor: pointer;
  font-size: 13px; font-weight: 700; letter-spacing: .01em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button span { font-size: 17px; line-height: 1; }
.button-small { min-height: 42px; padding: 0 17px; font-size: 12px; }
.button-outline { border: 1px solid rgba(255,255,255,.32); color: var(--white); }
.button-outline:hover, .button-outline:focus-visible { border-color: var(--sky); background: rgba(66,198,244,.12); }
.button-primary { background: linear-gradient(110deg, #35c9f3, #117db8); box-shadow: 0 13px 32px rgba(11, 126, 184, .29); color: #031727; }
.button-primary:hover, .button-primary:focus-visible { box-shadow: 0 18px 38px rgba(11, 126, 184, .4); }
.button-ghost { border: 1px solid rgba(255,255,255,.28); color: var(--white); }
.button-ghost:hover, .button-ghost:focus-visible { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); }
.button-dark { background: var(--ink); color: var(--white); box-shadow: 0 12px 26px rgba(7,23,37,.18); }
.button-dark:hover, .button-dark:focus-visible { background: var(--blue); }
.button-blue { background: var(--blue); color: var(--white); }
.button-blue:hover, .button-blue:focus-visible { background: var(--ink); }
.button-soft { border: 1px solid rgba(14,121,176,.28); background: #eaf6fb; color: var(--blue); }
.button-soft:hover, .button-soft:focus-visible { background: #d8eff8; }
.button-white { background: var(--white); color: var(--ink); box-shadow: 0 16px 34px rgba(0,0,0,.14); }
.button-white:hover, .button-white:focus-visible { color: var(--blue); }
.button-large { min-height: 58px; padding-inline: 27px; }
.menu-toggle { display: none; width: 44px; height: 44px; margin-left: auto; padding: 11px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 19px; height: 1px; margin: 5px auto; background: var(--white); transition: transform .2s ease; }
.mobile-nav { display: none; }

.hero { position: relative; min-height: 780px; overflow: hidden; background: var(--midnight); color: var(--white); }
.hero-backdrop { position: absolute; inset: 0; background: radial-gradient(circle at 72% 35%, rgba(40, 128, 177, .3), transparent 36%), linear-gradient(120deg, #051521 0%, #072d46 57%, #11344b 100%); }
.hero-backdrop::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,15,25,.83) 0%, rgba(2,15,25,.57) 38%, rgba(2,15,25,.04) 74%), linear-gradient(0deg, rgba(2,15,25,.74), transparent 34%); content: ''; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { top: 16%; right: -4%; width: 460px; height: 460px; border: 1px solid rgba(66,198,244,.19); box-shadow: 0 0 0 48px rgba(66,198,244,.025), 0 0 0 100px rgba(66,198,244,.018); }
.hero-orb-two { right: 8%; bottom: 7%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(239,139,85,.18), transparent 68%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(430px, .88fr); align-items: center; gap: 58px; min-height: 720px; padding-top: 104px; }
.hero-copy { padding: 36px 0 72px; }
.hero-eyebrow { display: flex; align-items: center; flex-wrap: wrap; gap: 11px; margin-bottom: 26px; color: rgba(255,255,255,.68); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow-line { width: 32px; height: 1px; background: var(--orange-soft); }
.eyebrow-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--orange-soft); }
.hero h1 { max-width: 660px; margin: 0; font-family: var(--serif); font-size: clamp(54px, 7vw, 92px); font-weight: 500; letter-spacing: -.075em; line-height: .98; }
.hero h1 span { color: var(--orange-soft); }
.hero-lead { max-width: 545px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; gap: 28px; margin-top: 62px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.55); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.hero-proof span { display: flex; flex-direction: column; gap: 4px; }
.hero-proof strong { color: var(--white); font-family: var(--serif); font-size: 20px; font-weight: 600; letter-spacing: -.04em; text-transform: none; }
.hero-visual { position: relative; min-height: 570px; }
.hero-image-wrap { position: absolute; top: 25px; right: -38px; width: min(100%, 545px); height: 610px; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 270px 270px 28px 28px; box-shadow: -28px 34px 80px rgba(0,0,0,.28); transform: rotate(2deg); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 49% 51%; transform: rotate(-2deg) scale(1.045); }
.hero-image-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,17,27,.02) 45%, rgba(4,17,27,.58) 100%); }
.hero-card { position: absolute; z-index: 2; display: flex; gap: 10px; border: 1px solid rgba(255,255,255,.23); border-radius: 15px; background: rgba(5,20,32,.72); box-shadow: 0 17px 36px rgba(0,0,0,.19); backdrop-filter: blur(14px); }
.hero-card-location { right: 14px; bottom: 23px; flex-direction: column; min-width: 223px; padding: 15px 18px; }
.mini-label { color: var(--orange-soft); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero-card-location strong { font-family: var(--serif); font-size: 14px; font-weight: 600; }
.hero-card-location small { color: rgba(255,255,255,.66); font-size: 11px; }
.hero-card-status { top: 104px; left: -22px; align-items: center; padding: 11px 15px; color: rgba(255,255,255,.65); font-size: 11px; line-height: 1.35; }
.hero-card-status strong { color: var(--white); font-size: 12px; }
.status-pulse { width: 8px; height: 8px; border-radius: 50%; background: #7de2a6; box-shadow: 0 0 0 5px rgba(125,226,166,.13); }
.hero-scroll { position: absolute; right: max(32px, calc((100% - 1180px) / 2)); bottom: 30px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.hero-scroll i { display: block; width: 38px; height: 1px; background: rgba(255,255,255,.45); }

.section-dark { background: var(--ink); color: var(--white); }
.section-midnight { background: #061827; color: var(--white); }
.section-light { background: var(--paper); }
.section-sand { background: var(--sand); }
.intro { padding: 140px 0 150px; }
.intro-grid { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 52px; }
.intro-kicker, .section-label { display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.46); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.section-number { color: var(--orange-soft); font-family: var(--serif); font-size: 12px; letter-spacing: 0; }
.section-rule { width: 30px; height: 1px; background: currentColor; opacity: .7; }
.intro-content { max-width: 860px; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 17px; color: var(--orange-soft); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 1px; background: currentColor; content: ''; }
.eyebrow-blue { color: var(--blue); }
.intro h2, .location h2, .smart-section h2, .beach-section h2, .tour-section h2, .faq-section h2, .cta-section h2 { margin: 0; font-family: var(--serif); font-size: clamp(38px, 5vw, 66px); font-weight: 500; letter-spacing: -.07em; line-height: 1.05; }
.lead-text { max-width: 770px; margin: 26px 0 0; color: rgba(255,255,255,.64); font-size: 18px; line-height: 1.7; }
.line-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 76px; padding-top: 24px; border-top: 1px solid var(--line-light); }
.line-facts > div { min-width: 0; }
.fact-icon { display: block; margin-bottom: 30px; color: var(--orange-soft); font-size: 11px; letter-spacing: .12em; }
.line-facts strong { display: block; font-family: var(--serif); font-size: 20px; font-weight: 600; }
.line-facts p { margin: 9px 0 0; color: rgba(255,255,255,.52); font-size: 13px; line-height: 1.55; }

.location { padding: 142px 0 150px; }
.location-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(360px, .85fr); align-items: center; gap: 94px; }
.location-media { position: relative; padding-bottom: 36px; }
.image-frame { position: relative; overflow: hidden; border-radius: 22px; background: #d9e3e7; box-shadow: var(--shadow); }
.image-frame-wide { aspect-ratio: 1.26; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-tag { position: absolute; right: 17px; bottom: 17px; padding: 9px 12px; border-radius: 999px; background: rgba(6,24,39,.8); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(10px); }
.location-note { position: absolute; right: -28px; bottom: 0; display: flex; align-items: center; gap: 12px; min-width: 250px; padding: 17px 19px; border-radius: 16px; background: var(--white); box-shadow: 0 18px 34px rgba(5,26,40,.13); }
.pin-icon { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: #e8f5fb; color: var(--blue); font-size: 20px; }
.location-note strong, .location-note small { display: block; }
.location-note strong { font-family: var(--serif); font-size: 12px; }
.location-note small { margin-top: 2px; color: #69808f; font-size: 11px; }
.location-copy > p:not(.eyebrow) { margin: 27px 0 0; color: #526672; font-size: 17px; line-height: 1.7; }
.check-list { display: grid; gap: 13px; margin: 30px 0 34px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; color: var(--ink); font-size: 13px; font-weight: 600; }
.check-list li span { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: #e4f4f8; color: var(--blue); font-size: 12px; font-weight: 800; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; }
.text-link span { font-size: 18px; transition: transform .2s ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translate(3px, -3px); }
.text-link-blue { color: var(--blue); }
.text-link-dark { color: var(--ink); }

.rooftop { padding: 138px 0 118px; overflow: hidden; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
.section-heading > div { max-width: 680px; }
.section-heading-light { color: var(--white); }
.section-heading-light h2 { margin: 18px 0 0; font-family: var(--serif); font-size: clamp(42px, 6vw, 78px); font-weight: 500; letter-spacing: -.08em; line-height: .98; }
.section-heading > p { max-width: 315px; margin: 0; color: rgba(255,255,255,.54); font-size: 14px; line-height: 1.65; }
.feature-mosaic { display: grid; grid-template-columns: 1.18fr .82fr .82fr; grid-template-rows: 255px 255px; gap: 15px; }
.mosaic-card { position: relative; min-height: 0; overflow: hidden; padding: 0; border-radius: 18px; background: #122f43; cursor: zoom-in; text-align: left; }
.mosaic-card.mosaic-large { grid-row: span 2; }
.mosaic-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.mosaic-card:hover img, .mosaic-card:focus-visible img { transform: scale(1.05); }
.mosaic-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,16,26,.85), transparent 63%); content: ''; }
.mosaic-overlay { position: absolute; z-index: 1; right: 17px; bottom: 16px; left: 17px; display: grid; gap: 3px; color: var(--white); }
.mosaic-overlay small { color: var(--orange-soft); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.mosaic-overlay strong { max-width: 230px; font-family: var(--serif); font-size: 18px; font-weight: 600; line-height: 1.1; }
.mosaic-overlay i { position: absolute; right: 0; bottom: 0; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; display: grid; place-items: center; font-size: 15px; font-style: normal; }
.amenity-strip { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.53); font-size: 11px; letter-spacing: .04em; }
.amenity-strip span::before { display: inline-block; width: 4px; height: 4px; margin: 0 8px 2px 0; border-radius: 50%; background: var(--sky); content: ''; }

.smart-section { padding: 140px 0 0; }
.smart-grid { display: grid; grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr); align-items: center; gap: 90px; }
.section-label-blue { color: var(--blue); }
.smart-copy h2 { margin-top: 19px; font-size: clamp(38px, 5vw, 61px); }
.smart-copy > p { max-width: 510px; margin: 26px 0 0; color: #526672; font-size: 16px; line-height: 1.72; }
.smart-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 31px 0 35px; }
.smart-tags span { padding: 7px 10px; border: 1px solid rgba(14,121,176,.2); border-radius: 999px; color: var(--blue); font-size: 10px; font-weight: 700; }
.smart-media { display: grid; grid-template-columns: 1.13fr .87fr; grid-template-rows: 220px 220px; gap: 14px; }
.smart-feature { position: relative; overflow: hidden; border-radius: 19px; background: var(--ink); }
.smart-feature-main { grid-row: span 2; }
.smart-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.smart-feature:hover img { transform: scale(1.04); }
.smart-feature::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,17,27,.83), transparent 58%); content: ''; }
.smart-feature span { position: absolute; z-index: 1; right: 15px; bottom: 15px; left: 15px; display: grid; gap: 3px; color: var(--white); }
.smart-feature small { color: var(--orange-soft); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.smart-feature strong { font-family: var(--serif); font-size: 15px; line-height: 1.1; }
.smart-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 106px; padding: 28px 0 130px; border-top: 1px solid var(--line); }
.service-item span { display: block; margin-bottom: 28px; color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.service-item strong { display: block; font-family: var(--serif); font-size: 17px; font-weight: 700; }
.service-item p { margin: 8px 0 0; color: #657883; font-size: 12px; line-height: 1.6; }

.beach-section { padding: 143px 0 150px; overflow: hidden; }
.beach-grid { display: grid; grid-template-columns: minmax(330px, .8fr) minmax(0, 1.2fr); align-items: center; gap: 100px; }
.section-label-sand { color: #b16c44; }
.beach-copy h2 { margin-top: 19px; font-size: clamp(39px, 5vw, 62px); }
.beach-copy > p:not(.beach-quote) { margin: 28px 0 0; color: #606a6f; font-size: 16px; line-height: 1.74; }
.beach-quote { margin: 26px 0 34px; padding-left: 18px; border-left: 2px solid var(--orange); color: #a06443; font-family: var(--serif); font-size: 16px; font-weight: 600; line-height: 1.45; }
.beach-gallery { position: relative; min-height: 550px; }
.beach-image { position: absolute; overflow: hidden; padding: 0; border-radius: 20px; background: #d7c7b9; cursor: zoom-in; box-shadow: 0 22px 44px rgba(65,48,36,.14); }
.beach-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.beach-image:hover img, .beach-image:focus-visible img { transform: scale(1.06); }
.beach-image-main { top: 0; right: 0; width: 75%; height: 365px; }
.beach-image-small { bottom: 0; left: 3%; width: 47%; height: 220px; }
.beach-image-tall { right: 2%; bottom: 0; width: 22%; height: 220px; }
.image-expand { position: absolute; right: 14px; bottom: 14px; display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(6,24,39,.38); color: var(--white); font-size: 16px; }

.plants-section { padding: 140px 0 126px; }
.plant-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.plant-card { display: grid; grid-template-columns: .72fr 1fr; min-height: 385px; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 20px; background: rgba(255,255,255,.05); }
.plant-image { display: grid; min-height: 100%; place-items: center; padding: 25px; background: #f8f6f1; }
.plant-image img { width: 100%; max-width: 240px; max-height: 310px; object-fit: contain; }
.plant-content { padding: 31px 27px; }
.plant-kicker { color: var(--orange-soft); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.plant-content h3 { margin: 11px 0 0; font-family: var(--serif); font-size: 32px; font-weight: 600; letter-spacing: -.06em; }
.plant-content > p { margin: 12px 0 23px; color: rgba(255,255,255,.58); font-size: 13px; }
.plant-options { display: grid; gap: 13px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.15); }
.plant-options span { display: grid; gap: 2px; color: rgba(255,255,255,.6); font-size: 11px; line-height: 1.3; }
.plant-options b { color: var(--white); font-size: 12px; }
.plant-note { display: flex; align-items: center; gap: 12px; max-width: 720px; margin-top: 25px; color: rgba(255,255,255,.46); font-size: 11px; }
.plant-note span { display: grid; width: 20px; height: 20px; flex: 0 0 20px; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: var(--orange-soft); font-size: 12px; }
.plant-note p { margin: 0; }

.tour-section { padding: 138px 0 150px; }
.tour-header { display: flex; align-items: end; justify-content: space-between; gap: 42px; margin-bottom: 42px; }
.tour-header > div:first-child { max-width: 680px; }
.tour-header h2 { margin-top: 18px; font-size: clamp(42px, 5vw, 68px); }
.tour-header p:not(.eyebrow) { max-width: 580px; margin: 23px 0 0; color: #647783; font-size: 16px; line-height: 1.7; }
.tour-actions { display: flex; flex-wrap: wrap; justify-content: end; gap: 10px; }
.tour-frame { position: relative; overflow: hidden; border-radius: 24px; background: var(--ink); box-shadow: var(--shadow); }
.tour-frame iframe { display: block; width: 100%; height: min(660px, 62vw); min-height: 440px; border: 0; }
.tour-caption { display: flex; align-items: center; gap: 9px; padding: 14px 18px; background: #071b2b; color: rgba(255,255,255,.58); font-size: 11px; }
.tour-caption a { color: var(--sky); font-weight: 700; }
.tour-caption-separator { opacity: .35; }
.tour-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #82dda4; box-shadow: 0 0 0 4px rgba(130,221,164,.14); }

.cta-section { position: relative; overflow: hidden; background: linear-gradient(113deg, #0a2b43 0%, #125f87 54%, #e78954 180%); color: var(--white); }
.cta-section::before { position: absolute; top: -180px; right: -100px; width: 600px; height: 600px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02); content: ''; }
.cta-glow { position: absolute; right: 12%; bottom: -130px; width: 280px; height: 280px; border-radius: 50%; background: rgba(239,139,85,.32); filter: blur(50px); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; min-height: 360px; }
.cta-copy { max-width: 640px; }
.cta-copy h2 { font-size: clamp(35px, 4vw, 56px); }
.cta-copy p:not(.eyebrow) { max-width: 500px; margin: 21px 0 0; color: rgba(255,255,255,.7); font-size: 16px; }

.faq-section { padding: 140px 0 150px; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.faq-section h2 { margin-top: 17px; font-size: clamp(38px, 4.5vw, 59px); }
.faq-intro { margin: 25px 0 28px; color: #647783; font-size: 15px; line-height: 1.7; }
.ia-inline { display: flex; align-items: center; gap: 11px; width: 100%; padding: 12px; border: 1px solid rgba(14,121,176,.18); border-radius: 15px; background: #edf8fc; cursor: pointer; text-align: left; transition: .2s ease; }
.ia-inline:hover, .ia-inline:focus-visible { border-color: rgba(14,121,176,.42); transform: translateY(-2px); }
.ia-badge { display: grid; min-width: 29px; height: 29px; padding: 0 6px; place-items: center; border-radius: 9px; background: linear-gradient(135deg, #4bd6ef, #176db0); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .04em; }
.ia-inline > span:nth-child(2) { display: grid; gap: 1px; }
.ia-inline strong { color: var(--blue); font-size: 12px; }
.ia-inline small { color: #66818d; font-size: 10px; }
.ia-arrow { margin-left: auto; color: var(--blue); font-size: 18px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 17px; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-size: 23px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 600px; margin: -8px 40px 25px 0; color: #647783; font-size: 14px; line-height: 1.68; }

.site-footer { padding: 55px 0 24px; background: #04131f; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: .8fr 1.2fr 1fr; gap: 45px; align-items: start; padding-bottom: 48px; }
.wordmark-footer { color: var(--white); }
.footer-address, .footer-contact { display: grid; gap: 4px; }
.footer-address span, .footer-contact span { margin-bottom: 7px; color: var(--orange-soft); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-address strong, .footer-contact a { font-family: var(--serif); font-size: 15px; font-weight: 600; }
.footer-address small { color: rgba(255,255,255,.5); font-size: 12px; }
.footer-contact a { color: var(--sky); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.43); font-size: 10px; }
.footer-bottom a { color: rgba(255,255,255,.72); font-weight: 600; }

.whatsapp-float { position: fixed; z-index: 40; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 10px; padding: 9px 15px 9px 9px; border: 1px solid rgba(255,255,255,.8); border-radius: 999px; background: #1ebc6c; box-shadow: 0 14px 31px rgba(9,68,43,.3); color: var(--white); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-float:hover, .whatsapp-float:focus-visible { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(9,68,43,.4); }
.whatsapp-float img { width: 33px; height: 33px; object-fit: contain; }
.whatsapp-float span { display: grid; gap: 0; text-align: left; }
.whatsapp-float small { font-size: 9px; opacity: .75; }
.whatsapp-float strong { font-size: 12px; }

.ia-sol-toggle { position: fixed; z-index: 45; right: 22px; bottom: 88px; display: flex; align-items: center; gap: 7px; padding: 7px 10px 7px 7px; border: 1px solid rgba(14,121,176,.27); border-radius: 999px; background: var(--white); box-shadow: 0 12px 27px rgba(7,23,37,.16); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.ia-sol-toggle:hover, .ia-sol-toggle:focus-visible { transform: translateY(-3px); box-shadow: 0 17px 34px rgba(7,23,37,.2); }
.ia-sol-toggle .ia-badge { min-width: 28px; height: 28px; border-radius: 50%; }
.ia-sol-name { color: var(--blue); font-size: 12px; font-weight: 800; }
.ia-plus { display: grid; width: 16px; height: 16px; place-items: center; border-radius: 50%; background: #e9f6fb; color: var(--blue); font-size: 15px; line-height: 1; }
.ia-sol-panel { position: fixed; z-index: 44; right: 22px; bottom: 137px; width: min(350px, calc(100% - 32px)); padding: 18px; border: 1px solid rgba(14,121,176,.18); border-radius: 20px; background: var(--white); box-shadow: 0 24px 70px rgba(5,33,51,.25); }
.ia-panel-head { display: flex; align-items: center; justify-content: space-between; }
.ia-panel-head > div { display: flex; align-items: center; gap: 8px; color: var(--blue); }
.ia-panel-head > div strong { font-size: 15px; }
.ia-panel-head button { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; background: #edf7fa; color: var(--blue); cursor: pointer; font-size: 20px; line-height: 1; }
.ia-greeting { margin: 16px 0 12px; color: #526672; font-size: 13px; line-height: 1.55; }
.ia-questions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
.ia-questions button { min-height: 42px; padding: 7px 9px; border: 1px solid rgba(14,121,176,.18); border-radius: 10px; background: #f5fbfd; color: var(--blue); cursor: pointer; font-size: 10px; font-weight: 700; line-height: 1.25; }
.ia-questions button:hover, .ia-questions button:focus-visible { border-color: var(--blue); background: #eaf7fb; }
.ia-answer { min-height: 52px; margin-top: 12px; padding: 11px 12px; border-left: 2px solid var(--orange); background: #faf6f1; color: #5e6d72; font-size: 11px; line-height: 1.5; }
.ia-whatsapp { display: flex; align-items: center; gap: 8px; margin-top: 12px; padding: 11px 12px; border-radius: 10px; background: #e9f8f0; color: #16874f; font-size: 11px; font-weight: 800; }
.ia-whatsapp .ia-badge { min-width: 22px; height: 22px; border-radius: 6px; font-size: 8px; }
.ia-whatsapp > span:last-child { margin-left: auto; font-size: 16px; }
.ia-disclaimer { display: block; margin-top: 11px; color: #8a989c; font-size: 9px; line-height: 1.4; }

.lightbox { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 30px; background: rgba(2,12,20,.9); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox figure { max-width: min(1100px, 100%); max-height: 100%; margin: 0; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 100px); object-fit: contain; border-radius: 12px; box-shadow: 0 20px 70px rgba(0,0,0,.32); }
.lightbox figcaption { margin-top: 10px; color: rgba(255,255,255,.68); font-size: 12px; text-align: center; }
.lightbox-close { position: absolute; top: 18px; right: 20px; display: grid; width: 43px; height: 43px; place-items: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; background: rgba(0,0,0,.2); color: var(--white); cursor: pointer; font-size: 28px; font-weight: 300; line-height: 1; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid rgba(66,198,244,.72); outline-offset: 4px; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 44px, 760px); }
  .desktop-nav { display: none; }
  .header-inner { min-height: 72px; }
  .header-inner > .button { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { position: absolute; top: 72px; right: 0; left: 0; display: grid; gap: 5px; padding: 16px 22px 22px; border-bottom: 1px solid rgba(255,255,255,.12); background: rgba(6,24,39,.96); transform: translateY(-160%); transition: transform .3s ease; }
  .mobile-nav.is-open { transform: translateY(0); }
  .mobile-nav a:not(.button) { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.76); font-size: 14px; }
  .mobile-nav .button { margin-top: 10px; }
  .hero { min-height: 900px; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; padding-top: 122px; }
  .hero-copy { padding: 30px 0 0; }
  .hero-visual { min-height: 430px; margin-top: 12px; }
  .hero-image-wrap { top: 18px; right: 0; width: min(500px, 75vw); height: 465px; }
  .hero-card-status { top: 70px; left: 4px; }
  .hero-card-location { right: 8px; bottom: 8px; }
  .hero-scroll { display: none; }
  .location-grid, .smart-grid, .beach-grid { gap: 50px; }
  .faq-grid { gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .wordmark-footer { grid-row: span 2; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 36px); }
  .header-inner { min-height: 67px; }
  .wordmark { transform: scale(.9); transform-origin: left center; }
  .mobile-nav { top: 67px; }
  .hero { min-height: 880px; }
  .hero-grid { min-height: 820px; padding-top: 102px; }
  .hero-copy { padding-top: 26px; }
  .hero-eyebrow { gap: 8px; font-size: 9px; line-height: 1.7; }
  .hero h1 { max-width: 440px; font-size: clamp(49px, 15vw, 72px); }
  .hero-lead { font-size: 15px; line-height: 1.6; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 16px; margin-top: 34px; padding-top: 15px; }
  .hero-proof strong { font-size: 17px; }
  .hero-proof span { font-size: 9px; }
  .hero-visual { min-height: 400px; margin-top: 7px; }
  .hero-image-wrap { width: 91%; height: 402px; border-radius: 210px 210px 20px 20px; }
  .hero-card-status { top: 45px; left: -4px; transform: scale(.88); transform-origin: left top; }
  .hero-card-location { right: 0; bottom: 7px; min-width: 204px; transform: scale(.9); transform-origin: right bottom; }
  .intro, .location, .rooftop, .smart-section, .beach-section, .plants-section, .tour-section, .faq-section { padding-top: 88px; padding-bottom: 94px; }
  .intro-grid, .location-grid, .smart-grid, .beach-grid, .faq-grid { grid-template-columns: 1fr; gap: 42px; }
  .intro-kicker { order: -1; }
  .intro h2, .location h2, .smart-section h2, .beach-section h2, .tour-section h2, .faq-section h2 { font-size: clamp(37px, 11vw, 53px); }
  .lead-text { font-size: 16px; }
  .line-facts { grid-template-columns: 1fr; gap: 27px; margin-top: 52px; }
  .fact-icon { margin-bottom: 11px; }
  .location-media { padding-bottom: 37px; }
  .location-note { right: 8px; min-width: 230px; padding: 13px 14px; }
  .location-copy > p:not(.eyebrow), .smart-copy > p, .beach-copy > p:not(.beach-quote), .tour-header p:not(.eyebrow) { font-size: 15px; }
  .section-heading, .tour-header, .cta-inner { display: grid; align-items: start; gap: 25px; }
  .section-heading { margin-bottom: 31px; }
  .section-heading > p { max-width: 100%; }
  .feature-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 230px 160px 160px; gap: 9px; }
  .mosaic-card.mosaic-large { grid-row: span 2; }
  .mosaic-card:nth-child(5) { grid-column: span 2; }
  .mosaic-overlay { right: 10px; bottom: 10px; left: 10px; }
  .mosaic-overlay strong { font-size: 14px; }
  .mosaic-overlay i { width: 24px; height: 24px; font-size: 12px; }
  .amenity-strip { gap: 8px 16px; }
  .smart-grid { gap: 48px; }
  .smart-media { grid-template-columns: 1fr 1fr; grid-template-rows: 190px 150px; gap: 8px; }
  .smart-feature-main { grid-row: span 2; }
  .smart-feature strong { font-size: 12px; }
  .smart-services { grid-template-columns: 1fr 1fr; gap: 30px 18px; margin-top: 62px; padding-bottom: 0; }
  .service-item span { margin-bottom: 13px; }
  .service-item p { font-size: 11px; }
  .beach-gallery { min-height: 470px; }
  .beach-image-main { width: 88%; height: 290px; }
  .beach-image-small { left: 0; width: 59%; height: 170px; }
  .beach-image-tall { right: 0; width: 28%; height: 170px; }
  .plant-cards { grid-template-columns: 1fr; gap: 15px; }
  .plant-card { grid-template-columns: .76fr 1fr; min-height: 310px; }
  .plant-image { padding: 14px; }
  .plant-content { padding: 22px 16px; }
  .plant-content h3 { font-size: 25px; }
  .plant-content > p { font-size: 11px; }
  .plant-options { gap: 9px; padding-top: 11px; }
  .plant-options span, .plant-options b { font-size: 10px; }
  .plant-note { align-items: start; font-size: 10px; }
  .tour-actions { justify-content: start; }
  .tour-actions .button { width: 100%; }
  .tour-frame iframe { height: 66vh; min-height: 360px; }
  .cta-inner { min-height: 440px; padding-top: 85px; padding-bottom: 85px; }
  .cta-copy p:not(.eyebrow) { font-size: 15px; }
  .cta-inner > .button { width: 100%; }
  .faq-grid { gap: 40px; }
  .faq-list summary { padding: 21px 0; font-size: 15px; }
  .faq-list details p { margin-right: 0; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .wordmark-footer { grid-row: auto; }
  .footer-bottom { align-items: start; flex-direction: column; gap: 9px; }
  .whatsapp-float { right: 15px; bottom: 15px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 54px; height: 54px; padding: 8px; justify-content: center; }
  .whatsapp-float img { width: 38px; height: 38px; }
  .ia-sol-toggle { right: 15px; bottom: 80px; }
  .ia-sol-panel { right: 15px; bottom: 133px; }
}

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