:root {
  --site-ink: #14231d;
  --site-muted: #68736e;
  --site-accent: #43b883;
  --site-accent-dark: #20845b;
  --site-cream: #f5f3ee;
  --site-line: #dfe5e1;
  --site-white: #ffffff;
  --site-shadow: 0 22px 60px rgba(20, 35, 29, .12);
  --site-radius: 24px;
}

html {
  scroll-behavior: smooth;
  background: #ffffff;
}

body {
  margin: 0;
  min-width: 320px;
  background: #ffffff;
}

.website-shell {
  position: relative;
  z-index: 20;
  min-height: 100vh;
  overflow: hidden;
  color: var(--site-ink);
  background: var(--site-white);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.topbar {
  color: var(--site-ink);
  background: var(--site-cream);
  border-bottom: 1px solid rgba(20, 35, 29, .06);
}

.topbar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}

.topbar-links,
.social-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar a,
.social-links a {
  color: inherit;
  text-decoration: none;
}

.topbar a:hover,
.site-nav a:hover,
.site-nav a.is-active {
  color: var(--site-accent-dark);
}

.contact-icon {
  color: var(--site-accent-dark);
  margin-right: 7px;
}

.site-header {
  position: relative;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--site-line);
}

.site-header-inner {
  min-height: 98px;
  display: grid;
  grid-template-columns: 260px 1fr 64px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--site-ink);
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .06em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 42px;
  border-radius: 12px 4px 12px 4px;
  color: #fff;
  background: linear-gradient(135deg, var(--site-accent), var(--site-accent-dark));
  font-size: 20px;
  letter-spacing: -.04em;
  box-shadow: 0 10px 25px rgba(67, 184, 131, .24);
}

.brand small {
  color: var(--site-accent-dark);
  font-size: .62em;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
}

.site-nav a,
.dropdown-label {
  color: var(--site-ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-dropdown {
  position: relative;
  padding-block: 34px;
}

.dropdown-label::after {
  content: "⌄";
  margin-left: 5px;
  color: var(--site-accent-dark);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 16px);
  left: 50%;
  min-width: 190px;
  padding: 10px;
  border: 1px solid var(--site-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--site-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.dropdown-menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 9px;
}

.dropdown-menu a:hover {
  background: var(--site-cream);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.header-search {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  justify-self: end;
  border: 1px solid var(--site-line);
  border-radius: 50%;
  color: var(--site-ink);
  text-decoration: none;
  font-size: 22px;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-search:hover,
.header-search:focus-visible {
  color: #fff;
  border-color: var(--site-accent);
  background: var(--site-accent);
  transform: translateY(-2px);
}

body.search-is-open {
  overflow: hidden;
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 250ms ease, opacity 250ms ease;
}

.search-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.search-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 16, 0.72);
  backdrop-filter: blur(7px);
}

.search-dialog {
  position: relative;
  width: min(680px, 100%);
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  transform: translateY(22px) scale(0.97);
  transition: transform 300ms cubic-bezier(.2, .8, .2, 1);
}

.search-modal.is-open .search-dialog {
  transform: translateY(0) scale(1);
}

.search-dialog h2 {
  margin: 8px 45px 26px 0;
  color: var(--site-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
}

.search-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--site-line);
  border-radius: 50%;
  background: #fff;
  color: var(--site-ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.search-form input {
  min-width: 0;
  height: 58px;
  padding: 0 20px;
  border: 1px solid var(--site-line);
  border-radius: 12px;
  outline: none;
  color: var(--site-ink);
  background: var(--site-cream);
  font: inherit;
}

.search-form input:focus {
  border-color: var(--site-accent);
  box-shadow: 0 0 0 4px rgba(51, 171, 123, 0.14);
}

.search-form button {
  height: 58px;
  padding: 0 30px;
  border: 0;
  border-radius: 12px;
  background: var(--site-accent);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.search-form button:hover {
  background: var(--site-ink);
  transform: translateY(-1px);
}

@media (max-width: 560px) {
  .search-dialog {
    padding: 36px 22px 24px;
    border-radius: 18px;
  }

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

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--site-line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--site-ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(570px, 72vh, 780px);
  display: grid;
  align-items: center;
  color: #fff;
  background: #0d1915;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: -2;
  overflow: hidden;
  background: #0d1915;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s ease, transform 7s ease;
  will-change: opacity, transform;
}

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

.site-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 18, 14, .88) 0%, rgba(7, 18, 14, .52) 42%, rgba(7, 18, 14, .12) 76%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-block: 90px;
}

.hero-content > .eyebrow-site,
.hero-content > h1,
.hero-content > p {
  transition: opacity 220ms ease, transform 350ms cubic-bezier(.2, .8, .2, 1);
}

.hero-content.is-changing > .eyebrow-site,
.hero-content.is-changing > h1,
.hero-content.is-changing > p {
  opacity: 0;
  transform: translateY(18px);
}

.eyebrow-site {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #bcebd5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow-site::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--site-accent);
}

.site-hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 50px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.045em;
}

.site-hero p {
  max-width: 610px;
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid var(--site-accent);
  border-radius: 999px;
  color: #fff;
  background: var(--site-accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-button:hover {
  transform: translateY(-2px);
  background: var(--site-accent-dark);
  border-color: var(--site-accent-dark);
}

.site-button.is-outline {
  border-color: rgba(255,255,255,.55);
  background: transparent;
}

.site-button.is-dark {
  border-color: var(--site-ink);
  background: var(--site-ink);
}

.hero-stats {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(18px);
}

.hero-slider-controls {
  position: absolute;
  z-index: 4;
  left: max(20px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
  color: #fff;
  background: rgba(10, 24, 19, .38);
  font-size: 19px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  border-color: var(--site-accent);
  background: var(--site-accent);
  transform: scale(1.06);
}

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

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
  transition: width 250ms ease, background 250ms ease;
}

.hero-dots button.is-active {
  width: 30px;
  background: var(--site-accent);
}

.hero-stat {
  min-width: 130px;
  padding: 20px;
  background: rgba(13, 25, 21, .58);
}

.hero-stat strong,
.metric strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
}

.hero-stat span {
  color: rgba(255,255,255,.68);
  font-size: 12px;
}

.section {
  padding-block: clamp(76px, 9vw, 130px);
}

.section.is-cream {
  background: var(--site-cream);
}

.section.is-dark {
  color: #fff;
  background: var(--site-ink);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 46px;
}

.section-heading > div {
  max-width: 720px;
}

.section-heading h2,
.content-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 50px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.section-heading p,
.content-copy p,
.service-card p,
.property-card p,
.contact-panel p {
  color: var(--site-muted);
  line-height: 1.75;
}

.section.is-dark .section-heading p,
.section.is-dark .service-card p {
  color: rgba(255,255,255,.64);
}

.property-grid,
.service-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.property-card {
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fff;
  box-shadow: 0 12px 40px rgba(20,35,29,.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--site-shadow);
}

.property-media {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.property-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.property-card:hover .property-media img {
  transform: scale(1.04);
}

.property-tag {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--site-accent-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.property-body {
  padding: 25px;
}

.property-body h3,
.service-card h3,
.value-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--site-line);
  color: var(--site-muted);
  font-size: 12px;
}

.property-listing-grid {
  align-items: stretch;
  gap: 28px;
}

.property-listing-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(20, 35, 29, .07);
}

.property-listing-card .property-media {
  display: block;
  height: 250px;
  color: #fff;
}

.property-listing-card .property-media::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(7, 18, 14, .78), transparent);
  pointer-events: none;
}

.listing-badges {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: flex;
  gap: 7px;
}

.listing-badges span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--site-accent-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}

.listing-badges span + span {
  background: rgba(20, 35, 29, .72);
  backdrop-filter: blur(8px);
}

.property-location {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.property-listing-card .property-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.property-listing-card .property-body h3 {
  min-height: 2.5em;
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.25;
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 15px;
  color: var(--site-muted);
  font-size: 12px;
  line-height: 1.5;
}

.listing-meta span {
  white-space: nowrap;
}

.listing-meta b {
  color: var(--site-ink);
}

.listing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--site-line);
}

.listing-footer a {
  color: var(--site-ink);
  font-size: 13px;
  text-decoration: none;
}

.listing-footer a:hover {
  color: var(--site-accent-dark);
}

.listing-footer strong {
  flex: none;
  color: var(--site-ink);
  font-size: 19px;
}

.testimonial-page-hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.7;
}

.featured-testimonial {
  display: grid;
  grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--site-shadow);
}

.featured-testimonial-mark {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, var(--site-accent-dark), var(--site-ink));
}

.featured-testimonial-mark::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  transform: translate(42%, 38%);
}

.featured-testimonial-mark span {
  height: 120px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 160px;
  line-height: 1;
}

.featured-testimonial-mark small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.featured-testimonial-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(38px, 6vw, 76px);
}

.testimonial-rating {
  color: #e5a426;
  font-size: 16px;
  letter-spacing: .12em;
}

.featured-testimonial blockquote {
  margin: 24px 0 32px;
  color: var(--site-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.35;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--site-accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}

.testimonial-person strong,
.testimonial-person small {
  display: block;
}

.testimonial-person strong {
  color: var(--site-ink);
  font-size: 14px;
}

.testimonial-person small {
  margin-top: 5px;
  color: var(--site-muted);
  font-size: 11px;
}

.testimonial-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  border: 1px solid var(--site-line);
  border-radius: 20px;
  background: var(--site-cream);
}

.testimonial-metrics > div {
  padding: 28px;
  text-align: center;
}

.testimonial-metrics > div + div {
  border-left: 1px solid var(--site-line);
}

.testimonial-metrics strong,
.testimonial-metrics span {
  display: block;
}

.testimonial-metrics strong {
  color: var(--site-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
}

.testimonial-metrics span {
  margin-top: 7px;
  color: var(--site-muted);
  font-size: 12px;
}

.testimonial-heading > p {
  max-width: 420px;
}

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

.testimonial-card {
  display: flex;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--site-line);
  border-radius: 22px;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 12px 36px rgba(20, 35, 29, .055);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--site-shadow);
}

.testimonial-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.testimonial-quote-mark {
  height: 42px;
  color: rgba(32, 132, 91, .18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 70px;
  line-height: .8;
}

.testimonial-card > p {
  flex: 1;
  margin: 24px 0 30px;
  color: var(--site-muted);
  font-size: 15px;
  line-height: 1.8;
}

.testimonial-cta::after {
  content: "“";
  position: absolute;
  right: 7%;
  top: -35px;
  color: rgba(255,255,255,.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 280px;
  line-height: 1;
}

.testimonial-cta > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .testimonial-metrics > div:nth-child(3) {
    border-left: 0;
  }

  .testimonial-metrics > div:nth-child(n+3) {
    border-top: 1px solid var(--site-line);
  }
}

@media (max-width: 680px) {
  .featured-testimonial {
    grid-template-columns: 1fr;
  }

  .featured-testimonial-mark {
    min-height: 210px;
  }

  .featured-testimonial-mark span {
    height: 92px;
    font-size: 125px;
  }

  .featured-testimonial-copy {
    padding: 30px 22px;
  }

  .testimonial-grid,
  .testimonial-metrics {
    grid-template-columns: 1fr;
  }

  .testimonial-metrics > div + div {
    border-top: 1px solid var(--site-line);
    border-left: 0;
  }

  .testimonial-card {
    min-height: 0;
    padding: 24px;
  }
}

.service-card,
.value-card {
  padding: 34px;
  border-radius: var(--site-radius);
  background: #fff;
  border: 1px solid var(--site-line);
}

.section.is-dark .service-card {
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.055);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 16px;
  color: var(--site-accent-dark);
  background: #e8f7f0;
  font-size: 24px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.split-media {
  min-height: 530px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--site-shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
}

.check-list,
.amenity-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li::before,
.amenity-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  color: #fff;
  background: var(--site-accent);
  font-size: 12px;
  font-weight: 900;
}

.page-hero {
  position: relative;
  min-height: 410px;
  display: grid;
  align-items: end;
  padding-block: 80px;
  color: #fff;
  background: var(--site-ink) url("assets/hero-residential-hd.png") center 58% / cover no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,18,14,.88), rgba(7,18,14,.35));
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 54px;
  border: 1px solid var(--site-line);
  border-radius: 20px;
  background: var(--site-line);
}

.metric {
  padding: 28px;
  background: #fff;
}

.metric span {
  color: var(--site-muted);
  font-size: 13px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}

.filter-chip {
  padding: 11px 17px;
  border: 1px solid var(--site-line);
  border-radius: 999px;
  color: var(--site-ink);
  background: #fff;
  font-weight: 700;
}

.filter-chip.is-active {
  color: #fff;
  border-color: var(--site-accent-dark);
  background: var(--site-accent-dark);
}

.detail-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .72fr);
  gap: 42px;
  align-items: start;
}

.detail-gallery {
  min-width: 0;
}

.detail-gallery-viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  background: var(--site-cream);
  box-shadow: 0 14px 45px rgba(20,35,29,.08);
}

.detail-gallery-track,
.detail-gallery-slide {
  position: absolute;
  inset: 0;
}

.detail-gallery-slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  transition: opacity 450ms ease, visibility 450ms ease, transform 700ms ease;
}

.detail-gallery-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

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

.detail-gallery-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  color: #fff;
  background: rgba(10, 24, 19, .48);
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.detail-gallery-arrow:hover,
.detail-gallery-arrow:focus-visible {
  border-color: var(--site-accent);
  background: var(--site-accent);
  transform: translateY(-50%) scale(1.06);
}

.detail-gallery-arrow.is-prev {
  left: 20px;
}

.detail-gallery-arrow.is-next {
  right: 20px;
}

.detail-gallery-counter {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 24, 19, .62);
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.detail-gallery-thumbs {
  display: grid;
  grid-auto-columns: 112px;
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding: 14px 2px 5px;
  scrollbar-width: thin;
}

.detail-gallery-thumb {
  height: 78px;
  padding: 3px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
  opacity: .62;
  transition: opacity 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.detail-gallery-thumb:hover,
.detail-gallery-thumb.is-active {
  border-color: var(--site-accent);
  opacity: 1;
  transform: translateY(-2px);
}

.detail-gallery-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  object-fit: cover;
}

.detail-sidebar,
.contact-panel,
.contact-form {
  padding: 34px;
  border: 1px solid var(--site-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 45px rgba(20,35,29,.07);
}

.detail-sidebar {
  position: sticky;
  top: 24px;
}

.detail-price {
  margin: 0 0 8px;
  color: var(--site-accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
}

.property-overview {
  margin-top: 42px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--site-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(20, 35, 29, .075);
}

.property-overview > h3 {
  margin: 0 0 32px;
  color: var(--site-ink);
  font-size: 21px;
}

.property-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 34px;
}

.property-overview-grid > div {
  min-width: 0;
}

.property-overview .overview-element {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.property-overview .overview-element > div {
  min-width: 0;
  margin: 0;
}

.property-overview .icon {
  display: grid;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid var(--site-line);
  border-radius: 16px;
  color: var(--site-accent-dark);
  background: linear-gradient(145deg, #fff, var(--site-cream));
  box-shadow: 0 8px 20px rgba(20, 35, 29, .04);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
}

.property-overview .icon::before {
  content: "⌂";
}

.property-overview-grid > div:nth-child(2) .icon::before { content: "▦"; }
.property-overview-grid > div:nth-child(3) .icon::before { content: "▥"; }
.property-overview-grid > div:nth-child(4) .icon::before { content: "↟"; }
.property-overview-grid > div:nth-child(5) .icon::before { content: "P"; font-weight: 800; }
.property-overview-grid > div:nth-child(6) .icon::before { content: "↔"; }
.property-overview-grid > div:nth-child(7) .icon::before,
.property-overview-grid > div:nth-child(8) .icon::before,
.property-overview-grid > div:nth-child(9) .icon::before { content: "₹"; font-weight: 800; }
.property-overview-grid > div:nth-child(n+10) .icon::before { content: "◇"; }

.property-overview h6 {
  margin: 0 0 7px;
  color: var(--site-ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.property-overview p {
  overflow-wrap: anywhere;
  margin: 0;
  color: var(--site-ink);
  font-size: 17px;
  line-height: 1.35;
}

.property-amenities {
  margin-top: 30px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--site-line);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff 55%, rgba(245, 243, 238, .72));
  box-shadow: 0 16px 46px rgba(20, 35, 29, .075);
}

.property-amenities-heading {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--site-line);
}

.property-amenities-heading > span {
  display: grid;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--site-accent), var(--site-accent-dark));
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(32, 132, 91, .2);
}

.property-amenities-heading h3 {
  margin: 0 0 6px;
  color: var(--site-ink);
  font-size: 21px;
}

.property-amenities-heading p {
  margin: 0;
  color: var(--site-muted);
  font-size: 13px;
  line-height: 1.5;
}

.property-amenities .checklist ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.property-amenities .checklist li {
  position: relative;
  min-width: 0;
  padding: 15px 16px 15px 47px;
  border: 1px solid var(--site-line);
  border-radius: 14px;
  color: var(--site-ink);
  background: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: anywhere;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.property-amenities .checklist li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 15px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--site-accent-dark);
  font-size: 11px;
  transform: translateY(-50%);
}

.property-amenities .checklist li:hover {
  border-color: rgba(32, 132, 91, .38);
  box-shadow: 0 9px 22px rgba(20, 35, 29, .07);
  transform: translateY(-2px);
}

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

.faq-list {
  display: grid;
  max-width: 900px;
  margin-inline: auto;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--site-line);
  border-radius: 18px;
  background: #fff;
}

.faq-item summary {
  padding: 23px 26px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
}

.faq-item p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--site-muted);
  line-height: 1.7;
}

.contact-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.contact-list a {
  color: var(--site-ink);
  text-decoration: none;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.is-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--site-line);
  border-radius: 12px;
  color: var(--site-ink);
  background: #fff;
  font: inherit;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--site-accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.site-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 90px);
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(135deg, var(--site-accent-dark), var(--site-ink));
}

.site-cta h2 {
  max-width: 780px;
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
}

.site-footer {
  padding: 74px 0 28px;
  color: rgba(255,255,255,.72);
  background: #0d1713;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 52px;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand p {
  max-width: 330px;
  line-height: 1.7;
}

.footer-column h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 11px 0;
  color: rgba(255,255,255,.7);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
}

@media (max-width: 980px) {
  .site-header-inner {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
  }

  .header-search {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--site-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--site-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a,
  .dropdown-label {
    display: block;
    padding: 13px 14px;
  }

  .nav-dropdown {
    padding: 0;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 4px 16px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

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

  .split-layout,
  .detail-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

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

  .property-amenities .checklist ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    display: none;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-container {
    width: min(100% - 28px, 1180px);
  }

  .detail-gallery-viewport {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .detail-gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .detail-gallery-arrow.is-prev {
    left: 12px;
  }

  .detail-gallery-arrow.is-next {
    right: 12px;
  }

  .detail-gallery-counter {
    right: 12px;
    bottom: 12px;
  }

  .detail-gallery-thumbs {
    grid-auto-columns: 84px;
  }

  .detail-gallery-thumb {
    height: 62px;
  }

  .property-overview {
    margin-top: 30px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .property-overview > h3 {
    margin-bottom: 25px;
  }

  .property-overview-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .property-overview .icon {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .property-amenities {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .property-amenities-heading {
    align-items: flex-start;
  }

  .property-amenities .checklist ul {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .topbar-inner {
    min-height: 38px;
    justify-content: center;
  }

  .topbar-links a:first-child,
  .social-links {
    display: none;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 48px;
    height: 36px;
    font-size: 17px;
  }

  .site-hero {
    min-height: 660px;
    align-items: end;
  }

  .hero-slide {
    background-position: 62% center;
  }

  .site-hero::before {
    background: linear-gradient(0deg, rgba(7,18,14,.92), rgba(7,18,14,.24));
  }

  .hero-content {
    padding: 90px 0 118px;
  }

  .hero-slider-controls {
    left: 14px;
    bottom: 28px;
  }

  .site-hero h1,
  .page-hero h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .section-heading {
    display: block;
  }

  .property-grid,
  .service-grid,
  .value-grid,
  .metrics,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .property-media {
    height: 250px;
  }

  .split-media,
  .split-media img {
    min-height: 390px;
  }

  .metric {
    text-align: center;
  }

  .amenity-list {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .property-card,
  .property-media img,
  .site-button,
  .site-nav {
    transition: none;
  }
}

/* Global website typography */
body,
.website-shell,
button,
input,
select,
textarea,
.search-dialog h2,
.site-hero h1,
.page-hero h1,
.hero-stat strong,
.metric strong,
.section-heading h2,
.content-copy h2,
.contact-panel h2,
.featured-testimonial-mark span,
.featured-testimonial blockquote,
.testimonial-metrics strong,
.testimonial-quote-mark,
.testimonial-cta::after,
.detail-price,
.property-overview .icon,
.site-cta h2 {
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
}
