:root {
  --ink: #20231e;
  --ink-soft: #34382f;
  --green: #3d4a36;
  --green-dark: #222b20;
  --gold: #b99863;
  --gold-dark: #9b7b49;
  --cream: #f6f2e9;
  --cream-dark: #ebe4d7;
  --white: #ffffff;
  --muted: #6f746a;
  --line: rgba(32, 35, 30, 0.14);
  --shadow: 0 24px 70px rgba(24, 28, 23, 0.14);
  --radius: 4px;
  --container: 1240px;
  --header-height: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

section {
  position: relative;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

/* Typography */
h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4.4vw, 4.5rem);
  line-height: 1.08;
}

h3 {
  line-height: 1.3;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: #dfc79f;
}

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading p,
.section-copy p,
.location-copy p,
.faq-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Buttons */
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

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

.button-primary {
  background: var(--green-dark);
  color: var(--white);
}

.button-primary:hover {
  background: #111710;
}

.button-gold {
  background: var(--gold);
  color: #161810;
}

.button-gold:hover {
  background: #c9aa76;
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.button-ghost-light:hover {
  background: var(--white);
  color: var(--ink);
}

.button-full {
  width: 100%;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.text-button svg {
  width: 16px;
  height: 16px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  color: var(--white);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    height 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  height: 76px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 30px rgba(20, 24, 19, 0.09);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 132px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  font-family: "Playfair Display", serif;
  line-height: 0.95;
  text-align: center;
}

.brand-main {
  font-size: 1.2rem;
  letter-spacing: 0.075em;
}

.brand-small {
  font-family: "DM Sans", sans-serif;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.38em;
}

.brand-heights {
  margin-top: 4px;
  padding-left: 0.38em;
}

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 34px);
}

.nav-link {
  position: relative;
  padding: 29px 0;
  font-size: 0.88rem;
  font-weight: 600;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 700;
}

.site-header.scrolled .header-cta,
.site-header.menu-open .header-cta {
  border-color: var(--ink);
}

.header-cta svg {
  width: 17px;
  height: 17px;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 76px;
  left: 0;
  width: 100%;
  padding: 16px 0 24px;
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line);
  box-shadow: 0 20px 30px rgba(24, 28, 23, 0.1);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-inner {
  display: grid;
  gap: 4px;
}

.mobile-menu a {
  padding: 11px 0;
  font-weight: 600;
}

/* Hero */
.hero {
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #20251f;
}

.hero-slider,
.hero-slide,
.hero-overlay,
.hero-grid-pattern {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 0.8s ease,
    transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 16, 12, 0.88) 0%, rgba(12, 16, 12, 0.58) 46%, rgba(12, 16, 12, 0.45) 100%),
    linear-gradient(0deg, rgba(8, 10, 8, 0.42), transparent 45%);
}

.hero-grid-pattern {
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.hero-content {
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: 70px;
  align-items: center;
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 88px;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 23px;
  font-size: clamp(4.3rem, 8vw, 8rem);
  line-height: 0.85;
  text-wrap: balance;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 32px;
  font-size: 1.12rem;
}

.hero-location svg {
  width: 20px;
  height: 20px;
  color: #dfc79f;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 0;
  margin-bottom: 34px;
}

.hero-point {
  min-width: 165px;
  padding: 0 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-point:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-point strong,
.hero-point span {
  display: block;
}

.hero-point strong {
  margin-bottom: 4px;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

.hero-point span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.77rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.rera-inline {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.74);
}

.rera-inline img {
  width: 58px;
  height: 58px;
  padding: 4px;
  background: var(--white);
}

.rera-inline span,
.rera-inline strong,
.rera-inline a {
  display: block;
}

.rera-inline span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.rera-inline strong {
  color: var(--white);
  font-size: 0.9rem;
}

.rera-inline a {
  color: #dfc79f;
  font-size: 0.72rem;
  text-decoration: underline;
}

.hero-form-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.form-card-top {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}

.form-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-card-top h2 {
  margin-bottom: 7px;
  font-size: 2.1rem;
}

.form-card-top p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-form {
  display: grid;
  gap: 15px;
}

.lead-form label > span:first-child {
  display: block;
  margin-bottom: 7px;
  font-size: 0.74rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(32, 35, 30, 0.2);
  border-radius: 2px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(185, 152, 99, 0.14);
}

.phone-field {
  display: flex;
  align-items: center;
  min-height: 48px;
  background: var(--white);
  border: 1px solid rgba(32, 35, 30, 0.2);
  border-radius: 2px;
}

.phone-field > span {
  padding: 0 12px;
  font-size: 0.83rem;
  font-weight: 700;
  border-right: 1px solid rgba(32, 35, 30, 0.15);
}

.phone-field input {
  min-height: 46px;
  border: 0;
  box-shadow: none !important;
}

.phone-field:focus-within {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(185, 152, 99, 0.14);
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
}

.checkbox-label input {
  width: 15px;
  min-height: auto;
  height: 15px;
  margin-top: 4px;
  accent-color: var(--green-dark);
}

.checkbox-label span {
  margin: 0 !important;
  color: var(--muted);
  font-size: 0.69rem !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 0.69rem;
}

.form-security svg {
  width: 14px;
  height: 14px;
}

.hero-slider-controls {
  position: absolute;
  z-index: 3;
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero-arrow {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.12);
  color: var(--white);
  cursor: pointer;
}

.hero-arrow svg {
  width: 17px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 24px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--white);
}

/* Quick facts */
.quick-facts {
  z-index: 3;
  background: var(--cream);
  border-bottom: 1px solid rgba(32, 35, 30, 0.08);
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-facts article {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 115px;
  padding: 20px 28px;
  border-left: 1px solid rgba(32, 35, 30, 0.11);
}

.quick-facts article:last-child {
  border-right: 1px solid rgba(32, 35, 30, 0.11);
}

.quick-facts svg {
  width: 26px;
  height: 26px;
  color: var(--gold-dark);
}

.quick-facts span,
.quick-facts strong {
  display: block;
}

.quick-facts span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quick-facts strong {
  font-size: 1.03rem;
}

/* About */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 92px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 600px;
}

.about-image-main {
  width: 84%;
  height: 535px;
  overflow: hidden;
}

.about-image-main img,
.about-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 275px;
  padding: 10px 0 0 10px;
  background: var(--white);
  overflow: hidden;
}

.about-stat {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 175px;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  background: var(--gold);
  color: #181a15;
}

.about-stat strong {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 1;
}

.about-stat span {
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 700;
}

.section-copy h2 {
  max-width: 650px;
}

.expandable-copy .extra-copy {
  display: none;
}

.expandable-copy.expanded .extra-copy {
  display: block;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Walkthrough */
.walkthrough-section {
  min-height: 610px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.walkthrough-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 25, 19, 0.92) 0%, rgba(20, 25, 19, 0.5) 58%, rgba(20, 25, 19, 0.28)),
    url("https://img.starestate.com/project_gallery/2024-10-22T14-13-05_gall2.webp")
      center / cover;
}

.walkthrough-content {
  z-index: 1;
}

.walkthrough-card {
  max-width: 700px;
  padding: 62px 58px;
  background: rgba(27, 34, 25, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.walkthrough-card h2 {
  margin-bottom: 20px;
}

.walkthrough-card p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.7);
}

.play-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
}

.play-button > span {
  width: 51px;
  height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
}

.play-button svg {
  width: 18px;
  fill: currentColor;
}

/* Amenities */
.amenities-section {
  background: var(--cream);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(32, 35, 30, 0.13);
  border-left: 1px solid rgba(32, 35, 30, 0.13);
}

.amenity-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 31px;
  border-right: 1px solid rgba(32, 35, 30, 0.13);
  border-bottom: 1px solid rgba(32, 35, 30, 0.13);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.amenity-card:hover {
  z-index: 1;
  color: var(--white);
  background: var(--green-dark);
  transform: translateY(-4px);
}

.amenity-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: rgba(185, 152, 99, 0.17);
}

.amenity-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.amenity-card:hover .amenity-icon {
  background: var(--gold);
}

.amenity-card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.amenity-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.amenity-card:hover p {
  color: rgba(255, 255, 255, 0.66);
}

.amenity-cta {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--gold-dark);
}

.amenity-cta:hover {
  background: var(--gold-dark);
}

.amenity-cta span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
}

.amenity-cta h3 {
  max-width: 155px;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}

.circle-button {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

/* Plans */
.plans-section {
  color: var(--white);
  background: var(--green-dark);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.split-heading h2 {
  margin: 0;
}

.split-heading p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.65);
}

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

.plan-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 410px;
  color: var(--ink);
  background: var(--white);
}

.plan-image {
  position: relative;
  min-height: 365px;
  overflow: hidden;
  background: #eeeae1;
}

.plan-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
}

.plan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-badge {
  position: absolute;
  z-index: 1;
  left: 16px;
  top: 16px;
  padding: 6px 10px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-content {
  display: flex;
  flex-direction: column;
  padding: 33px;
}

.plan-title-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.plan-title-row span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-title-row h3 {
  margin: 8px 0 0;
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
}

.plan-title-row svg {
  width: 29px;
  height: 29px;
  color: var(--gold-dark);
}

.plan-meta {
  margin: auto 0 25px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-meta span,
.plan-meta strong {
  display: block;
}

.plan-meta span {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.plan-meta strong {
  font-size: 1rem;
}

.plans-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.plans-note svg {
  width: 17px;
  min-width: 17px;
  margin-top: 3px;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 255px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #ddd;
  cursor: pointer;
}

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

.gallery-wide {
  grid-column: span 2;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 13, 10, 0.7), transparent 52%);
}

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

.gallery-caption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  color: var(--white);
  text-align: left;
}

.gallery-caption > span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
}

.gallery-caption strong {
  font-family: "Playfair Display", serif;
  font-size: 1.13rem;
}

/* Location */
.location-section {
  background: var(--cream);
}

.location-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 540px;
  background: var(--white);
  box-shadow: 0 24px 65px rgba(32, 35, 30, 0.08);
}

.location-copy {
  padding: 62px 52px;
}

.location-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.location-address {
  display: flex;
  gap: 13px;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location-address svg {
  width: 21px;
  min-width: 21px;
  color: var(--gold-dark);
}

.location-address span,
.location-address strong {
  display: block;
}

.location-address span {
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.location-address strong {
  margin-top: 5px;
  font-size: 0.9rem;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: block;
  border: 0;
  filter: grayscale(0.88) contrast(0.95);
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 22px;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 115px;
  padding: 20px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.location-card:last-child {
  border-right: 0;
}

.location-card img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.location-card strong,
.location-card span {
  display: block;
}

.location-card strong {
  color: var(--gold-dark);
  font-size: 1.15rem;
}

.location-card span {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

/* Contact */
.contact-section {
  overflow: hidden;
  padding: 115px 0;
  color: var(--white);
}

.contact-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 31, 22, 0.96), rgba(24, 31, 22, 0.84)),
    url("https://img.starestate.com/ProjectBannerImage/2024-10-22_14-14-28_RishitaMulberryHeights.webp")
      center / cover;
}

.contact-grid {
  z-index: 1;
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.contact-copy h2 {
  max-width: 590px;
}

.contact-copy > p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.66);
}

.contact-list {
  display: grid;
  gap: 13px;
  margin-top: 34px;
}

.contact-list > * {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
}

.contact-list > * > svg {
  width: 20px;
  height: 20px;
  color: #dfc79f;
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-list strong {
  font-size: 0.91rem;
}

.contact-form-wrapper {
  padding: 42px;
  color: var(--ink);
  background: var(--white);
}

.form-heading {
  margin-bottom: 5px;
}

.form-heading > span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 4px 0 16px;
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
}

.form-two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 115px;
}

.faq-heading h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 1.01rem;
  font-weight: 700;
}

.faq-question svg {
  width: 20px;
  min-width: 20px;
  color: var(--gold-dark);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding: 0 42px 25px 0;
}

/* Footer */
.site-footer {
  color: var(--white);
  background: #171c15;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding-top: 75px;
  padding-bottom: 55px;
}

.brand-footer {
  align-items: flex-start;
  text-align: left;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.56);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links h3 {
  margin-bottom: 17px;
  color: #dfc79f;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a,
.footer-button {
  display: block;
  width: fit-content;
  margin: 8px 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  font-size: 0.86rem;
}

.footer-links a:hover,
.footer-button:hover {
  color: var(--white);
}

.footer-rera {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 26px;
  padding-bottom: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-rera img {
  width: 65px;
  height: 65px;
  padding: 4px;
  background: var(--white);
}

.footer-rera strong {
  font-size: 0.83rem;
}

.footer-rera p {
  max-width: 950px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  line-height: 1.55;
}

.footer-bottom {
  background: #10140f;
}

.footer-bottom .container {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
}

/* Modal */
.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.open,
.lightbox.open {
  display: flex;
}

.modal-backdrop,
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 10, 0.82);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(930px, 100%);
  max-height: min(760px, calc(100vh - 30px));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: auto;
  background: var(--white);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.modal-close,
.lightbox-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.modal-image {
  position: relative;
  min-height: 620px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 17, 12, 0.8), transparent 65%);
}

.modal-image-overlay {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: var(--white);
}

.modal-image-overlay span,
.modal-image-overlay strong {
  display: block;
}

.modal-image-overlay span {
  color: #dfc79f;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-image-overlay strong {
  margin-top: 5px;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
}

.modal-form-area {
  padding: 48px 44px;
}

.modal-form-area h2 {
  margin-bottom: 10px;
  font-size: 2.5rem;
}

.modal-form-area > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Lightbox */
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 96vw);
  max-height: 90vh;
  margin: 0;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.lightbox-content figcaption {
  padding: 14px 0 0;
  color: var(--white);
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
}

/* Toast */
.toast {
  position: fixed;
  z-index: 5000;
  right: 22px;
  bottom: 22px;
  max-width: 390px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px 18px;
  color: var(--white);
  background: var(--green-dark);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast svg {
  width: 22px;
  min-width: 22px;
  color: #dfc79f;
}

.toast strong,
.toast span {
  display: block;
}

.toast span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
}

/* Floating and mobile actions */
.floating-actions {
  position: fixed;
  z-index: 1200;
  right: 0;
  top: 52%;
  display: grid;
  transform: translateY(-50%);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.floating-actions > * {
  width: 70px;
  min-height: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--green-dark);
  color: var(--white);
  cursor: pointer;
  font-size: 0.65rem;
}

.floating-actions > *:nth-child(2) {
  background: #2d6339;
}

.floating-actions svg {
  width: 19px;
  height: 19px;
}

.mobile-bottom-bar {
  display: none;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.12s;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  :root {
    --container: 980px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 160px;
    padding-bottom: 100px;
  }

  .hero-copy {
    max-width: 860px;
  }

  .hero-form-card {
    max-width: 570px;
  }

  .quick-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-facts article:nth-child(2) {
    border-right: 1px solid rgba(32, 35, 30, 0.11);
  }

  .quick-facts article:nth-child(n + 3) {
    border-top: 1px solid rgba(32, 35, 30, 0.11);
  }

  .about-grid,
  .contact-grid {
    gap: 55px;
  }

  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .plan-image {
    min-height: 260px;
  }

  .location-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .location-card:nth-child(3) {
    border-right: 0;
  }

  .location-card:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 840px) {
  .section {
    padding: 88px 0;
  }

  .about-grid,
  .location-layout,
  .contact-grid,
  .faq-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-grid,
  .faq-layout {
    gap: 45px;
  }

  .about-media {
    min-height: 540px;
  }

  .about-image-main {
    height: 475px;
  }

  .faq-heading {
    position: static;
  }

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

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .plan-card {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .location-copy {
    padding: 48px 38px;
  }

  .location-map iframe {
    min-height: 420px;
  }

  .contact-form-wrapper {
    padding: 34px;
  }

  .footer-links {
    max-width: 650px;
  }

  .modal-card {
    grid-template-columns: 1fr;
    width: min(570px, 100%);
  }

  .modal-image {
    min-height: 240px;
    max-height: 240px;
  }

  .modal-form-area {
    padding: 34px;
  }

  .floating-actions {
    display: none;
  }

  body {
    padding-bottom: 64px;
  }

  .mobile-bottom-bar {
    position: fixed;
    z-index: 1500;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    box-shadow: 0 -6px 25px rgba(14, 17, 13, 0.13);
  }

  .mobile-bottom-bar > * {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    background: var(--green-dark);
    color: var(--white);
    font-size: 0.73rem;
    font-weight: 700;
  }

  .mobile-bottom-bar > *:last-child {
    border-right: 0;
    background: #2d6339;
  }

  .mobile-bottom-bar svg {
    width: 17px;
    height: 17px;
  }

  .toast {
    right: 12px;
    bottom: 76px;
    left: 12px;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 74px;
  }

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

  h2 {
    font-size: 2.35rem;
  }

  .section {
    padding: 72px 0;
  }

  .site-header,
  .site-header.scrolled,
  .site-header.menu-open {
    height: 70px;
  }

  .mobile-menu {
    top: 70px;
  }

  .hero-content {
    gap: 35px;
    padding-top: 130px;
    padding-bottom: 92px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 18vw, 5.2rem);
  }

  .hero-point {
    width: 50%;
    min-width: auto;
    padding: 0 12px;
  }

  .hero-point:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-form-card {
    padding: 25px 20px;
  }

  .hero-slider-controls {
    right: 14px;
    bottom: 19px;
  }

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

  .quick-facts article {
    min-height: 105px;
    padding: 16px 13px;
    gap: 9px;
  }

  .quick-facts svg {
    width: 22px;
  }

  .quick-facts span {
    font-size: 0.58rem;
  }

  .quick-facts strong {
    font-size: 0.85rem;
  }

  .about-media {
    min-height: 425px;
  }

  .about-image-main {
    width: 92%;
    height: 370px;
  }

  .about-image-small {
    width: 52%;
    height: 190px;
  }

  .about-stat {
    width: 130px;
    min-height: 110px;
    padding: 16px;
  }

  .about-stat strong {
    font-size: 2.25rem;
  }

  .about-actions {
    display: grid;
  }

  .about-actions .button {
    width: 100%;
  }

  .walkthrough-section {
    min-height: 550px;
  }

  .walkthrough-card {
    padding: 36px 25px;
  }

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

  .amenity-card {
    min-height: 205px;
    padding: 20px 16px;
  }

  .amenity-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 17px;
  }

  .amenity-icon img {
    width: 29px;
    height: 29px;
  }

  .amenity-card p {
    display: none;
  }

  .amenity-card h3 {
    font-size: 0.88rem;
  }

  .amenity-cta {
    grid-column: span 2;
    min-height: 165px;
    padding: 25px;
  }

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

  .plan-image {
    min-height: 230px;
  }

  .plan-content {
    min-height: 300px;
    padding: 25px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

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

  .gallery-wide {
    grid-column: span 2;
  }

  .gallery-caption {
    right: 13px;
    bottom: 12px;
    left: 13px;
  }

  .gallery-caption strong {
    font-size: 0.93rem;
  }

  .location-copy {
    padding: 34px 24px;
  }

  .location-map iframe {
    min-height: 350px;
  }

  .location-cards {
    grid-template-columns: 1fr;
  }

  .location-card,
  .location-card:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .location-card:nth-child(n + 4) {
    border-top: 0;
  }

  .contact-section {
    padding: 78px 0;
  }

  .contact-form-wrapper {
    padding: 27px 20px;
  }

  .form-two-columns {
    grid-template-columns: 1fr;
  }

  .faq-item.open .faq-answer p {
    padding-right: 0;
  }

  .footer-top {
    padding-top: 58px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-rera {
    align-items: flex-start;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 15px 0;
  }

  .modal {
    align-items: flex-end;
    padding: 0;
  }

  .modal-card {
    max-height: 94vh;
  }

  .modal-image {
    min-height: 180px;
    max-height: 180px;
  }

  .modal-form-area {
    padding: 28px 20px 34px;
  }

  .modal-form-area h2 {
    font-size: 2.15rem;
  }

  .lightbox {
    padding: 12px;
  }
}
