:root {
  --ink: #102126;
  --muted: #5d6b70;
  --paper: #fffaf2;
  --soft: #f3efe6;
  --white: #ffffff;
  --deep: #083b4f;
  --teal: #0e6470;
  --aqua: #47c2ba;
  --gold: #c79256;
  --terracotta: #c66f4d;
  --green: #28735f;
  --line: rgba(16, 33, 38, .16);
  --shadow: 0 24px 70px rgba(16, 33, 38, .18);
  --radius: 8px;
  --max: 1180px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 18px);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: .75rem 1rem;
  clip: auto;
  background: var(--white);
  border: 2px solid var(--teal);
}

.section-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 30, 41, .78), rgba(7, 30, 41, .28));
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(255, 250, 242, .96);
  box-shadow: 0 12px 40px rgba(16, 33, 38, .12);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: .1rem;
  font-size: .76rem;
  color: currentColor;
  opacity: .78;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-size: .88rem;
  font-weight: 700;
}

.nav-menu a {
  position: relative;
  padding: .35rem 0;
}

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

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

.nav-menu .nav-cta {
  padding: .65rem .95rem;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(40, 115, 95, .24);
}

.nav-menu .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 82svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 23, 33, .88) 0%, rgba(3, 23, 33, .62) 45%, rgba(3, 23, 33, .16) 100%),
    linear-gradient(0deg, rgba(3, 23, 33, .82) 0%, rgba(3, 23, 33, .10) 52%, rgba(3, 23, 33, .28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8.5rem;
  padding-bottom: 2rem;
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--aqua);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

.hero h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.15rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 1.25rem 0 0;
  font-size: 1.35rem;
  line-height: 1.42;
  color: rgba(255, 255, 255, .94);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .82rem 1.2rem;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #20a876);
  box-shadow: 0 18px 36px rgba(32, 168, 118, .26);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.button.compact {
  margin-top: 1.2rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin: 2.5rem 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  padding: 1rem;
  background: rgba(6, 36, 50, .48);
}

.hero-facts dt {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 850;
}

.hero-facts dd {
  margin: .2rem 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
}

.intro-band {
  padding: 3.2rem 0;
  background: var(--white);
}

.intro-grid,
.split,
.stats-layout,
.technical-grid,
.faq-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 2.65rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.intro-grid p,
.copy p,
.section-heading p,
.stats-layout p,
.technical-grid p,
.final-cta p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.intro-copy {
  max-width: 650px;
}

.mini-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--teal);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: .25em;
}

.signature {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
}

.signature-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.signature figure {
  margin: 0;
}

.signature img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signature-copy {
  max-width: 560px;
}

.signature-copy p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section {
  padding: 5.5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.light {
  color: var(--white);
}

.section-heading.light p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
}

.location {
  background: var(--soft);
}

.copy {
  max-width: 560px;
}

.check-list {
  display: grid;
  gap: .65rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.9rem;
  color: #304247;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: .2rem;
  left: 0;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 4px var(--soft);
}

.feature-image,
.masonry figure {
  margin: 0;
}

.feature-image img,
.masonry img,
.plan-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-image figcaption,
.masonry figcaption {
  margin-top: .55rem;
  color: var(--muted);
  font-size: .86rem;
}

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

.local-seo-band {
  padding: 4.6rem 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.local-seo-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 5vw, 4rem);
}

.local-seo-grid p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.local-seo-grid p + p {
  margin-top: 1rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.metric-grid article {
  min-height: 150px;
  padding: 1.2rem;
  color: var(--white);
  background: linear-gradient(150deg, var(--deep), var(--teal));
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(8, 59, 79, .18);
}

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

.metric-grid span {
  display: block;
  margin-top: .75rem;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  min-height: 240px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 33, 38, .08);
}

.feature-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--teal);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 850;
}

.feature-card p {
  margin: .75rem 0 0;
  color: var(--muted);
}

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

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: .8rem;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 33, 38, .14);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 26, 37, .74), rgba(5, 26, 37, 0) 58%);
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  font-weight: 850;
  text-align: left;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.showcase-section {
  background: linear-gradient(180deg, var(--white) 0%, #f7f4ed 100%);
}

.resort-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 360px;
  gap: 1rem;
  align-items: stretch;
}

.showcase-stage {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showcase-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4, 20, 28, .82), rgba(4, 20, 28, .06) 58%),
    linear-gradient(90deg, rgba(4, 20, 28, .42), rgba(4, 20, 28, 0) 56%);
}

.showcase-stage img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  transition: opacity .22s ease, transform .4s ease;
}

.showcase-stage figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(1.2rem, 3vw, 2rem);
  right: clamp(1.2rem, 3vw, 2rem);
  bottom: clamp(1.2rem, 3vw, 2rem);
  max-width: 560px;
}

.showcase-stage span,
.plant-caption span {
  display: block;
  margin-bottom: .5rem;
  color: var(--aqua);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.showcase-stage h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
}

.showcase-stage p {
  max-width: 520px;
  margin: .7rem 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.02rem;
}

.viewer-open {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: .7rem 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.plant-caption .viewer-open {
  color: var(--deep);
  background: var(--white);
  border-color: var(--line);
}

.showcase-tabs {
  display: grid;
  gap: .65rem;
}

.showcase-tab,
.plant-option {
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.showcase-tab {
  min-height: 78px;
  padding: .95rem 1rem;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 33, 38, .06);
}

.showcase-tab span,
.plant-option strong {
  display: block;
  font-weight: 850;
}

.showcase-tab small,
.plant-option span {
  display: block;
  margin-top: .18rem;
  color: var(--muted);
  font-size: .84rem;
}

.showcase-tab:hover,
.showcase-tab:focus-visible,
.plant-option:hover,
.plant-option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(14, 100, 112, .45);
}

.showcase-tab.is-active {
  color: var(--white);
  background: linear-gradient(145deg, var(--deep), var(--teal));
  border-color: rgba(71, 194, 186, .5);
}

.showcase-tab.is-active small {
  color: rgba(255, 255, 255, .7);
}

.dark-section {
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(8, 59, 79, .96), rgba(11, 91, 105, .92)),
    var(--deep);
}

.plan-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.plan-image {
  display: block;
  padding: 0;
  background: transparent;
  border-radius: var(--radius);
}

.plant-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.plant-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 33, 38, .08);
}

.plant-card button {
  display: block;
  width: 100%;
  padding: 0;
  background: #f8f5ee;
}

.plant-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: .5rem;
}

.plant-card div {
  padding: 1rem;
}

.plant-card p {
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.plant-studio {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.plant-viewer {
  display: grid;
  grid-template-rows: minmax(460px, auto) auto;
  min-width: 0;
  background: #f7f3ea;
}

.plant-viewer figure {
  display: grid;
  min-height: 520px;
  place-items: center;
  margin: 0;
  padding: clamp(1rem, 3vw, 2rem);
}

.plant-viewer img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(16, 33, 38, .12));
}

.plant-caption {
  padding: 1.2rem clamp(1rem, 3vw, 1.6rem);
  background: var(--deep);
  color: var(--white);
}

.plant-caption h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}

.plant-caption p {
  max-width: 760px;
  margin: .55rem 0 0;
  color: rgba(255, 255, 255, .72);
}

.plant-options {
  display: grid;
  align-content: start;
  gap: .55rem;
  max-height: 760px;
  overflow: auto;
  padding: .75rem;
  background: #071e29;
}

.plant-option {
  min-height: 64px;
  padding: .75rem .85rem;
  color: rgba(255, 255, 255, .94);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .13);
}

.plant-option span {
  color: rgba(255, 255, 255, .64);
}

.plant-option.is-active {
  color: var(--ink);
  background: var(--white);
  border-color: var(--gold);
}

.plant-option.is-active span {
  color: var(--teal);
}

.leisure-editorial {
  padding: 7rem 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(14, 100, 112, .38), transparent 34%),
    linear-gradient(115deg, #071e29 0%, #111111 47%, #261219 100%);
  overflow: hidden;
}

.leisure-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.leisure-copy {
  position: sticky;
  top: 108px;
}

.leisure-copy h2,
.plants-heading h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.leisure-copy h2 {
  max-width: 430px;
  font-size: clamp(2.65rem, 4.8vw, 4.7rem);
  line-height: .98;
}

.leisure-copy p {
  max-width: 430px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
  font-weight: 650;
}

.leisure-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.8rem;
}

.leisure-filters button,
.type-tabs button {
  min-height: 42px;
  padding: .72rem 1rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.leisure-filters button {
  color: var(--white);
  background: rgba(255, 255, 255, .07);
}

.leisure-filters button.is-active {
  color: var(--ink);
  background: var(--white);
}

.leisure-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: .9rem;
}

.leisure-card {
  position: relative;
  grid-column: span 3;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: #071e29;
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .24);
}

.leisure-card.wide {
  grid-column: span 4;
}

.leisure-card.tall {
  grid-column: span 2;
  grid-row: span 2;
}

.leisure-card.is-hidden {
  display: none;
}

.leisure-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .36s ease, opacity .24s ease;
}

.leisure-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 16, 22, .80), rgba(4, 16, 22, 0) 58%);
}

.leisure-card span,
.leisure-card strong {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
  text-align: left;
}

.leisure-card span {
  bottom: 3rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.05;
  font-weight: 700;
}

.leisure-card strong {
  bottom: 1.35rem;
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.leisure-card:hover img,
.leisure-card:focus-visible img {
  transform: scale(1.045);
}

.plants-premium {
  background: #f4f0e8;
}

.plants-heading {
  max-width: 940px;
  margin-bottom: 2rem;
}

.plants-heading h2 {
  max-width: 980px;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: 1.04;
}

.plants-heading p {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.13rem;
}

.type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 2rem;
}

.type-tabs button {
  color: var(--white);
  background: #111111;
}

.type-tabs button.is-active {
  color: var(--white);
  background: #a88c72;
  box-shadow: inset 0 0 0 2px #111111;
}

.type-panels {
  border-top: 1px solid rgba(16, 33, 38, .18);
}

.type-panel {
  display: none;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-top: 2rem;
}

.type-panel.is-active {
  display: grid;
}

.type-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 9vw, 6.4rem);
  font-weight: 500;
  line-height: .95;
}

.type-copy p {
  max-width: 480px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.type-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
  margin-top: 1.5rem;
}

.type-specs span {
  min-height: 82px;
  padding: .88rem;
  color: var(--deep);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(16, 33, 38, .14);
  border-radius: var(--radius);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.type-specs strong {
  display: block;
  margin-bottom: .25rem;
  font-size: 1.45rem;
  line-height: 1;
}

.type-cta {
  display: inline-flex;
  width: min(100%, 430px);
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
  color: var(--white);
  background: #111111;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.type-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.type-media button {
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(16, 33, 38, .14);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(16, 33, 38, .09);
}

.type-media button:first-child:nth-last-child(3) {
  grid-row: span 2;
}

.type-media img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
}

.ambience {
  background: var(--soft);
}

.masonry {
  columns: 2 360px;
  column-gap: 1rem;
}

.masonry figure {
  break-inside: avoid;
  margin-bottom: 1rem;
}

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

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  margin: 0;
}

.spec-list div {
  padding: 1rem;
  border-left: 4px solid var(--teal);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(16, 33, 38, .06);
}

.spec-list dt {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.spec-list dd {
  margin: .25rem 0 0;
  font-weight: 800;
}

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

.faq-list {
  display: grid;
  gap: .8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

summary {
  padding: 1rem 1.1rem;
  font-weight: 850;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}

.final-cta {
  padding: 4.5rem 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(8, 59, 79, .96), rgba(40, 115, 95, .9)),
    var(--deep);
}

.final-cta h2 {
  max-width: 800px;
}

.final-cta p {
  color: rgba(255, 255, 255, .76);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.text-link {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.site-footer {
  padding: 2.2rem 0;
  color: rgba(255, 255, 255, .76);
  background: #071e29;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.5fr;
  gap: 1.5rem;
}

.site-footer p {
  margin: 0;
}

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

.site-footer a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: .2em;
}

.legal {
  font-size: .82rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #24d366, #0b8f47);
  border: 3px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(20, 146, 78, .32);
}

body {
  padding-bottom: 0;
}

.wa-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--white);
}

.wa-icon svg {
  display: block;
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.wa-copy {
  display: none;
}

.whatsapp-float .pulse {
  display: none;
}

@keyframes pulse {
  0% {
    transform: scale(.72);
    opacity: .88;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.lightbox {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(4, 16, 22, .9);
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  width: min(1120px, 100%);
  max-height: 88svh;
  margin: 0;
  color: var(--white);
}

.lightbox img {
  width: 100%;
  max-height: 82svh;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
}

.lightbox figcaption {
  margin-top: .75rem;
  font-weight: 800;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: rgba(255, 255, 255, .14);
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 1080px) {
  .nav-menu {
    gap: .8rem;
    font-size: .82rem;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.25rem;
  }

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

  .plant-grid .plant-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  :root {
    --header: 68px;
  }

  .section-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    padding: 0 14px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .65rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .nav-menu {
    display: flex;
  }

  .nav-menu a {
    padding: .85rem .8rem;
  }

  .nav-menu .nav-cta {
    margin-top: .3rem;
    text-align: center;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-media img {
    object-position: center center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 23, 33, .90), rgba(3, 23, 33, .55)),
      linear-gradient(0deg, rgba(3, 23, 33, .82), rgba(3, 23, 33, 0) 48%);
  }

  .hero-content {
    padding-top: 7.2rem;
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .hero-lead {
    font-size: 1.12rem;
  }

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

  .intro-grid,
  .split,
  .stats-layout,
  .signature-grid,
  .local-seo-grid,
  .technical-grid,
  .faq-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .section,
  .signature,
  .intro-band {
    padding: 4rem 0;
  }

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

  .image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .plan-preview {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 560px) {
  .brand strong {
    font-size: .95rem;
  }

  .brand small {
    font-size: .7rem;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 6.6rem;
    padding-bottom: 1.2rem;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: 2.35rem;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link {
    width: 100%;
    text-align: center;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: .85rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .feature-grid,
  .plant-grid,
  .spec-list {
    grid-template-columns: 1fr;
  }

  .plant-grid .plant-card:last-child {
    grid-column: auto;
  }

  .image-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-item.large {
    grid-column: auto;
  }

  .masonry {
    columns: 1;
  }

  .whatsapp-float {
    left: auto;
    right: 14px;
    bottom: 12px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
  }

  .whatsapp-float::after {
    content: none;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 980px) {
  .leisure-layout,
  .type-panel {
    grid-template-columns: 1fr;
  }

  .leisure-copy {
    position: static;
  }

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

  .leisure-card,
  .leisure-card.wide,
  .leisure-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .resort-showcase,
  .plant-studio {
    grid-template-columns: 1fr;
  }

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

  .showcase-stage,
  .showcase-stage img {
    min-height: 520px;
  }

  .plant-options {
    order: -1;
    display: flex;
    max-height: none;
    overflow-x: auto;
    padding: .75rem;
    scroll-snap-type: x mandatory;
  }

  .plant-option {
    min-width: 168px;
    scroll-snap-align: start;
  }
}

@media (max-width: 560px) {
  .leisure-editorial {
    padding: 4.6rem 0;
  }

  .leisure-copy h2 {
    font-size: 2.75rem;
  }

  .leisure-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 290px;
  }

  .plants-heading h2 {
    font-size: 2.5rem;
  }

  .type-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: .2rem;
  }

  .type-tabs button {
    white-space: nowrap;
  }

  .type-specs,
  .type-media {
    grid-template-columns: 1fr;
  }

  .type-media button,
  .type-media button:first-child:nth-last-child(3) {
    grid-row: auto;
    min-height: 260px;
  }

  .type-copy h3 {
    font-size: 4.3rem;
  }

  .showcase-tabs {
    grid-template-columns: 1fr;
  }

  .showcase-stage,
  .showcase-stage img {
    min-height: 440px;
  }

  .showcase-stage h3 {
    font-size: 1.75rem;
  }

  .plant-viewer {
    grid-template-rows: minmax(340px, auto) auto;
  }

  .plant-viewer figure {
    min-height: 340px;
    padding: .8rem;
  }

  .plant-caption h3 {
    font-size: 1.45rem;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    border-radius: 50%;
  }

  .wa-icon {
    width: 48px;
    height: 48px;
  }

  .wa-icon svg {
    width: 30px;
    height: 30px;
  }

  .wa-copy {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
