/* ==============================
   HOME PAGE — HERO (cinematic real-estate)
   ============================== */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100svh;
  height: 100dvh;
  min-height: 100svh;
  min-height: 100dvh;
  max-height: 100svh;
  max-height: 100dvh;
  color: #111827;
}

/* Full-bleed background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease;
}

.hero__bg-img--active {
  opacity: 1;
  animation: heroKenBurns 10s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(250, 252, 249, 0.88) 26%,
    rgba(255, 255, 255, 0.42) 40%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0) 58%,
    rgba(255, 255, 255, 0) 100%);
}

.hero__approvals {
  position: absolute;
  top: 7rem;
  right: clamp(1rem, 3vw, 2.5rem);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.hero__approval-badge {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.hero__approval-badge--wide {
  padding: 0;
}

.hero__approval-badge--wide img {
  height: 88px;
  width: auto;
  max-width: unset;
}

.hero__approval-badge--square {
  padding: 0;
}

.hero__approval-badge--square img {
  width: 94px;
  height: 94px;
  max-width: unset;
}

.hero__approval-badge:hover {
  transform: scale(1.06);
}

.hero__approval-badge img {
  display: block;
}

/* ---- Promo Popup ---- */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  visibility: hidden;
  pointer-events: none;
  transition: background 0.45s ease, backdrop-filter 0.45s ease, visibility 0s 0.45s;
}

.popup-overlay.is-visible {
  visibility: visible;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  transition: background 0.45s ease, backdrop-filter 0.45s ease, visibility 0s 0s;
}

.popup-overlay.is-closing {
  visibility: visible;
  pointer-events: none;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, visibility 0s 0.4s;
}

.popup {
  position: relative;
  max-width: 520px;
  width: 92%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: scale(0.85) translateY(30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.popup-overlay.is-visible .popup {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.popup-overlay.is-closing .popup {
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

.popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
}

.popup__close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.popup__img-wrap {
  line-height: 0;
}

.popup__img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 480px) {
  .popup-overlay {
    padding: 0.75rem;
    align-items: center;
  }

  .popup {
    max-width: min(94%, 420px);
    max-height: min(88vh, 100dvh);
    border-radius: 14px;
  }

  .popup__img {
    max-height: min(88vh, 100dvh);
    object-fit: contain;
  }

  .popup__close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
  }
}

.hero__container {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.42fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  padding-top: 5.75rem;
  padding-bottom: 0.85rem;
  min-height: 0;
  will-change: transform, opacity;
}

.hero__content {
  position: relative;
  max-width: 680px;
  animation: heroFadeUp 0.85s ease-out 0.12s both;
}

.hero__title,
.hero__title-sub,
.hero__subtitle {
  text-shadow: none;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.75rem;
  padding: 0.38rem 0.85rem 0.38rem 0.55rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #374151;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__kicker-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dd68c;
  box-shadow: 0 0 0 4px rgba(61, 214, 140, 0.22);
  animation: heroPulse 2.4s ease-out infinite;
}

@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(61, 214, 140, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(61, 214, 140, 0.05); }
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  margin: 0 0 0.7rem;
  color: #111827;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero__title-lead {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero__highlight {
  display: inline-flex;
  position: relative;
  max-width: 100%;
  margin: 0.12rem 0 0.2rem;
  padding: 0.08em 0.42em 0.14em 0.5em;
  isolation: isolate;
  overflow: hidden;
}

.hero__highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(30, 143, 79, 0.16), rgba(212, 175, 55, 0.14) 68%, rgba(255, 255, 255, 0.35));
  border-left: 4px solid #d4af37;
  border-radius: 4px;
  transform-origin: left center;
}

.hero__highlight.is-swap::before {
  animation: heroHighlightSweep 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes heroHighlightSweep {
  0% { transform: scaleX(0.12); opacity: 0.4; }
  100% { transform: scaleX(1); opacity: 1; }
}

.hero__highlight-text {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 5.6vw, 4.1rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.02;
  color: #111827;
  text-shadow: none;
  white-space: nowrap;
}

.hero__highlight-text.is-out {
  animation: heroWordOut 0.28s ease forwards;
}

.hero__highlight-text.is-in {
  animation: heroWordIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroWordOut {
  to { opacity: 0; transform: translateY(-42%); }
}

@keyframes heroWordIn {
  from { opacity: 0; transform: translateY(48%); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__title-sub {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1f2937;
}

.hero__subtitle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0 0 1rem;
  max-width: 42ch;
  font-size: 1.02rem;
  font-style: normal;
  line-height: 1.6;
  color: #4b5563;
}

.hero__place {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.7rem 0.28rem 0.5rem;
  border-radius: 100px;
  background: rgba(30, 143, 79, 0.1);
  border: 1px solid rgba(30, 143, 79, 0.22);
  color: #16753f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero__place svg {
  flex-shrink: 0;
  color: var(--primary);
}

.hero__subtitle-text {
  display: block;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
}

.hero__feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 0.45rem;
  width: auto;
  flex: 0 0 auto;
  padding: 0.45rem 0.7rem 0.45rem 0.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.hero__feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 0;
  background: rgba(30, 143, 79, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.hero__feature:hover .hero__feature-icon {
  background: var(--primary);
  color: #fff;
  transform: none;
  box-shadow: none;
}

.hero__feature-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.hero__feature-text strong {
  font-size: 0.72rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}

.hero__feature-text span {
  font-size: 0.7rem;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.3;
}

.hero__cards {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

[data-theme="dark"] .hero__cards {
  background: rgba(255, 255, 255, 0.92);
}

.hero__price-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.75rem 1rem;
  flex: 0 0 auto;
  min-width: 0;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.hero__price-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.hero__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  min-width: 0;
  flex-wrap: nowrap;
}

.hero__price-value {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  white-space: nowrap;
}

.hero__price-suffix {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  background: rgba(30, 143, 79, 0.1);
  color: #16753f;
  border: 1px solid rgba(30, 143, 79, 0.22);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero__offer-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1rem 0.75rem 0.9rem;
  flex: 0 0 auto;
}

.hero__offer-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8860b;
  flex-shrink: 0;
}

.hero__offer-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #111827;
}

.hero__offer-text {
  display: block;
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.4;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero__actions .btn--primary {
  box-shadow: 0 10px 28px rgba(30, 143, 79, 0.38);
}

.hero__btn-ghost {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1.5px solid rgba(15, 23, 42, 0.16) !important;
  color: #111827 !important;
  box-shadow: none !important;
}

.hero__btn-ghost:hover {
  background: #111827 !important;
  color: #fff !important;
  border-color: #111827 !important;
}

.hero__btn-ghost svg {
  color: inherit;
}

.hero__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: start;
  justify-self: end;
  justify-content: flex-start;
  width: auto;
  animation: heroFadeUp 0.9s ease-out 0.35s both;
}

.hero__rera {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: fit-content;
  max-width: 260px;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  z-index: 3;
}

[data-theme="dark"] .hero__rera {
  background: rgba(255, 255, 255, 0.92);
}

.hero__rera svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero__rera strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__rera span {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  margin-top: 2px;
}

/* ==============================
   HOME PAGE — FINDER (stats + search)
   ============================== */

.home-finder {
  position: relative;
  z-index: 4;
  padding: 2.25rem 0 3.25rem;
  background: linear-gradient(168deg, #eef6f1 0%, #e8f5ee 50%, #f0f7f3 100%);
  border-top: 0;
  border-radius: 1.5rem 1.5rem 0 0;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.08);
}

.home-finder__proof {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 0;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.home-finder__proof li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0 1.75rem;
}

.home-finder__proof li + li {
  border-left: 1px solid rgba(15, 23, 42, 0.1);
}

.home-finder__proof strong {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  font-style: italic;
  color: var(--heading);
  line-height: 1;
}

.home-finder__proof span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.home-finder__card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem 2rem 1.75rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 22px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(15, 23, 42, 0.06),
    0 24px 48px rgba(15, 23, 42, 0.05);
}

.home-finder__intro {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.home-finder__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.home-finder__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--heading);
  line-height: 1.3;
}

.home-finder__fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: stretch;
  gap: 0.75rem;
}

.home-finder__field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  min-width: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, #f8faf9 0%, #f3f6f4 100%);
  border: 1.5px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.home-finder__field:hover {
  border-color: rgba(30, 143, 79, 0.18);
  background: linear-gradient(180deg, #f5faf7 0%, #edf4f0 100%);
}

.home-finder__field:focus-within {
  background: #fff;
  border-color: rgba(30, 143, 79, 0.4);
  box-shadow: 0 0 0 3.5px rgba(30, 143, 79, 0.1);
  transform: translateY(-1px);
}

.home-finder__label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.home-finder__label svg {
  color: var(--primary);
  opacity: 0.7;
  flex-shrink: 0;
}

.home-finder__select-wrap {
  position: relative;
}

.home-finder__select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading);
  padding: 2px 24px 2px 0;
  cursor: pointer;
  outline: none;
}

.home-finder__select option {
  font-weight: 500;
  padding: 8px 12px;
}

.home-finder__chevron {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.home-finder__field:focus-within .home-finder__chevron {
  opacity: 0.8;
  transform: translateY(-50%) rotate(180deg);
}

.home-finder__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 160px;
  padding: 0 1.8rem;
  background: linear-gradient(135deg, var(--primary) 0%, #166534 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(30, 143, 79, 0.25);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.home-finder__btn:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #14532d 100%);
  box-shadow: 0 6px 20px rgba(30, 143, 79, 0.35);
  transform: translateY(-1px);
}

.home-finder__btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(30, 143, 79, 0.2);
}

[data-theme="dark"] .home-finder {
  background: var(--section);
  border-top-color: var(--border);
}

[data-theme="dark"] .home-finder__card {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .home-finder__field {
  background: rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .home-finder__field:focus-within {
  background: var(--surface);
}

/* Hero responsive */
@media (max-width: 1200px) {
  .hero__container {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
    gap: 1.5rem;
  }

  .hero__highlight-text {
    white-space: normal;
  }
}

@media (max-width: 1024px) {
  .hero__approvals {
    top: 6rem;
  }

  .hero__approval-badge--wide img {
    height: 72px;
  }

  .hero__approval-badge--square img {
    width: 78px;
    height: 78px;
  }

  .hero__container {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 0.36fr);
    padding-top: 5.5rem;
    padding-bottom: 0.6rem;
    gap: 1.1rem;
    align-items: center;
  }

  .hero__content {
    max-width: 640px;
  }

  .hero__cards {
    flex-direction: column;
  }

  .hero__price-card {
    border-right: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .home-finder {
    padding: 1.75rem 0 2.5rem;
  }

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

  .home-finder__btn {
    grid-column: 1 / -1;
    min-height: 52px;
    width: 100%;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100svh;
    min-height: 100dvh;
    max-height: none;
  }

  .hero__approvals {
    top: auto;
    bottom: 0.75rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 0.6rem;
    align-items: center;
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  .hero__approval-badge {
    border-radius: 6px;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .hero__approval-badge--wide {
    padding: 0;
  }

  .hero__approval-badge--wide img {
    height: 68px;
  }

  .hero__approval-badge--square {
    padding: 0;
  }

  .hero__approval-badge--square img {
    width: 72px;
    height: 72px;
  }

  .hero__bg-overlay {
    background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0.6) 25%,
      rgba(255, 255, 255, 0.88) 50%,
      rgba(250, 252, 249, 0.95) 70%,
      rgba(255, 255, 255, 0.97) 100%);
  }

  .hero__container {
    grid-template-columns: 1fr;
    padding-top: 5rem;
    padding-bottom: 5.25rem;
    align-items: center;
    justify-items: center;
    overflow: hidden;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__kicker {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .hero__title {
    align-items: center;
    gap: 0.28rem;
    margin-bottom: 0.85rem;
  }

  .hero__title-lead {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
  }

  .hero__highlight {
    padding: 0.08em 0.38em 0.12em 0.42em;
  }

  .hero__highlight-text {
    font-size: clamp(2.45rem, 11.5vw, 3.55rem);
    white-space: normal;
    text-wrap: balance;
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  .hero__title-sub {
    font-size: 1.05rem;
  }

  .hero__subtitle {
    max-width: none;
    font-size: 0.95rem;
    align-items: center;
  }

  .hero__features {
    gap: 0.45rem;
    justify-content: center;
  }

  .hero__cards {
    width: auto;
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 0.75rem;
  }

  .hero__price-card {
    align-items: center;
    flex: 0 1 auto;
    padding: 0.42rem 0.7rem;
    gap: 0.05rem;
  }

  .hero__price-label {
    font-size: 0.55rem;
  }

  .hero__price-row {
    gap: 0.45rem;
  }

  .hero__price-value {
    font-size: 1.02rem;
  }

  .hero__price-suffix {
    font-size: 0.58rem;
    padding: 2px 8px;
  }

  .hero__offer-card {
    flex: 0 1 auto;
    justify-content: center;
    padding: 0.42rem 0.7rem;
    gap: 0.5rem;
  }

  .hero__offer-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .hero__offer-icon svg {
    width: 13px;
    height: 13px;
  }

  .hero__offer-title {
    font-size: 0.68rem;
  }

  .hero__offer-text {
    font-size: 0.64rem;
    line-height: 1.3;
  }

  .hero__actions {
    width: 100%;
    justify-content: center;
  }

  .hero__aside {
    order: -1;
    align-self: end;
    position: static;
    display: none;
  }

  .home-finder {
    padding: 1.5rem 0 2rem;
  }

  .home-finder__card {
    padding: 1.25rem 1.25rem 1.35rem;
    gap: 1rem;
    border-radius: 18px;
  }

  .home-finder__proof {
    margin-bottom: 1.15rem;
  }

  .home-finder__proof li {
    padding: 0 1rem;
  }

  .home-finder__fields {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

@media (max-width: 560px) {
  .hero__container {
    padding-top: 4.6rem;
    padding-bottom: 4.75rem;
  }

  .hero__approvals {
    bottom: 0.6rem;
    gap: 0.5rem;
  }

  .hero__approval-badge--wide img {
    height: 58px;
  }

  .hero__approval-badge--square img {
    width: 62px;
    height: 62px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .home-finder__proof li + li {
    border-left: 0;
  }

  .home-finder__proof {
    gap: 0.55rem 1.35rem;
  }

  .home-finder__proof li {
    padding: 0;
  }

  .hero__place {
    max-width: 100%;
  }

  .hero__subtitle-text {
    display: none;
  }
}

@media (max-width: 400px) {
  .hero__container {
    padding-top: 4.35rem;
    padding-bottom: 4.5rem;
  }

  .hero__approvals {
    bottom: 0.5rem;
    gap: 0.4rem;
  }

  .hero__approval-badge--wide img {
    height: 44px;
  }

  .hero__approval-badge--square img {
    width: 48px;
    height: 48px;
  }

  .hero__highlight-text {
    font-size: clamp(2.2rem, 12vw, 3.1rem);
    white-space: normal;
  }

  .hero__kicker {
    font-size: 0.58rem;
  }

  .home-finder__card {
    padding: 1rem 0.95rem 1.1rem;
    border-radius: 16px;
  }
}

@media (max-height: 720px) and (min-width: 900px) {
  .hero__container {
    padding-top: 5.15rem;
    padding-bottom: 0.45rem;
  }

  .hero__highlight-text {
    font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  }

  .hero__kicker {
    margin-bottom: 0.45rem;
  }

  .hero__features {
    margin-bottom: 0.65rem;
  }

  .hero__cards {
    margin-bottom: 0.65rem;
  }
}

@media (max-width: 768px) and (max-height: 780px) {
  .hero__features {
    display: none;
  }

  .hero__subtitle-text {
    display: none;
  }

  .hero__highlight-text {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-img--active,
  .hero__kicker-mark,
  .hero__highlight.is-swap::before,
  .hero__highlight-text.is-out,
  .hero__highlight-text.is-in,
  .hero__content,
  .hero__aside {
    animation: none;
  }
}

/* ==============================
   HOME PAGE — PROPERTY TYPES
   ============================== */

.property-types.section {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  max-height: none;
  padding: 3.25rem 0 3.75rem;
  overflow: visible;
  box-sizing: border-box;
  background: #eef6f1;
}

.property-types .container {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: auto;
}

.property-types__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-shrink: 0;
  gap: 1.25rem;
  margin-bottom: 1rem;
  text-align: left;
}

.property-types__intro {
  max-width: 640px;
}

.property-types__intro .section__badge {
  margin-bottom: 0.5rem;
}

.property-types__intro .section__title {
  margin-bottom: 0.4rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.property-types__intro .section__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
}

.property-types__intro .section__subtitle {
  margin: 0;
  max-width: 52ch;
  text-align: left;
  font-size: 0.95rem;
}

@media (max-height: 740px) {
  .property-types__intro .section__subtitle {
    display: none;
  }

  .property-types__header {
    margin-bottom: 0.75rem;
  }
}

.property-types__header .section__badge svg {
  width: 14px;
  height: 14px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #2dd4bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.property-types__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: 1rem;
  min-height: 0;
}

.ptype-card {
  position: relative;
  display: block;
  height: 280px;
  min-height: 0;
  max-height: none;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ptype-card:hover,
.ptype-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.18);
  outline: none;
}

.ptype-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ptype-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 12, 0.15) 0%, rgba(8, 16, 12, 0.2) 42%, rgba(8, 16, 12, 0.88) 100%);
}

.ptype-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.ptype-card:hover .ptype-card__media img {
  transform: scale(1.08);
}

.ptype-card__index {
  position: absolute;
  top: 1.1rem;
  left: 1.2rem;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
}

.ptype-card__status {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  z-index: 2;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.ptype-card--ongoing .ptype-card__status {
  background: rgba(30, 143, 79, 0.88);
  border-color: transparent;
}

.ptype-card--upcoming .ptype-card__status {
  background: rgba(212, 175, 55, 0.9);
  border-color: transparent;
  color: #1a1404;
}

.ptype-card--completed .ptype-card__status {
  background: rgba(255, 255, 255, 0.92);
  border-color: transparent;
  color: #111827;
}

.ptype-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.5rem 1.35rem 1.35rem;
}

.ptype-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.ptype-card__text {
  margin: 0 0 1rem;
  max-width: 34ch;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.ptype-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem 0.45rem 0.95rem;
  border-radius: 100px;
  background: #fff;
  color: #111827;
  font-size: 0.8rem;
  font-weight: 700;
  transition: gap 0.25s ease, background 0.25s ease;
}

.ptype-card:hover .ptype-card__cta,
.ptype-card:focus-visible .ptype-card__cta {
  gap: 0.7rem;
  background: #e8fff2;
  color: var(--primary-hover);
}

.project-ticker {
  position: relative;
  margin-top: 1.5rem;
}

.project-ticker::before,
.project-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 72px;
  pointer-events: none;
}

.project-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #eef6f1 0%, rgba(238, 246, 241, 0) 100%);
}

.project-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #eef6f1 0%, rgba(238, 246, 241, 0) 100%);
}

.project-ticker__viewport {
  overflow: hidden;
}

.project-ticker__track {
  display: flex;
  width: max-content;
  animation: projectTicker 38s linear infinite;
}

.project-ticker:hover .project-ticker__track,
.project-ticker:focus-within .project-ticker__track {
  animation-play-state: paused;
}

.project-ticker__group {
  display: flex;
  gap: 0.75rem;
  padding-right: 0.75rem;
}

.project-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 248px;
  padding: 0.42rem 1.05rem 0.42rem 0.42rem;
  overflow: hidden;
  background:
    linear-gradient(165deg, #1a2d23 0%, #102018 58%, #0c1812 100%);
  border: 1px solid rgba(196, 160, 86, 0.26);
  border-radius: 16px;
  box-shadow:
    0 12px 28px rgba(12, 26, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-chip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1E8F4F, #C4A056);
}

.project-chip:hover,
.project-chip:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(196, 160, 86, 0.48);
  box-shadow:
    0 16px 34px rgba(12, 26, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  outline: none;
}

.project-chip img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  background: #1a2d23;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.project-chip__copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.project-chip__copy strong {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f4f7f5;
  white-space: nowrap;
}

.project-chip__copy em {
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #86efac;
}

.project-chip[href*="completed"] .project-chip__copy em {
  color: #d4af57;
}

@keyframes projectTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .project-ticker__track {
    animation: none;
  }
}

@media (max-width: 768px) {
  .project-ticker {
    margin-top: 1.15rem;
  }
  .project-ticker::before,
  .project-ticker::after {
    width: 36px;
  }
  .project-chip {
    min-width: 228px;
  }
}

/* ==============================
   HOME PAGE — FEATURED PROJECTS
   ============================== */

.featured {
  background:
    radial-gradient(ellipse 60% 50% at 100% 32%, rgba(212, 175, 55, 0.12), transparent 55%),
    radial-gradient(ellipse 48% 38% at 0% 72%, rgba(30, 143, 79, 0.16), transparent 52%),
    #0C1A12;
  padding: var(--space-4xl) 0;
}

.featured__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.featured__header {
  padding-top: var(--space-xl);
}

.featured__header .section__badge {
  text-align: left;
  background: rgba(30,143,79,0.15);
  color: #4ade80;
}

.featured__header .section__title {
  text-align: left;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #fff;
}

.featured__desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.featured__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #4ade80;
}

.featured__link:hover {
  color: #86efac;
}

.featured__link:hover svg {
  transform: translateX(4px);
}

.featured__link svg {
  transition: transform var(--transition-fast);
  stroke: currentColor;
}

.featured__carousel {
  position: relative;
  overflow: hidden;
}

.featured__track {
  display: flex;
  gap: var(--space-xl);
  padding-bottom: var(--space-md);
  transition: transform 0.4s ease;
}

.fproject-card {
  min-width: 260px;
  flex: 0 0 calc(33.333% - var(--space-xl) * 2 / 3);
  background: #162920;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.fproject-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.15);
}

.fproject-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.fproject-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fproject-card:hover .fproject-card__image img {
  transform: scale(1.05);
}

.fproject-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  z-index: 1;
}

.fproject-card__badge--launch {
  background: #1B6B3A;
}

.fproject-card__badge--premium {
  background: var(--primary);
}

.fproject-card__badge--exclusive {
  background: #2D5A3D;
}

.fproject-card__body {
  padding: var(--space-lg);
}

.fproject-card__name {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: #fff;
}

.fproject-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-md);
}

.fproject-card__location svg {
  stroke: var(--primary);
  flex-shrink: 0;
}

.fproject-card__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  gap: var(--space-sm);
}

.fproject-card__details span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fproject-card__details svg {
  stroke: var(--primary);
}

.featured__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all var(--transition-fast);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.featured__arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.featured__arrow--prev {
  left: 8px;
}

.featured__arrow--next {
  right: 8px;
}

.featured__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-xl);
}

.featured__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
}

.featured__dot--active {
  background: var(--primary);
}

/* ==============================
   HOME PAGE — STATS COUNTER
   ============================== */

.stats-section {
  padding: var(--space-3xl) 0;
  background: #ecf6ef;
  border-top: 0;
  border-bottom: 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.stats__item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  text-align: left;
}

.stats__icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.stats__number {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
  margin-bottom: 2px;
}

.stats__label {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 500;
}

/* ==============================
   HOME PAGE — AMENITIES
   ============================== */

.amenities-section {
  position: relative;
  padding: 3.5rem 0 3.75rem;
  box-sizing: border-box;
  background:
    radial-gradient(ellipse 55% 42% at 0% 42%, rgba(30, 143, 79, 0.1), transparent 58%),
    radial-gradient(ellipse 45% 34% at 100% 58%, rgba(212, 175, 55, 0.1), transparent 55%),
    #ecf6ef;
}

.amenities-section .container {
  display: flex;
  flex-direction: column;
}

.amenities__header {
  max-width: 640px;
  margin: 0 0 0.85rem;
  flex-shrink: 0;
}

.amenities__header .section__badge {
  margin-bottom: 0.45rem;
}

.amenities__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  letter-spacing: -0.03em;
  color: var(--heading);
  line-height: 1.15;
}

.amenities__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
}

.amenities__desc {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 0.75rem;
}

.amenity-card {
  --amenity-accent: #1E8F4F;
  --amenity-wash: rgba(30, 143, 79, 0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.3rem;
  padding: 0.7rem 0.8rem 0.7rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.amenity-card::after {
  content: '';
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--amenity-wash);
  pointer-events: none;
}

.amenity-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--amenity-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  border-color: var(--amenity-accent);
}

.amenity-card:hover::before {
  opacity: 1;
}

.amenity-card__icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--amenity-wash);
  color: var(--amenity-accent);
  margin: 0;
  z-index: 1;
  transition: background 0.25s ease, color 0.25s ease;
}

.amenity-card:hover .amenity-card__icon {
  background: var(--amenity-accent);
  color: #fff;
}

.amenity-card--club { --amenity-accent: #1E8F4F; --amenity-wash: rgba(30, 143, 79, 0.16); }
.amenity-card--gym { --amenity-accent: #D97706; --amenity-wash: rgba(217, 119, 6, 0.14); }
.amenity-card--pool { --amenity-accent: #2563EB; --amenity-wash: rgba(37, 99, 235, 0.12); }
.amenity-card--kids { --amenity-accent: #DB2777; --amenity-wash: rgba(219, 39, 119, 0.12); }
.amenity-card--garden { --amenity-accent: #16A34A; --amenity-wash: rgba(22, 163, 74, 0.14); }
.amenity-card--rooftop { --amenity-accent: #0D9488; --amenity-wash: rgba(13, 148, 136, 0.14); }
.amenity-card--security { --amenity-accent: #4F46E5; --amenity-wash: rgba(79, 70, 229, 0.12); }
.amenity-card--power { --amenity-accent: #CA8A04; --amenity-wash: rgba(202, 138, 4, 0.16); }
.amenity-card--parking { --amenity-accent: #0F766E; --amenity-wash: rgba(15, 118, 110, 0.14); }

.amenity-card h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--heading);
  z-index: 1;
}

.amenity-card p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.4;
  color: var(--muted);
  z-index: 1;
}

.amenity-card--feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 200px;
  padding: 0;
  justify-content: flex-end;
  color: #fff;
}

.amenity-card--feature::before,
.amenity-card--feature::after {
  display: none;
}

.amenity-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.amenity-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.amenity-card--feature:hover .amenity-card__media img {
  transform: scale(1.08);
}

.amenity-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 12, 0.05) 20%, rgba(8, 16, 12, 0.72) 100%);
}

.amenity-card--feature .amenity-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.9rem 1rem 0.85rem;
}

.amenity-card--feature .amenity-card__icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.amenity-card--feature:hover .amenity-card__icon {
  background: #fff;
  color: var(--primary);
}

.amenity-card--feature h3 {
  font-size: 1.2rem;
  color: #fff;
}

.amenity-card--feature p {
  max-width: 34ch;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
}

.amenities__foot {
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
}

[data-theme="dark"] .amenities-section {
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(30, 143, 79, 0.12), transparent 55%),
    var(--section);
}

[data-theme="dark"] .amenity-card {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .amenity-card h3 {
  color: var(--heading);
}

@media (min-width: 1101px) and (max-height: 780px) {
  .amenities__desc {
    display: none;
  }

  .amenity-card p {
    font-size: 0.72rem;
    line-height: 1.35;
  }
}

/* ==============================
   HOME PAGE — WHY CHOOSE US
   ============================== */

.why-section {
  position: relative;
  padding: 4.5rem 0 4.75rem;
  background:
    radial-gradient(ellipse 50% 40% at 8% 40%, rgba(30, 143, 79, 0.07), transparent 62%),
    radial-gradient(ellipse 42% 34% at 96% 62%, rgba(196, 160, 86, 0.1), transparent 58%),
    #f7f4ee;
  overflow: hidden;
}

.why__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.25rem;
}

.why__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--heading);
}

.why__title em {
  display: inline;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
}

.why__lead {
  margin: 0;
  max-width: 58ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text);
}

.why__intro-visual {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.why__intro-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.why__intro-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 20, 14, 0.45) 100%);
  pointer-events: none;
}

.why__visual-chip {
  position: absolute;
  left: 1.15rem;
  bottom: 1.15rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.85rem 1.05rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.why__visual-chip strong {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}

.why__visual-chip span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

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

.why-reason {
  --why-accent: #1E8F4F;
  --why-wash: rgba(30, 143, 79, 0.2);
  --why-card: #d7eadf;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
  padding: 1.3rem 1.2rem 1.25rem;
  background: var(--why-card);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-reason::after {
  content: '';
  position: absolute;
  inset: auto -20% -40% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--why-wash);
  pointer-events: none;
}

.why-reason:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  border-color: var(--why-accent);
}

.why-reason--emerald { --why-accent: #146c3b; --why-wash: rgba(20, 108, 59, 0.2); --why-card: #cfe6d8; }
.why-reason--gold { --why-accent: #8d6b24; --why-wash: rgba(196, 160, 86, 0.28); --why-card: #ead9b4; }
.why-reason--teal { --why-accent: #0f766e; --why-wash: rgba(13, 148, 136, 0.22); --why-card: #c5e4e0; }
.why-reason--blue { --why-accent: #1d4ed8; --why-wash: rgba(37, 99, 235, 0.2); --why-card: #cddcf4; }
.why-reason--amber { --why-accent: #b45309; --why-wash: rgba(217, 119, 6, 0.22); --why-card: #eed4ae; }
.why-reason--rose { --why-accent: #be123c; --why-wash: rgba(225, 29, 72, 0.18); --why-card: #f0cdd6; }
.why-reason--violet { --why-accent: #6d28d9; --why-wash: rgba(124, 58, 237, 0.18); --why-card: #ddd0f3; }
.why-reason--forest { --why-accent: #115e59; --why-wash: rgba(15, 118, 110, 0.22); --why-card: #c4ddd9; }

.why-reason__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--why-wash);
  color: var(--why-accent);
  z-index: 1;
}

.why-reason h3 {
  margin: 0.15rem 0 0;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--heading);
  z-index: 1;
}

.why-reason p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.6;
  color: #3f4a45;
  z-index: 1;
}

.why__close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 1.75rem;
  border-radius: 20px;
  background:
    linear-gradient(120deg, #0f2318 0%, #166534 48%, #1E8F4F 100%);
  color: #fff;
  box-shadow: 0 18px 44px rgba(22, 101, 52, 0.28);
}

.why__close-copy h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.why__close-copy p {
  margin: 0;
  max-width: 62ch;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.why__close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  flex-shrink: 0;
}

.why__btn-light {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: #fff !important;
}

.why__btn-light:hover {
  background: #fff !important;
  color: #166534 !important;
  border-color: #fff !important;
}

.expert-call-wrap {
  position: relative;
  display: inline-block;
}

.expert-call-wrap .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.expert-call-dropdown {
  position: absolute;
  bottom: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 0.6rem 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 20;
}

.expert-call-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.expert-call-dropdown__title {
  display: block;
  padding: 0.25rem 0.65rem 0.45rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.expert-call-dropdown__option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.65rem;
  border-radius: 10px;
  text-decoration: none;
  color: #111827;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.15s ease;
}

.expert-call-dropdown__option:hover {
  background: #f0fdf4;
  color: #166534;
}

.expert-call-dropdown__option svg {
  flex-shrink: 0;
  color: #1e8f4f;
}

.text-primary {
  color: var(--primary);
}

[data-theme="dark"] .why-section {
  background: var(--section);
}

[data-theme="dark"] .why-reason {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .why-reason h3,
[data-theme="dark"] .why__title {
  color: var(--heading);
}

/* ==============================
   HOME PAGE — TESTIMONIALS
   ============================== */

.testimonials-section {
  position: relative;
  padding: 4.25rem 0 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 46% 40% at 8% 20%, rgba(30, 143, 79, 0.07), transparent 62%),
    radial-gradient(ellipse 40% 34% at 94% 80%, rgba(196, 160, 86, 0.1), transparent 58%),
    #f7f4ee;
}

.testimonials__head {
  max-width: 640px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.testimonials__head .section__title {
  margin-bottom: 0.65rem;
}

.testimonials__carousel {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonials__viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.testimonials__track {
  display: flex;
  gap: 1.15rem;
  width: max-content;
  will-change: transform;
}

.testimonials__arrow {
  display: grid;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 50%;
  background: #fff;
  color: #14532d;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  cursor: pointer;
}

.testimonials__arrow:hover {
  background: #14532d;
  border-color: #14532d;
  color: #fff;
}

.testi-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 min(360px, 78vw);
  min-height: 280px;
  padding: 1.7rem 1.55rem 1.4rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(28, 25, 23, 0.05);
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1E8F4F, #C4A056);
}

.testi-card__mark {
  display: block;
  margin: 0 0 0.15rem;
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 0.7;
  color: #1E8F4F;
  opacity: 0.28;
}

.testi-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.85rem;
  color: #C4A056;
}

.testi-card__quote {
  flex: 1;
  margin: 0 0 1.35rem;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.015em;
  color: #1f2937;
}

.testi-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.05rem;
  border-top: 1px solid #eef0ee;
}

.testi-card__avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

.testi-card__avatar--forest { background: #14532d; }
.testi-card__avatar--gold { background: #9a7b3c; }
.testi-card__avatar--deep { background: #0C1A12; }

.testi-card__avatar span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.testi-card__name {
  display: block;
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 700;
  color: #111827;
}

.testi-card__project {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1E8F4F;
}

[data-theme="dark"] .testimonials-section {
  background: var(--bg);
}

[data-theme="dark"] .testi-card {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .testi-card__quote,
[data-theme="dark"] .testi-card__name {
  color: var(--heading);
}

[data-theme="dark"] .testi-card__footer {
  border-color: var(--border);
}

@media (prefers-reduced-motion: reduce) {
  .testimonials__track {
    transform: none !important;
    flex-wrap: wrap;
    width: auto;
  }
  .testi-card[data-clone] { display: none; }
}

/* ==============================
   HOME PAGE — OLD CLASSES (kept for counter compatibility)
   ============================== */

.counter-section {
  background: var(--primary);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.counter__item {
  text-align: center;
}

.counter__number {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.counter__label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  font-weight: 500;
}

/* ==============================
   HOME PAGE — INTRO (old, kept for compatibility)
   ============================== */

.intro__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.intro__text p {
  color: var(--text);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.intro__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.intro__highlight {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  color: var(--heading);
  font-size: 0.9375rem;
}

.intro__highlight svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.featured-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.gallery-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: var(--space-md);
}

.gallery-preview__item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-preview__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-base);
}

.gallery-preview__item:hover {
  transform: scale(1.02);
}

.gallery-preview__item .placeholder {
  height: 100%;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* ==============================
   ABOUT PAGE
   ============================== */

.about-page .breadcrumbs {
  background: transparent;
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 104px 0 0.75rem;
}

.about-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: min(92svh, 920px);
  padding-bottom: 3.5rem;
  background: linear-gradient(180deg, #f4f8f5 0%, #f7f4ee 52%, #faf8f3 100%);
}

[data-theme="dark"] .about-hero {
  background: #121410;
}

.about-hero__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 8% 30%, rgba(30, 143, 79, 0.1), transparent 68%),
    radial-gradient(ellipse 40% 36% at 92% 88%, rgba(196, 160, 86, 0.12), transparent 70%);
}

.about-hero__lineart {
  position: absolute;
  left: -20px;
  bottom: 0;
  width: min(28vw, 280px);
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  flex: 1;
  padding-top: 1.25rem;
}

.about-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #166534;
}

.about-hero__kicker span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: #1E8F4F;
}

.about-hero__title {
  margin: 0 0 0.9rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.55rem, 5.2vw, 4.35rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #1f2937;
}

.about-hero__title em {
  font-style: italic;
  font-weight: 600;
  color: #1E8F4F;
}

.about-hero__rule {
  display: block;
  width: 52px;
  height: 3px;
  margin: 0 0 1.15rem;
  background: #1E8F4F;
  border-radius: 2px;
}

.about-hero__lede {
  max-width: 44ch;
  margin: 0 0 1.75rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #4b5563;
}

.about-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.about-hero__fact {
  padding: 0.95rem 0.9rem 0.9rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 143, 79, 0.1);
  border-top: 3px solid #1E8F4F;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 10px 24px rgba(22, 101, 52, 0.04);
}

.about-hero__fact strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #14532d;
  line-height: 1.2;
}

.about-hero__fact span {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
}

.about-hero__cin {
  margin: 0 0 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-hero__figure {
  margin: 0;
  position: relative;
  z-index: 1;
}

.about-hero__figure::before {
  content: '';
  position: absolute;
  inset: 1.4rem -1.15rem -1.15rem 1.4rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(30, 143, 79, 0.16), rgba(196, 160, 86, 0.18));
  z-index: 0;
}

.about-hero__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 28px 64px rgba(22, 44, 28, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.about-hero__frame img {
  display: block;
  width: 100%;
  height: min(560px, 64vh);
  object-fit: cover;
  object-position: 72% center;
}

.about-hero__badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  padding: 0.5rem 0.8rem;
  background: rgba(255, 255, 255, 0.94);
  color: #14532d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.about-hero__figure figcaption {
  position: relative;
  z-index: 1;
  margin: 1.35rem 0 0 0.15rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #6b7280;
}

[data-theme="dark"] .about-hero__title {
  color: var(--heading);
}

[data-theme="dark"] .about-hero__lede,
[data-theme="dark"] .about-hero__figure figcaption,
[data-theme="dark"] .about-hero__cin {
  color: var(--text);
}

[data-theme="dark"] .about-hero__kicker {
  color: #86efac;
}

[data-theme="dark"] .about-hero__fact {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .about-hero__fact strong {
  color: #86efac;
}

.about-who {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 5.25rem;
  background: #ffffff;
}

.about-who::before {
  content: '';
  position: absolute;
  right: -8%;
  top: 10%;
  width: 42%;
  height: 70%;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 70% 40%, rgba(196, 160, 86, 0.1), transparent 70%);
}

.about-who__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-who__figure {
  margin: 0;
  position: relative;
}

.about-who__figure::before {
  content: '';
  position: absolute;
  inset: -1.15rem 1.4rem 1.4rem -1.15rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(30, 143, 79, 0.14), rgba(196, 160, 86, 0.16));
  z-index: 0;
}

.about-who__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 28px 64px rgba(22, 44, 28, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.about-who__frame img {
  display: block;
  width: 100%;
  height: min(520px, 62vh);
  object-fit: cover;
  object-position: 60% center;
}

.about-who__badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  padding: 0.5rem 0.8rem;
  background: rgba(255, 255, 255, 0.94);
  color: #14532d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.about-who__figure figcaption {
  position: relative;
  z-index: 1;
  margin: 1.35rem 0 0 0.15rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #6b7280;
}

.about-who__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #166534;
}

.about-who__kicker span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: #1E8F4F;
}

.about-who__heading {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #1f2937;
  scroll-margin-top: 120px;
}

.about-who__heading em {
  font-style: italic;
  font-weight: 600;
  color: #1E8F4F;
}

.about-who__rule {
  display: block;
  width: 48px;
  height: 3px;
  margin: 0 0 1.15rem;
  background: #1E8F4F;
  border-radius: 2px;
}

.about-who__copy p {
  margin: 0 0 1rem;
  max-width: 52ch;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #4b5563;
}

.about-who__copy p strong {
  color: #1f2937;
  font-weight: 600;
}

.about-who__cin {
  margin: 0 0 1.5rem !important;
  font-size: 0.72rem !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af !important;
}

.about-who__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-who__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 0.9rem;
  background: #f7faf8;
  border: 1px solid rgba(30, 143, 79, 0.08);
  border-radius: 16px;
}

.about-who__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #1E8F4F;
  color: #fff;
}

.about-who__points strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #14532d;
  letter-spacing: -0.01em;
}

.about-who__points li div span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #6b7280;
}

[data-theme="dark"] .about-who {
  background: #141816;
}

[data-theme="dark"] .about-who__heading,
[data-theme="dark"] .about-who__copy p strong {
  color: var(--heading);
}

[data-theme="dark"] .about-who__copy p,
[data-theme="dark"] .about-who__figure figcaption,
[data-theme="dark"] .about-who__points span {
  color: var(--text);
}

[data-theme="dark"] .about-who__points li {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .about-who__points strong {
  color: #86efac;
}

[data-theme="dark"] .about-who__kicker {
  color: #86efac;
}

.about-purpose {
  position: relative;
  overflow: hidden;
  padding: 5.25rem 0 5.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f5 100%);
}

.about-purpose::before {
  content: '';
  position: absolute;
  left: -10%;
  top: 0;
  width: 46%;
  height: 58%;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 30% 20%, rgba(30, 143, 79, 0.08), transparent 70%);
}

.about-purpose .container {
  position: relative;
  z-index: 1;
}

.about-purpose__header {
  max-width: 640px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.about-purpose__kicker,
.about-purpose__quest-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #166534;
}

.about-purpose__kicker span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: #1E8F4F;
}

.about-purpose__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #1f2937;
}

.about-purpose__title em {
  font-style: italic;
  font-weight: 600;
  color: #1E8F4F;
}

.about-purpose__rule {
  display: block;
  width: 52px;
  height: 3px;
  margin: 0 auto 1.05rem;
  background: #1E8F4F;
  border-radius: 2px;
}

.about-purpose__lede {
  margin: 0 auto;
  max-width: 48ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #6b7280;
}

.about-purpose__duo {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.35rem;
  margin-bottom: 1.75rem;
}

.purpose-panel {
  border-radius: 26px;
  padding: 2rem 1.9rem 1.85rem;
}

.purpose-panel--mission {
  background: #fff;
  border: 1px solid rgba(30, 143, 79, 0.08);
  box-shadow: 0 18px 44px rgba(22, 101, 52, 0.06);
}

.purpose-panel--vision {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #14532d 0%, #0f2918 100%);
  color: #ecfdf3;
  box-shadow: 0 22px 48px rgba(15, 41, 24, 0.22);
}

.purpose-panel__label {
  margin: 0 0 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #166534;
}

.purpose-panel--vision .purpose-panel__label {
  color: #86efac;
}

.purpose-panel--mission h3 {
  margin: 0 0 0.9rem;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #1f2937;
}

.purpose-panel--mission p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #4b5563;
}

.purpose-panel--mission strong {
  color: #14532d;
}

.purpose-panel__mark {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.purpose-panel__quote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
  color: #f8fafc;
}

.about-purpose__quest {
  padding: 1.75rem 1.5rem 1.6rem;
  background: #fff;
  border: 1px solid rgba(30, 143, 79, 0.08);
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(22, 101, 52, 0.05);
}

.about-purpose__quest-kicker {
  margin-bottom: 1.15rem;
}

.quest-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.quest-list li {
  padding: 1.05rem 0.95rem 1.1rem;
  background: #f7faf8;
  border-radius: 16px;
  border-top: 3px solid #1E8F4F;
}

.quest-list__letter {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
  color: #1E8F4F;
}

.quest-list strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #14532d;
}

.quest-list p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #6b7280;
}

[data-theme="dark"] .about-purpose {
  background: #121814;
}

[data-theme="dark"] .about-purpose__title {
  color: var(--heading);
}

[data-theme="dark"] .about-purpose__lede,
[data-theme="dark"] .quest-list p {
  color: var(--text);
}

[data-theme="dark"] .purpose-panel--mission,
[data-theme="dark"] .about-purpose__quest,
[data-theme="dark"] .quest-list li {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .purpose-panel--mission h3,
[data-theme="dark"] .quest-list strong {
  color: var(--heading);
}

[data-theme="dark"] .purpose-panel--mission p {
  color: var(--text);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.team-member {
  text-align: center;
}

.team-member__image {
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.team-member__image .placeholder {
  height: 280px;
}

.team-member__name {
  font-size: 1.0625rem;
  margin-bottom: 2px;
}

.team-member__role {
  color: var(--muted);
  font-size: 0.875rem;
}

/* Directors */
.directors-section {
  position: relative;
  padding: 5.25rem 0 5.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #f3faf6 0%, #f7fbf8 42%, #ffffff 100%);
}

.directors__wash {
  position: absolute;
  left: -8%;
  top: 8%;
  width: 42%;
  height: 70%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 20% 40%, rgba(30, 143, 79, 0.1), transparent 70%),
    radial-gradient(ellipse 50% 40% at 40% 80%, rgba(167, 214, 188, 0.22), transparent 68%);
}

.directors__skyline {
  position: absolute;
  right: -12px;
  bottom: 0;
  width: min(36vw, 380px);
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.directors-section .container {
  position: relative;
  z-index: 1;
}

.directors__header {
  max-width: 680px;
  margin: 0 auto 2.85rem;
  text-align: center;
}

.directors__kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #166534;
}

.directors__kicker span {
  display: block;
  width: 32px;
  height: 1.5px;
  background: #1E8F4F;
}

.directors__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(2.05rem, 4.2vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: #1f2937;
}

.directors__title em {
  font-style: normal;
  font-weight: 700;
  color: #1E8F4F;
}

.directors__rule {
  display: block;
  width: 52px;
  height: 3px;
  margin: 0 auto 1.05rem;
  background: #1E8F4F;
  border-radius: 2px;
}

.directors__subtitle {
  margin: 0 auto;
  max-width: 48ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #6b7280;
}

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

.dm-card {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  min-height: 318px;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(22, 101, 52, 0.08);
  border: 1px solid rgba(30, 143, 79, 0.06);
}

.dm-card__photo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e8f6ee 0%, #f4faf6 100%);
}

.dm-card__photo--gold {
  background: linear-gradient(180deg, #f6eedc 0%, #faf6ec 100%);
}

.dm-card__orb {
  position: absolute;
  width: 178px;
  height: 178px;
  border-radius: 50%;
  left: 50%;
  top: 36%;
  transform: translate(-50%, -50%);
  background: #cde8d6;
}

.dm-card__photo--gold .dm-card__orb {
  background: #ead9a8;
}

.dm-card__portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  z-index: 1;
}

.dm-card__photo--gold .dm-card__portrait {
  object-position: center 12%;
}

.dm-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.7rem 1.65rem 1.45rem 1.5rem;
}

.dm-card__quote {
  width: 34px;
  height: 34px;
  margin-bottom: 0.95rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1E8F4F;
  color: #fff;
  flex-shrink: 0;
}

.dm-card__body p {
  margin: 0 0 1.2rem;
  font-size: 0.9rem;
  line-height: 1.78;
  color: #4b5563;
}

.dm-card__body h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  color: #166534;
  letter-spacing: -0.01em;
}

.dm-card__role {
  display: block;
  margin-top: 0.22rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ca3af;
}

.dm-card__sign {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.05rem;
}

.dm-card__sign-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #1E8F4F;
  color: #fff;
  flex-shrink: 0;
}

.dm-card__signature {
  font-family: var(--font-script);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
  color: #111827;
}

[data-theme="dark"] .directors-section {
  background: #121814;
}

[data-theme="dark"] .directors__wash {
  opacity: 0.35;
}

[data-theme="dark"] .dm-card {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .dm-card__body p,
[data-theme="dark"] .directors__subtitle {
  color: var(--text);
}

[data-theme="dark"] .directors__title,
[data-theme="dark"] .dm-card__signature {
  color: var(--heading);
}

[data-theme="dark"] .directors__kicker {
  color: #86efac;
}

.journey {
  position: relative;
  overflow: hidden;
  padding: 5.25rem 0 5.75rem;
  background:
    radial-gradient(ellipse 52% 42% at 4% 8%, rgba(30, 143, 79, 0.1), transparent 62%),
    radial-gradient(ellipse 40% 36% at 96% 18%, rgba(196, 160, 86, 0.1), transparent 60%),
    radial-gradient(ellipse 38% 32% at 92% 82%, rgba(124, 107, 196, 0.08), transparent 62%),
    radial-gradient(ellipse 34% 28% at 12% 88%, rgba(61, 107, 181, 0.07), transparent 64%),
    linear-gradient(180deg, #f5f8f4 0%, #f4f7f8 48%, #f8f5ef 100%);
}

.journey::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 38%;
  width: min(42vw, 460px);
  height: 70%;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 18px,
      rgba(30, 143, 79, 0.045) 18px 19px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 22px,
      rgba(30, 143, 79, 0.04) 22px 23px
    );
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 70%, transparent);
  opacity: 0.55;
}

.journey__bg {
  position: absolute;
  left: -6%;
  top: 2%;
  width: min(40vw, 440px);
  height: auto;
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
  mask-image: linear-gradient(90deg, #000 15%, transparent 82%);
}

.journey .container {
  position: relative;
  z-index: 1;
}

.journey__intro {
  max-width: 560px;
  margin: 0 0 3.25rem;
}

.journey__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.9rem;
  padding: 0.38rem 0.8rem;
  background: #e8f6ee;
  color: #166534;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
}

.journey__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #111827;
}

.journey__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: #1E8F4F;
}

.journey__lede {
  margin: 0 0 1.25rem;
  max-width: 46ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #6b7280;
}

.journey__stat {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.25rem 0.7rem 0.7rem;
  background: #fff;
  border: 1px solid rgba(30, 143, 79, 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(22, 101, 52, 0.07);
}

.journey__stat-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #e8f6ee;
  color: #1E8F4F;
}

.journey__stat-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.journey__stat-copy {
  margin: 0;
}

.journey__stat-copy strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1E8F4F;
}

.journey__stat-copy span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
  color: #6b7280;
}

.journey-track {
  --axis: 4.5rem;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  gap: 2.35rem;
  margin: 0;
  padding: 2.5rem 0 1rem;
  list-style: none;
}

.journey-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0.5rem;
  bottom: 0.25rem;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(
    to top,
    #1E8F4F 0%,
    #c4a056 14%,
    #e07a3d 28%,
    #d46a8a 42%,
    #7c6bc4 56%,
    #3d6bb5 68%,
    #2a9d8f 80%,
    #5dae6a 90%,
    #14532d 100%
  );
  border-radius: 99px;
}

.journey-track::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid #14532d;
}

.journey-item {
  --accent: #1E8F4F;
  --accent-soft: #eef8f2;
  --accent-glow: rgba(30, 143, 79, 0.14);
  position: relative;
  display: grid;
  grid-template-columns: 1fr var(--axis) 1fr;
  column-gap: 0.35rem;
  align-items: center;
}

.journey-item--green { --accent: #1E8F4F; --accent-soft: #e8f6ee; --accent-glow: rgba(30, 143, 79, 0.16); }
.journey-item--gold { --accent: #c4a056; --accent-soft: #f8f1de; --accent-glow: rgba(196, 160, 86, 0.18); }
.journey-item--orange { --accent: #e07a3d; --accent-soft: #fbeadf; --accent-glow: rgba(224, 122, 61, 0.16); }
.journey-item--pink { --accent: #d46a8a; --accent-soft: #f8e6ee; --accent-glow: rgba(212, 106, 138, 0.16); }
.journey-item--purple { --accent: #7c6bc4; --accent-soft: #eeeaf8; --accent-glow: rgba(124, 107, 196, 0.16); }
.journey-item--blue { --accent: #3d6bb5; --accent-soft: #e6eef8; --accent-glow: rgba(61, 107, 181, 0.16); }
.journey-item--teal { --accent: #2a9d8f; --accent-soft: #e4f5f2; --accent-glow: rgba(42, 157, 143, 0.16); }
.journey-item--mint { --accent: #5dae6a; --accent-soft: #e8f6ea; --accent-glow: rgba(93, 174, 106, 0.16); }
.journey-item--forest { --accent: #14532d; --accent-soft: #e4efe8; --accent-glow: rgba(20, 83, 45, 0.16); }

.journey-item__year {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 2;
  width: var(--axis);
  height: var(--axis);
  display: grid;
  place-items: center;
  margin: 0 auto;
  background: var(--accent-soft);
  border: 3px solid var(--accent);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--accent);
  box-shadow: 0 8px 22px var(--accent-glow);
}

.journey-item:nth-child(odd) .journey-card {
  grid-column: 3;
}

.journey-item:nth-child(even) .journey-card {
  grid-column: 1;
}

.journey-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 168px;
  min-height: 164px;
  background: linear-gradient(180deg, #ffffff 0%, var(--accent-soft) 100%);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px var(--accent-glow);
  border: 1px solid color-mix(in srgb, var(--accent) 26%, #e5e7eb);
  border-top: 4px solid var(--accent);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.journey-item:nth-child(even) .journey-card {
  grid-template-columns: 168px 1fr;
}

.journey-item:nth-child(even) .journey-card__copy {
  order: 2;
}

.journey-item:nth-child(even) .journey-card__media {
  order: 1;
}

.journey-card__copy {
  position: relative;
  z-index: 1;
  padding: 1.15rem 1.2rem 1.15rem 1.3rem;
}

.journey-card__icon {
  width: 34px;
  height: 34px;
  margin-bottom: 0.55rem;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
}

.journey-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
}

.journey-card__status {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-card__copy p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #6b7280;
}

.journey-card__media {
  margin: 0;
  min-height: 100%;
}

.journey-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.journey-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px var(--accent-glow);
}

.journey-item:nth-child(odd) .journey-card::before,
.journey-item:nth-child(even) .journey-card::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 22px;
  border-top: 1.5px dashed color-mix(in srgb, var(--accent) 55%, #d1d5db);
}

.journey-item:nth-child(odd) .journey-card::before {
  right: calc(100% + 4px);
}

.journey-item:nth-child(even) .journey-card::before {
  left: calc(100% + 4px);
}

[data-theme="dark"] .journey {
  background: #121410;
}

[data-theme="dark"] .journey-card {
  background: var(--surface);
}

[data-theme="dark"] .journey__title,
[data-theme="dark"] .journey-card h3,
[data-theme="dark"] .journey-item__year {
  color: var(--heading);
}

[data-theme="dark"] .journey__lede,
[data-theme="dark"] .journey-card__copy p,
[data-theme="dark"] .journey__stat-copy span {
  color: var(--text);
}

[data-theme="dark"] .journey-card,
[data-theme="dark"] .journey__stat,
[data-theme="dark"] .journey-item__year {
  background: var(--surface);
  border-color: var(--border);
}

@media (max-width: 1180px) {
  .directors-grid { grid-template-columns: 1fr; }
  .dm-card { min-height: 290px; }
  .about-purpose__duo { grid-template-columns: 1fr; }
  .quest-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .journey-card { grid-template-columns: 1fr 130px; }
  .journey-item:nth-child(even) .journey-card { grid-template-columns: 130px 1fr; }
}

@media (max-width: 1024px) {
  .about-hero {
    min-height: 0;
    padding-bottom: 3rem;
  }
  .about-hero__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .about-hero__frame img { height: 400px; }
  .about-hero__figure::before { inset: 1rem -0.7rem -0.7rem 1rem; }
  .about-who__grid { grid-template-columns: 1fr; }
  .about-who__frame img { height: 380px; }
  .about-who__figure::before { inset: -0.8rem 1rem 1rem -0.8rem; }
  .about-purpose__duo { grid-template-columns: 1fr; }
  .quest-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-track {
    flex-direction: column;
    --axis: 3.6rem;
  }
  .journey-track::before,
  .journey-track::after { left: 1.8rem; }
  .journey-item { grid-template-columns: var(--axis) 1fr; }
  .journey-item__year { grid-column: 1; }
  .journey-item:nth-child(odd) .journey-card,
  .journey-item:nth-child(even) .journey-card {
    grid-column: 2;
    grid-template-columns: 1fr 128px;
  }
  .journey-item:nth-child(even) .journey-card__copy { order: 1; }
  .journey-item:nth-child(even) .journey-card__media { order: 2; }
  .journey-item:nth-child(odd) .journey-card::before,
  .journey-item:nth-child(even) .journey-card::before { display: none; }
}

@media (max-width: 768px) {
  .about-page .breadcrumbs { padding-top: 88px; }
  .about-hero__lineart { display: none; }
  .about-hero__title { font-size: clamp(2.15rem, 10vw, 2.85rem); }
  .about-hero__facts { grid-template-columns: 1fr; }
  .about-hero__frame img { height: 300px; }
  .about-hero__figure::before { display: none; }
  .about-who { padding: 3.5rem 0 3.75rem; }
  .about-who__frame img { height: 280px; }
  .about-who__figure::before { display: none; }
  .about-who__points { grid-template-columns: 1fr; }
  .about-purpose { padding: 3.75rem 0 4rem; }
  .about-purpose__quest { padding: 1.35rem 1.05rem 1.2rem; }
  .quest-list { grid-template-columns: 1fr; }
  .journey { padding: 3.75rem 0 4rem; }
  .journey__bg { display: none; }
  .journey-card,
  .journey-item:nth-child(even) .journey-card {
    grid-template-columns: 1fr;
  }
  .journey-card__media { height: 150px; }
  .directors-section { padding: 3.75rem 0 4rem; }
  .directors__skyline { width: 52vw; opacity: 0.55; }
  .dm-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 22px;
  }
  .dm-card__photo {
    min-height: 240px;
  }
  .dm-card__body {
    padding: 1.4rem 1.25rem 1.3rem;
  }
}

@media (max-width: 520px) {
  .directors__skyline { display: none; }
  .dm-card__photo { min-height: 210px; }
}

/* ==============================
   PROJECTS PAGES
   ============================== */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.search-no-results {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  color: var(--muted);
}

.search-no-results svg {
  color: var(--border);
  margin-bottom: var(--space-lg);
}

.search-no-results h3 {
  color: var(--heading);
  margin-bottom: var(--space-sm);
}

.search-no-results p {
  margin-bottom: var(--space-xl);
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px var(--shadow-lg);
}

.project-card__image {
  height: 280px;
  overflow: hidden;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__image .placeholder {
  height: 280px;
}

.project-card__body {
  padding: var(--space-xl);
}

.project-card__status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-md);
}

.project-card__status--ongoing {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
}

.project-card__status--upcoming {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}

.project-card__status--completed {
  background: rgba(30, 143, 79, 0.1);
  color: var(--primary);
}

.project-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.project-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.project-card__location svg {
  width: 16px;
  height: 16px;
}

.project-card__text {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
}

.project-card__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.project-card__detail-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 2px;
}

.project-card__detail-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--heading);
}

/* ==============================
   ONGOING PROJECTS PAGE
   ============================== */

.ongoing-page .breadcrumbs,
.completed-page .breadcrumbs,
.contact-page .breadcrumbs {
  background: transparent;
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 104px 0 0.5rem;
}

.op-hero .breadcrumbs__item a,
.op-hero .breadcrumbs__separator {
  color: rgba(232, 246, 238, 0.62);
}

.op-hero .breadcrumbs__item a:hover,
.op-hero .breadcrumbs__current {
  color: #ecfdf3;
}

.op-hero {
  position: relative;
  overflow: hidden;
  min-height: min(78vh, 680px);
  padding-bottom: 2.75rem;
  background: #0C1A12;
  color: #f3f4f6;
}

.op-hero__media,
.op-hero__shade {
  position: absolute;
  inset: 0;
}

.op-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.op-hero__shade {
  background:
    linear-gradient(90deg, rgba(12, 26, 18, 0.96) 0%, rgba(12, 26, 18, 0.78) 42%, rgba(12, 26, 18, 0.28) 72%, rgba(12, 26, 18, 0.12) 100%),
    linear-gradient(180deg, rgba(12, 26, 18, 0.35) 0%, transparent 30%, rgba(12, 26, 18, 0.45) 100%);
}

.op-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-top: 0.5rem;
}

.op-hero__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
}

.op-hero__tagline {
  margin: 0 0 0.85rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #4ade80;
}

.op-hero__lede {
  margin: 0 0 1.75rem;
  max-width: 52ch;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.op-hero__points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.op-hero__points li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.op-hero__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #86efac;
}

.op-hero__points strong {
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
}

.op-hero__points span {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.58);
}

.op-toolbar {
  background: #eef1ef;
  border-bottom: 1px solid #e5e7eb;
}

.op-toolbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.op-toolbar__filters,
.op-toolbar__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.op-select {
  position: relative;
}

.op-select select {
  appearance: none;
  min-width: 150px;
  padding: 0.62rem 2rem 0.62rem 0.85rem;
  background: #fff url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 0.7rem center;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
}

.op-select select:disabled {
  color: #166534;
  background-color: #e8f6ee;
  border-color: #bbf7d0;
}

.op-views {
  display: flex;
  gap: 0.35rem;
}

.op-views__btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: #6b7280;
}

.op-views__btn.is-active {
  background: #14532d;
  border-color: #14532d;
  color: #fff;
}

.op-listing {
  padding: 2rem 0 3.25rem;
  background: #f6f7f6;
}

.op-listing__count {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b7280;
}

.op-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.op-card {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) 210px;
  gap: 1.35rem;
  padding: 1.15rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.op-card__photo {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 210px;
}

.op-card__main {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.op-card__badge {
  position: absolute;
  left: 0;
  top: 0.85rem;
  padding: 0.28rem 0.7rem;
  background: #14532d;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0 6px 6px 0;
}

.op-card__thumbs {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.op-card__thumbs button,
.op-card__more {
  width: 52px;
  height: 42px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #111;
}

.op-card__thumbs button.is-active {
  border-color: #1E8F4F;
}

.op-card__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.op-card__more {
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.op-card__kicker {
  margin: 0 0 0.3rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1E8F4F;
}

.op-card__body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111827;
}

.op-card__place {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  color: #6b7280;
}

.op-card__text {
  margin: 0 0 0.9rem;
  max-width: 58ch;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563;
}

.op-card__specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0 0 0.95rem;
  padding: 0;
}

.op-card__specs li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.op-card__specs strong {
  font-size: 0.86rem;
  color: #111827;
}

.op-card__specs span {
  font-size: 0.68rem;
  color: #9ca3af;
}

.op-card__progress-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4b5563;
}

.op-card__bar {
  height: 6px;
  overflow: hidden;
  background: #e5e7eb;
  border-radius: 99px;
}

.op-card__bar span {
  display: block;
  height: 100%;
  background: #1E8F4F;
  border-radius: inherit;
}

.op-card__meta {
  margin: 0.7rem 0 0;
  font-size: 0.72rem;
  color: #9ca3af;
}

.op-card__aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.25rem 0.15rem 0.25rem 0.35rem;
  border-left: 1px solid #eef0ee;
}

.op-card__price-label,
.op-card__onwards {
  margin: 0;
  font-size: 0.72rem;
  color: #6b7280;
}

.op-card__price {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
  color: #1E8F4F;
}

.op-card__price span,
.op-card__price--ask {
  font-size: 1.25rem;
}

.op-card__aside .btn {
  width: 100%;
  justify-content: center;
}

.op-card--complete {
  scroll-margin-top: 6.5rem;
}

.op-card__facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem 1.5rem;
  padding: 1rem 0.15rem 0.15rem;
  border-top: 1px solid #eef0ee;
}

.op-card__facts h4 {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1E8F4F;
}

.op-card__facts ul {
  margin: 0;
  padding: 0;
}

.op-card__facts li,
.op-card__facts p {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #4b5563;
}

.op-card__facts li:last-child,
.op-card__facts p:last-child {
  margin-bottom: 0;
}

.op-card.is-hidden {
  display: none;
}

.op-list[data-view="grid"] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.op-list[data-view="grid"] .op-card {
  grid-template-columns: 1fr;
}

.op-list[data-view="grid"] .op-card__aside {
  border-left: 0;
  border-top: 1px solid #eef0ee;
  padding-top: 0.85rem;
}

.op-list[data-view="grid"] .op-card__specs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.op-list[data-view="grid"] .op-card__facts {
  grid-template-columns: 1fr;
}

.op-empty {
  text-align: center;
  color: #6b7280;
  padding: 2rem 0;
}

.op-cta {
  background: #0C1A12;
  color: #fff;
}

.op-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem 0;
}

.op-cta h2 {
  margin: 0 0 0.3rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 600;
  color: #fff;
}

.op-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

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

.op-cta__stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #86efac;
}

.op-cta__stats span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

[data-theme="dark"] .op-toolbar,
[data-theme="dark"] .op-listing {
  background: var(--section);
}

[data-theme="dark"] .op-card,
[data-theme="dark"] .op-select select {
  background: var(--surface);
  border-color: var(--border);
  color: var(--heading);
}

[data-theme="dark"] .op-card__body h3 {
  color: var(--heading);
}

[data-theme="dark"] .op-card__facts,
[data-theme="dark"] .op-card__aside {
  border-color: var(--border);
}

[data-theme="dark"] .op-card__facts li,
[data-theme="dark"] .op-card__facts p {
  color: var(--text);
}

@media (max-width: 1100px) {
  .op-hero__points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .op-card { grid-template-columns: 240px 1fr; }
  .op-card__aside {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid #eef0ee;
    padding-top: 0.9rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .op-card__aside .btn { width: auto; flex: 1 1 160px; }
  .op-card__facts { grid-template-columns: 1fr 1fr; }
  .op-cta__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .ongoing-page .breadcrumbs,
  .completed-page .breadcrumbs,
  .contact-page .breadcrumbs { padding-top: 88px; }
  .ct-hero { min-height: 0; padding-bottom: 2rem; }
  .ct-hero__points { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .ct-form__row { grid-template-columns: 1fr; }
  .ct-office,
  .ct-form { padding: 1.35rem 1.15rem 1.25rem; }
  .ct-map__frame { height: 280px; }
  .op-hero { min-height: 0; padding-bottom: 2rem; }
  .op-hero__points { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .op-card { grid-template-columns: 1fr; padding: 0.9rem; min-width: 0; }
  .op-card__main { height: 200px; }
  .op-card__specs { grid-template-columns: 1fr 1fr; }
  .op-card__facts { grid-template-columns: 1fr; }
  .op-list[data-view="grid"] { grid-template-columns: 1fr; }
  .op-toolbar__inner { padding: 0.75rem 0; }
  .op-select select { min-width: 0; width: 100%; }
  .op-toolbar__filters { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .op-card__thumbs { flex-wrap: wrap; }
  .ct-office__actions { width: 100%; }
  .ct-office__actions .btn { flex: 1 1 100%; }
}

/* ==============================
   ALL PROJECTS PAGE
   ============================== */

.projects-page .breadcrumbs {
  background: transparent;
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 100px 0 var(--space-lg);
}

.projects-hero .breadcrumbs__item a,
.projects-hero .breadcrumbs__separator {
  color: rgba(255, 255, 255, 0.7);
}

.projects-hero .breadcrumbs__item a:hover,
.projects-hero .breadcrumbs__current {
  color: #fff;
}

.projects-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 86vh;
  overflow: hidden;
  color: #fff;
  background: #111827;
}

.projects-hero__media,
.projects-hero__shade {
  position: absolute;
  inset: 0;
}

.projects-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  animation: projectsHeroZoom 18s ease-out forwards;
}

.projects-hero__shade {
  background:
    linear-gradient(90deg, rgba(10, 16, 12, 0.88) 0%, rgba(10, 16, 12, 0.62) 42%, rgba(10, 16, 12, 0.22) 100%),
    linear-gradient(180deg, rgba(10, 16, 12, 0.35) 0%, transparent 28%, rgba(10, 16, 12, 0.45) 100%);
}

.projects-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 340px);
  gap: var(--space-3xl);
  align-items: end;
  padding-bottom: var(--space-3xl);
  flex: 1;
}

.projects-hero__kicker {
  display: inline-block;
  margin-bottom: var(--space-md);
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.projects-hero__title {
  max-width: 14ch;
  margin-bottom: var(--space-lg);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.projects-hero__lede {
  max-width: 52ch;
  margin-bottom: var(--space-xl);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.projects-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.projects-hero__facts li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
}

.projects-hero__facts strong {
  color: #fff;
  font-weight: 700;
}

.projects-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.projects-hero__ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.projects-hero__ghost:hover {
  background: #fff;
  border-color: #fff;
  color: var(--heading);
}

.projects-hero__listing {
  padding: 1.5rem 1.5rem 1.35rem;
  background: #fff;
  color: #111827;
  border-radius: 4px 18px 18px 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.projects-hero__listing-tag {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.28rem 0.65rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
}

.projects-hero__listing-name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  color: #111827;
}

.projects-hero__listing-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
  font-size: 0.875rem;
  color: #6B7280;
}

.projects-hero__listing-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.projects-hero__listing-link:hover { gap: 0.7rem; }

.projects-finder {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
}

.projects-finder__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: 1rem 0;
}

.projects-finder__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.projects-tabs {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.projects-tabs__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--heading);
  background: var(--section);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.projects-tabs__btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.projects-tabs__btn--active,
.projects-tabs__btn--active:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

@keyframes projectsHeroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.all-projects__section {
  padding: var(--space-4xl) 0;
  scroll-margin-top: 100px;
}

.all-projects__section--alt {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(30, 143, 79, 0.06), transparent 50%),
    var(--section);
}

.all-projects__section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
  gap: var(--space-lg);
}

.all-projects__section-left {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.all-projects__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), rgba(212, 160, 23, 0.12));
  color: var(--primary);
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(30, 143, 79, 0.1);
}

.all-projects__section-badge {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 2px;
}

.all-projects__section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--heading);
  line-height: 1.2;
}

.all-projects__view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 20px;
  border: 1.5px solid var(--primary);
  border-radius: 100px;
  background: var(--surface);
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.all-projects__view-all:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(30, 143, 79, 0.22);
}

.all-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.proj-card {
  background: var(--surface);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px var(--shadow);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.proj-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px var(--shadow-lg);
}

.proj-card__image {
  position: relative;
  height: 248px;
  overflow: hidden;
}

.proj-card__image::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.45), transparent);
  pointer-events: none;
}

.proj-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.proj-card:hover .proj-card__image img {
  transform: scale(1.08);
}

.proj-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.proj-card__badge--upcoming {
  background: linear-gradient(135deg, #1e8f4f, #16753f);
}

.proj-card__badge--ongoing {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.proj-card__badge--completed {
  background: linear-gradient(135deg, #d4a017, #b45309);
}

.proj-card__year {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
}

.all-projects__empty {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 22px;
  color: var(--muted);
}

.all-projects__empty p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
}

.all-projects__empty .all-projects__view-all {
  display: inline-flex;
}

.projects-empty {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 22px;
  color: var(--muted);
}

.projects-empty p {
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.proj-card__wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border: none;
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.proj-card__wishlist:hover {
  color: #ef4444;
  background: #fff;
  transform: scale(1.08);
}

.proj-card__body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.proj-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: var(--space-xs);
}

.proj-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: var(--space-md);
}

.proj-card__location svg {
  color: var(--primary);
  flex-shrink: 0;
}

.proj-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.proj-card__details span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--text);
  white-space: nowrap;
}

.proj-card__details svg {
  color: var(--primary);
  flex-shrink: 0;
}

.proj-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.proj-card__link:hover {
  gap: 10px;
  color: var(--primary-hover);
}

/* ==============================
   GALLERY PAGE
   ============================== */

.gallery-page .breadcrumbs {
  background: transparent;
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 0 0 var(--space-xl);
  text-align: left;
}

.gallery-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 var(--space-4xl);
  margin-top: 0;
  background: linear-gradient(180deg, #f4fbf6 0%, #fffdf8 42%, var(--bg) 100%);
  text-align: center;
}

[data-theme="dark"] .gallery-hero {
  background: linear-gradient(180deg, #142018 0%, #0f1115 55%, var(--bg) 100%);
}

.gallery-hero__wash {
  position: absolute;
  inset: 0;
  height: 100%;
  background:
    radial-gradient(ellipse at 18% 30%, rgba(30, 143, 79, 0.18), transparent 52%),
    radial-gradient(ellipse at 82% 20%, rgba(212, 160, 23, 0.16), transparent 48%),
    radial-gradient(ellipse at 50% 90%, rgba(30, 143, 79, 0.08), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.gallery-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
  animation: galleryOrbFloat 10s ease-in-out infinite;
}

.gallery-hero__orb--green {
  width: 220px;
  height: 220px;
  top: 8%;
  left: 8%;
  background: radial-gradient(circle, rgba(30, 143, 79, 0.28), transparent 70%);
}

.gallery-hero__orb--gold {
  width: 180px;
  height: 180px;
  top: 12%;
  right: 10%;
  background: radial-gradient(circle, rgba(232, 176, 46, 0.26), transparent 70%);
  animation-delay: -3s;
}

.gallery-hero__orb--mint {
  width: 160px;
  height: 160px;
  bottom: 8%;
  left: 42%;
  background: radial-gradient(circle, rgba(80, 186, 140, 0.18), transparent 70%);
  animation-delay: -6s;
}

.gallery-hero__frame {
  position: absolute;
  margin: 0;
  z-index: 1;
  padding: 7px 7px 22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  pointer-events: none;
}

.gallery-hero__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-hero__frame--1 {
  width: 132px;
  height: 168px;
  top: 18%;
  left: 5%;
  transform: rotate(-11deg);
  animation: galleryFrameFloat 7s ease-in-out infinite;
}

.gallery-hero__frame--2 {
  width: 118px;
  height: 148px;
  bottom: 14%;
  left: 11%;
  transform: rotate(8deg);
  animation: galleryFrameFloat 8s ease-in-out -2s infinite;
}

.gallery-hero__frame--3 {
  width: 126px;
  height: 158px;
  top: 16%;
  right: 6%;
  transform: rotate(10deg);
  animation: galleryFrameFloat 7.5s ease-in-out -1.4s infinite;
}

.gallery-hero__frame--4 {
  width: 112px;
  height: 140px;
  bottom: 16%;
  right: 11%;
  transform: rotate(-7deg);
  animation: galleryFrameFloat 8.4s ease-in-out -3.2s infinite;
}

[data-theme="dark"] .gallery-hero__frame {
  background: #1c212b;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.gallery-hero__deco {
  position: absolute;
  width: min(300px, 34vw);
  height: min(300px, 34vw);
  color: var(--primary);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.gallery-hero__deco svg {
  width: 100%;
  height: 100%;
}

.gallery-hero__deco--left {
  top: 6%;
  left: -2%;
}

.gallery-hero__deco--right {
  top: 0;
  right: -2%;
  color: #d4a017;
  opacity: 0.22;
}

.gallery-hero__content {
  position: relative;
  z-index: 2;
}

.gallery-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
  padding: 0.55rem 1.15rem;
  border-radius: 100px;
  border: 1px solid rgba(30, 143, 79, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 248, 238, 0.95));
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(30, 143, 79, 0.12);
  animation: galleryHeroIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

[data-theme="dark"] .gallery-hero__badge {
  background: linear-gradient(135deg, rgba(30, 60, 40, 0.7), rgba(20, 50, 35, 0.7));
  border-color: rgba(30, 143, 79, 0.45);
}

.gallery-hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  animation: galleryHeroIn 0.8s 0.12s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gallery-hero__title em {
  font-style: italic;
  font-weight: 600;
  white-space: nowrap;
  background: linear-gradient(120deg, #16753f 0%, #1e8f4f 40%, #d4a017 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.gallery-hero__rule {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
  animation: galleryHeroIn 0.7s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gallery-hero__rule span {
  display: block;
  width: 72px;
  height: 3px;
  border-radius: 100px;
  background: linear-gradient(90deg, transparent, var(--primary), #d4a017, transparent);
}

.gallery-hero__subtitle {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto var(--space-3xl);
  animation: galleryHeroIn 0.8s 0.26s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gallery-hero__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  animation: galleryHeroIn 0.8s 0.36s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gallery-hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.gallery-hero__stats strong {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--heading);
  line-height: 1;
}

.gallery-hero__stats span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

@keyframes galleryHeroIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes galleryOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -14px) scale(1.08); }
}

@keyframes galleryFrameFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes galleryCardIn {
  from { opacity: 0; transform: translateY(22px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.gallery-section {
  padding-top: var(--space-xl);
}

.gallery-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
  animation: galleryHeroIn 0.8s 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gallery-tabs__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.gallery-tabs__btn svg {
  flex-shrink: 0;
}

.gallery-tabs__btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}

.gallery-tabs__btn--active,
.gallery-tabs__btn--active:hover {
  background: linear-gradient(135deg, #1e8f4f, #16753f);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 10px 24px rgba(30, 143, 79, 0.28);
  transform: translateY(-2px);
}

.gallery-album + .gallery-album {
  margin-top: var(--space-3xl);
}

.gallery-album__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.gallery-album__header--enter {
  animation: galleryHeroIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gallery-album__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.gallery-album__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.gallery-album__count {
  font-size: 0.8125rem;
  color: var(--muted);
  white-space: nowrap;
  padding-bottom: 0.25rem;
}

.gallery-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.15rem;
  min-height: 560px;
  margin-bottom: 1.15rem;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.gallery-card {
  min-width: 0;
  height: 100%;
}

.gallery-card--enter {
  animation: galleryCardIn 0.62s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--enter-delay, 0s);
}

.gallery-card--feature {
  grid-row: span 2;
}

.gallery-card__hit {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--section);
  box-shadow: 0 10px 28px var(--shadow);
  text-align: left;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.gallery-card__media {
  height: 100%;
  overflow: hidden;
  background: var(--section);
}

.gallery-featured .gallery-card__media,
.gallery-card--feature .gallery-card__media {
  height: 100%;
  min-height: 100%;
}

.gallery-masonry .gallery-card__media {
  aspect-ratio: 4 / 3;
}

.gallery-masonry .gallery-card:nth-child(6n + 1) .gallery-card__media { aspect-ratio: 3 / 4; }
.gallery-masonry .gallery-card:nth-child(6n + 3) .gallery-card__media { aspect-ratio: 16 / 10; }
.gallery-masonry .gallery-card:nth-child(6n + 5) .gallery-card__media { aspect-ratio: 1 / 1; }

.gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card__hit:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px var(--shadow-lg);
}

.gallery-card__hit:hover img {
  transform: scale(1.07);
}

.gallery-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 4.5rem 1.15rem 1.15rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.28) 55%, transparent 100%);
  color: #fff;
  transform: translateY(6px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card__hit:hover .gallery-card__overlay {
  transform: translateY(0);
}

.gallery-card__tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.65rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
}

.gallery-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.gallery-card__date {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.86);
}

.gallery-empty {
  text-align: center;
  color: var(--muted);
  padding: var(--space-3xl) 0;
}

.gallery-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--space-3xl);
}

.gallery-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.6rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--surface);
  border: 1.5px solid var(--primary);
  border-radius: 100px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-more:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(30, 143, 79, 0.22);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 18, 0.92);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox--active {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background var(--transition-fast);
  z-index: 2;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background var(--transition-fast);
  z-index: 2;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav--prev { left: var(--space-lg); }
.lightbox__nav--next { right: var(--space-lg); }

.lightbox__figure {
  max-width: min(1100px, calc(100vw - 8rem));
  max-height: 86vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.lightbox__image {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  animation: galleryHeroIn 0.35s ease both;
}

.lightbox__caption {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
  text-align: center;
}

/* ==============================
   ACHIEVEMENTS PAGE
   ============================== */

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

/* ==============================
   CONTACT PAGE
   ============================== */

.contact-page .breadcrumbs {
  background: transparent;
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 104px 0 0.5rem;
}

.contact-page .breadcrumbs__item a,
.contact-page .breadcrumbs__separator {
  color: rgba(232, 246, 238, 0.62);
}

.contact-page .breadcrumbs__item a:hover,
.contact-page .breadcrumbs__current {
  color: #ecfdf3;
}

.ct-hero {
  position: relative;
  overflow: hidden;
  min-height: min(68vh, 620px);
  padding-bottom: 2.75rem;
  background: #0C1A12;
  color: #f3f4f6;
}

.ct-hero__media,
.ct-hero__shade {
  position: absolute;
  inset: 0;
}

.ct-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.ct-hero__shade {
  background:
    linear-gradient(90deg, rgba(12, 26, 18, 0.96) 0%, rgba(12, 26, 18, 0.78) 44%, rgba(12, 26, 18, 0.28) 74%, rgba(12, 26, 18, 0.14) 100%),
    linear-gradient(180deg, rgba(12, 26, 18, 0.35) 0%, transparent 30%, rgba(12, 26, 18, 0.4) 100%);
}

.ct-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-top: 0.5rem;
}

.ct-hero__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
}

.ct-hero__tagline {
  margin: 0 0 0.85rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #4ade80;
}

.ct-hero__lede {
  margin: 0 0 1.75rem;
  max-width: 52ch;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.ct-hero__points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.ct-hero__points li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ct-hero__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #86efac;
}

.ct-hero__points strong {
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
}

.ct-hero__points span {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.58);
}

.ct-main {
  padding: 2.5rem 0 3.25rem;
  background:
    radial-gradient(circle at 12% 12%, rgba(30, 143, 79, 0.08), transparent 28%),
    #f6f7f6;
}

.ct-main__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.2fr);
  gap: 1.35rem;
  align-items: stretch;
}

.ct-office {
  padding: 1.75rem 1.6rem 1.65rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 0%, rgba(30, 143, 79, 0.22), transparent 36%),
    #0C1A12;
  color: #e8f5ee;
  box-shadow: 0 18px 40px rgba(12, 26, 18, 0.16);
}

.ct-office__eyebrow,
.ct-form__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4ade80;
}

.ct-form__eyebrow {
  color: #1E8F4F;
}

.ct-office h2,
.ct-form h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ct-office h2 { color: #fff; }

.ct-office__lede,
.ct-form__lede {
  margin: 0 0 1.4rem;
  font-size: 0.92rem;
  line-height: 1.65;
}

.ct-office__lede { color: rgba(255, 255, 255, 0.68); }
.ct-form__lede { color: #4b5563; }

.ct-office__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 0 1.5rem;
  padding: 0;
}

.ct-office__list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.ct-office__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(134, 239, 172, 0.18);
  color: #86efac;
}

.ct-office__list strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.ct-office__list span,
.ct-office__list a {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

.ct-office__list a:hover {
  color: #86efac;
}

.ct-office__phones {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ct-office__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ct-office__actions .btn {
  flex: 1 1 140px;
  justify-content: center;
}

.ct-office__ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.ct-office__ghost:hover {
  border-color: #86efac;
  color: #86efac;
  background: rgba(134, 239, 172, 0.08);
}

.ct-form {
  padding: 1.75rem 1.7rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

.ct-form .form__input,
.ct-form .form__select,
.ct-form .form__textarea {
  background: #f7faf8;
  border-color: #e5ebe7;
}

.ct-form .form__textarea {
  min-height: 128px;
}

.ct-form__submit {
  width: 100%;
}

.ct-form__note {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #9ca3af;
}

.ct-map {
  padding: 0 0 3rem;
  background: #f6f7f6;
}

.ct-map__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.ct-map__head h2 {
  margin: 0.35rem 0 0.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--heading);
}

.ct-map__head p {
  margin: 0;
  color: #6b7280;
}

.ct-map__frame {
  overflow: hidden;
  height: min(420px, 56vh);
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  background: #d7e8dd;
}

.ct-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

[data-theme="dark"] .ct-main,
[data-theme="dark"] .ct-map {
  background: var(--bg);
}

[data-theme="dark"] .ct-form {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .ct-form .form__input,
[data-theme="dark"] .ct-form .form__select,
[data-theme="dark"] .ct-form .form__textarea {
  background: var(--bg);
  border-color: var(--border);
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 1200px) {
  .gallery-hero__frame--1,
  .gallery-hero__frame--3 { width: 108px; height: 136px; }
  .gallery-hero__frame--2,
  .gallery-hero__frame--4 { width: 96px; height: 120px; }
  .projects-hero__inner { gap: var(--space-xl); }
}

@media (max-width: 1024px) {
  .hero__bottom-inner { flex-wrap: wrap; justify-content: center; gap: var(--space-lg); }

  .property-types.section {
    padding-top: 2.5rem;
    padding-bottom: 1rem;
  }

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

  .ptype-card,
  .ptype-card--ongoing {
    height: 260px;
    min-height: 0;
    max-height: none;
    grid-column: auto;
  }

  .featured__layout { grid-template-columns: 1fr; }
  .featured__header { text-align: center; padding-top: 0; }
  .featured__header .section__badge,
  .featured__header .section__title { text-align: center; }
  .featured__link { justify-content: center; }

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

  .amenities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(150px, auto);
    flex: none;
  }

  .amenity-card--feature {
    grid-column: span 2;
    min-height: 280px;
  }

  .amenities-section {
    padding: 2.75rem 0 3rem;
  }

  .why__intro {
    grid-template-columns: 1fr 0.9fr;
    gap: 1.5rem;
  }

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

  .testi-card { flex-basis: min(320px, 78vw); }

  .counter__grid { grid-template-columns: repeat(2, 1fr); }
  .intro__content { grid-template-columns: 1fr; }
  .about-who__grid { grid-template-columns: 1fr; }
  .featured-projects__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-preview__item:nth-child(1) { grid-column: span 2; }
  .about-purpose__duo { grid-template-columns: 1fr; }
  .quest-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-hero__points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ct-main__grid { grid-template-columns: 1fr; }
  .ct-map__head { flex-wrap: wrap; align-items: flex-start; }

  .all-projects__grid { grid-template-columns: repeat(2, 1fr); }
  .all-projects__section-header { flex-wrap: wrap; }
  .gallery-featured { min-height: 460px; }
  .gallery-hero__frame { display: none; }
  .gallery-hero { padding: 96px 0 var(--space-3xl); }
  .projects-hero { min-height: 0; }
  .projects-hero__inner {
    grid-template-columns: 1fr;
    padding-bottom: var(--space-xl);
  }
  .projects-hero__title { max-width: 16ch; }
  .projects-hero__listing { max-width: 420px; }
}

@media (max-width: 768px) {
  .property-types.section {
    padding-top: 2.25rem;
    padding-bottom: 0.75rem;
  }

  .property-types__header {
    margin-bottom: 0.7rem;
  }

  .property-types__intro .section__subtitle {
    display: none;
  }

  .property-types__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.6rem;
  }

  .ptype-card,
  .ptype-card--ongoing {
    display: block;
    height: clamp(200px, 30vw, 260px);
    min-height: 0;
    max-height: none;
    grid-column: auto;
  }

  .ptype-card__media {
    position: absolute;
    inset: 0;
  }

  .ptype-card__index {
    top: 0.75rem;
    left: 0.85rem;
    font-size: 1.1rem;
  }

  .ptype-card__status {
    top: 0.75rem;
    right: 0.85rem;
    font-size: 0.6rem;
    padding: 0.2rem 0.55rem;
  }

  .ptype-card__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1rem 0.9rem;
  }

  .ptype-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }

  .ptype-card__text {
    margin-bottom: 0.6rem;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .ptype-card__cta {
    font-size: 0.72rem;
    padding: 0.35rem 0.7rem 0.35rem 0.8rem;
  }

  .fproject-card { min-width: 240px; flex: 0 0 80%; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }

  .amenities-section {
    padding: 3.25rem 0 3.5rem;
  }

  .amenities__header {
    margin-bottom: 1.6rem;
  }

  .amenities__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 0.75rem;
  }

  .amenity-card--feature {
    min-height: 200px;
  }

  .amenity-card {
    padding: 0.7rem 0.8rem;
  }

  .why__intro {
    grid-template-columns: 1fr;
    margin-bottom: 1.5rem;
  }

  .why__intro-visual,
  .why__intro-visual img {
    min-height: 240px;
  }

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

  .why__close {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.35rem 1.25rem;
  }

  .testi-card { flex-basis: min(300px, 82vw); min-height: 260px; }
  .testimonials__arrow { width: 40px; height: 40px; }

  .featured-projects__grid,
  .why-us__grid,
  .testimonials__grid { grid-template-columns: 1fr; }
  .counter__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
  .gallery-preview__grid { grid-template-columns: 1fr; }
  .gallery-preview__item:nth-child(1) { grid-column: span 1; }
  .projects-grid { grid-template-columns: 1fr; }

  .all-projects__grid { grid-template-columns: 1fr; }
  .all-projects__section-header { flex-direction: column; align-items: flex-start; }
  .all-projects__view-all { align-self: flex-start; }

  .gallery-featured {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }
  .gallery-card--feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .gallery-card--feature .gallery-card__media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry .gallery-card:nth-child(n) .gallery-card__media { aspect-ratio: 4 / 3; }
  .gallery-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-tabs::-webkit-scrollbar { display: none; }
  .lightbox__nav--prev { left: var(--space-sm); }
  .lightbox__nav--next { right: var(--space-sm); }
  .lightbox__figure { max-width: calc(100vw - 2rem); }
  .achievements-grid { grid-template-columns: 1fr; }
  .intro__highlights { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }

  .amenities__grid { grid-template-columns: 1fr; }
  .amenity-card--feature { grid-column: auto; grid-row: auto; min-height: 240px; }

  .gallery-featured,
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-hero { padding: 88px 0 var(--space-xl); }
  .gallery-hero__stats { gap: var(--space-lg); }
  .gallery-hero__orb--mint { display: none; }
  .gallery-hero__title em { white-space: normal; }
  .projects-page .breadcrumbs { padding-top: 88px; }
  .projects-hero__actions { flex-direction: column; align-items: flex-start; }
  .projects-finder__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
  .projects-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .projects-tabs::-webkit-scrollbar { display: none; }
  .gallery-album__header { align-items: flex-start; flex-direction: column; gap: var(--space-xs); }
  .lightbox__nav { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-hero__badge,
  .gallery-hero__title,
  .gallery-hero__rule,
  .gallery-hero__subtitle,
  .gallery-hero__stats,
  .gallery-tabs,
  .gallery-card--enter,
  .gallery-album__header--enter,
  .lightbox__image,
  .projects-tabs {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .gallery-hero__orb,
  .gallery-hero__frame,
  .projects-hero__media img {
    animation: none;
  }
  .gallery-card__hit,
  .gallery-card__media img,
  .gallery-card__overlay,
  .gallery-more,
  .gallery-tabs__btn,
  .projects-tabs__btn,
  .proj-card,
  .all-projects__view-all {
    transition: none;
  }
  .gallery-card__hit:hover,
  .gallery-card__hit:hover img,
  .gallery-more:hover,
  .gallery-tabs__btn:hover,
  .projects-tabs__btn:hover,
  .proj-card:hover,
  .all-projects__view-all:hover {
    transform: none;
  }
}

/* ==============================
   PROJECT DETAIL — LOGER GALAXY
   ============================== */

.project-detail-page .breadcrumbs {
  background: transparent;
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 6.5rem 0 0.4rem;
}

.pd-hero .breadcrumbs__item a,
.pd-hero .breadcrumbs__separator {
  color: rgba(255, 255, 255, 0.7);
}

.pd-hero .breadcrumbs__item a:hover,
.pd-hero .breadcrumbs__current {
  color: #fff;
}

.pd-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: min(56vh, 540px);
  overflow: visible;
  color: #fff;
  background: #111827;
}

.pd-hero__media,
.pd-hero__shade {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pd-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: projectsHeroZoom 18s ease-out forwards;
}

.pd-hero__shade {
  background:
    linear-gradient(105deg, rgba(8, 18, 14, 0.9) 0%, rgba(8, 18, 14, 0.58) 48%, rgba(8, 18, 14, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 18, 14, 0.28) 0%, transparent 32%, rgba(8, 18, 14, 0.55) 100%);
}

.pd-hero__inner {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  padding-top: 0.55rem;
  padding-bottom: 4.75rem;
}

.pd-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 40rem;
}

.pd-hero__copy p {
  margin-bottom: 0;
}

.pd-hero__kicker {
  display: inline-block;
  margin: 0 0 0.55rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(30, 143, 79, 0.28);
}

.pd-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.4rem;
}

.pd-hero__place {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
}

.pd-hero__lede {
  max-width: 38rem;
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.pd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.pd-hero__ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.pd-hero__ghost:hover,
.pd-hero__ghost:focus-visible {
  background: #fff;
  border-color: #fff;
  color: #146c3b;
}

.pd-hero__facts-wrap {
  position: relative;
  z-index: 4;
  margin-top: -2.4rem;
  margin-bottom: -2.4rem;
}

.project-detail-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(30, 143, 79, 0.08), transparent 28%),
    radial-gradient(circle at 92% 42%, rgba(30, 143, 79, 0.06), transparent 26%),
    var(--bg);
}

.pd-hero__facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0.15rem 0.25rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-top: 2px solid var(--primary);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(14px);
}

.pd-hero__facts li {
  position: relative;
  padding: 0.7rem 1.05rem 0.8rem;
  background: transparent;
  border-radius: 0;
}

.pd-hero__facts li + li::before {
  content: '';
  position: absolute;
  top: 22%;
  bottom: 22%;
  left: 0;
  width: 1px;
  background: rgba(15, 23, 42, 0.1);
}

.pd-hero__fact-label {
  display: block;
  margin-bottom: 0.22rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.pd-hero__facts strong {
  color: var(--heading);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.pd-nav {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #146c3b, #1E8F4F 40%, #16753F);
  border-bottom: 0;
}

.pd-nav__bar {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.7rem 0;
}

.pd-nav__bar::-webkit-scrollbar { display: none; }

.pd-nav__link {
  flex: 0 0 auto;
  padding: 0.5rem 0.95rem;
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.pd-nav__link:hover,
.pd-nav__link--active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.pd-overview,
.pd-gallery,
.pd-nearby,
.pd-specs,
.pd-amenities,
.pd-pay,
.pd-video {
  scroll-margin-top: 5.5rem;
}

.pd-overview.section {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: auto;
  max-height: none;
  padding: 0.75rem 0 1.35rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(30, 143, 79, 0.12), transparent 26%),
    linear-gradient(180deg, #e7f4ec 0%, #f3faf6 55%, #eaf6ef 100%);
}

@supports not (height: 100dvh) {
  .pd-overview.section {
    height: auto;
    max-height: none;
  }
}

.pd-overview .container {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.pd-overview::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(30, 143, 79, 0.07);
  pointer-events: none;
}

.pd-overview__intro {
  position: relative;
  margin: 0;
  flex-shrink: 0;
}

.pd-overview__intro .section__badge {
  margin-bottom: 0.35rem;
}

.pd-overview__intro h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.pd-overview__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

.pd-overview__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.25rem;
  align-items: stretch;
  flex: 0 1 auto;
  min-height: 0;
}

.pd-overview__copy {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 0;
}

.pd-overview__copy > p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.pd-overview__quote {
  position: relative;
  margin: 0;
  padding: 0.75rem 1rem 0.75rem 1.15rem;
  border-left: 3px solid var(--primary);
  background: rgba(30, 143, 79, 0.1);
  border-radius: 0 14px 14px 0;
  flex-shrink: 0;
}

.pd-overview__quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--heading);
}

.pd-overview__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  list-style: none;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}

.pd-overview__highlights li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.4rem 0.65rem;
  background: #fff;
  border: 1px solid rgba(30, 143, 79, 0.14);
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(30, 143, 79, 0.05);
}

.pd-overview__highlights span {
  display: block;
  margin-bottom: 0.05rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
}

.pd-overview__highlights strong {
  color: var(--heading);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
}

.pd-overview__aside {
  display: flex;
  min-height: 0;
}

.pd-address {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  background: #146c3b;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.pd-address__media {
  position: relative;
  flex: 1 1 auto;
  min-height: 120px;
  margin: 0;
}

.pd-address__media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(20, 108, 59, 0.55));
  pointer-events: none;
}

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

.pd-address__media figcaption {
  position: absolute;
  z-index: 1;
  left: 0.75rem;
  bottom: 0.55rem;
  padding: 0.25rem 0.55rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 100px;
  color: #146c3b;
  font-size: 0.66rem;
  font-weight: 700;
}

.pd-address__body {
  flex: 0 0 auto;
  padding: 0.95rem 1.1rem 1.05rem;
  background: #146c3b;
  color: #fff;
}

.pd-address__eyebrow {
  margin: 0 0 0.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbf7d0;
}

.pd-address__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
}

.pd-address__points {
  display: grid;
  gap: 0.38rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pd-address__points li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #f0fdf4;
}

.pd-address__points li::before {
  content: '';
  position: absolute;
  top: 0.42rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #86efac;
  box-shadow: 0 0 0 4px rgba(134, 239, 172, 0.18);
}

[data-theme="dark"] .pd-overview {
  background:
    radial-gradient(circle at 88% 12%, rgba(30, 143, 79, 0.16), transparent 26%),
    var(--bg);
}

[data-theme="dark"] .pd-overview__highlights li {
  background: var(--surface);
}

[data-theme="dark"] .pd-address__media figcaption {
  background: rgba(23, 26, 33, 0.92);
  color: #86efac;
}

/* Project gallery */
.pd-gallery.section {
  padding: 2.4rem 0 2.2rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(30, 143, 79, 0.1), transparent 28%),
    linear-gradient(180deg, #f7fbf8 0%, #eef6f1 100%);
}

.pd-gallery__head .section__header {
  margin-bottom: 1.15rem;
  text-align: left;
}

.pd-gallery__head .section__badge {
  margin-bottom: 0.35rem;
}

.pd-gallery__head h2 {
  margin: 0 0 0.2rem;
}

.pd-gallery__head .section__subtitle {
  margin: 0;
}

.pd-gallery__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: minmax(170px, 24vh);
  gap: 0.75rem;
}

.pd-gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  height: 100%;
  min-height: 0;
  border-radius: 16px;
  background: #d7e8dd;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.pd-gallery__item--main {
  grid-row: 1 / 3;
}

.pd-gallery__open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.pd-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.pd-gallery__item:nth-child(2) img { object-position: 28% 40%; }
.pd-gallery__item:nth-child(3) img { object-position: 72% 30%; }
.pd-gallery__item:nth-child(4) img { object-position: 50% 80%; }
.pd-gallery__item:nth-child(5) img { object-position: 18% 70%; }

.pd-gallery__item:hover img,
.pd-gallery__open:focus-visible img {
  transform: scale(1.05);
}

.pd-gallery__zoom {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #146c3b;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.pd-gallery__item:hover .pd-gallery__zoom,
.pd-gallery__open:focus-visible .pd-gallery__zoom {
  opacity: 1;
  transform: none;
}

.pd-gallery__item figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.7rem;
  z-index: 1;
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.94);
  color: #146c3b;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

.pd-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: none;
  place-items: center;
  padding: 4.5rem 4.5rem 3.5rem;
  margin: 0;
  border: 0;
  background: rgba(8, 18, 14, 0.92);
  overscroll-behavior: contain;
}

.pd-gallery-lightbox.is-open {
  display: grid;
}

.pd-gallery-lightbox__figure {
  margin: 0;
  max-width: min(96vw, 1280px);
  text-align: center;
}

.pd-gallery-lightbox__figure img {
  display: block;
  width: auto;
  max-width: min(96vw, 1280px);
  max-height: calc(100vh - 8.5rem);
  object-fit: contain;
  border-radius: 12px;
  background: #0c1a12;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.pd-gallery-lightbox__figure figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.85rem;
  color: #e8f5ee;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pd-gallery-lightbox__figure figcaption span:last-child {
  color: #9ad4b4;
  font-weight: 600;
}

.pd-gallery-lightbox__close,
.pd-gallery-lightbox__nav {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #146c3b;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.pd-gallery-lightbox__close {
  top: 1rem;
  right: 1rem;
}

.pd-gallery-lightbox__nav--prev { left: 1rem; }
.pd-gallery-lightbox__nav--next { right: 1rem; }

.pd-gallery-lightbox__close:hover,
.pd-gallery-lightbox__nav:hover {
  background: #ecf8f1;
}

.pd-gallery-lightbox__close:focus-visible,
.pd-gallery-lightbox__nav:focus-visible,
.pd-gallery__open:focus-visible {
  outline: 2px solid #1e8f4f;
  outline-offset: 3px;
}

[data-theme="dark"] .pd-gallery.section {
  background:
    radial-gradient(circle at 12% 18%, rgba(30, 143, 79, 0.14), transparent 28%),
    var(--bg);
}

[data-theme="dark"] .pd-gallery__item figcaption {
  background: rgba(23, 26, 33, 0.92);
  color: #86efac;
}

@media (max-height: 780px) {
  .pd-overview__copy > p:nth-of-type(2) {
    display: none;
  }
}

/* Nearby map */
.pd-nearby.section {
  display: flex;
  flex-direction: column;
  height: calc(100svh - 5.75rem);
  max-height: calc(100svh - 5.75rem);
  padding: 0.9rem 0 0.85rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(30, 143, 79, 0.08), transparent 48%),
    linear-gradient(180deg, #e4ebf2 0%, #eef3f8 55%, #e6edf4 100%);
}

[data-theme="dark"] .pd-nearby.section {
  background:
    radial-gradient(circle at 50% 42%, rgba(30, 143, 79, 0.14), transparent 48%),
    linear-gradient(180deg, #151b24 0%, #1a222c 100%);
}

.pd-nearby .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.nearby-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
  margin-bottom: 0.35rem;
}

.pd-nearby .section__header {
  margin-bottom: 0;
  text-align: left;
}

.pd-nearby .section__badge {
  margin-bottom: 0.3rem;
}

.pd-nearby .section__header h2 {
  margin: 0 0 0.15rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.pd-nearby .section__subtitle {
  margin: 0;
  font-size: 0.9rem;
}

.nearby-compass {
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.12));
}

.nearby-compass svg {
  display: block;
  width: 100%;
  height: 100%;
}

[data-theme="dark"] .nearby-compass svg circle:first-child {
  fill: var(--surface);
}

.nearby-map {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 1180px;
  min-height: 0;
  margin: 0 auto;
}

.nearby-map__wash {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(30, 143, 79, 0.1), transparent 58%),
    radial-gradient(circle at 72% 28%, rgba(37, 99, 235, 0.05), transparent 36%);
  pointer-events: none;
}

.nearby-map__rings {
  position: absolute;
  inset: 13%;
  pointer-events: none;
}

.nearby-map__rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 50%;
  animation: nearbyRingPulse 7s ease-in-out infinite;
}

.nearby-map__rings span:nth-child(2) {
  inset: 14%;
  animation-delay: 0.8s;
}

.nearby-map__rings span:nth-child(3) {
  inset: 28%;
  animation-delay: 1.6s;
}

.nearby-map__svg {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.nearby-map__svg .nearby-route--base {
  fill: none;
  stroke: #146c3b;
  stroke-width: 7;
  stroke-linecap: round;
  opacity: 0.22;
}

.nearby-map__svg .nearby-route {
  fill: none;
  stroke: url(#nearby-route-grad);
  stroke-width: 2.6;
  stroke-dasharray: 6 6;
  stroke-linecap: round;
  opacity: 0.95;
  animation: nearbyDashFlow 1.7s linear infinite;
}

.nearby-map__svg .nearby-route-tip {
  fill: none;
  stroke: #1E8F4F;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-dasharray: 0 95 5;
}

.nearby-map__svg .nearby-pin__pulse {
  fill: rgba(30, 143, 79, 0.16);
  stroke: none;
  transform-box: fill-box;
  transform-origin: center;
  animation: nearbyPinPulse 2.4s ease-out infinite;
}

.nearby-locs {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.nearby-loc {
  position: absolute;
  width: 22px;
  height: 30px;
  transform: translate(-50%, -88%);
  filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.28));
}

.nearby-loc svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.nearby-loc svg path {
  fill: #146c3b;
}

.nearby-loc--n { left: 50%; top: 8.8%; }
.nearby-loc--nw { left: 16.8%; top: 14.8%; }
.nearby-loc--ne { left: 83.2%; top: 14.8%; }
.nearby-loc--w { left: 15.8%; top: 46%; }
.nearby-loc--e { left: 84.2%; top: 46%; }
.nearby-loc--sw { left: 16.8%; top: 85.2%; }
.nearby-loc--se { left: 83.2%; top: 85.2%; }
.nearby-loc--s { left: 50%; top: 91.2%; }

.nearby-map__svg .nearby-dot {
  fill: #1E8F4F;
  stroke: #fff;
  stroke-width: 1.4;
}

.nearby-map__svg .nearby-dot--late {
  fill: #34d399;
  opacity: 0.85;
}

.nearby-map__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 7;
  transform: translate(-50%, -56%);
  text-align: center;
}

.nearby-map__hub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(138px, 18vh);
  height: min(138px, 18vh);
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(30, 143, 79, 0.28);
  animation: nearbyHubRing 3.6s ease-out infinite;
  pointer-events: none;
}

.nearby-map__photo {
  position: relative;
  width: min(138px, 18vh);
  height: min(138px, 18vh);
  margin: 0 auto;
  padding: 6px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--primary);
  box-shadow:
    0 0 0 8px rgba(30, 143, 79, 0.08),
    0 14px 30px rgba(30, 143, 79, 0.22);
  overflow: hidden;
}

.nearby-map__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.nearby-map__label {
  display: inline-block;
  margin-top: -8px;
  padding: 0.42rem 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(30, 143, 79, 0.12);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(8px);
}

.nearby-map__label strong {
  display: block;
  color: var(--primary);
  font-size: 0.88rem;
}

.nearby-map__label span {
  font-size: 0.7rem;
  color: #6B7280;
}

[data-theme="dark"] .nearby-map__photo,
[data-theme="dark"] .nearby-map__label {
  background: var(--surface);
}

[data-theme="dark"] .nearby-map__label span {
  color: var(--muted);
}

.nearby-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 188px;
  padding: 0.55rem 0.8rem 0.55rem 0.55rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nearby-map .nearby-card {
  position: absolute;
  z-index: 4;
}

.nearby-map .nearby-card::after {
  display: none;
}

.nearby-card--n::after { left: 50%; bottom: -5px; transform: translateX(-50%); }
.nearby-card--s::after { left: 50%; top: -5px; transform: translateX(-50%); }
.nearby-card--w::after { right: -5px; top: 50%; transform: translateY(-50%); }
.nearby-card--e::after { left: -5px; top: 50%; transform: translateY(-50%); }
.nearby-card--nw::after { right: -4px; bottom: 10px; }
.nearby-card--ne::after { left: -4px; bottom: 10px; }
.nearby-card--sw::after { right: -4px; top: 10px; }
.nearby-card--se::after { left: -4px; top: 10px; }

.nearby-map .nearby-card:hover {
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
}

.nearby-card--n:hover,
.nearby-card--s:hover { transform: translateX(-50%) translateY(-3px); }
.nearby-card--w:hover,
.nearby-card--e:hover { transform: translateY(calc(-50% - 3px)); }
.nearby-card--nw:hover,
.nearby-card--ne:hover,
.nearby-card--sw:hover,
.nearby-card--se:hover { transform: translateY(-3px); }

.nearby-card h3 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: #111827;
}

.nearby-card p {
  margin: 0.08rem 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #6B7280;
}

.nearby-card__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.16);
}

.nearby-card__icon svg {
  width: 15px;
  height: 15px;
}

.nearby-card__icon--mall { background: linear-gradient(145deg, #FB923C, #EA580C); }
.nearby-card__icon--market { background: linear-gradient(145deg, #FBBF24, #D97706); }
.nearby-card__icon--school { background: linear-gradient(145deg, #A78BFA, #7C3AED); }
.nearby-card__icon--school2 { background: linear-gradient(145deg, #818CF8, #4F46E5); }
.nearby-card__icon--hospital { background: linear-gradient(145deg, #F87171, #DC2626); }
.nearby-card__icon--hospital2 { background: linear-gradient(145deg, #FB7185, #E11D48); }
.nearby-card__icon--road { background: linear-gradient(145deg, #F59E0B, #B45309); }
.nearby-card__icon--bank { background: linear-gradient(145deg, #2DD4BF, #0F766E); }

.nearby-card--n { top: 0.5%; left: 50%; transform: translateX(-50%); }
.nearby-card--nw { top: 11%; left: 0.5%; }
.nearby-card--ne { top: 11%; right: 0.5%; }
.nearby-card--w { top: 46%; left: 0; transform: translateY(-50%); }
.nearby-card--e { top: 46%; right: 0; transform: translateY(-50%); }
.nearby-card--sw { bottom: 11%; left: 0.5%; }
.nearby-card--se { bottom: 11%; right: 0.5%; }
.nearby-card--s { bottom: 0.5%; left: 50%; transform: translateX(-50%); }

.nearby-list {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  flex: 1;
  align-content: start;
  overflow: auto;
}

.nearby-list .nearby-card {
  min-width: 0;
}

[data-theme="dark"] .nearby-card {
  background: rgba(23, 26, 33, 0.92);
  border-color: var(--border);
  box-shadow: 0 10px 24px var(--shadow);
}

[data-theme="dark"] .nearby-card h3 { color: var(--heading); }
[data-theme="dark"] .nearby-card p { color: var(--muted); }

@keyframes nearbyDashFlow {
  to { stroke-dashoffset: -26; }
}

@keyframes nearbyRingPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.015); }
}

@keyframes nearbyPinPulse {
  0% { opacity: 0.7; transform: scale(0.7); }
  100% { opacity: 0; transform: scale(1.7); }
}

@keyframes nearbyHubRing {
  0% { opacity: 0.45; transform: scale(0.92); }
  100% { opacity: 0; transform: scale(1.18); }
}

.pd-specs.section {
  padding: 2.6rem 0 2.4rem;
  background-color: #f3f6f4;
  background-image:
    linear-gradient(rgba(20, 108, 59, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 108, 59, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: center top;
}

.pd-specs__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.pd-specs__intro-copy {
  max-width: 36rem;
}

.pd-specs__intro .section__badge {
  margin-bottom: 0.4rem;
}

.pd-specs__intro h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

.pd-specs__intro .section__subtitle {
  margin: 0;
}

.pd-specs__meta {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0.85rem 1.35rem;
  margin: 0;
}

.pd-specs__meta div {
  min-width: 6.5rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--primary);
}

.pd-specs__meta dt {
  margin: 0 0 0.15rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.pd-specs__meta dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--heading);
}

.pd-specs-tabs {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.pd-specs-tabs__nav {
  display: flex;
  overflow-x: auto;
  scrollbar-width: thin;
  border-bottom: 2px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, #f7faf8 0%, #fff 100%);
  -webkit-overflow-scrolling: touch;
}

.pd-specs-tabs__nav::-webkit-scrollbar {
  height: 3px;
}

.pd-specs-tabs__nav::-webkit-scrollbar-thumb {
  background: rgba(30, 143, 79, 0.25);
  border-radius: 3px;
}

.pd-specs-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1 0 auto;
  min-width: 90px;
  padding: 0.75rem 1rem;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  font-family: inherit;
  white-space: nowrap;
  margin-bottom: -2px;
}

.pd-specs-tab svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: currentColor;
}

.pd-specs-tab__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pd-specs-tab:hover {
  color: var(--primary);
  background: rgba(30, 143, 79, 0.04);
}

.pd-specs-tab.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: rgba(30, 143, 79, 0.06);
}

.pd-specs-tabs__panels {
  padding: 1.2rem 1.4rem 1.4rem;
}

.pd-specs-panel {
  display: none;
}

.pd-specs-panel.is-active {
  display: block;
  animation: specFadeIn 0.25s ease;
}

@keyframes specFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.pd-specs-panel__header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.pd-specs-panel__code {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.pd-specs-panel__cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.15rem 0.5rem;
  background: rgba(30, 143, 79, 0.08);
  border-radius: 4px;
}

.pd-specs-panel__header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--heading);
}

.pd-specs-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pd-specs-panel li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.15rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text);
  border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
}

.pd-specs-panel li:last-child {
  border-bottom: 0;
}

.pd-specs-panel li::before {
  content: '';
  position: absolute;
  top: 0.85rem;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1.5px solid var(--primary);
  border-radius: 2px;
  background: rgba(30, 143, 79, 0.12);
}

.pd-specs__note {
  margin: 1.1rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

[data-theme="dark"] .pd-specs.section {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(30, 143, 79, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 143, 79, 0.07) 1px, transparent 1px);
}

[data-theme="dark"] .pd-specs-tabs {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .pd-specs-tabs__nav {
  background: linear-gradient(180deg, rgba(30, 143, 79, 0.08) 0%, var(--surface) 100%);
  border-bottom-color: var(--border);
}

[data-theme="dark"] .pd-specs-panel__header {
  border-bottom-color: var(--border);
}

[data-theme="dark"] .pd-specs-panel li {
  border-bottom-color: var(--border);
}

[data-theme="dark"] .pd-specs-panel__cat {
  background: rgba(30, 143, 79, 0.15);
}

.pd-amenities.section {
  padding: 2.8rem 0 2.6rem;
  background: #f7f8f6;
}

.pd-amenities__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 0;
  padding-bottom: 0;
}

.pd-amenities__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pd-amenities__badge {
  display: inline-flex;
  margin-bottom: 0.75rem;
}

.pd-amenities__badge svg {
  width: 14px;
  height: 14px;
}

.pd-amenities__copy h2 {
  position: relative;
  display: block;
  margin: 0 0 0.7rem;
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 3.6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #146c3b;
}

.pd-amenities__copy h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  width: 2.4rem;
  height: 3px;
  background: #146c3b;
  border-radius: 2px;
}

.pd-amenities__copy p {
  margin: 0;
  max-width: 34rem;
  color: #5b6570;
  font-size: 1rem;
  line-height: 1.65;
}

.pd-amenities__aside {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 22rem;
  margin: 0;
  padding: 0.85rem 1.05rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  text-align: left;
}

.pd-amenities__aside-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #146c3b;
  background: #e8f6ee;
  border-radius: 50%;
}

.pd-amenities__aside-icon svg {
  width: 22px;
  height: 22px;
}

.pd-amenities__aside p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #5b6570;
}

.pd-amenities__aside strong {
  color: #146c3b;
  font-weight: 700;
}

.pd-amenities__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(210px, 1fr) minmax(210px, 1fr);
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.pd-amenity {
  --amenity-accent: #1E8F4F;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1.3rem 1.2rem 1.2rem;
  background: #fff;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.pd-amenity::before {
  display: none;
}

.pd-amenity::after {
  content: '';
  position: absolute;
  right: -36px;
  bottom: -48px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--amenity-accent);
  opacity: 0.12;
  pointer-events: none;
}

.pd-amenity--garden { --amenity-accent: #22c55e; }
.pd-amenity--vastu { --amenity-accent: #3b82f6; }
.pd-amenity--ceiling { --amenity-accent: #f59e0b; }
.pd-amenity--light { --amenity-accent: #8b5cf6; }
.pd-amenity--windows { --amenity-accent: #06b6d4; }
.pd-amenity--security { --amenity-accent: #ec4899; }

.pd-amenity--feature {
  grid-column: 1;
  grid-row: 1 / 3;
  justify-content: flex-end;
  isolation: isolate;
  padding: 1.7rem 1.55rem 1.55rem;
  color: #fff;
  box-shadow: 0 16px 36px rgba(15, 81, 50, 0.22);
}

.pd-amenity--feature::after {
  display: none;
}

.pd-amenity--feature img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pd-amenity--feature .pd-amenity__content {
  position: relative;
  z-index: 2;
  max-width: 20rem;
}

.pd-amenity--feature::before {
  display: block;
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(8, 36, 22, 0.94) 0%, rgba(12, 58, 36, 0.82) 42%, rgba(12, 58, 36, 0.35) 100%),
    linear-gradient(180deg, transparent 35%, rgba(8, 36, 22, 0.55) 100%);
}

.pd-amenity__index {
  position: absolute;
  top: 1.15rem;
  right: 1.2rem;
  z-index: 1;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.pd-amenity__index::after {
  content: '';
  display: block;
  width: 1.15rem;
  height: 2px;
  margin-top: 0.28rem;
  margin-left: auto;
  background: var(--amenity-accent);
  border-radius: 2px;
}

.pd-amenity--feature .pd-amenity__index {
  position: relative;
  top: auto;
  right: auto;
  display: inline-block;
  margin: 0.85rem 0 0.7rem;
  color: rgba(255, 255, 255, 0.8);
}

.pd-amenity--feature .pd-amenity__index::after {
  margin-left: 0;
  background: #fff;
}

.pd-amenity__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 0 1.05rem;
  color: #fff;
  background: var(--amenity-accent);
  border: 0;
  border-radius: 50%;
}

.pd-amenity__icon svg {
  width: 22px;
  height: 22px;
}

.pd-amenity--feature .pd-amenity__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
}

.pd-amenity--feature .pd-amenity__icon svg {
  width: 20px;
  height: 20px;
}

.pd-amenity__mark {
  position: absolute;
  right: 0.6rem;
  bottom: 0.4rem;
  width: 92px;
  height: 92px;
  color: var(--amenity-accent);
  opacity: 0.12;
  pointer-events: none;
}

.pd-amenity__mark svg {
  width: 100%;
  height: 100%;
}

.pd-amenity h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111827;
}

.pd-amenity p {
  margin: 0;
  max-width: 18rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #64748b;
}

.pd-amenity--feature h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.pd-amenity--feature h3 em {
  display: block;
  font-style: normal;
  color: #86efac;
}

.pd-amenity--feature p {
  max-width: 18.5rem;
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(134, 239, 172, 0.45);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
}

.pd-amenity-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 1rem 0.35rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.pd-amenity-trust li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.45rem 1rem;
}

.pd-amenity-trust li + li {
  border-left: 1px solid rgba(15, 23, 42, 0.08);
}

.pd-amenity-trust__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
}

.pd-amenity-trust__icon svg {
  width: 18px;
  height: 18px;
}

.pd-amenity-trust__icon--green { background: #22c55e; }
.pd-amenity-trust__icon--blue { background: #3b82f6; }
.pd-amenity-trust__icon--orange { background: #f59e0b; }
.pd-amenity-trust__icon--purple { background: #8b5cf6; }

.pd-amenity-trust h3 {
  margin: 0 0 0.12rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #111827;
}

.pd-amenity-trust p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #64748b;
}

[data-theme="dark"] .pd-amenities.section {
  background: var(--bg);
}

[data-theme="dark"] .pd-amenity,
[data-theme="dark"] .pd-amenities__aside,
[data-theme="dark"] .pd-amenity-trust {
  background: var(--surface);
}

[data-theme="dark"] .pd-amenities__copy h2,
[data-theme="dark"] .pd-amenity h3,
[data-theme="dark"] .pd-amenity-trust h3 {
  color: var(--heading);
}

[data-theme="dark"] .pd-amenity--feature h3 {
  color: #fff;
}

.pd-pay.section {
  position: relative;
  overflow: hidden;
  padding: 2.6rem 0 2.4rem;
  background: #f6f7f5;
}

.pd-pay__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 6% 8%, rgba(30, 143, 79, 0.16), transparent 22%),
    radial-gradient(circle at 96% 92%, rgba(30, 143, 79, 0.14), transparent 24%);
}

.pd-pay .container {
  position: relative;
  z-index: 1;
  max-width: min(100%, 1600px);
}

.pd-pay-flow-wrap {
  overflow-x: auto;
  margin-bottom: 1.6rem;
  padding: 0.2rem 0.15rem 0.35rem;
}

.pd-pay-flow {
  display: grid;
  grid-template-columns: repeat(12, minmax(5.65rem, 1fr));
  grid-template-rows: auto 78px auto;
  column-gap: 0.4rem;
  min-width: 1180px;
  width: 100%;
}

.pd-pay-flow__cards {
  display: contents;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pd-pay-flow__path {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 2;
}

.pd-pay-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.pd-pay-card:nth-child(2) { grid-column: 2; grid-row: 3; }
.pd-pay-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.pd-pay-card:nth-child(4) { grid-column: 4; grid-row: 3; }
.pd-pay-card:nth-child(5) { grid-column: 5; grid-row: 1; }
.pd-pay-card:nth-child(6) { grid-column: 6; grid-row: 3; }
.pd-pay-card:nth-child(7) { grid-column: 7; grid-row: 1; }
.pd-pay-card:nth-child(8) { grid-column: 8; grid-row: 3; }
.pd-pay-card:nth-child(9) { grid-column: 9; grid-row: 1; }
.pd-pay-card:nth-child(10) { grid-column: 10; grid-row: 3; }
.pd-pay-card:nth-child(11) { grid-column: 11; grid-row: 1; }
.pd-pay-card:nth-child(12) { grid-column: 12; grid-row: 3; }

.pd-pay-card {
  position: relative;
  min-width: 0;
  padding: 0.55rem 0.5rem 0.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
}

.pd-pay-card::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 2px;
  height: 12px;
  background: #146c3b;
  transform: translateX(-50%);
}

.pd-pay-card:nth-child(odd)::after { bottom: -12px; }
.pd-pay-card:nth-child(even)::after { top: -12px; }

.pd-pay-card h3 {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.25;
}

.pd-pay-card p {
  margin: 0.15rem 0 0.4rem;
  font-size: 0.62rem;
  line-height: 1.35;
  color: var(--muted);
}

.pd-pay-card strong {
  color: #146c3b;
  font-size: 0.95rem;
  font-weight: 800;
}

.pd-pay-card__num {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.pd-pay-flow__svg {
  display: block;
  width: 100%;
  height: 78px;
}

.pd-pay-flow__svg path {
  fill: none;
  stroke: #146c3b;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.pd-pay-flow__nodes {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pd-pay-flow__nodes li {
  position: absolute;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #146c3b;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(20, 108, 59, 0.28);
  transform: translateX(-50%);
}

.pd-pay-flow__nodes svg {
  width: 12px;
  height: 12px;
}

.pd-pay-flow__nodes li:nth-child(odd) { top: 0; }
.pd-pay-flow__nodes li:nth-child(even) { bottom: 0; top: auto; }
.pd-pay-flow__nodes li:nth-child(1) { left: 4.166%; }
.pd-pay-flow__nodes li:nth-child(2) { left: 12.5%; }
.pd-pay-flow__nodes li:nth-child(3) { left: 20.833%; }
.pd-pay-flow__nodes li:nth-child(4) { left: 29.166%; }
.pd-pay-flow__nodes li:nth-child(5) { left: 37.5%; }
.pd-pay-flow__nodes li:nth-child(6) { left: 45.833%; }
.pd-pay-flow__nodes li:nth-child(7) { left: 54.166%; }
.pd-pay-flow__nodes li:nth-child(8) { left: 62.5%; }
.pd-pay-flow__nodes li:nth-child(9) { left: 70.833%; }
.pd-pay-flow__nodes li:nth-child(10) { left: 79.166%; }
.pd-pay-flow__nodes li:nth-child(11) { left: 87.5%; }
.pd-pay-flow__nodes li:nth-child(12) { left: 95.833%; }

.pd-pay__intro {
  position: relative;
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.pd-pay__intro .section__badge {
  margin-bottom: 0.7rem;
}

.pd-pay__intro h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--heading);
}

.pd-pay__intro h2 em {
  font-style: normal;
  color: var(--primary);
}

.pd-pay__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.pd-pay__total {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem 0.55rem 0.55rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  text-align: left;
  min-width: 0;
  color: inherit;
  border: 0;
}

.pd-pay__total svg {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.pd-pay__total span {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 1;
}

.pd-pay__total strong {
  font-size: 1.15rem;
  color: var(--heading);
  line-height: 1.1;
}

.pd-pay-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem 1rem;
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
}

.pd-pay-trust li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.pd-pay-trust__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #146c3b;
  background: rgba(30, 143, 79, 0.12);
  border-radius: 50%;
}

.pd-pay-trust__icon svg {
  width: 18px;
  height: 18px;
}

.pd-pay-trust h3 {
  margin: 0 0 0.1rem;
  font-size: 0.88rem;
}

.pd-pay-trust p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--muted);
}

.pd-plans.section {
  position: relative;
  overflow: hidden;
  padding: 2.8rem 0 2.6rem;
  background:
    radial-gradient(circle at 8% 12%, rgba(30, 143, 79, 0.12), transparent 26%),
    radial-gradient(circle at 94% 88%, rgba(30, 143, 79, 0.1), transparent 24%),
    #f4faf7;
}

.pd-plans__intro {
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.pd-plans__intro h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--heading);
}

.pd-plans__intro h2 em {
  font-style: normal;
  color: var(--primary);
}

.pd-plans__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.pd-plans__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.78fr);
  gap: 1.35rem;
  align-items: stretch;
}

.pd-plans__preview {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.pd-plans__zoom {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #0d7a78;
  cursor: zoom-in;
}

.pd-plans__zoom img {
  display: block;
  width: 100%;
  height: clamp(320px, 52vh, 560px);
  object-fit: contain;
  background: #0d7a78;
}

.pd-plans__zoom-hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 100px;
  background: rgba(8, 18, 14, 0.62);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.pd-plans__preview figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.85rem;
  padding: 0.85rem 1.1rem 1rem;
}

.pd-plans__preview figcaption strong {
  color: var(--heading);
  font-size: 0.95rem;
}

.pd-plans__preview figcaption span {
  color: var(--muted);
  font-size: 0.78rem;
}

.pd-plans__brochure {
  margin: 0 1.1rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
}

.pd-plans__enquire {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.35rem 1.25rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.pd-plans__enquire h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--heading);
}

.pd-plans__enquire > p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.pd-plans__enquire .form__group {
  margin-bottom: 0.85rem;
}

.pd-plans__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.pd-plans__message {
  min-height: 88px;
}

.pd-plans__submit {
  width: 100%;
  margin-top: 0.25rem;
}

.pd-plans-lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: none;
  place-items: center;
  padding: 1.25rem;
  margin: 0;
  border: 0;
  background: rgba(8, 18, 14, 0.88);
  overscroll-behavior: contain;
}

.pd-plans-lightbox.is-open {
  display: grid;
}

.pd-plans-lightbox img {
  display: block;
  width: min(96vw, 1280px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  background: #0d7a78;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.pd-plans-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #146c3b;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

body.pd-plans-locked {
  overflow: hidden;
}

[data-theme="dark"] .pd-plans.section {
  background:
    radial-gradient(circle at 8% 12%, rgba(30, 143, 79, 0.16), transparent 26%),
    var(--bg);
}

[data-theme="dark"] .pd-plans__preview,
[data-theme="dark"] .pd-plans__enquire {
  background: var(--surface);
}

.pd-video.section {
  padding: 4.25rem 0 1.6rem;
  background:
    linear-gradient(180deg, #e8f6ee 0%, #f7fbf8 100%);
}

.pd-video__layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: var(--space-2xl);
  align-items: center;
}

.pd-video__copy h2 {
  margin: 0.45rem 0 0.7rem;
}

.pd-video__copy p {
  margin-bottom: 1rem;
}

.pd-video__yt {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.pd-video__yt:hover {
  text-decoration: underline;
}

.pd-video__frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(30, 143, 79, 0.18);
  background: #111;
  aspect-ratio: 16 / 9;
  border: 4px solid #1E8F4F;
}

.pd-video__frame iframe,
.pd-video__poster,
.pd-video__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pd-video__poster {
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  background: #111;
}

.pd-video__poster img,
.pd-video__fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.pd-video__play {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #1E8F4F;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.pd-video__play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-50%, -50%);
}

.pd-video__poster:hover .pd-video__play,
.pd-video__fallback:hover .pd-video__play {
  background: #16753F;
  transform: scale(1.05);
}

.pd-video__fallback {
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  background: #111;
}

.pd-video__fallback span:last-child {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.55);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

[data-theme="dark"] .project-detail-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(30, 143, 79, 0.14), transparent 28%),
    var(--bg);
}

[data-theme="dark"] .pd-hero__facts {
  background: rgba(23, 26, 33, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
  border-top-color: var(--primary);
}

[data-theme="dark"] .pd-hero__facts li + li::before {
  background: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .pd-hero__facts strong {
  color: #f8fafc;
}

[data-theme="dark"] .pd-pay-card,
[data-theme="dark"] .pd-pay__total,
[data-theme="dark"] .pd-pay-trust {
  background: var(--surface);
}

[data-theme="dark"] .pd-pay.section {
  background: var(--bg);
}

[data-theme="dark"] .pd-video.section {
  background: var(--bg);
}

@media (max-width: 1100px) {
  .pd-amenities__grid {
    grid-template-columns: minmax(220px, 1.1fr) repeat(3, minmax(0, 1fr));
  }
  .pd-gallery__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-auto-rows: minmax(150px, 22vh);
  }
  .nearby-card { min-width: 168px; }
}

@media (max-width: 1024px) {
  .pd-hero__facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pd-hero__facts li + li::before { display: none; }
  .pd-hero__facts li {
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }
  .pd-hero__facts li:nth-child(3n) { border-right: 0; }
  .pd-hero__facts li:nth-last-child(-n + 2) { border-bottom: 0; }
  .pd-overview__grid { grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr); gap: 0.75rem; }
  .pd-specs__intro {
    flex-direction: column;
    align-items: flex-start;
  }
  .pd-specs__meta { grid-template-columns: repeat(4, minmax(0, 1fr)); width: 100%; }
  .pd-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(140px, 18vh);
  }
  .pd-gallery__item--main {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .pd-amenities__intro {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .pd-amenities__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .pd-amenity--feature {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 280px;
  }
  .pd-amenity-trust {
    grid-template-columns: 1fr 1fr;
  }
  .pd-amenity-trust li:nth-child(3) {
    border-left: 0;
  }
  .pd-amenity-trust li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }
  .nearby-card { min-width: 154px; padding: 0.45rem 0.65rem 0.45rem 0.45rem; }
  .nearby-card h3 { font-size: 0.75rem; }
  .pd-video__layout { grid-template-columns: 1fr; }
  .pd-pay-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pd-pay__total {
    position: static;
    margin: 0 auto 1.25rem;
    width: fit-content;
  }
  .pd-plans__grid {
    grid-template-columns: 1fr;
  }
  .pd-plans__zoom img {
    height: clamp(260px, 48vh, 440px);
  }
}

@media (max-width: 860px) {
  .nearby-map { display: none; }
  .nearby-list { display: grid; }
  .pd-nearby.section {
    height: auto;
    max-height: none;
    padding: var(--space-2xl) 0;
  }
  .nearby-compass { width: 64px; height: 64px; }
  .pd-pay.section {
    height: auto;
    max-height: none;
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 768px) {
  .pd-overview.section {
    height: auto;
    max-height: none;
    padding: var(--space-xl) 0;
    overflow: visible;
  }
  .pd-overview .container,
  .pd-overview__grid,
  .pd-overview__copy,
  .pd-overview__aside,
  .pd-address {
    height: auto;
    overflow: visible;
  }
  .pd-overview__grid { grid-template-columns: 1fr; }
  .pd-overview__highlights { flex: none; }
  .pd-address__media {
    flex: 0 0 220px;
    height: 220px;
  }
  .pd-hero { min-height: auto; }
  .project-detail-page .breadcrumbs { padding-top: 5.75rem; }
  .pd-hero__inner {
    padding-top: 0.4rem;
    padding-bottom: 3.25rem;
  }
  .pd-hero__facts-wrap {
    margin-top: -3.25rem;
    margin-bottom: -3.25rem;
  }
  .pd-video.section { padding-top: 5.25rem; }
  .pd-hero__facts {
    grid-template-columns: 1fr 1fr;
    padding: 0.1rem 0;
  }
  .pd-hero__facts li:nth-child(3n) { border-right: 1px solid rgba(15, 23, 42, 0.08); }
  .pd-hero__facts li:nth-child(2n) { border-right: 0; }
  .pd-hero__facts li:nth-last-child(-n + 2) { border-bottom: 1px solid rgba(15, 23, 42, 0.08); }
  .pd-hero__facts li:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }
  .pd-specs-tab { min-width: 72px; padding: 0.6rem 0.7rem; }
  .pd-specs-tab__label { font-size: 0.65rem; }
  .pd-specs-tab svg { width: 18px; height: 18px; }
  .pd-specs-tabs__panels { padding: 1rem; }
  .pd-specs-panel li { font-size: 0.85rem; }
  .pd-specs__meta { grid-template-columns: 1fr 1fr; }
  .nearby-list { grid-template-columns: 1fr; }
  .pd-pay__intro { padding-top: 0; }
}

@media (max-width: 560px) {
  .pd-hero__facts { grid-template-columns: 1fr; }
  .pd-hero__facts li,
  .pd-hero__facts li:nth-child(3n),
  .pd-hero__facts li:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }
  .pd-hero__facts li:last-child {
    grid-column: auto;
    border-bottom: 0;
  }
  .pd-amenities__intro {
    flex-direction: column;
    align-items: flex-start;
  }
  .pd-amenities__aside {
    max-width: none;
  }
  .pd-amenities__grid { grid-template-columns: 1fr; }
  .pd-amenity--feature { min-height: 240px; }
  .pd-amenity-trust { grid-template-columns: 1fr; }
  .pd-amenity-trust li,
  .pd-amenity-trust li + li,
  .pd-amenity-trust li:nth-child(3),
  .pd-amenity-trust li:nth-child(-n + 2) {
    border-left: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }
  .pd-amenity-trust li:last-child { border-bottom: 0; }
  .pd-gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .pd-gallery__item,
  .pd-gallery__item--main {
    grid-column: auto;
    min-height: 200px;
  }
  .pd-gallery__zoom {
    opacity: 1;
    transform: none;
  }
  .pd-gallery-lightbox {
    padding: 4.25rem 0.75rem 3.25rem;
  }
  .pd-gallery-lightbox__nav {
    width: 40px;
    height: 40px;
  }
  .pd-gallery-lightbox__nav--prev { left: 0.6rem; }
  .pd-gallery-lightbox__nav--next { right: 0.6rem; }
  .pd-gallery-lightbox__figure img {
    max-width: calc(100vw - 1.5rem);
    max-height: calc(100vh - 9rem);
  }
  .pd-hero__actions { flex-direction: column; align-items: stretch; }
  .pd-plans__fields { grid-template-columns: 1fr; }
  .pd-plans__zoom-hint { display: none; }
  .pd-pay-flow-wrap {
    overflow: visible;
    padding: 0;
  }
  .pd-pay-flow {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
    width: auto;
  }
  .pd-pay-flow__cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .pd-pay-flow__path { display: none; }
  .pd-pay-card::after { display: none; }
  .pd-pay-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
  .pd-pay-card {
    padding: 0.85rem 0.9rem 0.8rem;
  }
  .pd-pay-card h3 { font-size: 0.92rem; }
  .pd-pay-card p { font-size: 0.75rem; }
  .pd-pay-card strong { font-size: 1.2rem; }
  .pd-pay-trust { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .pd-hero__media img { animation: none; }
  .nearby-map__svg .nearby-route,
  .nearby-map__rings span,
  .nearby-map__svg .nearby-pin__pulse,
  .nearby-map__hub::before {
    animation: none;
  }
  .nearby-travelers { display: none; }
}

/* ==============================
   LIGHTBOX
   ============================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

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

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.lightbox.is-open .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox__nav--prev { left: 1.25rem; }
.lightbox__nav--next { right: 1.25rem; }

.lightbox__counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.op-card__photo { cursor: pointer; }

@media (max-width: 600px) {
  .lightbox__img {
    max-width: 96vw;
    max-height: 80vh;
  }
  .lightbox__nav { width: 40px; height: 40px; font-size: 1.2rem; }
  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }
  .lightbox__close { top: 0.75rem; right: 0.75rem; }
}

@media (max-width: 480px) {
  .ct-hero__title,
  .op-hero__title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .ct-hero__points,
  .op-hero__points {
    grid-template-columns: 1fr;
  }

  .ct-office,
  .ct-form {
    padding: 1.15rem 0.95rem 1.1rem;
    border-radius: 16px;
  }

  .ct-office__list span,
  .ct-office__list a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .op-toolbar__filters {
    grid-template-columns: 1fr;
  }

  .op-toolbar__meta {
    width: 100%;
    justify-content: space-between;
  }

  .op-card {
    padding: 0.75rem;
    gap: 0.9rem;
  }

  .op-card__main { height: 180px; }

  .op-card__specs {
    grid-template-columns: 1fr;
  }

  .op-card__aside .btn {
    flex: 1 1 100%;
  }

  .fproject-card {
    min-width: min(240px, 78vw);
    flex-basis: min(240px, 78vw);
  }

  .project-chip {
    min-width: 196px;
  }

  .testi-card {
    flex-basis: min(280px, 86vw);
  }

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

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

  .hero__cards {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }

  .hero__price-card {
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 0;
    align-items: center;
  }

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

@media (max-width: 380px) {
  .hero__highlight-text {
    font-size: clamp(2.05rem, 12.5vw, 2.75rem);
    white-space: normal;
  }

  .hero__approval-badge--wide img {
    height: 38px;
  }

  .hero__approval-badge--square img {
    width: 42px;
    height: 42px;
  }

  .btn {
    max-width: 100%;
  }

  .op-card__thumbs button,
  .op-card__more {
    width: 46px;
    height: 38px;
  }

  .lightbox__nav {
    width: 36px;
    height: 36px;
  }
}
