:root {
  --navy: #754127;
  --navy-deep: #34251f;
  --ocean: #ad5b32;
  --ocean-bright: #d37d49;
  --sky: #fbf0df;
  --sun: #d8ad42;
  --green: #85803b;
  --ink: #43362f;
  --muted: #756861;
  --line: #eadfd5;
  --paper: #ffffff;
  --soft: #faf6f1;
  --shadow: 0 24px 70px rgba(52, 37, 31, .14);
  --radius: 22px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy-deep);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 86px;
  border-bottom: 1px solid rgba(117, 65, 39, .12);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled { height: 76px; box-shadow: 0 10px 40px rgba(3, 35, 52, .09); }
.header-inner {
  width: min(calc(100% - 40px), 1280px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; height: 74px; flex: 0 0 auto; }
.brand img { width: auto; height: 68px; max-width: 190px; object-fit: contain; transition: height .25s ease; }
.site-header.is-scrolled .brand img { height: 59px; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 780;
  letter-spacing: .01em;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--ocean-bright);
  transition: right .25s ease;
}
.main-nav a:not(.nav-cta):hover::after, .main-nav a:not(.nav-cta):focus-visible::after { right: 0; }
.main-nav .nav-cta {
  padding: 12px 19px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 26px rgba(117, 65, 39, .2);
  transition: transform .2s ease, background .2s ease;
}
.main-nav .nav-cta:hover { background: var(--ocean); transform: translateY(-2px); }
.menu-toggle { display: none; border: 0; color: var(--navy); background: none; font-weight: 800; cursor: pointer; }

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 86px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-media, .hero-overlay { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(52, 37, 31, .94) 0%, rgba(52, 37, 31, .76) 43%, rgba(52, 37, 31, .12) 75%),
    linear-gradient(0deg, rgba(52, 37, 31, .62) 0%, transparent 38%);
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .58fr);
  align-items: end;
  gap: 72px;
  padding-block: 94px 88px;
}
.hero-copy { max-width: 720px; align-self: center; }
.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .88);
  font-size: .79rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow span { width: 36px; height: 3px; border-radius: 2px; background: var(--sun); }
.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3.4rem, 7.2vw, 6.4rem);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 900;
  text-shadow: 0 4px 32px rgba(0, 0, 0, .18);
}
.hero h1 em {
  display: inline-block;
  margin-top: 14px;
  color: var(--sun);
  font-size: .49em;
  line-height: 1;
  letter-spacing: -.035em;
  font-style: normal;
}
.hero-lead { margin: 30px 0 0; max-width: 670px; color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button {
  min-height: 50px;
  padding: 14px 23px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-deep); background: var(--sun); box-shadow: 0 14px 34px rgba(255, 211, 35, .24); }
.button-primary:hover { background: #ffe15f; box-shadow: 0 18px 40px rgba(255, 211, 35, .3); }
.button-ghost { color: #fff; border: 1px solid rgba(255,255,255,.5); background: rgba(255,255,255,.09); backdrop-filter: blur(9px); }
.button-ghost:hover { background: rgba(255,255,255,.17); }
.hero-proof { margin: 20px 0 0; color: rgba(255,255,255,.7); font-size: .82rem; }
.hero-card {
  align-self: end;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 24px;
  background: rgba(52, 37, 31, .7);
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
}
.hero-card-label { display: block; margin-bottom: 20px; color: #fff; font-size: .82rem; font-weight: 800; letter-spacing: .05em; }
.hero-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden; border-radius: 14px; background: rgba(255,255,255,.15); }
.hero-card-grid div { padding: 18px 14px; display: flex; flex-direction: column; background: rgba(4, 63, 91, .68); }
.hero-card-grid strong { color: var(--sun); font-size: 1.25rem; line-height: 1.2; }
.hero-card-grid span { margin-top: 4px; color: rgba(255,255,255,.75); font-size: .75rem; }
.hero-card small { display: block; margin-top: 16px; color: rgba(255,255,255,.58); font-size: .72rem; line-height: 1.45; }
.hero-scroll {
  position: absolute;
  bottom: 27px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.65);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.hero-scroll span { width: 16px; height: 26px; border: 1px solid rgba(255,255,255,.55); border-radius: 10px; position: relative; }
.hero-scroll span::after { content: ""; position: absolute; top: 5px; left: 50%; width: 3px; height: 5px; border-radius: 2px; background: var(--sun); transform: translateX(-50%); animation: scroll-dot 1.7s infinite; }
@keyframes scroll-dot { 0% { opacity: 0; transform: translate(-50%, 0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 9px); } }

.section-kicker { margin: 0 0 10px; color: var(--ocean); font-size: .76rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.section-kicker.light { color: #83def4; }
.section-heading { margin-bottom: 44px; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .65fr); align-items: end; gap: 70px; }
.section-heading.compact { margin-bottom: 34px; }
.section-heading h2, .project-copy h2, .ocean-layout h2, .contact-copy h2, .efficiency-layout h2, .location-copy h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.2rem, 4.4vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 900;
}
.section-heading > p { margin: 0; color: var(--muted); }

.index-section { padding-block: 88px 96px; }
.index-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.index-grid a {
  min-height: 166px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 12px;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.index-grid a:hover { position: relative; z-index: 2; color: #fff; background: var(--ocean); transform: translateY(-4px); box-shadow: 0 18px 40px rgba(7,127,173,.18); }
.index-grid span { grid-row: 1 / 3; color: var(--ocean-bright); font-size: .8rem; font-weight: 900; }
.index-grid a:hover span, .index-grid a:hover small { color: rgba(255,255,255,.72); }
.index-grid strong { font-size: 1.04rem; }
.index-grid small { color: var(--muted); font-size: .8rem; }

.stats-band { background: var(--navy-deep); color: #fff; }
.stats-grid { min-height: 128px; display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); align-items: stretch; }
.stats-grid div { padding: 28px 24px; border-left: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; justify-content: center; }
.stats-grid div:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.stats-grid strong { color: var(--sun); font-size: clamp(1.45rem, 2.4vw, 2rem); line-height: 1.1; }
.stats-grid span { margin-top: 6px; color: rgba(255,255,255,.62); font-size: .76rem; text-transform: uppercase; letter-spacing: .07em; }

.project-section { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); align-items: center; gap: 86px; }
.project-copy > p:not(.section-kicker) { color: var(--muted); }
.project-copy h2 { margin-bottom: 28px; }
.project-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 30px; }
.project-highlights span { padding: 9px 13px; border-radius: 999px; color: var(--navy); background: var(--sky); font-size: .77rem; font-weight: 800; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ocean); font-weight: 850; text-decoration: none; }
.text-link b { transition: transform .2s ease; }
.text-link:hover b { transform: translateX(4px); }
.image-card { position: relative; margin: 0; border-radius: 4px 42px 4px 42px; overflow: hidden; box-shadow: var(--shadow); }
.image-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(52,37,31,.8), transparent 42%); pointer-events: none; }
.image-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .7s ease; }
.image-card:hover img { transform: scale(1.025); }
.image-card figcaption { position: absolute; z-index: 2; left: 28px; bottom: 24px; color: #fff; display: flex; flex-direction: column; }
.image-card figcaption strong { font-size: 1.12rem; }
.image-card figcaption span { color: rgba(255,255,255,.68); font-size: .82rem; }

.ocean-band { padding: 72px 0; color: #fff; background: linear-gradient(115deg, #754127 0%, #ad5b32 58%, #d37d49 100%); overflow: hidden; }
.ocean-layout { display: grid; grid-template-columns: 220px 1fr; align-items: center; gap: 64px; }
.ocean-mark { width: 196px; height: 196px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; display: grid; place-content: center; text-align: center; box-shadow: inset 0 0 0 18px rgba(255,255,255,.05); }
.ocean-mark span { color: var(--sun); font-size: 5.2rem; font-weight: 950; line-height: .75; letter-spacing: -.08em; }
.ocean-mark small { margin-top: 14px; color: #fff; font-size: .9rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.ocean-layout h2 { color: #fff; max-width: 900px; }
.ocean-layout p:not(.section-kicker) { max-width: 880px; margin: 20px 0 12px; color: rgba(255,255,255,.82); font-size: 1.06rem; }
.ocean-layout > div > small { color: rgba(255,255,255,.55); font-size: .72rem; }

.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.type-card { position: relative; min-height: 320px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: 0 14px 40px rgba(6,51,77,.05); }
.type-card::after { content: ""; position: absolute; right: -50px; bottom: -70px; width: 160px; height: 160px; border: 24px solid var(--sky); border-radius: 50%; }
.type-card.featured { color: #fff; border-color: transparent; background: var(--navy); }
.type-card.featured::after { border-color: rgba(255,255,255,.07); }
.type-index { color: var(--ocean-bright); font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.type-card.featured .type-index { color: var(--sun); }
.type-label { margin: 28px 0 3px; color: var(--muted); font-size: .76rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.type-card.featured .type-label { color: rgba(255,255,255,.58); }
.type-card h3 { margin: 0; color: var(--navy-deep); font-size: 1.45rem; line-height: 1.25; }
.type-card.featured h3 { color: #fff; }
.type-card > strong { display: block; margin-top: 16px; color: var(--ocean); font-size: 2rem; line-height: 1; }
.type-card.featured > strong { color: var(--sun); }
.type-card > p:last-child { position: relative; z-index: 1; color: var(--muted); font-size: .88rem; }
.type-card.featured > p:last-child { color: rgba(255,255,255,.72); }
.plans-grid { margin-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan-card { padding: 0; border: 1px solid var(--line); border-radius: 17px; overflow: hidden; color: var(--ink); background: #fff; text-align: left; cursor: zoom-in; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.plan-card:hover { transform: translateY(-5px); border-color: #b5dce9; box-shadow: 0 20px 45px rgba(6,51,77,.1); }
.plan-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: #f8fbfc; }
.plan-card > span { padding: 17px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.plan-card > span strong { font-size: .9rem; }
.plan-card > span small { color: var(--ocean); font-size: .72rem; font-weight: 800; }
.legal-note { margin: 18px 0 0; color: #748793; font-size: .73rem; }

.leisure-section { color: #fff; background: var(--navy-deep); }
.light-heading h2 { color: #fff; }
.light-heading > p { color: rgba(255,255,255,.64); }
.leisure-showcase { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .7fr); gap: 18px; }
.leisure-showcase figure { position: relative; margin: 0; border-radius: 20px; overflow: hidden; background: var(--navy); }
.leisure-showcase figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,35,52,.8), transparent 47%); pointer-events: none; }
.leisure-showcase img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.leisure-showcase figure:hover img { transform: scale(1.025); }
.leisure-main { min-height: 620px; }
.leisure-main figcaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 26px; display: flex; align-items: center; gap: 18px; }
.leisure-main figcaption > span { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: var(--navy-deep); background: var(--sun); font-size: .72rem; font-weight: 900; }
.leisure-main figcaption div { display: flex; flex-direction: column; }
.leisure-main figcaption strong { font-size: 1.28rem; }
.leisure-main figcaption small { color: rgba(255,255,255,.7); }
.leisure-side { display: grid; gap: 18px; }
.leisure-side figure { min-height: 300px; }
.leisure-side figcaption { position: absolute; z-index: 2; left: 22px; bottom: 19px; font-size: .9rem; font-weight: 850; }
.amenity-list { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 9px; }
.amenity-list span { padding: 9px 14px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; color: rgba(255,255,255,.73); background: rgba(255,255,255,.04); font-size: .76rem; font-weight: 750; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 255px; gap: 14px; }
.gallery-item { position: relative; padding: 0; border: 0; border-radius: 16px; overflow: hidden; background: var(--soft); cursor: zoom-in; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.portrait { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .55s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(52,37,31,.76), transparent 52%); }
.gallery-item span { position: absolute; z-index: 1; left: 18px; bottom: 15px; color: #fff; font-size: .82rem; font-weight: 850; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.06); }

.efficiency-section { padding-block: 88px; background: var(--soft); }
.efficiency-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.efficiency-layout h2 { font-size: clamp(2.15rem, 3.7vw, 3.5rem); }
.efficiency-layout > div:first-child > p:not(.section-kicker) { color: var(--muted); }
.efficiency-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.efficiency-grid span { min-height: 84px; padding: 20px 24px 20px 52px; display: flex; align-items: center; position: relative; background: #fff; font-size: .85rem; font-weight: 750; }
.efficiency-grid span::before { content: "✓"; position: absolute; left: 21px; color: var(--green); font-weight: 950; }

.location-section { background: linear-gradient(180deg, #fff 0%, #faf3ea 100%); }
.location-layout { display: grid; grid-template-columns: minmax(0, .72fr) minmax(520px, 1.28fr); gap: 72px; align-items: center; }
.location-copy > p:not(.section-kicker) { color: var(--muted); }
.address-card { margin-top: 30px; padding: 25px; border-left: 5px solid var(--sun); border-radius: 0 15px 15px 0; display: flex; flex-direction: column; background: #fff; box-shadow: 0 14px 40px rgba(6,51,77,.08); }
.address-card small { color: var(--muted); font-size: .7rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.address-card strong { margin-top: 8px; color: var(--navy-deep); font-size: 1.14rem; }
.address-card > span { color: var(--muted); font-size: .84rem; }
.address-card .text-link { margin-top: 15px; font-size: .82rem; }
.map-card { position: relative; padding: 0; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: #fff; box-shadow: var(--shadow); cursor: zoom-in; }
.map-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }
.map-card > span { position: absolute; right: 15px; bottom: 14px; padding: 8px 12px; border-radius: 999px; color: #fff; background: rgba(3,35,52,.85); font-size: .68rem; font-weight: 800; }
.nearby-grid { margin-top: 45px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.nearby-grid article { padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.8); }
.nearby-grid strong { display: block; color: var(--ocean); font-size: 1.02rem; }
.nearby-grid span { display: block; margin-top: 7px; color: var(--muted); font-size: .82rem; }
.location-note { margin-top: 14px; color: #7a8d98; font-size: .7rem; }

.contact-section { color: #fff; background:
  radial-gradient(circle at 85% 20%, rgba(211,125,73,.27), transparent 26%),
  linear-gradient(125deg, #34251f 0%, #754127 100%);
}
.contact-layout { display: grid; grid-template-columns: 1fr minmax(360px, .72fr); gap: 92px; align-items: center; }
.contact-copy h2 { color: #fff; }
.contact-copy > p:not(.section-kicker) { max-width: 650px; color: rgba(255,255,255,.69); font-size: 1.04rem; }
.contact-points { margin-top: 30px; display: flex; flex-direction: column; gap: 8px; color: rgba(255,255,255,.84); font-size: .86rem; font-weight: 760; }
.lead-form { padding: 30px; border-radius: 22px; color: var(--ink); background: #fff; box-shadow: 0 26px 70px rgba(0,0,0,.25); }
.lead-form label { display: block; margin-bottom: 16px; font-size: .77rem; font-weight: 850; }
.lead-form input, .lead-form select { width: 100%; min-height: 50px; margin-top: 7px; padding: 12px 14px; border: 1px solid #ccdde4; border-radius: 10px; color: var(--ink); background: #f9fcfd; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.lead-form input:focus, .lead-form select:focus { border-color: var(--ocean-bright); box-shadow: 0 0 0 4px rgba(9,167,212,.12); }
.lead-form .check-label { margin: 5px 0 18px; display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: .72rem; font-weight: 650; }
.lead-form .check-label input { width: 17px; min-height: 17px; margin: 2px 0 0; }
.lead-form .button { width: 100%; }
.lead-form > small { display: block; margin-top: 12px; color: #7b8d98; text-align: center; font-size: .68rem; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 23px 60px 23px 0; color: var(--navy-deep); font-weight: 850; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before, .faq-list summary::after { content: ""; position: absolute; right: 10px; top: 50%; width: 16px; height: 2px; background: var(--ocean); transition: transform .25s ease; }
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list details p { max-width: 900px; margin: -6px 0 23px; color: var(--muted); }

.site-footer { padding: 38px 0; color: rgba(255,255,255,.68); background: #251a16; }
.footer-layout { display: grid; grid-template-columns: 78px auto 1fr; align-items: center; gap: 20px; }
.footer-layout img { width: 78px; max-height: 76px; padding: 5px; border-radius: 7px; object-fit: contain; background: #fff; }
.footer-layout div { display: flex; flex-direction: column; }
.footer-layout div strong { color: #fff; }
.footer-layout div span { font-size: .75rem; }
.footer-layout p { justify-self: end; max-width: 560px; margin: 0; text-align: right; font-size: .7rem; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  min-height: 58px;
  padding: 9px 18px 9px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: #1fa855;
  box-shadow: 0 16px 40px rgba(31,168,85,.34);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 20px 45px rgba(31,168,85,.42); }
.whatsapp-float svg { width: 39px; height: 39px; padding: 7px; border-radius: 50%; fill: #fff; background: rgba(255,255,255,.12); }
.whatsapp-float span { display: flex; flex-direction: column; line-height: 1.05; }
.whatsapp-float small { margin-bottom: 4px; color: rgba(255,255,255,.72); font-size: .61rem; text-transform: uppercase; letter-spacing: .08em; }
.whatsapp-float strong { font-size: .86rem; }

.assistant-trigger {
  position: fixed;
  left: 20px;
  bottom: 22px;
  z-index: 900;
  min-height: 47px;
  padding: 9px 16px 9px 10px;
  border: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 14px 35px rgba(3,35,52,.26);
  cursor: pointer;
}
.assistant-trigger span { width: 29px; height: 29px; border-radius: 50%; display: grid; place-items: center; color: var(--navy-deep); background: var(--sun); }
.assistant-trigger strong { font-size: .76rem; }
.assistant-panel {
  position: fixed;
  left: 20px;
  bottom: 80px;
  z-index: 950;
  width: min(370px, calc(100vw - 40px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 26px 80px rgba(3,35,52,.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.98);
  transform-origin: left bottom;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.assistant-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.assistant-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.assistant-head > div { display: flex; flex-direction: column; }
.assistant-head span { color: var(--ocean); font-size: .65rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.assistant-head strong { color: var(--navy-deep); font-size: 1.2rem; }
.assistant-close { width: 34px; height: 34px; border: 0; border-radius: 50%; color: var(--navy); background: var(--soft); font-size: 1.4rem; line-height: 1; cursor: pointer; }
.assistant-messages {
  max-height: 210px;
  margin: 14px -4px 12px 0;
  padding-right: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}
.assistant-bubble {
  max-width: 92%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: .78rem;
  line-height: 1.5;
  white-space: pre-wrap;
}
.assistant-bubble-bot { align-self: flex-start; border-radius: 4px 12px 12px; color: #65534a; background: var(--soft); }
.assistant-bubble-user { align-self: flex-end; border-radius: 12px 4px 12px 12px; color: #fff; background: var(--ocean); }
.assistant-choices { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 11px; }
.assistant-choices button {
  padding: 6px 9px;
  border: 1px solid #e5d7ca;
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font: inherit;
  font-size: .67rem;
  font-weight: 800;
  cursor: pointer;
}
.assistant-choices button:hover, .assistant-choices button:focus-visible { color: #fff; border-color: var(--ocean); background: var(--ocean); }
.assistant-choices button:disabled { opacity: .5; cursor: wait; }
.assistant-form { margin: 0; }
.assistant-form textarea {
  width: 100%;
  min-height: 66px;
  max-height: 130px;
  padding: 11px 12px;
  resize: vertical;
  border: 1px solid #dccbbb;
  border-radius: 11px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: .78rem;
  line-height: 1.45;
}
.assistant-form textarea::placeholder { color: #8e837c; }
.assistant-form textarea:disabled { background: #f7f4f1; cursor: wait; }
.assistant-form-actions { margin-top: 8px; display: flex; align-items: center; gap: 10px; }
.assistant-submit {
  min-height: 38px;
  padding: 8px 13px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font: inherit;
  font-size: .73rem;
  font-weight: 900;
  cursor: pointer;
}
.assistant-submit:disabled { opacity: .62; cursor: wait; }
.assistant-lead-link { color: var(--ocean); font-size: .7rem; font-weight: 850; }
.assistant-status { min-height: 17px; margin: 6px 0 0; color: var(--ocean); font-size: .66rem; font-weight: 800; }
.assistant-privacy { margin: 3px 0 10px; color: #84949d; font-size: .6rem; line-height: 1.35; }
.assistant-cta {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: #1f9d55;
  font-size: .75rem;
  font-weight: 900;
  text-align: center;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  padding: 64px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(1, 20, 30, .94);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1200px, 95vw); max-height: 80vh; border-radius: 10px; object-fit: contain; box-shadow: 0 24px 70px rgba(0,0,0,.45); }
.lightbox p { margin: 14px 0 0; color: rgba(255,255,255,.74); text-align: center; }
.lightbox-close { position: absolute; top: 18px; right: 22px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; color: #fff; background: rgba(255,255,255,.08); font-size: 1.8rem; line-height: 1; cursor: pointer; }

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

@media (max-width: 1080px) {
  .main-nav { gap: 17px; }
  .main-nav a { font-size: .8rem; }
  .hero-layout { gap: 36px; }
  .project-section { gap: 50px; }
  .location-layout { grid-template-columns: .8fr 1.2fr; gap: 44px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 76px; }
  .site-header, .site-header.is-scrolled { height: 74px; }
  .brand img, .site-header.is-scrolled .brand img { height: 58px; }
  .menu-toggle { display: flex; align-items: center; gap: 9px; }
  .menu-toggle i, .menu-toggle i::before, .menu-toggle i::after { display: block; width: 22px; height: 2px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle i { position: relative; }
  .menu-toggle i::before, .menu-toggle i::after { content: ""; position: absolute; left: 0; }
  .menu-toggle i::before { top: -7px; }
  .menu-toggle i::after { top: 7px; }
  .menu-toggle[aria-expanded="true"] i { background: transparent; }
  .menu-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }
  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 20px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 2px;
    background: #fff;
    box-shadow: 0 22px 45px rgba(3,35,52,.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 11px 8px; font-size: .9rem; }
  .main-nav a::after { display: none; }
  .main-nav .nav-cta { margin-top: 7px; justify-content: center; text-align: center; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 34px; padding-block: 94px 70px; }
  .hero-card { width: min(520px, 100%); }
  .hero-scroll { display: none; }
  .section { padding-block: 82px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .index-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid div:nth-child(4), .stats-grid div:nth-child(5) { border-top: 1px solid rgba(255,255,255,.12); }
  .project-section { grid-template-columns: 1fr; }
  .ocean-layout { grid-template-columns: 170px 1fr; gap: 38px; }
  .ocean-mark { width: 160px; height: 160px; }
  .ocean-mark span { font-size: 4.2rem; }
  .type-grid, .plans-grid { grid-template-columns: 1fr; }
  .type-card { min-height: 250px; }
  .plan-card { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; }
  .plan-card img { aspect-ratio: 4 / 3; }
  .plan-card > span { align-items: flex-start; flex-direction: column; }
  .leisure-showcase { grid-template-columns: 1fr; }
  .leisure-main { min-height: 500px; }
  .leisure-side { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .efficiency-layout { grid-template-columns: 1fr; gap: 38px; }
  .location-layout { grid-template-columns: 1fr; }
  .map-card { order: -1; }
  .contact-layout { grid-template-columns: 1fr; gap: 46px; }
  .footer-layout { grid-template-columns: 64px 1fr; }
  .footer-layout p { grid-column: 1 / -1; justify-self: start; text-align: left; }
}

@media (max-width: 620px) {
  .container, .header-inner { width: min(calc(100% - 28px), var(--container)); }
  .brand img, .site-header.is-scrolled .brand img { height: 54px; }
  .menu-toggle span { display: none; }
  .hero-media img { object-position: 52% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(52,37,31,.94), rgba(52,37,31,.58)), linear-gradient(0deg, rgba(52,37,31,.8), transparent 50%); }
  .hero-layout { padding-block: 74px 54px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero h1 em { margin-top: 12px; font-size: .47em; }
  .hero-lead { margin-top: 24px; font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-card { padding: 20px; }
  .section { padding-block: 66px; }
  .section-heading h2, .project-copy h2, .ocean-layout h2, .contact-copy h2, .efficiency-layout h2, .location-copy h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .index-section { padding-block: 62px 68px; }
  .index-grid { grid-template-columns: 1fr; }
  .index-grid a { min-height: 122px; padding: 22px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid div { min-height: 106px; padding: 20px 15px; }
  .stats-grid div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.12); }
  .stats-grid div:last-child { grid-column: 1 / -1; border-right: 0; }
  .project-section { gap: 38px; }
  .project-visual img { aspect-ratio: 1 / 1; }
  .ocean-band { padding-block: 60px; }
  .ocean-layout { grid-template-columns: 1fr; gap: 28px; }
  .ocean-mark { width: 130px; height: 130px; }
  .ocean-mark span { font-size: 3.6rem; }
  .plan-card { grid-template-columns: 1fr; }
  .leisure-main { min-height: 390px; }
  .leisure-side { grid-template-columns: 1fr; }
  .leisure-side figure { min-height: 260px; }
  .leisure-main figcaption { left: 18px; right: 18px; bottom: 18px; }
  .leisure-main figcaption small { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 8px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.portrait { grid-row: span 2; }
  .efficiency-grid { grid-template-columns: 1fr; }
  .efficiency-grid span { min-height: 70px; }
  .nearby-grid { grid-template-columns: 1fr; }
  .lead-form { padding: 22px; }
  .footer-layout { grid-template-columns: 54px 1fr; gap: 14px; }
  .footer-layout img { width: 50px; }
  .whatsapp-float { right: 14px; bottom: 14px; min-height: 52px; padding-right: 12px; }
  .whatsapp-float svg { width: 34px; height: 34px; }
  .whatsapp-float small { display: none; }
  .assistant-trigger { left: 14px; bottom: 14px; min-height: 44px; padding-right: 12px; }
  .assistant-trigger strong { display: none; }
  .assistant-trigger span { width: 28px; height: 28px; }
  .assistant-panel { left: 14px; bottom: 68px; width: calc(100vw - 28px); max-height: calc(100dvh - 86px); padding: 18px; overflow-y: auto; }
  .assistant-messages { max-height: 180px; }
  .assistant-bubble { font-size: .76rem; }
  .assistant-form-actions { justify-content: space-between; }
}

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

/* Identidade Errejota — Home Clube Carioca */
:root {
  --navy: #0b2a67;
  --navy-deep: #061a3a;
  --ocean: #5a36b5;
  --ocean-bright: #ff5f3a;
  --sky: #edf3ff;
  --sun: #ff7a35;
  --green: #12856f;
  --ink: #15213b;
  --muted: #616c82;
  --line: #dce4f2;
  --soft: #f5f7fc;
  --shadow: 0 26px 76px rgba(6, 26, 58, .16);
}

.site-header {
  border-bottom-color: rgba(11, 42, 103, .1);
  background: rgba(255, 255, 255, .95);
}
.brand img { height: 58px; max-width: 210px; }
.site-header.is-scrolled .brand img { height: 51px; }
.main-nav .nav-cta {
  background: linear-gradient(115deg, var(--ocean), #7844cb);
  box-shadow: 0 12px 28px rgba(90, 54, 181, .24);
}
.main-nav .nav-cta:hover { background: linear-gradient(115deg, #4d2aa8, #6d38c4); }

.hero-errejota { min-height: min(830px, calc(100vh - 86px)); }
.hero-errejota .hero-media img { object-position: 62% 47%; }
.hero-errejota .hero-overlay {
  background:
    radial-gradient(circle at 12% 15%, rgba(99, 57, 192, .42), transparent 30%),
    linear-gradient(90deg, rgba(6, 26, 58, .98) 0%, rgba(6, 26, 58, .9) 38%, rgba(6, 26, 58, .24) 72%),
    linear-gradient(0deg, rgba(6, 26, 58, .74) 0%, transparent 44%);
}
.hero h1 { max-width: 820px; font-size: clamp(3.6rem, 7.8vw, 7.1rem); }
.hero h1 em { color: #ff9360; font-size: .42em; letter-spacing: -.025em; }
.eyebrow span { background: linear-gradient(90deg, var(--sun), #ffbe55); }
.button-primary {
  color: #fff;
  background: linear-gradient(120deg, #ff653d, #ff8b3f);
  box-shadow: 0 15px 36px rgba(255, 101, 61, .28);
}
.button-primary:hover { background: linear-gradient(120deg, #ef4e2a, #ff7930); box-shadow: 0 18px 42px rgba(255, 101, 61, .34); }
.hero-card {
  border-color: rgba(255, 255, 255, .2);
  background: linear-gradient(145deg, rgba(7, 28, 67, .88), rgba(61, 31, 126, .76));
}
.hero-card-grid div { background: rgba(7, 32, 77, .72); }
.hero-card-grid strong { color: #ff9a68; font-size: 1.06rem; }
.hero-scroll span::after { background: var(--sun); }

.stats-band { background: linear-gradient(110deg, #061a3a, #0b2a67 62%, #41247d); }
.stats-grid { grid-template-columns: repeat(5, 1fr); }
.stats-grid strong { color: #ff9360; font-size: clamp(1.15rem, 1.7vw, 1.55rem); }
.stats-grid span { color: rgba(255, 255, 255, .66); }

.project-highlights span { color: var(--navy); background: linear-gradient(120deg, #edf3ff, #f4efff); }
.image-card { border-radius: 6px 54px 6px 54px; }
.image-card::before { background: linear-gradient(0deg, rgba(6, 26, 58, .84), transparent 47%); }
.project-visual img { aspect-ratio: 16 / 10; }

.ocean-band {
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 139, 63, .34), transparent 26%),
    linear-gradient(120deg, #172b74 0%, #5832ac 58%, #862b95 100%);
}
.rio-band .ocean-mark { transform: rotate(-4deg); }
.rio-band .ocean-mark span { font-size: 4.6rem; letter-spacing: -.09em; }
.ocean-mark span { color: #ff9a68; }
.section-kicker.light { color: #ffc4a6; }
.finance-band {
  background:
    radial-gradient(circle at 16% 30%, rgba(255, 190, 85, .3), transparent 23%),
    linear-gradient(115deg, #ef4e2a, #7a2b9e 54%, #162a70);
}
.finance-cta { margin-top: 17px; }

.type-card.featured { background: linear-gradient(145deg, #0b2a67, #5a36b5); }
.type-card > strong { color: var(--ocean); font-size: clamp(1.45rem, 2.3vw, 2rem); }
.type-card.featured > strong { color: #ffae7f; }
.consult-banner {
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid rgba(90, 54, 181, .15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(120deg, #f3f6ff, #f7f1ff);
}
.consult-banner div { display: flex; flex-direction: column; }
.consult-banner span { color: var(--ocean); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.consult-banner strong { margin-top: 4px; color: var(--navy-deep); font-size: 1.03rem; }
.consult-banner .button { flex: 0 0 auto; }

.leisure-section { background: linear-gradient(145deg, #061a3a, #0a2454 64%, #28155a); }
.leisure-showcase figure { background: #0b2a67; }
.leisure-showcase figure::after { background: linear-gradient(0deg, rgba(6, 26, 58, .86), transparent 49%); }
.leisure-main figcaption > span { color: #fff; background: linear-gradient(135deg, #ff5f3a, #ff994e); }
.amenity-list span { border-color: rgba(255, 255, 255, .19); background: rgba(255, 255, 255, .055); }
.gallery-item::after { background: linear-gradient(0deg, rgba(6, 26, 58, .8), transparent 54%); }

.efficiency-section { background: linear-gradient(180deg, #f6f8fd, #eef3fb); }
.efficiency-grid span::before { color: var(--ocean-bright); }
.location-section { background: linear-gradient(180deg, #fff 0%, #f1f5fc 100%); }
.address-card { border-left-color: var(--ocean-bright); }
.map-card.mobility-visual { cursor: default; }
.map-card.mobility-visual img { aspect-ratio: 3 / 2; object-fit: cover; }

.contact-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 104, 61, .24), transparent 28%),
    linear-gradient(125deg, #061a3a 0%, #102c73 55%, #4c2a91 100%);
}
.site-footer { background: #04132d; }
.footer-layout { grid-template-columns: 190px auto 1fr; }
.footer-layout img { width: 180px; max-height: 68px; padding: 0; border-radius: 0; background: transparent; }

.assistant-trigger {
  min-height: 56px;
  padding: 7px 19px 7px 8px;
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  background: linear-gradient(120deg, #5a36b5, #8b3bc0 55%, #ff5f3a);
  box-shadow: 0 18px 46px rgba(72, 38, 156, .4);
}
.assistant-trigger:hover { box-shadow: 0 22px 52px rgba(72, 38, 156, .5); }
.assistant-trigger span { width: 38px; height: 38px; color: #fff; background: rgba(255, 255, 255, .17); }
.assistant-trigger strong { font-size: .84rem; }
.assistant-panel { border-color: rgba(90, 54, 181, .16); }
.assistant-submit { background: linear-gradient(120deg, #5a36b5, #7a3fc4); }

@media (max-width: 940px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .consult-banner { align-items: flex-start; flex-direction: column; }
  .footer-layout { grid-template-columns: 170px 1fr; }
  .footer-layout p { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .brand img, .site-header.is-scrolled .brand img { height: 47px; max-width: 170px; }
  .hero-errejota .hero-media img { object-position: 62% center; }
  .hero-errejota .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 26, 58, .96), rgba(6, 26, 58, .65)),
      linear-gradient(0deg, rgba(6, 26, 58, .84), transparent 54%);
  }
  .hero h1 { font-size: clamp(3.2rem, 16.5vw, 5rem); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid div:last-child { grid-column: 1 / -1; }
  .consult-banner { padding: 22px; }
  .consult-banner .button { width: 100%; }
  .project-visual img { aspect-ratio: 1 / 1; }
  .footer-layout { grid-template-columns: 1fr; }
  .footer-layout img { width: 175px; }
  .footer-layout p { grid-column: auto; }
  .assistant-trigger { left: 12px; bottom: 12px; min-height: 50px; padding-right: 13px; }
  .assistant-trigger strong { display: inline; font-size: .72rem; }
  .assistant-trigger span { width: 34px; height: 34px; }
  .whatsapp-float { right: 12px; bottom: 12px; }
}

@media (max-width: 390px) {
  .assistant-trigger strong { max-width: 56px; line-height: 1.05; }
  .whatsapp-float strong { font-size: .76rem; }
}
