:root {
  --bg: #fff7f5;
  --card: #ffffff;
  --text: #2a1916;
  --muted: #745e58;
  --primary: #ef4c42;
  --primary-dark: #f58c69;
  --line: #f2d8d3;
  --accent: #f07a56;
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", "Georgia", "Times New Roman", serif;
}

html {
  font-size: 120%;
  scroll-behavior: smooth;
}

@media (max-width: 640px) {
  html {
    font-size: 100%;
  }
}

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

  .property-card-media img,
  .landmark-card img,
  .split-media img,
  .feature-card,
  .home-pill,
  .property-card {
    transition: none;
  }

  .property-card-link:hover .property-card,
  .property-card-link:focus-visible .property-card {
    transform: none;
  }

  .property-card-link:hover .property-card-media img,
  .property-card-link:focus-visible .property-card-media img {
    transform: none;
  }

  .hero-scroll-hint:hover,
  .hero-scroll-hint:focus-visible {
    transform: none;
  }

  .feature-card:hover,
  .landmark-card:hover,
  .home-step:hover {
    transform: none;
  }

  .landmark-card:hover img {
    transform: none;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

h1,
h2,
h3,
.brand {
  font-family: var(--font-display);
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: env(safe-area-inset-top, 0);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  padding-bottom: 0;
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.brand-logo {
  height: clamp(52px, 6.8vw, 76px);
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-family: "Bebas Neue", "DM Sans", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  color: #d73d2f;
  background: linear-gradient(90deg, #f58c69 0%, #ef4c42 52%, #f07a56 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-name-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-sub {
  font-family: "Bebas Neue", "DM Sans", sans-serif;
  font-size: clamp(0.8rem, 1.3vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d73d2f;
  background: linear-gradient(90deg, #f58c69 0%, #ef4c42 52%, #f07a56 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu {
  display: flex;
  gap: 1.15rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn .ph {
  font-size: 1.1rem;
  line-height: 1;
}

.nav .btn-dark {
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-dark {
  background: var(--primary);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: #5a2222;
  border: 1px solid #f0cfc9;
}

.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: center;
  background-color: #2a1111;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(56, 12, 12, 0.92) 0%,
    rgba(124, 22, 22, 0.78) 38%,
    rgba(146, 46, 30, 0.55) 12%,
    rgba(178, 72, 48, 0.42) 100%
  );
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 1100px;
  padding: 1.5rem 0;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffd9cf;
}

h1 {
  font-size: clamp(1.8rem, 4.2vw, 3.25rem);
  line-height: 1.1;
  margin: 0.45rem 0 1rem;
}

h1 .accent {
  color: #ffd2c3;
}

.subtitle {
  margin: 0;
  color: #ffe9e2;
  max-width: 70ch;
  margin-inline: auto;
}

.hero-phone {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.hero-phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 196, 173, 0.55);
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  letter-spacing: 0.02em;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.hero-phone-link:hover,
.hero-phone-link:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffd8cc;
  transform: translateY(-1px);
}

.hero-phone-link .ph {
  font-size: 1.25rem;
  color: #ffd2c3;
}

.hero-phone-number {
  font-variant-numeric: tabular-nums;
}

.hero-phone-meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 238, 232, 0.92);
}

.hero-search {
  margin-top: 1.3rem;
  background: #fff;
  border: 1px solid #f0d9d3;
  border-radius: 999px;
  padding: 0.5rem 0.55rem;
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.85fr 1fr auto;
  gap: 0;
  align-items: center;
  width: 80%;
  min-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.search-group {
  display: grid;
  gap: 0.2rem;
  text-align: left;
  padding: 0 1rem;
  border-right: 1px solid #f3e0db;
}

.search-group:last-of-type {
  border-right: 0;
}

.search-group label {
  color: #8a5a52;
  font-size: 0.73rem;
  font-weight: 700;
}

.search-group input,
.search-group select {
  border: 0;
  border-radius: 8px;
  padding: 0.22rem 0;
  font: inherit;
  color: #4a2520;
  background: #fff;
  font-size: 0.86rem;
  outline: none;
}

.search-group input::placeholder {
  color: #b08e86;
}

.search-value-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.search-value-row input {
  flex: 1;
  min-width: 0;
}

.search-field-icon {
  font-size: 1.1rem;
  color: #b08e86;
  flex-shrink: 0;
}

.search-btn {
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f58c69;
  color: #fff;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.search-btn .ph {
  font-size: 1.15rem;
  line-height: 1;
}

.hero-actions {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions a.btn {
  text-decoration: none;
}

.hero-scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-top: 1.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hero-scroll-hint:hover,
.hero-scroll-hint:focus-visible {
  color: #fff;
  transform: translateY(2px);
}

.hero-scroll-hint .ph {
  font-size: 1.35rem;
  animation: home-bob 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-hint .ph {
    animation: none;
  }
}

@keyframes home-bob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

.section {
  padding: 3.6rem 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-head--home {
  align-items: flex-start;
  flex-wrap: wrap;
}

.section-head--home > div:first-child {
  flex: 1;
  min-width: min(100%, 280px);
}

.section-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  opacity: 0.9;
}

.section-intro {
  margin: 0.65rem 0 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.section-head-cta {
  display: inline-flex;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 1.85rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.section-head-cta:hover,
.section-head-cta:focus-visible {
  border-color: #b5d4b8;
  box-shadow: 0 6px 18px rgba(20, 50, 24, 0.08);
}

h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 2rem);
}

.section-head a {
  color: var(--primary-dark);
  font-weight: 600;
}

.home-trust {
  background: linear-gradient(90deg, #0f2412 0%, #1a3d22 45%, #1f5d2d 100%);
  color: #e8f4e6;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.35rem 0;
}

.home-trust-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

@media (min-width: 720px) {
  .home-trust-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.home-trust-item {
  display: grid;
  gap: 0.15rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-trust-icon {
  color: #b8f5b0;
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.home-trust-item strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.home-trust-item span:last-child {
  font-size: 0.78rem;
  opacity: 0.85;
  line-height: 1.35;
}

.home-explore {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 1rem 0 0.25rem;
}

.home-explore-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.home-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.home-pill .ph {
  font-size: 1rem;
  color: var(--primary);
}

.home-pill:hover,
.home-pill:focus-visible {
  border-color: #9ec9a2;
  box-shadow: 0 4px 14px rgba(20, 50, 24, 0.08);
  transform: translateY(-1px);
}

.home-listings {
  scroll-margin-top: 88px;
}

.home-journey {
  scroll-margin-top: 88px;
}

.home-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

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

@media (max-width: 640px) {
  .home-steps {
    grid-template-columns: 1fr;
  }
}

.home-step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem 1.1rem 1.2rem;
  box-shadow: 0 6px 22px rgba(18, 33, 21, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-step:hover {
  border-color: #b5d4b8;
  box-shadow: 0 12px 32px rgba(20, 50, 24, 0.1);
}

.home-step-num {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  font-size: 0.7rem;
  font-weight: 800;
  color: #9cb39e;
  letter-spacing: 0.06em;
}

.home-step-icon {
  display: block;
  font-size: 1.65rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.home-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 800;
}

.home-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

#journey,
#why-us,
#landmarks,
#testimonials,
#faq,
#kudakalli-project {
  scroll-margin-top: 88px;
}

.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
  align-items: center;
}

.split-actions a.btn {
  text-decoration: none;
}

@media (max-width: 640px) {
  .section-head-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 0.65rem;
  }
}

.card-grid,
.feature-grid,
.landmark-grid,
.testimonial-grid {
  display: grid;
  gap: 1.25rem;
}

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

.property-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.property-card-link:hover .property-card,
.property-card-link:focus-visible .property-card {
  border-color: #b5d4b8;
  box-shadow: 0 14px 36px rgba(20, 50, 24, 0.14);
  transform: translateY(-3px);
}

.property-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.property-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e4ebe5;
}

.property-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.property-card-link:hover .property-card-media img,
.property-card-link:focus-visible .property-card-media img {
  transform: scale(1.05);
}

.property-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 24, 16, 0.55) 100%);
  opacity: 0.85;
  pointer-events: none;
}

.property-card-cta {
  position: absolute;
  left: 0.75rem;
  bottom: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.property-card-link:hover .property-card-cta,
.property-card-link:focus-visible .property-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.card-body {
  padding: 0.9rem;
}

.card-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.card-body p {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.chip {
  display: inline-block;
  border-radius: 999px;
  background: #ebf7ec;
  color: #286a2f;
  border: 1px solid #cae8cd;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.rating {
  font-size: 0.8rem;
  color: #314c36;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.rating .ph {
  color: #c9a227;
  font-size: 0.95rem;
}

.property-meta {
  margin: 0 0 0.65rem;
  padding-left: 1rem;
  color: #49614d;
  font-size: 0.83rem;
  display: grid;
  gap: 0.18rem;
}

.strip {
  background: #eef4ec;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.split-media {
  height: 100%;
}

.split-media img {
  border-radius: 16px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.split-text p {
  color: var(--muted);
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: #b5d4b8;
  box-shadow: 0 10px 28px rgba(20, 50, 24, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ebf7ec;
  border: 1px solid #cae8cd;
  display: grid;
  place-items: center;
  margin-bottom: 0.5rem;
}

.feature-icon .ph {
  font-size: 1.35rem;
  color: var(--primary-dark);
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

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

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

.landmark-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.landmark-card:hover {
  border-color: #b5d4b8;
  box-shadow: 0 12px 30px rgba(20, 50, 24, 0.12);
  transform: translateY(-2px);
}

.landmark-card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.landmark-card h3 {
  margin: 0;
  padding: 0.9rem;
  font-size: 1rem;
}

.cta-dark {
  background: #0f1e12;
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.cta-inner p {
  margin: 0.6rem 0 0;
  color: #d1e5d4;
}

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

.quote {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, #fff 0%, #f7fbf8 100%);
  padding: 1.35rem 1.25rem 1.2rem;
  box-shadow: 0 6px 22px rgba(18, 33, 21, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem;
  left: 0.85rem;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(62, 143, 59, 0.2);
  font-family: var(--font-display);
  pointer-events: none;
}

.quote:hover {
  border-color: #c5dfc8;
  box-shadow: 0 12px 32px rgba(20, 50, 24, 0.1);
}

.quote p {
  margin: 0.35rem 0 0.75rem;
  position: relative;
  z-index: 1;
  color: #2d4532;
  font-size: 1.02rem;
  line-height: 1.55;
}

.quote strong {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 700;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq details[open] {
  border-color: #b5d4b8;
  box-shadow: 0 8px 24px rgba(20, 50, 24, 0.08);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.15rem 0;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq details[open] summary::after {
  transform: rotate(-135deg);
}

.faq p {
  margin: 0.65rem 0 0.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-right: 1.5rem;
}

.footer {
  margin-top: 0;
  border-top: 0;
  background: transparent;
}

.footer-dark-band {
  background: linear-gradient(165deg, #1c0f0e 0%, #2a1514 42%, #1a1010 100%);
  color: rgba(255, 245, 242, 0.92);
  padding: 2.75rem env(safe-area-inset-right, 0) calc(2.5rem + env(safe-area-inset-bottom, 0))
    env(safe-area-inset-left, 0);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-dark-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-head-text {
  flex: 1 1 min(100%, 26rem);
  min-width: 0;
}

.footer-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 140, 105, 0.95);
}

.footer-site-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-block;
  margin-bottom: 0.35rem;
}

.footer-site-title:hover,
.footer-site-title:focus-visible {
  color: #ffd9cf;
}

.footer-lead {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(255, 236, 230, 0.78);
  max-width: 40ch;
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
}

.footer-nav-links a {
  color: rgba(255, 245, 242, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.footer-nav-links a:hover,
.footer-nav-links a:focus-visible {
  color: #fff;
  border-color: rgba(245, 140, 105, 0.55);
  background: rgba(239, 76, 66, 0.18);
}

.footer-forms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 900px) {
  .footer-forms-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form-wrap {
  margin: 0;
  padding: 1.25rem 1.35rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.contact-form-wrap h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.contact-form-wrap p {
  margin: 0 0 1rem;
  color: rgba(255, 236, 230, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 0.65rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #efcfc6;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.db-banner {
  background: #fff8e6;
  border: 1px solid #f0e0b2;
  border-radius: 12px;
  padding: 1rem 1.2rem;
}

.db-banner code {
  font-size: 0.85rem;
}

.muted-small {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.empty-list {
  margin: 0;
  color: var(--muted);
}

.empty-list a {
  color: var(--primary-dark);
  font-weight: 600;
}

@media (max-width: 980px) {
  .menu {
    display: none;
  }

  .nav {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    row-gap: 0.65rem;
    min-height: 0;
    padding: 0.65rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .brand {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-shrink: 1;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .nav .btn-dark {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    flex-shrink: 1;
  }

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

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

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

  .hero-search {
    width: 90%;
    border-radius: 14px;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.7rem;
  }

  .search-group {
    border-right: 0;
    border-bottom: 1px solid #e4ece3;
    padding: 0 0.2rem 0.45rem;
  }

  .search-group:nth-of-type(3),
  .search-group:nth-of-type(4) {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .search-btn {
    grid-column: 1 / -1;
    width: 100%;
    border-radius: 10px;
    height: 44px;
  }

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

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(1120px, 94vw);
  }

  .nav {
    gap: 0.5rem;
  }

  .brand {
    min-width: 0;
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .brand-logo {
    height: clamp(38px, 11vw, 52px);
  }

  .brand-name {
    font-size: clamp(0.95rem, 4.2vw, 1.2rem);
  }

  .brand-sub {
    font-size: clamp(0.68rem, 3.2vw, 0.85rem);
  }

  .nav .btn-dark {
    width: 100%;
    max-width: 100%;
    flex-shrink: 1;
    min-height: 44px;
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
    white-space: normal;
    justify-content: center;
  }

  .section {
    padding: 2.25rem 0;
  }

  .section-head {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .section-head--home > div:first-child {
    min-width: 0;
  }

  .section-head-cta {
    align-self: stretch;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .hero {
    min-height: min(70vh, 560px);
  }

  .hero-content {
    padding: 1.25rem 0 2rem;
  }

  .hero-actions {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
  }

  .hero-actions a.btn {
    justify-content: center;
    min-height: 44px;
  }

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

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

  .split-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .split-actions a.btn {
    justify-content: center;
    min-height: 44px;
  }

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

  .home-pills {
    width: 100%;
    flex-direction: column;
  }

  .home-pill {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .hero-search {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }

  .search-group {
    border-bottom: 1px solid #f3e0db;
    padding-bottom: 0.5rem;
  }

  .search-group:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
  }

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

  .contact-form-actions .btn {
    flex: 1 1 100%;
    justify-content: center;
    min-height: 48px;
  }

  .footer-dark-inner {
    gap: 1.5rem;
  }

  .footer-head {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 1.25rem;
    gap: 1rem;
  }

  .footer-lead {
    max-width: none;
    font-size: 0.92rem;
  }

  .footer-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
  }

  .footer-nav-links a {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
  }

  .footer-forms-grid {
    gap: 1rem;
  }

  .contact-form-wrap {
    padding: 1.1rem 1rem 1.2rem;
    border-radius: 14px;
  }

  .contact-form-wrap h3 {
    font-size: 1rem;
  }

  .footer-dark-band {
    padding-top: 1.75rem;
    padding-bottom: calc(1.75rem + env(safe-area-inset-bottom, 0));
  }

  .listing-shell {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .listing-summary-card {
    position: static;
  }

  .listing-hero-inner {
    padding: 1.5rem 0 2rem;
  }

  .listing-cta-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .listing-cta-inner .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .project-hero-inner {
    padding: 2.5rem 0 2rem;
  }

  .project-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .project-cta-row a.btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .project-status-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Listing detail --- */
.listing-detail {
  padding-bottom: 3rem;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 38%);
}

.listing-detail .section.listing-shell {
  padding-top: 2rem;
  padding-bottom: 3.25rem;
}

.listing-hero {
  position: relative;
  min-height: 46vh;
  max-height: 560px;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 24, 16, 0.12);
}

.listing-hero-img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.listing-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 31, 14, 0.2) 0%,
    rgba(10, 31, 14, 0.35) 35%,
    rgba(8, 22, 12, 0.82) 100%
  );
}

.listing-hero-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.25rem 0 2.75rem;
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.listing-hero-inner h1 {
  margin: 0.4rem 0 0.55rem;
  font-size: clamp(1.45rem, 3.5vw, 2.45rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 20ch;
}

.listing-hero-chip {
  background: rgba(255, 255, 255, 0.95);
  color: #1f5d2d;
  border: 1px solid #cfe8d2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.listing-hero-loc {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  font-weight: 500;
}

.listing-hero-loc .ph {
  font-size: 1.15rem;
  opacity: 0.9;
}

.listing-hero-price {
  margin: 0.85rem 0 0;
  font-weight: 800;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: #e8ffe9;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.65rem;
}

.listing-hero-price-label {
  font-weight: 600;
  font-size: 0.72em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.88;
}

.listing-shell {
  padding-top: 1.25rem;
  padding-bottom: 0.5rem;
}

.listing-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.35rem;
}

.listing-breadcrumb a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
}

.listing-breadcrumb a:hover {
  text-decoration: underline;
}

.listing-breadcrumb-sep {
  color: #a8b5aa;
  user-select: none;
}

.listing-breadcrumb-current {
  color: var(--text);
  font-weight: 600;
  max-width: min(52ch, 100%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing-layout {
  display: grid;
  gap: 1.75rem;
}

.listing-aside {
  order: 1;
}

.listing-main {
  order: 2;
}

.listing-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 520px) {
  .listing-facts {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

.listing-fact {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  display: grid;
  gap: 0.2rem;
  box-shadow: 0 4px 18px rgba(18, 33, 21, 0.04);
}

.listing-fact-featured {
  border-color: #cfe8d2;
  background: linear-gradient(145deg, #f6fdf7 0%, #fff 100%);
}

.listing-fact-icon {
  color: var(--primary);
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.listing-fact-icon .ph {
  display: block;
}

.listing-fact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a8a7d;
}

.listing-fact-value {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
}

.listing-fact-star {
  color: #c9a227;
  font-size: 0.95em;
}

.listing-block {
  margin-bottom: 2rem;
}

.listing-section-head {
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--line);
  position: relative;
}

.listing-section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 3.5rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.listing-section-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
  opacity: 0.85;
}

.listing-section-head h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.listing-main .listing-highlights {
  margin: 0;
  padding: 1rem 1rem 1rem 1.35rem;
  background: #f7fbf8;
  border: 1px solid #e2eee4;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #3d5242;
}

.listing-main .listing-highlights li {
  margin-bottom: 0.35rem;
}

.listing-main .listing-highlights li:last-child {
  margin-bottom: 0;
}

.listing-summary-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: 0 12px 40px rgba(18, 33, 21, 0.08);
  position: relative;
  overflow: hidden;
}

.listing-summary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #f07a56 50%, var(--primary-dark) 100%);
}

.listing-summary-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.listing-summary-price {
  margin: 0.35rem 0 0.75rem;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
}

.listing-summary-loc {
  margin: 0 0 1.15rem;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.45;
}

.listing-summary-loc .ph {
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: var(--primary);
}

.listing-summary-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.listing-summary-actions .btn {
  justify-content: center;
  width: 100%;
  text-decoration: none;
}

.listing-summary-muted {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.listing-summary-muted code {
  font-size: 0.78em;
}

.listing-summary-back {
  font-weight: 600;
}

.listing-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.85rem;
}

.listing-gallery-item {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: #e8ede9;
  box-shadow: 0 6px 22px rgba(18, 33, 21, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.listing-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(18, 33, 21, 0.12);
}

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

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

.listing-gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0f1410;
}

.listing-gallery-item-video {
  cursor: default;
}

.listing-gallery-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 24, 16, 0.45);
  color: #fff;
  font-size: 1.75rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
  pointer-events: none;
}

.listing-gallery-item:hover .listing-gallery-zoom {
  opacity: 1;
}

.listing-prose {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 0;
}

.listing-block .listing-prose {
  margin-bottom: 0;
}

.listing-prose-accent {
  padding: 1.15rem 1.25rem;
  background: linear-gradient(145deg, #f0faf1 0%, #e8f6ea 100%);
  border: 1px solid #cfe8d2;
  border-radius: 14px;
  color: #2d4532;
}

.listing-limited {
  margin: 1.75rem 0 0;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  border: 1px solid #e8d4a8;
  background: linear-gradient(135deg, #fffbf0 0%, #fff4e0 100%);
  box-shadow: 0 8px 28px rgba(122, 82, 20, 0.08);
}

.listing-limited-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.listing-limited-head .ph {
  font-size: 1.5rem;
  color: #b8860b;
}

.listing-limited-head h2 {
  margin: 0;
  color: #7a5214;
  font-size: 1.2rem;
  font-weight: 800;
}

.listing-limited .listing-prose {
  margin-bottom: 0;
  color: #5c4a2a;
}

.listing-cta-footer {
  margin-top: 2.25rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.listing-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem 1.65rem;
  background: linear-gradient(135deg, #0f2412 0%, #1a3d22 55%, #1f5d2d 100%);
  border-radius: 18px;
  color: #e8f4e6;
  box-shadow: 0 16px 48px rgba(15, 36, 18, 0.25);
}

.listing-cta-copy h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  color: #fff;
}

.listing-cta-copy p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  max-width: 42ch;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

.btn-whatsapp-lg {
  padding: 0.88rem 1.6rem;
  font-size: 16px;
}

.btn-whatsapp:hover {
  filter: brightness(1.06);
}

.btn-whatsapp .ph {
  font-size: 1.25rem;
}

@media (min-width: 960px) {
  .listing-layout {
    grid-template-columns: minmax(0, 1fr) min(300px, 32%);
    gap: 2rem 2.25rem;
    align-items: start;
  }

  .listing-main {
    order: 1;
    min-width: 0;
  }

  .listing-aside {
    order: 2;
  }

  .listing-summary-card {
    position: sticky;
    top: 92px;
  }

  .listing-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}

.listing-notfound {
  text-align: center;
  padding: 2rem 1rem 3rem;
}

.listing-notfound h1 {
  margin-top: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.listing-notfound .btn {
  display: inline-block;
  margin-top: 0.75rem;
}

/* --- Project landing (Royalist / Digital Nomad) --- */
.project-page {
  background: linear-gradient(180deg, #fff 0%, var(--bg) 45%);
  padding-bottom: 4.5rem;
}

.project-hero {
  position: relative;
  min-height: 52vh;
  max-height: 760px;
  display: grid;
  align-items: end;
  background: url("https://cdn.pixabay.com/photo/2016/11/18/22/22/beach-1836467_1920.jpg")
    center/cover no-repeat;
  background-color: #0a1a14;
}

.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 14, 10, 0.2) 0%,
    rgba(4, 20, 12, 0.62) 52%,
    rgba(3, 14, 9, 0.86) 100%
  );
}

.project-hero-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3.5rem;
  color: #fff;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.project-hero-inner .eyebrow {
  color: #c8f0cc;
}

.project-hero-inner h1 {
  margin: 0.35rem 0 0.25rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.project-hero-tagline {
  margin: 0 0 0.65rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #e8f8ea;
}

.project-hero-hook {
  margin: 0 auto 2rem;
  max-width: 52rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.project-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 58rem;
  margin: 0 auto 1rem;
}

@media (max-width: 640px) {
  .project-hero-stats {
    grid-template-columns: 1fr;
    max-width: 22rem;
  }
}

.project-hero-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.project-hero-stat--accent {
  background: linear-gradient(160deg, rgba(62, 143, 59, 0.45) 0%, rgba(255, 255, 255, 0.12) 100%);
  border-color: rgba(184, 245, 176, 0.55);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.project-hero-stat-value {
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
}

.project-hero-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232, 248, 234, 0.92);
  line-height: 1.35;
}

.project-hero-stat-subl {
  display: block;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.68rem;
  opacity: 0.88;
}

.project-hero-micro {
  margin: 1.25rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200, 240, 204, 0.9);
}

.project-hero-inner .hero-phone {
  margin-top: 1.35rem;
}

.project-hero-inner .hero-phone-link {
  background: rgba(9, 26, 16, 0.84);
  border-color: rgba(200, 244, 204, 0.72);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.project-hero-inner .hero-phone-link:hover,
.project-hero-inner .hero-phone-link:focus-visible {
  background: rgba(9, 26, 16, 0.94);
  border-color: #d7f7db;
}

.project-hero-inner .hero-phone-number {
  color: #ffffff;
}

.project-hero-inner .hero-phone-meta {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(4, 18, 11, 0.82);
  border: 1px solid rgba(200, 244, 204, 0.52);
  color: #f4fff5;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-shadow: none;
}

.project-body {
  max-width: 1040px;
  padding-top: 1.1rem;
}

.project-spotlight {
  margin-bottom: 3.5rem;
  padding: 2rem 2rem 2.1rem;
  border-radius: 18px;
  border: 1px solid #cfe8d2;
  background: linear-gradient(145deg, #f6fdf7 0%, #eef8ef 45%, #fff 100%);
  box-shadow: 0 12px 40px rgba(18, 33, 21, 0.07);
  scroll-margin-top: 88px;
}

.project-spotlight-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  line-height: 1.2;
  color: var(--primary-dark);
  border: 0;
  padding: 0;
}

.project-spotlight-lead {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  line-height: 1.68;
  color: #2d4532;
}

.project-spotlight-list {
  margin: 0;
  padding-left: 1.15rem;
  color: #3d5242;
  line-height: 1.65;
  font-size: 0.96rem;
}

.project-spotlight-list li {
  margin-bottom: 0.6rem;
}

.project-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

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

@media (min-width: 720px) {
  .project-status-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.project-status-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 4px 18px rgba(18, 33, 21, 0.04);
}

.project-status-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.project-status-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.project-status-note {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.project-pills {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.project-pills li {
  margin: 0;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #1f5d2d;
  background: #ebf7ec;
  border: 1px solid #cae8cd;
}

.project-card--num {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 0;
}

.project-card-num {
  position: static;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  line-height: 1;
}

.project-card--num h3 {
  margin-top: 0;
}

.project-section {
  margin-bottom: 3.5rem;
  scroll-margin-top: 88px;
}

.project-section h2 {
  margin: 0 0 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--line);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}

.project-section h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.08rem;
}

.project-intro {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.project-body > .project-section > p {
  margin: 0 0 1.1rem;
  color: var(--text);
  line-height: 1.75;
}

.muted-inline {
  color: var(--muted);
  font-weight: 500;
}

.project-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.4rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
}

.project-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.project-table th,
.project-table td {
  padding: 0.85rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.project-table tr:last-child th,
.project-table tr:last-child td {
  border-bottom: 0;
}

.project-table thead th {
  background: #f0faf1;
  font-weight: 700;
  color: var(--primary-dark);
}

.project-table th[scope="row"] {
  width: 38%;
  max-width: 12rem;
  font-weight: 700;
  color: var(--text);
  background: #f7fbf8;
}

.project-table-highlight th,
.project-table-highlight td {
  background: #ecf8ed;
  font-size: 1rem;
}

.project-callout {
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.35rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  background: #f4fbf5;
  color: #2d4532;
}

.project-callout p {
  margin: 0 0 0.5rem;
  line-height: 1.6;
}

.project-callout p:last-child {
  margin-bottom: 0;
}

.project-callout-muted {
  border-left-color: #a8b5aa;
  background: #f5f7f6;
  color: var(--muted);
  font-size: 0.92rem;
}

.project-callout-accent {
  border-left-color: #c9a227;
  background: linear-gradient(135deg, #fffbf0 0%, #fff4e0 100%);
  color: #4a3d22;
}

.project-cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .project-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.project-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 6px 20px rgba(18, 33, 21, 0.05);
}

.project-card h3 {
  margin: 0 0 0.65rem;
  font-size: 0.98rem;
}

.project-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.project-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text);
  line-height: 1.65;
}

.project-list-columns {
  columns: 2;
  column-gap: 2rem;
}

@media (max-width: 560px) {
  .project-list-columns {
    columns: 1;
  }
}

.project-list li {
  margin-bottom: 0.35rem;
  break-inside: avoid;
}

.project-services {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.project-steps {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .project-steps {
    grid-template-columns: 1fr 1fr;
  }
}

.project-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.3rem 1.4rem;
}

.project-step-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.project-step-value {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.project-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.project-section-cta .project-limited {
  margin: 1rem 0;
  font-size: 1.05rem;
}

.project-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.project-cta-row a.btn {
  text-decoration: none;
}

.project-disclaimer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.project-disclaimer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Logo palette cleanup: replace remaining green-tinted accents */
.chip,
.property-card .chip,
.listing-hero-chip,
.project-pills li {
  background: #ffe8e2;
  border-color: #f5c8bc;
  color: #8f2d2d;
}

.feature-strip {
  background: linear-gradient(90deg, #f58c69 0%, #ef4c42 45%, #f07a56 100%);
  color: #ffe8e2;
}

.section-kicker,
.project-kicker {
  color: var(--primary-dark);
}

.listing-prose-accent,
.project-spotlight,
.project-callout,
.project-table thead th,
.project-table th[scope="row"],
.project-table-highlight th,
.project-table-highlight td {
  background: #fff2ee;
  border-color: #f3d5ce;
  color: #5a2f29;
}

.project-callout-accent {
  border-left-color: #ef4c42;
  background: linear-gradient(135deg, #fff1eb 0%, #ffe4da 100%);
  color: #6b2d27;
}

/* Final full harmonization to logo palette */
.section-head-cta:hover,
.section-head-cta:focus-visible,
.home-pill:hover,
.home-pill:focus-visible,
.home-step:hover,
.property-card-link:hover .property-card,
.property-card-link:focus-visible .property-card,
.feature-card:hover,
.landmark-card:hover,
.faq details[open] {
  border-color: #f5b8a8;
  box-shadow: 0 10px 28px rgba(164, 58, 45, 0.12);
}

.home-trust,
.listing-cta-inner {
  background: linear-gradient(90deg, #f58c69 0%, #ef4c42 45%, #f07a56 100%);
  color: #fff1eb;
}

.home-trust-icon,
.project-hero-inner .eyebrow,
.project-hero-micro {
  color: #ffd1c1;
}

.property-card-media,
.listing-gallery-item {
  background: #f7e5e0;
}

.rating,
.property-meta,
.quote p,
.project-spotlight-lead,
.project-spotlight-list,
.project-callout,
.project-callout-muted {
  color: #6b4a44;
}

.feature-icon {
  background: #ffe8e2;
  border-color: #f5c8bc;
}

.strip,
.listing-main .listing-highlights,
.quote,
.project-spotlight,
.project-table thead th,
.project-table th[scope="row"],
.project-table-highlight th,
.project-table-highlight td {
  background: #fff2ee;
  border-color: #f3d5ce;
}

.cta-dark {
  background: #6b2d27;
  color: #fff3ee;
}

.cta-inner p {
  color: #ffd9cf;
}

.quote::before {
  color: rgba(239, 76, 66, 0.22);
}

.listing-hero-chip {
  color: #8f2d2d;
  border-color: #f4c6bc;
}

.listing-hero-price {
  color: #ffe8df;
}

.listing-breadcrumb-sep,
.listing-fact-label {
  color: #a88880;
}

.listing-fact-featured {
  border-color: #f4cfc5;
  background: linear-gradient(145deg, #fff3ef 0%, #fff 100%);
}

.listing-limited {
  border-color: #f2c8bb;
  background: linear-gradient(135deg, #fff3ed 0%, #ffe5dc 100%);
}

.listing-limited-head .ph {
  color: #ef4c42;
}

.listing-limited-head h2,
.listing-limited .listing-prose {
  color: #7a3a31;
}

.project-hero {
  background-color: #2a1111;
}

.project-hero-overlay {
  background: linear-gradient(180deg, rgba(56, 12, 12, 0.2) 0%, rgba(79, 20, 18, 0.62) 52%, rgba(56, 14, 12, 0.86) 100%);
}

.project-hero-inner .hero-phone-link {
  background: rgba(70, 24, 21, 0.84);
  border-color: rgba(255, 205, 191, 0.72);
}

.project-hero-inner .hero-phone-link:hover,
.project-hero-inner .hero-phone-link:focus-visible {
  background: rgba(70, 24, 21, 0.94);
  border-color: #ffd6c9;
}

.project-hero-inner .hero-phone-meta {
  background: rgba(79, 24, 20, 0.84);
  border-color: rgba(255, 203, 188, 0.55);
  color: #fff2ed;
}
