/* ============================================================
   SPRING DALE FARM — Stylesheet
   Aesthetic direction: warm earth + botanical green, editorial
   typography (Fraunces display + DM Sans body), sun-soaked palette,
   organic curves, bold scale.
   ============================================================ */

:root {
  --green-deep:    #1f5128;
  --green-mid:     #3a7a3e;
  --green-bright:  #7cc04a;
  --green-soft:    #a8d977;
  --cream:         #fffbe9;
  --cream-warm:    #fff7c2;
  --sand:          #ffd58a;
  --terracotta:    #e07a5f;
  --terracotta-dk: #c45a3f;
  --sun:           #ffe089;
  --earth:         #3a2418;
  --earth-soft:    #7c4a2a;
  --ink:           #1a2a1f;
  --ink-soft:      #4a5a4f;

  --display: 'Fraunces', 'Times New Roman', serif;
  --body:    'DM Sans', system-ui, sans-serif;
  --mono:    'DM Mono', 'Courier New', monospace;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(31, 81, 40, 0.08);
  --shadow:    0 8px 32px rgba(31, 81, 40, 0.12);
  --shadow-lg: 0 24px 64px rgba(31, 81, 40, 0.18);

  --max-width: 1280px;
}

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

html {
  scroll-padding-top: 96px;
}
@media (max-width: 720px) {
  html { scroll-padding-top: 76px; }
}

/* ============================================================
   ANCHOR SCROLL OFFSET
   Fixed nav is ~90px tall on desktop, ~72px on mobile.
   scroll-margin-top makes anchor links land below the nav with breathing room.
   ============================================================ */
section {
  scroll-margin-top: 96px;
}
@media (max-width: 720px) {
  section { scroll-margin-top: 76px; }
}

/* Honour reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fffbe9;
  border-bottom: 1px solid rgba(31, 81, 40, 0.08);
  transition: padding 0.3s ease;
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--green-deep);
  letter-spacing: -0.01em;
  display: block;
}
.nav__by {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--green-deep); }
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--green-bright);
  transition: width 0.3s ease;
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  background: var(--green-deep);
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: all 0.2s ease;
}
.nav__cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.nav__menu {
  display: none;
  background: none;
  border: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav__menu span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green-deep);
  transition: all 0.3s ease;
}

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__menu { display: flex; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(31, 81, 40, 0.08);
    box-shadow: var(--shadow);
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 32px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__sky {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__grain {
  display: none;
}
.hero__sun { transform-origin: center; }
.hero__sprout { animation: sproutGrow 1.6s 0.4s ease-out backwards; transform-origin: bottom center; }
@keyframes sproutGrow {
  from { transform: translate(720px, 800px) scaleY(0); }
  to   { transform: translate(720px, 800px) scaleY(1); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 251, 233, 0.85);
  border: 1.5px solid var(--green-deep);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  animation: heroFade 0.8s ease-out;
}
.hero__pill-dot {
  width: 8px; height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
}

.hero__title {
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--green-deep);
  margin-bottom: 32px;
  font-size: clamp(2.6rem, 8vw, 6.5rem);
}
.hero__title-line1, .hero__title-line2, .hero__title-line3 {
  display: block;
  animation: heroFade 1s ease-out backwards;
}
.hero__title-line1 { animation-delay: 0.1s; }
.hero__title-line2 { animation-delay: 0.25s; padding-left: 0.8em; }
.hero__title-line3 { animation-delay: 0.4s; padding-left: 1.6em; }
.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta);
}
.hero__title-emph {
  display: inline-block;
  background: linear-gradient(120deg, var(--terracotta) 0%, var(--green-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

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

.hero__lead {
  max-width: 640px;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink);
  margin-bottom: 40px;
  line-height: 1.6;
  animation: heroFade 1s 0.6s ease-out backwards;
}
.hero__lead strong { color: var(--green-deep); font-weight: 700; }

.hero__price {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: rgba(255, 251, 233, 0.96);
  border: 2px solid var(--green-deep);
  border-radius: var(--radius);
  margin-bottom: 36px;
  max-width: 640px;
  box-shadow: var(--shadow);
  animation: heroFade 1s 0.8s ease-out backwards;
}
.hero__price-old { display: flex; flex-direction: column; }
.hero__price-strike {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-color: var(--terracotta);
  text-decoration-thickness: 3px;
  line-height: 1;
}
.hero__price-old-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero__price-arrow {
  font-size: 2rem;
  color: var(--terracotta);
  font-weight: 300;
}
.hero__price-new {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__price-currency {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-deep);
  vertical-align: super;
}
.hero__price-amount {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero__price-unit {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--ink);
  margin-left: 6px;
}
.hero__price-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--terracotta);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 6px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: heroFade 1s 1s ease-out backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn--primary {
  background: var(--green-deep);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--ghost {
  background: transparent;
  border-color: var(--green-deep);
  color: var(--green-deep);
}
.btn--ghost:hover {
  background: var(--green-deep);
  color: var(--cream);
}
.btn--small { padding: 12px 22px; font-size: 0.92rem; }
.btn--full { width: 100%; justify-content: center; }

.hero__stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  animation: heroFade 1s 1.2s ease-out backwards;
}
.hero__stat strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--green-deep);
  display: block;
  line-height: 1;
}
.hero__stat span {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}
.hero__divider {
  width: 1px;
  height: 36px;
  background: var(--green-deep);
  opacity: 0.25;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--green-deep);
  border-radius: 14px;
  z-index: 2;
  display: block;
}
.hero__scroll span {
  display: block;
  width: 4px; height: 8px;
  background: var(--green-deep);
  border-radius: 2px;
  margin: 6px auto;
}

@media (max-width: 720px) {
  .hero__divider { display: none; }
  .hero__stats { gap: 24px; }
  .hero__price { padding: 18px 22px; gap: 14px; }
  .hero__price-arrow { font-size: 1.4rem; }
  .hero__price-strike { font-size: 1.4rem; }
  .hero__price-currency { font-size: 1.4rem; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--green-deep);
  color: var(--cream);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 251, 233, 0.1);
  border-bottom: 1px solid rgba(255, 251, 233, 0.1);
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 80s linear infinite;
  will-change: transform;
  contain: layout style paint;
}
.marquee__track span {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 24px;
  color: var(--cream);
}
.marquee__track span:nth-child(even) {
  font-family: var(--display);
  color: var(--green-bright);
  font-style: normal;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section {
  padding: 100px 0;
  position: relative;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--terracotta);
}
.section-eyebrow--light { color: var(--green-bright); }
.section-eyebrow--light::before { background: var(--green-bright); }

.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--green-deep);
  margin-bottom: 24px;
  max-width: 920px;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta);
}
.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--green-bright); }

.section-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 56px;
  line-height: 1.6;
}
.section-sub--light { color: rgba(255, 251, 233, 0.85); }
.section-sub small { font-size: 0.78rem; }

/* ============================================================
   PROJECT
   ============================================================ */
.project { background: var(--cream); }

.project__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.lede {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 24px;
}
.lede strong { color: var(--green-deep); font-weight: 700; }

.project__copy p { margin-bottom: 20px; color: var(--ink-soft); }
.project__copy p strong { color: var(--green-deep); }

.project__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.chip {
  display: inline-block;
  padding: 8px 16px;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
}
.chip:nth-child(2) { background: var(--terracotta); }
.chip:nth-child(3) { background: var(--earth-soft); }
.chip:nth-child(4) { background: var(--green-mid); }
.chip:nth-child(5) { background: var(--ink); }

.project__numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.num-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.num-card--1 { background: var(--green-deep); color: var(--cream); }
.num-card--2 { background: var(--terracotta); color: var(--cream); }
.num-card--3 { background: var(--sand); color: var(--earth); }
.num-card--4 { background: var(--green-bright); color: var(--green-deep); }
.num-card__big {
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}
.num-card__sub { font-size: 0.92rem; line-height: 1.4; opacity: 0.95; }

@media (max-width: 880px) {
  .project__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities {
  background: var(--green-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.amenities::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(124, 192, 74, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(224, 122, 95, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  position: relative;
}

.amenity {
  background: rgba(255, 251, 233, 0.06);
  border: 1px solid rgba(255, 251, 233, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
}
.amenity:hover {
  background: rgba(255, 251, 233, 0.12);
  border-color: var(--green-bright);
  transform: translateY(-4px);
}
.amenity__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--green-bright);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.amenity__icon svg { width: 32px; height: 32px; }
.amenity h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--cream);
}
.amenity p {
  font-size: 0.95rem;
  color: rgba(255, 251, 233, 0.78);
  line-height: 1.55;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location { background: var(--cream-warm); }

.location__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.location__map {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 81, 40, 0.08);
}
.map-svg { width: 100%; height: auto; max-height: 700px; }
.map-pin { transition: transform 0.3s ease; }

.location__times-title {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 24px;
}
.time-list {
  list-style: none;
  margin-bottom: 32px;
}
.time-list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(31, 81, 40, 0.18);
  font-size: 1rem;
}
.time-list__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--terracotta);
  min-width: 90px;
}

.callout {
  background: var(--green-deep);
  color: var(--cream);
  padding: 24px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.55;
  border-left: 4px solid var(--green-bright);
}
.callout strong { color: var(--green-bright); }

@media (max-width: 880px) {
  .location__layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   LAYOUT PLAN
   ============================================================ */
.layout-section { background: var(--cream); }
.layout-tier-note {
  margin: 0 0 28px;
  padding: 0;
  max-width: 860px;
}
.layout-tier-note__inner {
  background: linear-gradient(135deg, rgba(224, 122, 95, 0.1) 0%, rgba(124, 192, 74, 0.08) 100%);
  border: 1px solid rgba(224, 122, 95, 0.25);
  border-radius: var(--radius);
  padding: 18px 22px 18px 70px;
  position: relative;
}
.layout-tier-note__pill {
  position: absolute;
  top: 18px;
  left: 22px;
  background: var(--terracotta);
  color: #fff;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.layout-tier-note p {
  margin: 0;
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.55;
}
.layout-tier-note p strong {
  color: var(--green-deep);
}
.layout-tier-note a {
  color: var(--terracotta-dk);
  text-decoration: underline;
  text-decoration-color: rgba(199, 79, 51, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.layout-tier-note a:hover {
  text-decoration-color: var(--terracotta-dk);
}
@media (max-width: 600px) {
  .layout-tier-note__inner {
    padding: 56px 18px 18px;
  }
  .layout-tier-note__pill {
    top: 14px;
    left: 18px;
  }
}

.layout-disclaimer {
  margin: -16px 0 32px;
  padding: 12px 16px;
  background: rgba(31, 81, 40, 0.05);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 760px;
}

.layout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.layout-grid__map {
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.layout-svg { width: 100%; height: auto; }

.plot { fill: #fffbe9; stroke: #1f5128; stroke-width: 1.5; transition: all 0.2s ease; cursor: pointer; }
.plot--available { fill: #7cc04a; }
.plot--available:hover { fill: #a8d977; }
.plot--sold { fill: #d4d4c4; opacity: 0.7; }
.plot-num {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  fill: var(--green-deep);
  text-anchor: middle;
  pointer-events: none;
}

.layout-legend {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.legend-item { display: flex; align-items: center; gap: 8px; }
.legend-swatch {
  width: 18px; height: 18px;
  border-radius: 3px;
  border: 1.5px solid var(--green-deep);
}
.legend-swatch--available { background: var(--green-bright); }
.legend-swatch--sold { background: #d4d4c4; opacity: 0.7; }
.legend-swatch--road { background: #e8d49a; opacity: 0.8; }

.layout-side { display: grid; gap: 14px; }
.layout-card {
  padding: 22px;
  background: var(--cream);
  border: 1.5px solid rgba(31, 81, 40, 0.12);
  border-radius: var(--radius);
}
.layout-card__icon { font-size: 1.8rem; margin-bottom: 10px; }
.layout-card h4 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.layout-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.layout-card--cta {
  background: var(--green-deep);
  border-color: var(--green-deep);
}
.layout-card--cta h4 { color: var(--cream); }
.layout-card--cta p { color: rgba(255, 251, 233, 0.85); margin-bottom: 14px; }

@media (max-width: 880px) {
  .layout-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CALCULATOR
   ============================================================ */
/* ============================================================
   COMPARABLES TABLE
   ============================================================ */
.comparables { background: var(--cream); padding: 80px 0; }
.comparables__table {
  display: grid;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  margin-top: 40px;
  border: 1px solid rgba(31, 81, 40, 0.08);
}
.comparables__row {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr 1.6fr;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(31, 81, 40, 0.08);
  align-items: center;
  font-size: 0.96rem;
}
.comparables__row:last-child { border-bottom: 0; }
.comparables__row--head {
  background: var(--green-deep);
  color: var(--cream);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.comparables__row--ours {
  background: linear-gradient(90deg, rgba(124, 192, 74, 0.15), rgba(255, 224, 137, 0.2));
  border-left: 4px solid var(--green-bright);
}
.comparables__price strong {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--green-deep);
}
.comparables__row--ours .comparables__price strong { color: var(--terracotta-dk); font-size: 1.8rem; }
.comparables__takeaway {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: var(--radius);
}
.comparables__takeaway p { margin: 0 0 10px; }
.comparables__takeaway p:last-child { margin: 0; opacity: 0.7; }
.comparables__takeaway strong { color: var(--sun); }
.comparables__disclaimer { font-size: 0.85rem; }

@media (max-width: 720px) {
  .comparables__row { grid-template-columns: 1fr; gap: 6px; padding: 16px 18px; }
  .comparables__row--head { display: none; }
  .comparables__row > div::before {
    display: block;
    font-family: var(--mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
    margin-bottom: 2px;
  }
  .comparables__row > div:nth-child(1)::before { content: "Project"; }
  .comparables__row > div:nth-child(2)::before { content: "Location"; }
  .comparables__row > div:nth-child(3)::before { content: "Price / sq.ft"; }
  .comparables__row > div:nth-child(4)::before { content: "Notes"; }
}

.calculator { background: var(--sand); }

.calc {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 40px;
  align-items: start;
  margin-top: 32px;
}

.calc__inputs {
  background: var(--cream);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 28px;
}
.calc__input label {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.calc__num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 12px;
}
.calc__num small {
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-left: 6px;
}
.calc__input input[type=range] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  background: linear-gradient(to right, var(--green-bright) 0%, var(--green-bright) var(--val, 50%), rgba(31, 81, 40, 0.15) var(--val, 50%), rgba(31, 81, 40, 0.15) 100%);
  border-radius: 100px;
  outline: none;
}
.calc__input input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--green-deep);
  border: 3px solid var(--cream);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.calc__input input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--green-deep);
  border: 3px solid var(--cream);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.calc__range-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

.calc__results {
  display: grid;
  gap: 20px;
}
.calc__chart {
  background: var(--cream);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.calc__chart svg { width: 100%; height: auto; }
.calc__legend {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--ink);
}
.legend-dot {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.legend-dot--land { background: var(--green-deep); }
.legend-dot--mf   { background: var(--terracotta); }

.calc__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.result-card {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1.5px solid transparent;
}
.result-card--land { border-color: var(--green-deep); }
.result-card--mf { border-color: var(--terracotta); }
.result-card--diff { background: var(--green-deep); color: var(--cream); }
.result-card__label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.result-card--diff .result-card__label { color: rgba(255, 251, 233, 0.7); }
.result-card__big {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.result-card--diff .result-card__big { color: var(--cream); font-size: 1.8rem; }
.result-card__big small {
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.result-card--diff .result-card__big small { color: rgba(255, 251, 233, 0.7); }
.result-card__delta {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--green-mid);
  font-weight: 600;
}
.result-card--mf .result-card__delta { color: var(--terracotta-dk); }
.result-card__sub { font-size: 0.85rem; line-height: 1.4; }

.calc__footnote {
  background: var(--green-deep);
  color: var(--cream);
  padding: 24px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.55;
}
.calc__footnote strong { color: var(--green-bright); }

@media (max-width: 980px) {
  .calc { grid-template-columns: 1fr; }
  .calc__cards { grid-template-columns: 1fr; }
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { background: var(--cream); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.benefit {
  background: var(--cream-warm);
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
  border: 1px solid rgba(31, 81, 40, 0.06);
  transition: all 0.3s ease;
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--green-deep);
}
.benefit:hover h3, .benefit:hover .benefit__num { color: var(--cream); }
.benefit:hover p { color: rgba(255, 251, 233, 0.85); }
.benefit:hover h3 em { color: var(--green-bright); }

.benefit__num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  transition: color 0.3s ease;
}
.benefit h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--green-deep);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.benefit h3 em {
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta);
  transition: color 0.3s ease;
}
.benefit p { color: var(--ink-soft); line-height: 1.55; transition: color 0.3s ease; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--green-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 192, 74, 0.15) 0%, transparent 70%);
}
.testimonials::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 122, 95, 0.1) 0%, transparent 70%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.testimonial {
  background: rgba(255, 251, 233, 0.05);
  border: 1px solid rgba(255, 251, 233, 0.1);
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s ease;
}
.testimonial:hover {
  background: rgba(255, 251, 233, 0.1);
  border-color: var(--green-bright);
  transform: translateY(-4px);
}
.testimonial__quote-mark {
  font-family: var(--display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--green-bright);
  position: absolute;
  top: 24px; right: 24px;
  opacity: 0.4;
}
.testimonial blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.testimonial blockquote strong { color: var(--green-bright); font-weight: 700; }
.testimonial blockquote em { font-style: italic; color: var(--sand); }

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--cream);
  flex-shrink: 0;
}
.testimonial figcaption strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
}
.testimonial figcaption span {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: rgba(255, 251, 233, 0.65);
}

.testimonials__disclaimer {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: rgba(255, 251, 233, 0.55);
  text-align: center;
  font-style: italic;
}

/* ============================================================
   WALKTHROUGH (video)
   ============================================================ */
.walkthrough { background: var(--cream-warm); }

.walkthrough__player {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--green-deep);
  background: var(--ink);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.walkthrough__player video {
  width: 100%;
  display: block;
}
.walkthrough__cta {
  text-align: center;
  margin-top: 32px;
}

/* ============================================================
   ABOUT AGAS
   ============================================================ */
/* ============================================================
   VILLA CONSTRUCTION SECTION
   ============================================================ */
.villa {
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.villa::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(124, 192, 74, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 12% 88%, rgba(224, 122, 95, 0.1) 0%, transparent 40%);
  pointer-events: none;
}
.villa .container { position: relative; z-index: 1; }

.villa__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 48px 0 56px;
}

.villa__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid rgba(31, 81, 40, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.villa__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.villa__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--green-mid) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  margin-bottom: 16px;
}
.villa__card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.villa__card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
}

.villa__pricing {
  margin-top: 56px;
  padding: 36px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 81, 40, 0.1);
  box-shadow: var(--shadow);
}
.villa__pricing > h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.villa__price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}

.villa__price-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 81, 40, 0.1);
}
.villa__price-card--plot {
  background: linear-gradient(180deg, rgba(124, 192, 74, 0.12) 0%, rgba(124, 192, 74, 0.04) 100%);
  border-left: 4px solid var(--green-bright);
}
.villa__price-card--villa {
  background: linear-gradient(180deg, rgba(224, 122, 95, 0.1) 0%, rgba(224, 122, 95, 0.03) 100%);
  border-left: 4px solid var(--terracotta);
}
.villa__price-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.villa__price-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.villa__price-card--villa .villa__price-num { color: var(--terracotta-dk); }
.villa__price-currency {
  font-size: 0.6em;
  vertical-align: 0.18em;
  margin-right: 0.05em;
}
.villa__price-num small {
  font-family: var(--body);
  font-size: 0.4em;
  font-weight: 500;
  color: var(--ink-soft);
  margin-left: 0.2em;
}
.villa__price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.villa__price-list li {
  font-size: 0.92rem;
  color: var(--ink);
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.5;
}
.villa__price-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--green-bright);
  font-weight: 700;
}
.villa__price-card--villa .villa__price-list li::before { color: var(--terracotta); }

.villa__pricing-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  background: rgba(31, 81, 40, 0.04);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.5;
}

.villa__cta {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 720px) {
  .villa__price-grid { grid-template-columns: 1fr; }
  .villa__pricing { padding: 24px 20px; }
  .villa__price-num { font-size: 2.2rem; }
}

.about-agas { background: var(--cream); }

.about-agas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-agas__projects { display: grid; gap: 14px; }
.proj {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 20px 24px;
  background: var(--cream-warm);
  border-radius: var(--radius);
  border-left: 4px solid var(--green-mid);
}
.proj--current {
  background: var(--green-deep);
  color: var(--cream);
  border-left-color: var(--terracotta);
}
.proj__year {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--terracotta);
  font-size: 1.1rem;
}
.proj--current .proj__year { color: var(--sand); }
.proj__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--green-deep);
}
.proj--current .proj__name { color: var(--cream); }
.proj__detail {
  grid-column: 2;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 4px;
}
.proj--current .proj__detail { color: rgba(255, 251, 233, 0.85); }
.proj__badge {
  display: inline-block;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

@media (max-width: 880px) {
  .about-agas__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(124, 192, 74, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(224, 122, 95, 0.08) 0%, transparent 50%);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.lead-form {
  background: var(--cream);
  color: var(--ink);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-row label .optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-style: italic;
}
.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.form-row--split > div { margin-bottom: 0; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(31, 81, 40, 0.18);
  border-radius: var(--radius-sm);
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  transition: all 0.2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green-deep);
  box-shadow: 0 0 0 4px rgba(31, 81, 40, 0.1);
}
.form-row input.invalid,
.form-row select.invalid {
  border-color: var(--terracotta);
}
.form-row textarea { resize: vertical; min-height: 80px; }

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 14px;
  line-height: 1.5;
}

.form-success {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--green-bright);
  color: var(--green-deep);
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.form-error {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--terracotta);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.form-error a { color: #fff; text-decoration: underline; }
#submitBtn:disabled { opacity: 0.7; cursor: wait; }

.contact__direct h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
}

.direct-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 251, 233, 0.05);
  border: 1px solid rgba(255, 251, 233, 0.12);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: all 0.25s ease;
}
.direct-card:hover {
  background: rgba(255, 251, 233, 0.1);
  border-color: var(--green-bright);
  transform: translateX(4px);
}
.direct-card--passive { cursor: default; }
.direct-card--passive:hover { transform: none; background: rgba(255, 251, 233, 0.05); border-color: rgba(255, 251, 233, 0.12); }
.direct-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-bright);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.direct-card__icon svg { width: 22px; height: 22px; }
.direct-card__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 251, 233, 0.6);
  margin-bottom: 4px;
}
.direct-card__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.4;
}

@media (max-width: 880px) {
  .contact__layout { grid-template-columns: 1fr; }
  .form-row--split { grid-template-columns: 1fr; }
  .lead-form { padding: 24px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream); }
.faq-list {
  margin-top: 32px;
  max-width: 920px;
}
.faq-list details {
  border-bottom: 1px solid rgba(31, 81, 40, 0.15);
  padding: 22px 0;
}
.faq-list summary {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
}
.faq-list summary:hover { color: var(--terracotta); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--terracotta);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p {
  margin-top: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer__brand strong {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  display: block;
}
.footer__brand small {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: rgba(255, 251, 233, 0.65);
  display: block;
  margin-top: 2px;
}
.footer__tag {
  font-family: var(--display);
  font-style: italic;
  color: rgba(255, 251, 233, 0.75);
  font-size: 1.05rem;
  line-height: 1.45;
}
.footer h4 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--green-bright);
}
.footer ul { list-style: none; }
.footer ul li {
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: rgba(255, 251, 233, 0.78);
  line-height: 1.5;
}
.footer ul a:hover { color: var(--green-bright); }
.footer__badge {
  display: inline-block;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 6px;
}

.footer__seo {
  border-top: 1px solid rgba(255, 251, 233, 0.1);
  border-bottom: 1px solid rgba(255, 251, 233, 0.1);
  padding: 24px 0;
  margin-bottom: 24px;
}
.footer__seo p {
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 1.7;
  color: rgba(255, 251, 233, 0.45);
}

.footer__base {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__base small {
  font-size: 0.8rem;
  color: rgba(255, 251, 233, 0.55);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s ease;
  animation: whatsappBounce 2s ease-in-out infinite;
}
.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}
@keyframes whatsappBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ============================================================
   SCROLL REVEAL — minimal, no layout shift
   Using only opacity to avoid transform-induced layout shifts
   that interfere with anchor scroll positioning.
   ============================================================ */
.reveal {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.reveal.in {
  opacity: 1;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
