:root {
  --ocean-deep: #061820;
  --ocean: #0b3a48;
  --sea: #1a6b7c;
  --sand: #c9a66b;
  --sand-soft: #e4d2ad;
  --foam: #f3eee6;
  --ink: #102027;
  --muted: #6d7f86;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(6, 24, 32, 0.28);
  --radius: 2px;
  --header-h: 76px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(26, 107, 124, 0.12), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(201, 166, 107, 0.12), transparent 55%),
    var(--foam);
  line-height: 1.55;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ocean);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 500;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.section {
  padding: clamp(2.25rem, 4.5vw, 3.75rem) 0;
}

.section__head {
  max-width: 640px;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.section__head--light h2,
.section__head--light p {
  color: var(--foam);
}

.section__head--light .eyebrow {
  color: var(--sand-soft);
}

.section__head--light p {
  color: rgba(243, 238, 230, 0.78);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--sand);
  color: var(--ocean-deep);
}

.btn--primary:hover {
  background: var(--sand-soft);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(6, 24, 32, 0.2);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--ghost-dark {
  border-color: rgba(16, 32, 39, 0.25);
  color: var(--ink);
  background: transparent;
}

.btn--ghost-dark:hover {
  border-color: var(--ocean);
  color: var(--ocean);
}

.btn__play {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid currentColor;
  position: relative;
}

.btn__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent currentColor;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.header.is-scrolled {
  background: rgba(6, 24, 32, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.header__inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav__cta {
  padding: 0.75rem 1.2rem;
  border: 1px solid rgba(201, 166, 107, 0.7);
  color: var(--sand-soft) !important;
  font-size: 0.95rem;
}

.nav__cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 6px auto;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__video,
.hero__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__video.is-ready {
  opacity: 1;
}

.hero__fallback {
  filter: saturate(1.05) contrast(1.02);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 24, 32, 0.55) 0%, rgba(6, 24, 32, 0.28) 42%, rgba(6, 24, 32, 0.78) 100%),
    linear-gradient(90deg, rgba(6, 24, 32, 0.55) 0%, transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 2.5rem));
  text-align: center;
  padding-top: 2rem;
  animation: rise 1.1s var(--ease) both;
}

.hero__logo {
  width: clamp(88px, 16vw, 120px);
  height: auto;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.hero__eyebrow {
  margin: 0 0 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--sand-soft);
}

.hero__title {
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero__lead {
  color: rgba(243, 238, 230, 0.9);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 34rem;
  margin: 0 auto 1.8rem;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--sand), transparent);
  animation: pulse 2s ease-in-out infinite;
}

/* Manifesto */
.manifesto__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.manifesto__copy h2 {
  max-width: 14ch;
}

.manifesto__quote {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(16, 32, 39, 0.12);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--ocean);
  font-style: italic;
}

.manifesto__visual {
  margin: 0;
  overflow: visible;
  box-shadow: var(--shadow);
  background: rgba(243, 238, 230, 0.65);
}

.manifesto__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: unset;
  object-fit: contain;
  display: block;
  transition: transform 1.2s var(--ease);
}

.manifesto__visual:hover img {
  transform: scale(1.04);
}

.band--dark {
  background:
    linear-gradient(120deg, rgba(26, 107, 124, 0.25), transparent 40%),
    var(--ocean-deep);
  color: var(--foam);
  padding: 1.75rem 0;
}

.band__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.band__stats div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

.band__stats div:last-child {
  border-right: 0;
}

.band__stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--sand-soft);
}

.band__stats span {
  font-size: 0.86rem;
  color: rgba(243, 238, 230, 0.72);
  letter-spacing: 0.04em;
}

/* Video */
.video-player {
  position: relative;
  overflow: hidden;
  background: var(--ocean-deep);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-player video,
.video-player__trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-player video {
  display: none;
}

.video-player.is-playing video {
  display: block;
}

.video-player.is-playing .video-player__trigger {
  display: none;
}

.video-player__trigger {
  position: relative;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
}

.video-player__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.85rem;
  background: rgba(6, 24, 32, 0.42);
  color: var(--white);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.video-player__btn {
  width: 74px;
  height: 74px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(201, 166, 107, 0.2);
  position: relative;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.video-player__trigger:hover .video-player__btn {
  transform: scale(1.06);
  background: rgba(201, 166, 107, 0.35);
}

.video-player__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--white);
}

/* Project */
.project__showcase {
  margin-bottom: 1.25rem;
  overflow: visible;
  box-shadow: var(--shadow);
  background: rgba(243, 238, 230, 0.65);
}

.project__showcase img {
  width: 100%;
  height: auto;
  aspect-ratio: unset;
  object-fit: contain;
  display: block;
}

.project__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.project__card {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(16, 32, 39, 0.06);
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.project__card img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  display: block;
  background: rgba(243, 238, 230, 0.65);
}

.project__card:hover img {
  transform: none;
}

.project__card h3,
.project__card p {
  padding: 0 1.1rem;
}

.project__card h3 {
  margin-top: 1rem;
  margin-bottom: 0.35rem;
}

.project__card p {
  padding-bottom: 1.2rem;
  font-size: 0.95rem;
}

/* Amenities */
.amenities__feature {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 0.75fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  margin-bottom: 1.5rem;
}

.amenities__feature img {
  width: 100%;
  height: auto;
  aspect-ratio: unset;
  object-fit: contain;
  display: block;
  background: rgba(243, 238, 230, 0.65);
  box-shadow: var(--shadow);
}

.amenities__feature h3 {
  max-width: 18ch;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.amenity {
  position: relative;
  overflow: visible;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(16, 32, 39, 0.06);
  box-shadow: var(--shadow);
}

.amenity img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: rgba(243, 238, 230, 0.65);
  transition: transform 0.9s var(--ease);
}

.amenity:hover img {
  transform: scale(1.02);
}

.amenity h3 {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  background: transparent;
  color: var(--ink);
  font-size: 1.15rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.gallery__item {
  position: relative;
  border: 0;
  padding: 0;
  overflow: visible;
  cursor: zoom-in;
  background: rgba(243, 238, 230, 0.65);
  aspect-ratio: unset;
}

.gallery__item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.8s var(--ease), opacity 0.4s;
}

.gallery__item:hover img {
  transform: scale(1.02);
  opacity: 0.95;
}

.gallery__item span {
  position: static;
  display: block;
  padding: 0.75rem 0.9rem 0.9rem;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.45);
}

/* Plants */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.tabs__btn {
  border: 1px solid rgba(16, 32, 39, 0.15);
  background: transparent;
  color: var(--ink);
  padding: 0.7rem 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.74rem;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.tabs__btn.is-active,
.tabs__btn:hover {
  background: var(--ocean);
  border-color: var(--ocean);
  color: var(--white);
}

.tabs__panel[hidden] {
  display: none;
}

.plants__layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.25rem;
}

.plants__layout img,
.plants__gallery img,
.plants__map img,
.location__map img,
.specs__grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: rgba(243, 238, 230, 0.65);
  box-shadow: var(--shadow);
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.spec-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(16, 32, 39, 0.1);
  color: var(--muted);
}

.spec-list strong {
  color: var(--ink);
}

.spec-list--large li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.02rem;
}

.plants__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.plants__map {
  margin: 1.25rem 0 0;
}

.plants__map figcaption {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Location */
.location__pois {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.location__pois li {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(16, 32, 39, 0.12);
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* Care */
.care {
  position: relative;
  color: var(--foam);
  overflow: hidden;
}

.care__bg {
  position: absolute;
  inset: 0;
}

.care__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) brightness(0.95);
}

.care__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 24, 32, 0.42) 0%, rgba(6, 24, 32, 0.55) 100%),
    linear-gradient(90deg, rgba(6, 24, 32, 0.28), rgba(6, 24, 32, 0.18));
}

.care__content {
  position: relative;
  z-index: 1;
}

.care__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.care__grid article {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 24, 32, 0.35);
  backdrop-filter: blur(8px);
}

.care__grid h3 {
  color: var(--sand-soft);
}

.care__grid ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(243, 238, 230, 0.82);
}

.care__grid li + li {
  margin-top: 0.55rem;
}

/* Specs */
.specs__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

/* Contact */
.contact {
  padding-bottom: 2.5rem;
}

.contact__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(243, 238, 230, 0.95)),
    var(--foam);
  border: 1px solid rgba(16, 32, 39, 0.08);
  box-shadow: var(--shadow);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.contact__note {
  font-size: 0.78rem;
  color: var(--muted);
}

.contact__note code {
  font-size: 0.75rem;
  background: rgba(16, 32, 39, 0.06);
  padding: 0.1rem 0.3rem;
}

.contact__form {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.contact__form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ocean);
}

.contact__form input,
.contact__form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 32, 39, 0.15);
  background: rgba(255, 255, 255, 0.75);
  padding: 0.7rem 0.9rem;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
}

.contact__form input:focus,
.contact__form select:focus {
  outline: 2px solid rgba(26, 107, 124, 0.35);
  border-color: var(--sea);
}

.form-msg {
  margin: 0;
  color: var(--sea);
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--ocean-deep);
  color: rgba(243, 238, 230, 0.78);
  padding: 2.5rem 0 5.5rem;
}

.footer__inner {
  display: grid;
  gap: 1.25rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--white);
}

.footer__brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.footer__brand p {
  margin: 0.15rem 0 0;
  color: var(--sand-soft);
  font-size: 0.9rem;
}

.footer__legal {
  margin: 0;
  font-size: 0.82rem;
  max-width: 70ch;
  color: rgba(243, 238, 230, 0.58);
}

/* Lightbox */
.zoomable-img {
  cursor: zoom-in;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.zoomable-img:hover {
  filter: brightness(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(6, 24, 32, 0.92);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 85vh;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1;
}

/* Float WA */
.float-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1f8a4c;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease);
}

.float-wa:hover {
  transform: translateY(-3px) scale(1.04);
}

.float-wa svg {
  width: 28px;
  height: 28px;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .manifesto__grid,
  .amenities__feature,
  .plants__layout,
  .specs__grid,
  .contact__box,
  .care__grid {
    grid-template-columns: 1fr;
  }

  .project__grid,
  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .project__grid {
    align-items: start;
  }

  .amenities__grid,
  .band__stats {
    grid-template-columns: 1fr 1fr;
  }

  .amenities__grid {
    gap: 1rem;
  }

  .band__stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 1rem;
  }

  .band__stats div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: grid;
    gap: 0;
    background: rgba(6, 24, 32, 0.96);
    padding: 0.5rem 1.25rem 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav__cta {
    margin-top: 0.75rem;
    text-align: center;
  }

  .header {
    background: rgba(6, 24, 32, 0.55);
    backdrop-filter: blur(10px);
  }

  .hero__title {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }

  .project__showcase img {
    height: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, 1180px);
  }

  .project__grid,
  .gallery,
  .amenities__grid,
  .band__stats,
  .plants__gallery {
    grid-template-columns: 1fr;
  }

  .band__stats div {
    border-bottom: 1px solid var(--line);
  }

  .band__stats div:last-child {
    border-bottom: 0;
  }

  .hero__actions,
  .contact__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .video-player {
    aspect-ratio: 4 / 5;
  }
}
