/* Mana Group — Homepage Redesign */
/* Fonts loaded via <link> in HTML for faster rendering */

:root {
  --cream: #F5F0E8;
  --cream-dark: #E8E0D4;
  --forest: #1A3C34;
  --forest-light: #2A5C4E;
  --terracotta: #C4714A;
  --terracotta-hover: #A85D3A;
  --charcoal: #1E1E1E;
  --text-body: #6a6764;
  --text-muted: #524D48;
  --muted: #524D48;
  --white: #FFFFFF;
  --shadow: 0 8px 40px rgba(26, 60, 52, 0.10);
  --shadow-lg: 0 20px 60px rgba(26, 60, 52, 0.15);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body.site-home {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--cream);
  overflow-x: hidden;
}

body.site-home h1,
body.site-home h2,
body.site-home h3,
body.site-home h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest);
}
.walk-section__title, .site-hero__title em{
  color: var(--terracotta)!important;
}

body.site-home p,
body.site-home li,
body.site-home label {
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--text-body);
}

body.site-home .text-on-dark,
body.site-home .text-on-dark p,
body.site-home .text-on-dark label {
  color: rgba(255, 255, 255, 0.92);
}

/* Dark-surface text — must beat global body.site-home p / h1 rules */
body.site-home .site-hero .site-hero__title,
body.site-home .site-hero .site-hero__content h1 {
  color: var(--cream);
}

body.site-home .site-hero .site-hero__subtitle,
body.site-home .site-hero .site-hero__content p {
  color: rgba(255, 255, 255, 0.88);
}

body.site-home .sub-hero .sub-hero__title,
body.site-home .sub-hero h1 {
  color: var(--white);
}

body.site-home .sub-hero .sub-hero__desc,
body.site-home .sub-hero p {
  color: rgba(255, 255, 255, 0.85);
}

body.site-home .walk-section .walk-section__title,
body.site-home .walk-section h2 {
  color: var(--white);
}

body.site-home .walk-section .walk-section__desc,
body.site-home .walk-section p {
  color: rgba(255, 255, 255, 0.92);
}

body.site-home a {
  text-decoration: none;
  transition: color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 24px;
  padding-top: max(14px, env(safe-area-inset-top));
  transition: padding var(--transition);
}

.site-header.sticky {
  padding: 10px 24px;
}

.site-header__bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(20, 40, 35, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
}

.site-header.sticky .site-header__bar {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--cream-dark);
  box-shadow: 0 8px 32px rgba(26, 60, 52, 0.10);
  padding: 8px 20px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  line-height: 0;
}

.site-header__brand img.logo-main {
  height: 42px;
  width: auto;
  border-radius: 6px;
  filter: invert(1);
}

.site-header__brand img.logo-sub {
  height: 32px;
  width: auto;
  filter: invert(1);
  opacity: 0.9;
}
.site-header.sticky .site-header__brand img.logo-sub, .site-header.sticky .site-header__brand img.logo-main {
  filter: none;
  opacity: 1;
}

.site-header__brand-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
}

.site-header.sticky .site-header__brand-divider {
  background: var(--cream-dark);
}


.site-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

.site-nav__track {
  position: relative;
  display: inline-flex;
}

.site-nav__indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition:
    left 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease,
    background 0.35s ease;
}

.site-nav__indicator.is-visible {
  opacity: 1;
}

.site-header.sticky .site-nav__indicator {
  background: var(--cream);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.site-nav li {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
  padding: 11px 16px 13px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  background: transparent;
  transition: color 0.3s ease;
}

.site-header.sticky .site-nav a {
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a.is-active {
  color: var(--white);
}

.site-header.sticky .site-nav a:hover,
.site-header.sticky .site-nav a.is-active {
  color: var(--forest);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: calc(100% - 28px);
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.35s ease,
              background 0.35s ease;
  pointer-events: none;
}

.site-nav a.is-active::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

.site-header.sticky .site-nav a::after {
  background: var(--terracotta);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  align-self: center;
}

.site-header__wa {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 211, 102, 0.2);
  color: #25D366;
  font-size: 18px;
  border: 1px solid rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.site-header__wa:hover {
  background: #25D366;
  color: var(--white);
  transform: scale(1.05);
}

.site-header.sticky .site-header__wa {
  background: rgba(37, 211, 102, 0.12);
}

.site-header__call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-header__call:hover {
  background: var(--terracotta-hover);
  color: var(--white);
  transform: translateY(-1px);
}

.site-header.sticky .site-header__call {
  background: var(--forest);
}

.site-header.sticky .site-header__call:hover {
  background: var(--forest-light);
}

.site-header__call span {
  display: inline;
}

.site-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
}

.site-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.site-header.sticky .site-burger span {
  background: var(--forest);
}

/* ─── Hero ─── */
.site-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.site-hero__slides {
  position: absolute;
  inset: 0;
}

.site-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.site-hero__slide.active {
  opacity: 1;
}

.site-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroKenBurns 14s ease-out forwards;
}

.site-hero__slide img:not([src]) {
  visibility: hidden;
}

.site-hero__slide.active img {
  animation: heroKenBurns 14s ease-out forwards;
}

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

.site-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 60, 52, 0.55) 0%,
    rgba(26, 60, 52, 0.25) 45%,
    rgba(30, 30, 30, 0.75) 100%
  );
}

.site-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  width: 100%;
}

.site-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.site-hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  max-width: 800px;
  margin-bottom: 20px;
  font-weight: 700;
}

.site-hero__content .site-hero__title {
  color: var(--cream);
}

.site-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}

.site-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.site-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.site-btn--primary {
  background: var(--terracotta);
  color: var(--white);
}

.site-btn--primary:hover {
  background: var(--terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 113, 74, 0.4);
  color: var(--white);
}

.site-btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.site-btn--outline:hover {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}

.site-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-hero__stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.site-hero__stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-hero__dots {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.site-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.site-hero__dot.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: scale(1.2);
}

/* ─── Section shared ─── */
.site-section {
  padding: 100px 24px;
}

.site-section--alt {
  background: var(--white);
}

.site-container {
  max-width: 1280px;
  margin: 0 auto;
}

.site-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.site-section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.site-section__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.site-section__desc {
  font-size: 17px;
  color: var(--muted);
}

/* ─── Projects Showcase ─── */
.pro-section {
  background: var(--white);
}

.pro-section__intro {
  padding: 80px 24px 48px;
  border-bottom: 1px solid var(--cream-dark);
}

.pro-section__intro-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.pro-section__tag {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.pro-section__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 560px;
  line-height: 1.2;
  position: relative;
}

.pro-section__lead {
  max-width: 380px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.pro-list {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 48px;
  position: relative;
}

/* Scroll timeline */
.pro-list__timeline {
  position: absolute;
  left: 0;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: var(--cream-dark);
  display: none;
}

@media (min-width: 1100px) {
  .pro-list {
    padding-left: 48px;
  }
  .pro-list__timeline {
    display: block;
    left: 16px;
  }
}

.pro-list__timeline-fill {
  display: block;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--terracotta), var(--forest));
  border-radius: 2px;
  transition: height 0.15s ease-out;
}

.pro-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 48px 0;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  position: relative;
  box-shadow: 0 4px 24px rgba(26, 60, 52, 0.06);
  transition: box-shadow 0.6s ease;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* ─── Scroll reveal: intro (transform only — text stays visible) ─── */
.pro-reveal-intro .pro-reveal-item {
  transform: translateY(28px);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.pro-reveal-intro.is-visible .pro-reveal-item { transform: translateY(0); }

.pro-reveal-intro__left .pro-reveal-item:nth-child(1) { transition-delay: 0.05s; }
.pro-reveal-intro__left .pro-reveal-item:nth-child(2) { transition-delay: 0.18s; }
.pro-reveal-intro .pro-section__lead { transition-delay: 0s; }
.pro-reveal-intro.is-visible .pro-section__lead { transition-delay: 0.32s; }

.pro-section__heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 3px;
  background: var(--terracotta);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

.pro-reveal-intro.is-visible .pro-section__heading::after {
  width: 72px;
}

/* ─── Scroll reveal: cards (transform only — text always visible) ─── */
.pro-scroll-card {
  transform: translateY(40px) scale(0.98);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.9s ease;
}

.pro-scroll-card.is-visible {
  transform: translateY(0) scale(1);
  box-shadow: 0 20px 60px rgba(26, 60, 52, 0.08);
  border-color: transparent;
}

.pro-scroll-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--terracotta);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
  z-index: 2;
}

.pro-scroll-card.is-visible::before {
  transform: scaleY(1);
}

.pro-scroll-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--terracotta);
  left: -41px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s,
              opacity 0.4s ease 0.35s;
  z-index: 3;
  display: none;
}

@media (min-width: 1100px) {
  .pro-scroll-card::after {
    display: block;
  }
}

.pro-scroll-card.is-visible::after {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

/* Image clip reveal */
.pro-scroll-card .pro-row__visual {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1) 0.15s;
}

.pro-scroll-card.pro-row--flip .pro-row__visual {
  clip-path: inset(0 0 0 100%);
}

.pro-scroll-card.is-visible .pro-row__visual {
  clip-path: inset(0 0 0 0);
}

.pro-scroll-card .pro-row__visual img {
  transform: scale(1.15);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.pro-scroll-card.is-visible .pro-row__visual img {
  transform: scale(1);
}

.pro-scroll-card:hover .pro-row__visual img {
  transform: scale(1.04);
}

/* Tag pop */
.pro-scroll-card .pro-row__tag {
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.55s;
}

.pro-scroll-card .pro-row__price-float {
  transform: translateY(100%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.45s;
}

.pro-scroll-card.is-visible .pro-row__tag {
  transform: translateX(0);
}

.pro-scroll-card.is-visible .pro-row__price-float {
  transform: translateY(0);
}

/* Content stagger — transform only */
.pro-scroll-card .pro-row__index {
  transform: scale(0.85) translateY(12px);
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s;
}

.pro-scroll-card.is-visible .pro-row__index {
  transform: scale(1) translateY(0);
}

.pro-scroll-card .pro-row__head,
.pro-scroll-card .pro-row__text {
  transform: translateX(24px);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.pro-scroll-card.pro-row--flip .pro-row__head,
.pro-scroll-card.pro-row--flip .pro-row__text {
  transform: translateX(-24px);
}

.pro-scroll-card.is-visible .pro-row__head {
  transform: translateX(0);
  transition-delay: 0.28s;
}

.pro-scroll-card.is-visible .pro-row__text {
  transform: translateX(0);
  transition-delay: 0.42s;
}

.pro-scroll-card .pro-row__specs {
  transform: translateY(16px);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.pro-scroll-card.is-visible .pro-row__specs {
  transform: translateY(0);
  cursor: pointer;
}

.pro-scroll-card .pro-spec {
  transform: translateY(10px);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pro-scroll-card.is-visible .pro-spec:nth-child(1) { transform: translateY(0); transition-delay: 0.58s; }
.pro-scroll-card.is-visible .pro-spec:nth-child(2) { transform: translateY(0); transition-delay: 0.68s; }

.pro-scroll-card .pro-row__actions {
  transform: translateY(14px);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.75s;
}

.pro-scroll-card.is-visible .pro-row__actions {
  transform: translateY(0);
}

.pro-scroll-card .pro-action {
  transform: translateY(8px) scale(0.97);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0s,
    background-position 0.5s ease 0s,
    color 0.35s ease 0s,
    border-color 0.35s ease 0s;
}

.pro-scroll-card.is-visible .pro-action:nth-child(1) {
  transform: translateY(0) scale(1);
  transition-delay: 0.85s, 0s, 0s, 0s;
}

.pro-scroll-card.is-visible .pro-action:nth-child(2) {
  transform: translateY(0) scale(1);
  transition-delay: 0.95s, 0s, 0s, 0s;
}

.pro-scroll-card.is-visible .pro-action:nth-child(3) {
  transform: translateY(0) scale(1);
  transition-delay: 1.05s, 0s, 0s, 0s;
}

/* Shimmer on hover when visible */
.pro-scroll-card.is-visible:hover {
  box-shadow: 0 28px 70px rgba(26, 60, 52, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .pro-reveal-intro .pro-reveal-item,
  .pro-scroll-card,
  .pro-scroll-card .pro-row__visual,
  .pro-scroll-card .pro-row__visual img,
  .pro-scroll-card .pro-row__tag,
  .pro-scroll-card .pro-row__price-float,
  .pro-scroll-card .pro-row__index,
  .pro-scroll-card .pro-row__head,
  .pro-scroll-card .pro-row__text,
  .pro-scroll-card .pro-row__specs,
  .pro-scroll-card .pro-spec,
  .pro-scroll-card .pro-row__actions,
  .pro-scroll-card .pro-action {
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
  .pro-scroll-card::before,
  .pro-scroll-card::after {
    display: none !important;
  }
  .pro-section__heading::after {
    width: 72px;
  }
}

.pro-row--flip .pro-row__visual { order: 2; }
.pro-row--flip .pro-row__content { order: 1; }

.pro-row__visual {
  position: relative;
  min-height: 360px;
  padding: 16px;
  background: var(--cream);
  overflow: hidden;
  box-sizing: border-box;
}

.pro-row__visual > a {
  display: block;
  position: absolute;
  inset: 16px;
  overflow: hidden;
  z-index: 1;
}

.pro-row__visual > a::before,
.pro-row__visual > a::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

/* Outer line on image edge */
.pro-row__visual > a::after {
  inset: 0;
  border: 1.5px solid var(--forest);
}

/* Inner line with padding inside */
.pro-row__visual > a::before {
  inset: 10px;
  border: 1px solid var(--terracotta);
}

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

.pro-scroll-card.is-visible:hover .pro-row__visual img {
  transform: scale(1.04);
}

.pro-row__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 20px;
  z-index: 4;
}

.pro-row__content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: var(--white);
}

.pro-row__price-float {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 22px 28px;
  background: linear-gradient(to top, rgb(0 0 0 / 96%) 0%, rgb(0 0 0 / 82%) 65%, transparent 100%);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 12px;
  z-index: 2;
  pointer-events: none;
  /* border-top: 3px solid var(--terracotta); */
}

.pro-row__price-float span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  width: 100%;
}

.pro-row__price-float strong {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.pro-row__price-float em {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 10px;
  border-radius: 4px;
}

.pro-row__price-float--premium {
  border-top-color: #ffd4b8;
  background: linear-gradient(to top, rgb(0 0 0 / 96%) 0%, rgb(0 0 0 / 82%) 65%, transparent 100%);
}
.pro-row__price-float--premium strong {
  color: #ffd4b8;
}

.pro-row__price-float--premium em {
  color: var(--forest);
}

.pro-row__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--cream-dark);
}

.pro-row__index {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  opacity: 0.15;
  padding-top: 4px;
}

.pro-row__head-main {
  min-width: 0;
}

.pro-row__loc {
  font-size: 12px;
  color: var(--terracotta);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pro-row__loc i {
  margin-right: 4px;
  font-size: 11px;
}

.pro-row__name {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  margin-bottom: 0;
  line-height: 1.2;
}

.pro-row__name a {
  color: var(--forest);
}

.pro-row__name a:hover {
  color: var(--terracotta);
}

.pro-row__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 2px solid var(--cream-dark);
}

.pro-row__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.pro-spec {
  background: var(--cream);
  border-radius: 8px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  row-gap: 2px;
  transition: background var(--transition), transform var(--transition);
}

.pro-scroll-card.is-visible:hover .pro-spec {
  background: #f0ebe3;
}

.pro-spec__icon {
  grid-row: 1 / -1;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 14px;
}

.pro-spec__label {
  grid-column: 2;
  grid-row: 1;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.2;
}

.pro-spec__value {
  grid-column: 2;
  grid-row: 2;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.3;
}

.pro-row__actions {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 10px;
}

.pro-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  background-size: 200% 200%;
  background-position: 0% 50%;
  transition:
    background-position 0.5s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.pro-action i {
  font-size: 16px;
}

.pro-action:hover {
  background-position: 100% 50%;
}

.pro-action--call {
  background-image: linear-gradient(135deg, var(--forest) 0%, #155040d9 50%, var(--forest) 100%);
  color: var(--white);
}

.pro-action--call:hover {
  color: var(--white);
}

.pro-action--brochure {
  background-image: linear-gradient(135deg, var(--white) 0%, var(--cream) 35%, #313232b4 65%, #1f1b1b 100%);
  color: var(--forest);
  border: 1.5px solid var(--cream-dark);
}

.pro-action--brochure:hover {
  color: var(--white);
  border-color: var(--forest);
}

.pro-action--enquire {
  background-image: linear-gradient(135deg, #218145 0%, #20bd5a 50%, #1c580e 100%);
  color: var(--white);
}

.pro-action--enquire:hover {
  color: var(--white);
}

/* ─── Walkthrough ─── */
.walk-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.walk-section__media {
  position: absolute;
  inset: 0;
}

.walk-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.walk-section__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 60, 52, 0.88) 0%,
    rgba(26, 60, 52, 0.65) 50%,
    rgba(20, 20, 20, 0.8) 100%
  );
}

.walk-section__body {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 24px;
  max-width: 720px;
}

.walk-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.walk-section__badge i {
  color: var(--terracotta);
}

.walk-section__title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.walk-section__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
  margin-bottom: 36px;
}

.walk-section__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.walk-section__highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 18px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.walk-section__highlights i {
  color: var(--terracotta);
  font-size: 13px;
}

.walk-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  color: var(--forest);
  padding: 8px 32px 8px 8px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.walk-section__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  color: var(--forest);
}

.walk-section__btn-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding-left: 3px;
  flex-shrink: 0;
  transition: var(--transition);
}

.walk-section__btn:hover .walk-section__btn-icon {
  background: var(--forest);
}

/* ─── About ─── */
.site-about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.site-about__visual {
  position: relative;
}

.site-about__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.site-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-about__accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--forest);
  color: var(--white);
  padding: 15px;
  text-align: center;
  border-radius: var(--radius-sm);
  max-width: 220px;
}

.site-about__accent strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 4px;
}

.site-about__accent span {
  font-size: 13px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-about__content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 24px;
}

.site-about__content p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}

.site-about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.site-about__feature {
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.site-about__feature i {
  color: var(--terracotta);
  font-size: 20px;
  margin-bottom: 10px;
}

.site-about__feature h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}

.site-about__feature p {
  font-size: 13px;
  margin: 0;
  color: var(--text-body);
}

/* ─── Contact ─── */
.contact-section {
  padding: 100px 24px;
  background: var(--cream);
}

.contact-section__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.contact-section__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.contact-section__top h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.contact-section__channels {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 16px 24px;
  border-radius: 4px;
  min-width: 220px;
  transition: var(--transition);
}

.contact-channel:hover {
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-channel i {
  font-size: 22px;
  color: var(--forest);
}

.contact-channel--wa i {
  color: #25D366;
}

.contact-channel small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-channel strong {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
}

.contact-section__card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  padding: 48px;
}

.contact-section__fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.contact-field {
  position: relative;
}

.contact-input {
  width: 100%;
  padding: 18px 16px 10px;
  border: none;
  border-bottom: 2px solid var(--cream-dark);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--charcoal);
  transition: border-color var(--transition);
}

.contact-input:focus {
  outline: none;
  border-bottom-color: var(--forest);
}

.contact-field label {
  position: absolute;
  left: 16px;
  top: 18px;
  font-size: 14px;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition);
}

.contact-input:focus + label,
.contact-input:not(:placeholder-shown) + label {
  top: 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest);
}

.contact-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-consent input {
  margin-top: 3px;
  accent-color: var(--forest);
}

.contact-consent label {
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.55;
}

.contact-consent label a {
  color: var(--terracotta);
  text-decoration: underline;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.contact-submit:hover {
  background: var(--terracotta);
}

/* ─── Footer ─── */
.site-footer {
  position: relative;
  background: #0f0f0f;
  color: rgba(255, 255, 255, 0.88);
  padding: 0 24px;
}

.site-footer__accent {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 -24px;
}

.site-footer__top--minimal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__logos {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}

.site-footer__logos img:first-child {
    width: 51px;
    height: 100%;
}

.site-footer__logo-sep {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
}

.site-footer__brand-logo {
    width: 55px;
    height: 100%;
  filter: invert(1);
}

.site-footer__minimal-rera {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
  margin: 0;
  flex: 1;
  text-align: center;
  min-width: 200px;
}

.site-footer__minimal-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__minimal-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.site-footer__minimal-links a:hover {
  color: var(--white);
}

.site-footer__disclaimer {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer__disclaimer summary {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
}

.site-footer__disclaimer summary::after {
  content: '+';
  font-size: 18px;
  color: var(--terracotta);
  font-weight: 400;
}

.site-footer__disclaimer[open] summary::after {
  content: '−';
}

.site-footer__disclaimer p {
  font-size: 11px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
  text-align: justify;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}

.site-footer__bar p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* ─── Floating elements ─── */
.wa-pulse {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 999;
}

.wa-pulse img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition);
}

.wa-pulse:hover img {
  transform: scale(1.1);
}

.enquire-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terracotta);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(196, 113, 74, 0.45);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, background var(--transition);
  pointer-events: none;
}

.enquire-pill.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.enquire-pill:hover {
  background: var(--terracotta-hover);
  color: var(--white);
}

/* Side form panel */
.banner-form {
  position: fixed;
  top: 0;
  right: -380px;
  width: 360px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  padding: 32px 28px;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  transition: right 0.4s ease;
  overflow-y: auto;
}

.banner-form.open {
  right: 0;
}

.banner-form > p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--forest);
  text-align: center;
  margin-bottom: 20px;
}

.banner-form .closeX {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 22px;
  color: var(--muted);
  cursor: pointer;
  background: none;
  line-height: 1;
}

.banner-form .closeX:hover {
  color: var(--terracotta);
}

.banner-form .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  margin-bottom: 14px;
  background: var(--cream);
}

.banner-form .form-control:focus {
  outline: none;
  border-color: var(--forest);
}

.banner-form .disc {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
}

.banner-form .disc label a {
  color: var(--terracotta);
}

.banner-form .btn-enquire-submit {
  width: 100%;
  padding: 14px;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
}

.banner-form .btn-enquire-submit:hover {
  background: var(--forest-light);
}

/* ─── Modals ─── */
#myModal .modal-content,
#enqModal13 .modal-content {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
}

#myModal .headerimg,
#enqModal13 .headerimg {
  height: 180px;
  overflow: hidden;
}

#myModal .headerimg img,
#enqModal13 .headerimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#myModal .modal-header,
#enqModal13 .modal-header {
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 16px 24px;
}

#myModal .modal-title,
#enqModal13 .modal-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

#myModal .modal-header .close,
#enqModal13 .modal-header .close {
  color: var(--white);
  opacity: 0.8;
  text-shadow: none;
}

#myModal .modal-body,
#enqModal13 .modal-body {
  padding: 24px;
}

#myModal .modal-body h5,
#enqModal13 .modal-body h5 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 20px;
}

#myModal .form-control,
#enqModal13 .form-control {
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  margin-bottom: 14px;
  background: var(--cream);
}

#myModal .btn-enquire-submit,
#enqModal13 .btn-enquire-submit {
  width: 100%;
  padding: 14px;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

#myModal .disc,
#enqModal13 .disc {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
}

.enquire-pill.enquire-now {
  display: inline-flex;
}

/* Desktop side sticky enquire + modal */
.side-sticky-btn,
.side-modal {
  display: none;
}

@media (min-width: 1025px) {
  .side-sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 996;
    padding: 22px 11px;
    background: linear-gradient(180deg, var(--forest) 0%, var(--forest-light) 100%);
    color: #fff;
    border: none;
    border-radius: 14px 0 0 14px;
    cursor: pointer;
    box-shadow: -6px 6px 28px rgba(26, 60, 52, 0.28);
    transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }

  .side-sticky-btn:hover {
    padding-right: 16px;
    background: linear-gradient(180deg, var(--forest-light) 0%, var(--terracotta) 100%);
    box-shadow: -8px 8px 32px rgba(26, 60, 52, 0.35);
  }

  .side-sticky-btn__icon {
    font-size: 18px;
    line-height: 1;
  }

  .side-sticky-btn__text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: opacity 0.2s ease;
  }

  .side-modal {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1002;
    pointer-events: none;
    visibility: hidden;
  }

  .side-modal.is-open {
    pointer-events: auto;
    visibility: visible;
  }

  .side-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 60, 52, 0.45);
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .side-modal.is-open .side-modal__backdrop {
    opacity: 1;
  }

  .side-modal__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    max-width: calc(100vw - 48px);
    height: 100%;
    background: var(--cream);
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  .side-modal.is-open .side-modal__panel {
    transform: translateX(0);
  }

  .side-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--forest);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .side-modal__close:hover {
    background: var(--forest);
    color: #fff;
  }

  .side-modal__visual {
    position: relative;
    flex-shrink: 0;
    height: 200px;
    overflow: hidden;
  }

  .side-modal__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease;
  }

  .side-modal__price {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 14px;
    background: rgba(26, 60, 52, 0.88);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .side-modal__price:not(:empty) {
    opacity: 1;
    transform: translateY(0);
  }

  .side-modal__body {
    padding: 24px 24px 32px;
    flex: 1;
  }

  .side-modal__label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 6px;
  }

  .side-modal__title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--forest);
    line-height: 1.25;
    margin: 0 0 10px;
    transition: opacity 0.25s ease;
  }

  .side-modal__desc {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0 0 20px;
    transition: opacity 0.25s ease;
  }

  .side-modal__field {
    margin-bottom: 12px;
  }

  .side-modal__input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(26, 60, 52, 0.18);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--forest);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .side-modal__input:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(196, 120, 74, 0.15);
  }

  .side-modal__consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 16px 0 18px;
    font-family: var(--font-sans);
    font-size: 11px;
    line-height: 1.45;
    color: var(--muted);
  }

  .side-modal__consent input {
    margin-top: 3px;
    flex-shrink: 0;
  }

  .side-modal__consent a {
    color: var(--terracotta);
    text-decoration: underline;
  }

  .side-modal__submit {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 50%, var(--terracotta) 100%);
    background-size: 200% 200%;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-position 0.35s ease, transform 0.2s ease;
  }

  .side-modal__submit:hover {
    background-position: 100% 0;
    transform: translateY(-1px);
  }

  body.side-modal-open {
    overflow: hidden;
  }
}

/* Mobile nav overlay */
.site-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.site-mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.site-mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: var(--white);
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}

.site-mobile-nav.open .site-mobile-nav__panel {
  transform: translateX(0);
}

.site-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--cream-dark);
}

.site-mobile-nav__head img {
  height: 40px;
  border-radius: 6px;
}

.site-mobile-nav__close {
  background: var(--cream);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.site-mobile-nav__links {
  flex: 1;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
}

.site-mobile-nav__links a {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--forest);
  padding: 14px 0;
  border-bottom: 1px solid var(--cream);
}

.site-mobile-nav__links a:hover {
  color: var(--terracotta);
}

.site-mobile-nav__footer {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--cream-dark);
}

.site-mobile-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--forest);
  color: var(--white);
}

.site-mobile-nav__btn--wa {
  background: #25D366;
}

.site-mobile-nav__btn:hover {
  opacity: 0.9;
  color: var(--white);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .site-header__nav {
    display: none;
  }

  .site-burger {
    display: flex;
  }

  /* Solid bar on tablet/mobile — always visible over hero */
  .site-header__bar {
    background: var(--white);
    border-color: var(--cream-dark);
    box-shadow: 0 4px 24px rgba(26, 60, 52, 0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header.sticky .site-header__bar {
    box-shadow: 0 6px 28px rgba(26, 60, 52, 0.14);
  }

  .site-burger span {
    background: var(--forest);
  }

  .site-header__brand-divider {
    background: var(--cream-dark);
  }

  .site-header__brand img.logo-sub {
    filter: none;
    opacity: 1;
  }

  .site-header__call span {
    display: none;
  }

  .site-header__call {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    background: var(--forest);
    flex-shrink: 0;
  }

  .site-header__call:hover {
    background: var(--forest-light);
  }

  .site-header__actions {
    gap: 8px;
  }

  .site-header__inner {
    gap: 10px;
  }

  .site-header__brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
    max-width: calc(100% - 104px);
  }

  .site-header__brand img.logo-main {
    height: 34px;
    width: auto;
    max-width: none;
    object-fit: contain;
  }

  .site-header__brand img.logo-sub {
    height: 26px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
  }

  .site-header__brand-divider {
    height: 22px;
    flex-shrink: 0;
  }

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

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

  .pro-row--flip .pro-row__visual { order: 0; }
  .pro-row--flip .pro-row__content { order: 0; }

  .pro-row__visual {
    min-height: 280px;
    padding: 12px;
  }

  .pro-row__visual > a {
    inset: 12px;
  }

  .pro-row__visual > a::before {
    inset: 8px;
  }

  .pro-row__tag {
    top: 12px;
    left: 12px;
  }

  .pro-row__price-float {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .walk-section__body {
    padding: 80px 20px;
  }

  .walk-section__highlights {
    gap: 8px;
  }

  .walk-section__highlights span {
    font-size: 10px;
    padding: 8px 12px;
  }

  .site-footer__top--minimal {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 24px 0;
  }

  .site-footer__minimal-rera {
    text-align: left;
  }

  .site-about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-about__accent {
    right: 13px;
    bottom: -29px;
  }
  .site-about__accent {
  
    padding: 13px 16px;
  }
}

@media (max-width: 768px) {
  .site-hero__stats{
    display: none;
 }
  .site-header {
    padding: 10px 14px;
    padding-top: max(10px, env(safe-area-inset-top));
  }

  .site-header.sticky {
    padding: 8px 14px;
    padding-top: max(8px, env(safe-area-inset-top));
  }

  .site-header__bar {
    padding: 6px 12px;
    border-radius: 14px;
  }

  .site-header__brand {
    gap: 6px;
    max-width: calc(100% - 100px);
  }

  .site-header__brand img.logo-main {
    height: 30px;
  }

  .site-header__brand img.logo-sub {
    height: 24px;
  }

  .site-header__brand-divider {
    height: 20px;
  }

  .site-header__wa {
    display: none;
  }

  .site-hero__content {
    padding: 120px 20px 60px;
  }

  .site-hero__stats {
    gap: 24px;
  }

  .site-hero__dots {
    right: 20px;
    bottom: 24px;
  }

  .site-section {
    padding: 64px 20px;
  }

  .pro-section__intro {
    padding: 64px 20px 32px;
  }

  .pro-list {
    padding: 0 20px;
  }

  .pro-row__content {
    padding: 32px 24px;
  }

  .pro-row__price-float {
    padding: 18px 22px;
  }

  .pro-row__price-float strong {
    font-size: 2rem;
  }

  .pro-row__head {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .pro-row__specs {
    grid-template-columns: 1fr;
  }

  .pro-row__actions {
    grid-template-columns: 1fr;
  }

  .walk-section {
    min-height: 480px;
  }

  .contact-section {
    padding: 64px 20px;
  }

  .contact-section__card {
    padding: 32px 24px;
  }

  .contact-section__channels {
    flex-direction: column;
    width: 100%;
  }

  .contact-channel {
    width: 100%;
  }

  .site-footer__top--minimal {
    gap: 16px;
  }

  .site-footer__minimal-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .site-footer__bar {
    flex-direction: column;
    text-align: center;
  }

  .site-about__features {
    grid-template-columns: 1fr;
  }

  .banner-form {
    width: 100%;
    right: -100%;
  }

  .enquire-pill {
    right: 16px;
    bottom: 16px;
    padding: 12px 20px;
    font-size: 11px;
  }
}

/* Small phones (sm / xs) */
@media (max-width: 576px) {
  .site-header__brand {
    gap: 5px;
    max-width: calc(100% - 96px);
  }

  .site-header__brand img.logo-main {
    height: 28px;
  }

  .site-header__brand img.logo-sub {
    height: 22px;
  }

  .site-header__brand-divider {
    height: 18px;
  }

  .site-hero__content {
    padding-top: 108px;
  }

  .sub-hero {
    padding-top: 108px;
  }
}

@media (max-width: 400px) {
  .site-header {
    padding: 8px 10px;
    padding-top: max(8px, env(safe-area-inset-top));
  }

  .site-header__bar {
    padding: 5px 8px;
  }

  .site-header__inner {
    gap: 5px;
    min-height: 38px;
  }

  .site-header__brand {
    gap: 4px;
    max-width: calc(100% - 88px);
  }

  .site-header__brand img.logo-main {
    height: 26px;
    filter: none;
  }

  .site-header__brand img.logo-sub {
    height: 20px;
  }

  .site-header__brand-divider {
    height: 16px;
  }

  .site-header__call,
  .site-burger {
    width: 36px;
    height: 36px;
  }

  .site-burger span {
    width: 18px;
  }
}

/* ─── Sub Pages (Thank You, Privacy Policy) ─── */
body.site-sub {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.site-sub .site-sub-main {
  flex: 1;
}

.sub-hero {
  padding: 140px 24px 72px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 55%, #1f4a40 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.sub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(196, 113, 74, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.sub-hero__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sub-hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}

.sub-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--white);
}

.sub-hero__desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
}

.sub-page {
  padding: 0 24px 80px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

.sub-page__card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 48px 40px;
  border: 1px solid var(--cream-dark);
}

.sub-page__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 28px;
  box-shadow: 0 12px 32px rgba(26, 60, 52, 0.25);
}

.sub-page__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--forest);
  text-align: center;
  margin-bottom: 16px;
}

.sub-page__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  text-align: center;
  margin-bottom: 32px;
}

.sub-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.sub-page__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.sub-page__btn--call {
  background: var(--forest);
  color: var(--white);
}

.sub-page__btn--call:hover {
  background: var(--forest-light);
  color: var(--white);
  transform: translateY(-2px);
}

.sub-page__btn--wa {
  background: #25D366;
  color: var(--white);
}

.sub-page__btn--wa:hover {
  background: #1fb855;
  color: var(--white);
  transform: translateY(-2px);
}

.sub-page__btn--outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--cream-dark);
}

.sub-page__btn--outline:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.sub-page__note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-dark);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.sub-page__note a {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: none;
}

.sub-page__note a:hover {
  color: var(--terracotta-hover);
}

/* Privacy policy */
.policy-page__card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px 44px;
  border: 1px solid var(--cream-dark);
}

.policy-section {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-dark);
}

.policy-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.policy-section h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
  text-align: left;
}

.policy-section p,
.policy-section li {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-body);
}

.policy-section ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.policy-section li {
  margin-bottom: 6px;
}

.policy-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 18px;
  background: var(--cream);
  border-radius: 8px;
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.policy-contact:hover {
  background: var(--forest);
  color: var(--white);
}

@media (max-width: 768px) {
  .sub-hero {
    padding: 120px 20px 56px;
  }

  .sub-page {
    padding: 0 20px 64px;
    margin-top: -28px;
  }

  .sub-page__card,
  .policy-page__card {
    padding: 32px 24px;
  }

  .sub-page__actions {
    flex-direction: column;
    width: 100%;
  }

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

/* Custom validation alert */
.site-alert {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  visibility: hidden;
}

.site-alert.is-open {
  pointer-events: auto;
  visibility: visible;
}

.site-alert__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 60, 52, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-alert.is-open .site-alert__backdrop {
  opacity: 1;
}

.site-alert__box {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 36px 32px 28px;
  background: var(--cream);
  border-radius: 16px;
  text-align: center;
  box-shadow:
    0 24px 64px rgba(26, 60, 52, 0.22),
    0 0 0 1px rgba(26, 60, 52, 0.08);
  transform: scale(0.92) translateY(12px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.site-alert.is-open .site-alert__box {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.site-alert__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196, 113, 74, 0.18) 0%, rgba(196, 113, 74, 0.08) 100%);
  color: var(--terracotta);
  font-size: 26px;
}

.site-alert__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 10px;
  line-height: 1.3;
}

.site-alert__message {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 24px;
}

.site-alert__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 55%, var(--terracotta) 100%);
  background-size: 200% 200%;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-position 0.35s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(26, 60, 52, 0.2);
}

.site-alert__btn:hover {
  background-position: 100% 0;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 60, 52, 0.28);
}

body.site-alert-open {
  overflow: hidden;
}
