:root {
  --bg: #f5f1ea;
  --surface: #f9f6f0;
  --surface-strong: #ffffff;
  --panel: #111111;
  --text: #1a1816;
  --muted: #6e665c;
  --line: rgba(30, 24, 20, 0.1);
  --sand: #99b8b1;
  --sand-deep: #4f7c74;
  --olive: #2e5b55;
  --wine: #1f4641;
  --shadow: 0 20px 60px rgba(19, 15, 11, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(153, 184, 177, 0.28), transparent 28%),
    linear-gradient(180deg, #f8f4ed 0%, #f2eee7 100%);
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

.topbar,
.nav,
.topbar-actions,
.hero-cta,
.hero-inner,
.manifesto,
.gallery-layout,
.conversion-section {
  display: flex;
}

.page-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(246, 241, 234, 0.9);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 10rem;
}

.nav {
  gap: 1.1rem;
}

.nav a,
.footer a {
  position: relative;
  font-size: 0.92rem;
}

.nav a::after,
.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.24rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.footer a:hover::after {
  transform: scaleX(1);
}

.topbar-actions,
.hero-cta {
  gap: 0.8rem;
}

.solid-button,
.ghost-button,
.contact-form button,
.floating-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.solid-button,
.contact-form button,
.floating-cta {
  background: var(--panel);
  color: #f8f4ed;
}

.solid-button:hover,
.contact-form button:hover,
.floating-cta:hover {
  transform: translateY(-1px);
  background: var(--wine);
}

.ghost-button {
  border-color: rgba(26, 24, 22, 0.16);
  color: var(--text);
}

.ghost-button.light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.ghost-button:hover {
  border-color: currentColor;
  color: var(--olive);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: clip;
  background: #102826;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(100deg, rgba(16, 40, 38, 0.84), rgba(16, 40, 38, 0.24) 58%),
    linear-gradient(180deg, rgba(16, 40, 38, 0.2), rgba(16, 40, 38, 0.58));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 2rem));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 5rem 0 3rem;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.hero-copy {
  max-width: 42rem;
  color: #f8f3eb;
}

.kicker,
.section-kicker {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--sand-deep);
}

.section-kicker.light {
  color: rgba(255, 255, 255, 0.84);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Prata", serif;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.6rem, 7vw, 6.2rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-text,
.manifesto-copy p,
.launch-story-copy p,
.plan-copy p,
.conversion-copy p,
.faq-list p {
  font-size: 1rem;
  line-height: 1.8;
}

.hero-text {
  max-width: 39rem;
  margin: 1.4rem 0 2rem;
  color: rgba(248, 243, 235, 0.88);
}

.hero-card {
  width: min(22rem, 100%);
  padding: 1.5rem;
  border: 1px solid rgba(153, 184, 177, 0.28);
  border-radius: 1.5rem;
  background: rgba(153, 184, 177, 0.1);
  backdrop-filter: blur(12px);
}

.hero-card img {
  width: 11rem;
  margin-bottom: 1rem;
}

.hero-metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.hero-metrics li {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metrics strong,
.tile-label,
.plan-tag {
  display: block;
}

.hero-metrics strong {
  font-size: 1.02rem;
}

.hero-metrics span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(248, 243, 235, 0.72);
  font-size: 0.92rem;
}

.section {
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 6rem 0;
}

.manifesto {
  gap: 2rem;
  align-items: flex-start;
}

.manifesto-copy {
  flex: 1.1;
}

.manifesto-grid {
  flex: 0.9;
  display: grid;
  gap: 1rem;
}

.info-tile,
.launch-video-frame,
.gallery-stage,
.gallery-sidebar button,
.plan-feature,
.conversion-section,
.faq-list details {
  border-radius: 1.4rem;
  overflow: hidden;
}

.info-tile,
.gallery-sidebar button,
.plan-feature,
.conversion-section,
.faq-list details {
  background: rgba(255, 252, 247, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-tile {
  padding: 1.35rem;
  border-top: 3px solid rgba(46, 91, 85, 0.18);
}

.tile-label,
.plan-tag {
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
}

.launch-story {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
  align-items: center;
}

.launch-video-frame {
  background: #173734;
  padding: 0.8rem;
  box-shadow: var(--shadow);
}

.launch-video-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 1rem;
}

.story-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.story-points div {
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}

.story-points strong {
  display: block;
  margin-bottom: 0.28rem;
}

.story-points span {
  color: var(--muted);
}

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

.gallery-layout {
  gap: 1.2rem;
  align-items: stretch;
}

.gallery-stage {
  flex: 1.35;
  min-height: 38rem;
  box-shadow: var(--shadow);
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-sidebar {
  flex: 0.82;
  display: grid;
  gap: 0.9rem;
}

.gallery-sidebar button {
  width: 100%;
  padding: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.gallery-sidebar button.active {
  border-color: var(--sand-deep);
  transform: translateY(-1px);
}

.gallery-thumb {
  display: grid;
  grid-template-columns: 7rem 1fr;
  min-height: 8rem;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb-copy {
  padding: 1rem;
  text-align: left;
}

.gallery-thumb-copy strong {
  display: block;
  margin-bottom: 0.35rem;
}

.gallery-thumb-copy span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

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

.amenity-card {
  min-height: 18rem;
  padding: 1.25rem;
  border-radius: 1.4rem;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.amenity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 70, 65, 0.12), rgba(31, 70, 65, 0.86));
}

.amenity-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.amenity-card strong {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.amenity-card span {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
  font-size: 0.92rem;
}

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

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

.plan-feature img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  background: #fff;
}

.plan-copy {
  padding: 1.5rem;
}

.image-band {
  position: relative;
  min-height: 38rem;
  padding: 0;
  border-radius: 1.8rem;
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 38rem;
  object-fit: cover;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 70, 65, 0.1), rgba(31, 70, 65, 0.74));
}

.image-band-copy {
  position: absolute;
  z-index: 1;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  max-width: 42rem;
  color: #fff;
}

.conversion-section {
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
}

.conversion-copy {
  max-width: 34rem;
}

.conversion-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.conversion-badges span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(153, 184, 177, 0.26);
  color: var(--olive);
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-form {
  width: min(27rem, 100%);
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 3.2rem;
  padding: 0 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fff;
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(46, 91, 85, 0.38);
  box-shadow: 0 0 0 4px rgba(46, 91, 85, 0.08);
}

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

.faq-list details {
  padding: 1.25rem 1.35rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.footer {
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.floating-cta {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 90;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.22);
}

@media (max-width: 1100px) {
  .topbar,
  .nav,
  .topbar-actions,
  .hero-inner,
  .hero-cta,
  .manifesto,
  .gallery-layout,
  .conversion-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .launch-story,
  .floorplans-layout,
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    justify-content: flex-end;
  }

  .hero-card,
  .contact-form {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 1rem;
  }

  .brand img {
    width: 8.4rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .hero-inner {
    width: min(100%, calc(100% - 1.5rem));
    padding: 4.2rem 0 2rem;
  }

  .gallery-stage,
  .image-band,
  .image-band img {
    min-height: 24rem;
  }

  .gallery-thumb {
    grid-template-columns: 1fr;
  }

  .image-band-copy {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
