:root {
  --obsidian: #042f29;
  --obsidian-deep: #021b19;
  --obsidian-soft: #0c4a3f;
  --crimson: #a90719;
  --crimson-bright: #d41428;
  --sand: #f2d8c3;
  --sand-light: #fff4ea;
  --ink: #17211f;
  --muted: #66706d;
  --white: #fffaf5;
  --line-dark: rgba(4, 47, 41, 0.14);
  --line-light: rgba(255, 250, 245, 0.22);
  --shadow: 0 24px 80px rgba(2, 27, 25, 0.24);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 18px;
  letter-spacing: 0;
}

h1 span,
h1 strong {
  display: block;
}

h1 span {
  color: var(--white);
  font-size: clamp(2.55rem, 6.2vw, 5.55rem);
  line-height: 0.96;
  font-weight: 900;
}

h1 strong {
  max-width: 760px;
  margin-top: 12px;
  color: var(--sand);
  font-size: clamp(1.34rem, 3.2vw, 2.65rem);
  line-height: 1.08;
  font-weight: 850;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.72rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(2, 27, 25, 0.84);
  color: var(--white);
  border-bottom: 1px solid rgba(242, 216, 195, 0.24);
}

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

.brand-logo {
  width: clamp(148px, 18vw, 210px);
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.clean-logo {
  width: auto;
  height: 44px;
  max-width: 58px;
  border-radius: 6px;
  background: #fffdf9;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(242, 216, 195, 0.55);
  background: linear-gradient(145deg, var(--obsidian-soft), var(--obsidian-deep));
  color: var(--sand);
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.94rem;
  line-height: 1.12;
}

.brand-text strong {
  color: var(--sand);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 900;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 250, 245, 0.66);
  font-size: 0.74rem;
}

.desktop-nav {
  display: flex;
  gap: 22px;
  color: rgba(255, 250, 245, 0.76);
  font-size: 0.88rem;
  font-weight: 750;
}

.desktop-nav a:hover {
  color: var(--sand);
}

.topbar-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid rgba(242, 216, 195, 0.35);
  border-radius: var(--radius);
  background: transparent;
  color: var(--sand);
  font: inherit;
  font-weight: 850;
  font-size: 0.9rem;
  white-space: nowrap;
  cursor: pointer;
}

.sidebar-toggle {
  position: fixed;
  z-index: 23;
  top: 12px;
  right: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(242, 216, 195, 0.28);
  border-radius: 10px;
  background: rgba(2, 27, 25, 0.92);
  cursor: pointer;
}

.sidebar-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--sand);
  border-radius: 99px;
}

.site-sidebar {
  position: fixed;
  z-index: 22;
  top: 58px;
  right: 14px;
  display: grid;
  gap: 8px;
  width: 168px;
  padding: 10px;
  border: 1px solid rgba(242, 216, 195, 0.28);
  border-radius: 10px;
  background: rgba(2, 27, 25, 0.92);
  color: rgba(255, 250, 245, 0.82);
  box-shadow: 0 16px 42px rgba(2, 27, 25, 0.28);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-sidebar.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-sidebar span {
  color: var(--sand);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-sidebar a {
  display: block;
  padding: 7px 9px;
  border: 1px solid rgba(242, 216, 195, 0.14);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 760;
  background: rgba(255, 250, 245, 0.03);
}

.site-sidebar a:hover {
  background: rgba(255, 250, 245, 0.14);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--obsidian-deep);
  color: var(--white);
}

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

.hero > picture img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 27, 25, 0.96) 0%, rgba(2, 27, 25, 0.76) 42%, rgba(2, 27, 25, 0.18) 100%),
    linear-gradient(0deg, rgba(2, 27, 25, 0.94) 0%, rgba(2, 27, 25, 0.15) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 100svh;
  padding: 92px clamp(18px, 5vw, 72px) 44px;
}

.hero-copy {
  max-width: 1040px;
  padding-top: clamp(8px, 2.8vh, 26px);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.primary-link,
.ghost-link,
.lead-form button,
.final-cta button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.primary-link,
.lead-form button {
  border: 0;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-bright));
  color: var(--white);
  box-shadow: 0 16px 36px rgba(169, 7, 25, 0.34);
  cursor: pointer;
  animation: ctaHot 1.9s ease-in-out infinite;
}

.primary-link:hover,
.lead-form button:hover,
.topbar-call:hover {
  filter: brightness(1.16) saturate(1.08);
  box-shadow: 0 24px 48px rgba(169, 7, 25, 0.48);
  transform: translateY(-3px) scale(1.01);
}

.primary-link:active,
.ghost-link:active,
.lead-form button:active,
.topbar-call:active,
.mobile-sticky button:active {
  transform: scale(0.98);
}

.ghost-link {
  border: 1px solid rgba(242, 216, 195, 0.36);
  color: var(--sand);
}

.ghost-link:hover {
  border-color: rgba(242, 216, 195, 0.64);
  background: rgba(255, 250, 245, 0.12);
  box-shadow: 0 14px 30px rgba(242, 216, 195, 0.18);
  transform: translateY(-2px);
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 9px;
  height: 9px;
  background: var(--crimson-bright);
}

.hero-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin-top: 26px;
}

.hero-info-grid article {
  display: grid;
  align-content: center;
  min-height: 184px;
  padding: 18px 16px;
  border: 1px solid rgba(242, 216, 195, 0.45);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(4, 47, 41, 0.84), rgba(2, 27, 25, 0.9)),
    rgba(2, 27, 25, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 250, 245, 0.08),
    0 16px 40px rgba(2, 27, 25, 0.22);
  text-align: center;
}

.hero-info-grid span,
.hero-info-grid small,
.hero-info-grid strong {
  display: block;
}

.hero-info-grid small {
  color: rgba(255, 250, 245, 0.9);
  font-size: clamp(0.76rem, 0.92vw, 0.88rem);
  font-weight: 850;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-info-grid span {
  color: rgba(255, 250, 245, 0.86);
  font-size: clamp(0.74rem, 0.96vw, 0.88rem);
  font-weight: 850;
  line-height: 1.18;
  text-transform: uppercase;
}

.hero-info-grid strong {
  margin: 8px 0;
  color: var(--sand);
  font-family: inherit;
  font-size: clamp(2.1rem, 3vw, 2.9rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: none;
  transform-origin: center;
  will-change: auto;
  backface-visibility: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-info-grid article.reveal {
  opacity: 1;
  transform: none;
}

.hero-info-grid article.reveal span,
.hero-info-grid article.reveal small,
.hero-info-grid article.reveal strong {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.hero-info-grid article.reveal strong {
  transition-delay: calc(var(--reveal-index, 0) * 70ms + 40ms);
}

.hero-info-grid article.reveal small {
  transition-delay: calc(var(--reveal-index, 0) * 70ms + 100ms);
}

.hero-info-grid article.reveal span {
  transition-delay: calc(var(--reveal-index, 0) * 70ms + 150ms);
}

.hero-info-grid article.reveal.is-visible small,
.hero-info-grid article.reveal.is-visible span,
.hero-info-grid article.reveal.is-visible strong {
  opacity: 1;
  transform: translateY(0);
}

.lead-form {
  background: rgba(255, 250, 245, 0.97);
  color: var(--ink);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form h2 {
  margin-bottom: 18px;
  font-size: 1.42rem;
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: #39413f;
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d9c8b9;
  border-radius: var(--radius);
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.hidden-field {
  display: none;
}

.lead-form button {
  width: 100%;
}

.lead-form button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.form-note,
.form-success {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.form-success {
  color: var(--obsidian-soft);
  font-weight: 900;
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
  content-visibility: auto;
  contain-intrinsic-size: 820px;
}

.section-light,
.products,
.masterplan {
  background: var(--sand-light);
}

.quick-lead-section {
  display: grid;
  place-items: center;
  min-height: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  background:
    linear-gradient(135deg, rgba(4, 47, 41, 0.98), rgba(2, 27, 25, 0.92)),
    var(--obsidian);
  color: var(--white);
}

.quick-cta-copy {
  max-width: 920px;
}

.quick-cta-copy h2 {
  max-width: 980px;
  color: var(--sand);
  font-size: clamp(2.1rem, 5.2vw, 4.7rem);
  line-height: 0.96;
}

.quick-cta-copy p {
  max-width: 980px;
  color: rgba(255, 250, 245, 0.86);
  font-size: clamp(1rem, 2.2vw, 1.7rem);
}

.quick-cta-actions {
  display: grid;
  width: min(100%, 560px);
  grid-template-columns: 1fr;
  gap: 12px;
}

.quick-cta-actions button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.quick-cta-actions button:first-child {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-bright));
  color: var(--white);
  box-shadow: 0 16px 36px rgba(169, 7, 25, 0.34);
  animation: ctaHot 1.9s ease-in-out infinite;
}

.reasons-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(242, 216, 195, 0.82)),
    var(--sand-light);
}

.reasons-section .eyebrow {
  color: var(--crimson);
}

.top-reason-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  max-width: 920px;
}

.top-reason-grid article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 22px;
  min-height: auto;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.92);
}

.top-reason-grid span {
  display: inline-block;
  grid-row: span 2;
  color: var(--obsidian-soft);
  font-weight: 900;
  font-size: 1.3rem;
}

.top-reason-grid h3 {
  color: var(--ink);
  font-size: 1.18rem;
}

.top-reason-grid p {
  color: var(--muted);
}

.image-band {
  padding: clamp(24px, 4vw, 46px) clamp(18px, 5vw, 72px);
}

.image-band img {
  max-height: 720px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  box-shadow: 0 20px 58px rgba(4, 47, 41, 0.16);
}

.section-dark,
.lifestyle {
  background:
    radial-gradient(circle at 76% 18%, rgba(169, 7, 25, 0.2), transparent 30%),
    linear-gradient(135deg, var(--obsidian), var(--obsidian-deep));
  color: var(--white);
}

.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-head p,
.split p,
.lead-copy p {
  color: var(--muted);
}

.section-dark .section-head p,
.lifestyle .section-head p {
  color: rgba(255, 250, 245, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
}

.split.reverse > :first-child {
  order: 2;
}

.overview-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
  border: 1px solid var(--line-dark);
}

.overview-hero-image {
  overflow: hidden;
  margin: 0 0 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  box-shadow: 0 18px 52px rgba(4, 47, 41, 0.12);
}

.overview-hero-image img {
  height: auto;
}

.overview-table div {
  padding: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.overview-table div:nth-child(odd) {
  border-right: 1px solid var(--line-dark);
}

.overview-table span {
  display: block;
  margin-bottom: 6px;
  color: var(--crimson);
  font-size: 0.82rem;
  font-weight: 900;
}

.overview-table strong {
  color: var(--obsidian);
}

.media-card {
  overflow: hidden;
  margin-bottom: 0;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line-dark);
  box-shadow: 0 18px 52px rgba(4, 47, 41, 0.12);
}

.media-card img {
  height: clamp(280px, 42vw, 520px);
  object-fit: cover;
}

.media-card-full img {
  height: auto;
  max-height: 760px;
  object-fit: contain;
  background: #0a2f2c;
}

.dark-card {
  background: rgba(255, 250, 245, 0.07);
  border-color: var(--line-light);
  box-shadow: none;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.wide-card img {
  height: clamp(320px, 44vw, 560px);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.reason-grid article {
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.06);
}

.reason-grid span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--sand);
  font-weight: 900;
}

.reason-grid p {
  color: rgba(255, 250, 245, 0.7);
}

.reason-grid ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 250, 245, 0.82);
}

.reason-grid li {
  margin-bottom: 7px;
}

.tabs {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(4, 47, 41, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.84);
}

.tab-button {
  min-width: 120px;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--obsidian);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.tab-button.active {
  background: var(--obsidian);
  color: var(--sand);
}

.tab-panel {
  display: none;
  max-width: 760px;
  margin-top: 22px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(4, 47, 41, 0.12);
}

.tab-panel.active {
  display: block;
}

.tab-panel button {
  display: inline-flex;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--crimson);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.education-city {
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.9), rgba(242, 216, 195, 0.62)),
    var(--sand-light);
}

.education-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  max-width: 920px;
}

.education-grid article {
  min-height: 290px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.78);
}

.education-grid span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--crimson);
  font-weight: 900;
}

.education-grid p {
  color: var(--muted);
}

.education-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.education-grid li {
  margin-bottom: 7px;
}

.progress-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.96), rgba(242, 216, 195, 0.72)),
    var(--sand-light);
  color: var(--ink);
}

.progress-section .eyebrow {
  color: var(--crimson);
}

.progress-section h2 {
  color: var(--ink);
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.progress-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background: rgba(255, 250, 245, 0.84);
  box-shadow: 0 18px 52px rgba(4, 47, 41, 0.12);
}

.progress-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 4;
  object-fit: cover;
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--obsidian), var(--obsidian-deep));
  color: var(--white);
}

.product-card img {
  height: 240px;
  object-fit: cover;
}

.product-card div {
  padding: 20px;
}

.product-card p {
  color: rgba(255, 250, 245, 0.72);
}

.product-card button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  margin-top: 14px;
  padding: 0 14px;
  border: 1px solid rgba(242, 216, 195, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.08);
  color: var(--sand);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.product-card button:hover {
  background: var(--sand);
  color: var(--obsidian);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.amenity-grid figure {
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.06);
}

.amenity-grid img {
  height: 210px;
  object-fit: cover;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--sand-light);
}

.f1-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.9);
}

.f1-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
}

.f1-media img {
  height: 420px;
  object-fit: contain;
  background: #fff;
  transition: opacity 280ms ease;
}

.f1-media img.is-fading {
  opacity: 0.4;
}

.f1-copy h3 {
  margin-bottom: 10px;
  color: var(--ink);
}

.f1-copy ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.f1-copy li {
  margin-bottom: 8px;
}

.lead-copy {
  max-width: 720px;
}

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

details {
  max-width: 920px;
  border-top: 1px solid rgba(4, 47, 41, 0.16);
  padding: 18px 0;
}

details:last-child {
  border-bottom: 1px solid rgba(4, 47, 41, 0.16);
}

summary {
  cursor: pointer;
  color: var(--obsidian);
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  padding: clamp(50px, 7vw, 88px) clamp(18px, 5vw, 72px);
  background: var(--crimson);
  color: var(--white);
  text-align: center;
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 22px;
  color: rgba(255, 250, 245, 0.78);
}

.final-cta button {
  background: var(--sand);
  color: var(--obsidian);
  box-shadow: none;
}

.credential-footer {
  padding: 36px clamp(18px, 5vw, 72px) 86px;
  background: #071c3e;
  color: rgba(255, 250, 245, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 250, 245, 0.48);
}

.footer-company {
  padding-right: 34px;
  border-right: 1px solid rgba(255, 250, 245, 0.42);
}

.credential-footer h2 {
  margin-bottom: 6px;
  color: var(--sand);
  font-size: 1rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.credential-footer h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 700;
  text-transform: uppercase;
}

.credential-footer p {
  margin-bottom: 10px;
}

.credential-footer a {
  color: var(--white);
}

.footer-disclaimer p {
  max-width: 760px;
}

.footer-disclaimer h2:not(:first-child) {
  margin-top: 24px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 22px;
  padding-top: 16px;
  color: rgba(255, 250, 245, 0.58);
  font-size: 0.84rem;
}

.footer-bottom a {
  color: rgba(255, 250, 245, 0.82);
}

.legal-page {
  min-height: 100vh;
  background: var(--sand-light);
}

.legal-main {
  padding: 88px clamp(18px, 5vw, 72px) 54px;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(4, 47, 41, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(2, 27, 25, 0.08);
}

.legal-card h1 {
  margin-bottom: 12px;
  color: var(--obsidian);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.legal-card h2 {
  margin-top: 28px;
  color: var(--obsidian);
  font-size: 1.18rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  padding-left: 20px;
}

.legal-actions {
  margin-top: 28px;
}

.mobile-sticky {
  position: fixed;
  z-index: 30;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(242, 216, 195, 0.28);
  border-radius: var(--radius);
  background: rgba(2, 27, 25, 0.92);
  box-shadow: 0 12px 34px rgba(2, 27, 25, 0.3);
  backdrop-filter: blur(14px);
}

.mobile-sticky span {
  grid-column: 1 / -1;
  color: rgba(242, 216, 195, 0.86);
  font-size: 0.76rem;
  font-weight: 850;
  text-align: center;
}

.mobile-sticky button {
  display: grid;
  place-items: center;
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  background: var(--crimson);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.mobile-sticky button:first-of-type {
  animation:
    ctaPulse 1.35s ease-in-out infinite,
    ctaBreath 1.1s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(212, 20, 40, 0.32);
}

.mobile-sticky button:hover {
  filter: brightness(1.18) saturate(1.08);
  transform: translateY(-2px) scale(1.01);
}

.mobile-sticky button:last-child:hover {
  box-shadow: 0 12px 26px rgba(242, 216, 195, 0.3);
}

.mobile-sticky button:last-child {
  background: var(--sand);
  color: var(--obsidian);
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 20, 40, 0);
  }

  50% {
    box-shadow:
      0 0 0 12px rgba(212, 20, 40, 0.3),
      0 0 0 22px rgba(212, 20, 40, 0.12);
  }
}

@keyframes ctaBreath {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.045);
  }
}

@keyframes ctaHot {
  0%,
  100% {
    box-shadow: 0 16px 36px rgba(169, 7, 25, 0.34);
  }

  50% {
    box-shadow:
      0 22px 44px rgba(169, 7, 25, 0.48),
      0 0 0 8px rgba(212, 20, 40, 0.15);
  }
}

.lead-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: none;
  place-items: center;
  padding: 18px;
}

.lead-modal.open {
  display: grid;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 27, 25, 0.74);
  animation: modalFade 180ms ease;
}

.lead-modal-dialog {
  position: relative;
  width: min(100%, 460px);
  z-index: 1;
  animation: modalScale 210ms ease;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(4, 47, 41, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--obsidian);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.modal-form {
  padding-top: 28px;
}

.modal-intro {
  color: var(--muted);
}

.thank-you-page {
  min-height: 100svh;
  background:
    linear-gradient(135deg, rgba(2, 27, 25, 0.94), rgba(4, 47, 41, 0.82)),
    url("./assets/masterplan-tri-thuc-saigon-park.jpg") center / cover;
  color: var(--white);
}

.thank-you {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 24px;
}

.thank-you-card {
  width: min(100%, 680px);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(242, 216, 195, 0.34);
  border-radius: var(--radius);
  background: rgba(2, 27, 25, 0.88);
  box-shadow: var(--shadow);
}

.thank-you-card img {
  width: 180px;
  margin-bottom: 28px;
}

.thank-you-brand {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--sand);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
}

.thank-you-card h1 {
  margin-bottom: 16px;
}

.thank-you-card p {
  color: rgba(255, 250, 245, 0.76);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

@keyframes modalFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalScale {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .site-sidebar {
    width: 156px;
    right: 12px;
    top: 56px;
  }

  .sidebar-toggle {
    top: 10px;
    right: 12px;
  }

  .hero-content,
  .split,
  .split.reverse,
  .lead-section,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse > :first-child {
    order: 0;
  }

  .hero-content {
    align-items: start;
    padding-top: 86px;
  }

  .overview-table,
  .product-grid,
  .reason-grid,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .hero-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .overview-table div:nth-child(odd) {
    border-right: 0;
  }

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

  .footer-company {
    padding-right: 0;
    border-right: 0;
  }

  .mobile-sticky {
    display: grid;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .topbar {
    padding: 10px 14px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 154px;
    height: 42px;
  }

  .clean-logo {
    width: auto;
    height: 36px;
    max-width: 46px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .topbar-call {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 27, 25, 0.9) 0%, rgba(2, 27, 25, 0.76) 44%, rgba(2, 27, 25, 0.96) 100%),
      linear-gradient(90deg, rgba(2, 27, 25, 0.9), rgba(2, 27, 25, 0.34));
  }

  .hero-content {
    min-height: auto;
    padding: 84px 16px 26px;
    gap: 18px;
  }

  .hero-copy {
    padding-top: 0;
  }

  h1 {
    margin-bottom: 16px;
  }

  h1 span {
    font-size: 2.5rem;
  }

  h1 strong {
    max-width: 100%;
    margin-top: 10px;
    font-size: 1.42rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-info-grid article {
    min-height: 170px;
    padding: 16px 10px;
  }

  .hero-info-grid span {
    font-size: 0.72rem;
  }

  .hero-info-grid small {
    font-size: 0.7rem;
  }

  .hero-info-grid strong {
    font-size: 1.92rem;
  }

  .primary-link,
  .ghost-link {
    width: 100%;
  }

  .section {
    padding: 42px 16px;
  }

  .quick-lead-section {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .quick-cta-copy h2 {
    font-size: clamp(1.9rem, 9vw, 3.2rem);
    line-height: 1;
  }

  .quick-cta-copy p {
    font-size: 1.02rem;
  }

  .quick-cta-actions {
    grid-template-columns: 1fr;
  }

  .f1-banner {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .f1-media img {
    height: 260px;
  }

  .top-reason-grid article,
  .education-grid article {
    min-height: auto;
  }

  .top-reason-grid article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .top-reason-grid span {
    grid-row: auto;
  }

  .progress-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .image-band {
    padding: 20px 16px;
  }

  .image-band img {
    max-height: none;
  }

  .media-card img,
  .wide-card img {
    height: 290px;
  }

  .media-card-full img {
    height: auto;
  }

  .product-card img,
  .amenity-grid img {
    height: 220px;
  }

  .thank-you-actions .primary-link,
  .thank-you-actions .ghost-link {
    width: 100%;
  }

  .tabs {
    width: 100%;
  }

  .tab-button {
    min-width: 0;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    text-align: center;
  }

}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* Hero vị trí image */
.hero-vi-tri {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.hero-vi-tri img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .hero-content {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-end !important;
    justify-content: space-between;
    gap: 2rem;
  }

  .hero-copy {
    flex: 1;
    min-width: 0;
  }

  .hero-vi-tri {
    flex: 0 0 38%;
    width: 38%;
    order: 1;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .hero {
    overflow-x: hidden !important;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-vi-tri {
    width: 100vw !important;
    max-width: 100vw !important;
    flex: none !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
  }

  .hero-vi-tri img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}
/* Reasons + Video layout desktop */
@media (min-width: 768px) {
  .video-tien-do-section {
    display: none !important;
  }

  .reasons-section {
    overflow: visible !important;
  }

  .reasons-desktop-layout {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 3rem;
  }

  .reasons-content {
    flex: 1 1 0% !important;
    min-width: 0 !important;
  }

  .reasons-video {
    flex: 0 0 420px !important;
    width: 420px !important;
    position: sticky;
    top: 90px;
  }

  .reasons-video h2 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1.5rem !important;
    color: #1a1a1a;
    font-weight: 700 !important;
  }
}

@media (max-width: 767px) {
  .reasons-video {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .video-tien-do-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .video-tien-do-section .section-head {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .video-tien-do-section .video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    margin: 0 auto !important;
  }
}
/* ===== VIDEO WRAPPER - FINAL FIX ===== */
.video-wrapper {
  position: relative !important;
  padding-bottom: 56.25% !important;
  height: 0 !important;
  overflow: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

.video-wrapper iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
}

@media (min-width: 768px) {
  .reasons-video .video-wrapper {
    margin: 0 !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 767px) {
  .video-tien-do-section {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .video-tien-do-section .video-wrapper {
    border-radius: 8px !important;
  }
}
/* ===== TOP REASON GRID - BLANCA CITY STYLE ===== */
.top-reason-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 100% !important;
  gap: 16px !important;
}

.top-reason-grid article {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 28px 20px !important;
  min-height: auto !important;
}

.top-reason-grid span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: var(--sand) !important;
  color: var(--obsidian) !important;
  font-size: 1.2rem !important;
  font-weight: 900 !important;
  margin-bottom: 16px !important;
  flex-shrink: 0 !important;
}

.top-reason-grid h3 {
  width: 100% !important;
  text-align: center !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid var(--line-dark) !important;
  margin-bottom: 14px !important;
}

.top-reason-grid p {
  text-align: center !important;
  margin: 0 !important;
  flex: 1 !important;
}

@media (max-width: 767px) {
  .top-reason-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .top-reason-grid article {
    padding: 20px 14px !important;
  }
}
