:root {
  --ink: #14241c;
  --jungle: #1a3328;
  --jungle-deep: #0e1f18;
  --moss: #3d5c45;
  --palm: #4a7a58;
  --teak: #8b5e3c;
  --bamboo: #c4a574;
  --sand: #ebe4d6;
  --linen: #f5f0e6;
  --bone: #faf7f1;
  --indigo: #1e3a5f;
  --turquoise: #3d8f8f;
  --volcanic: #121816;
  --line: rgba(20, 36, 28, 0.12);
  --text: #24322c;
  --muted: rgba(36, 50, 44, 0.68);
  --on-dark: rgba(250, 247, 241, 0.94);
  --on-dark-muted: rgba(250, 247, 241, 0.62);
  --radius: 2px;
  --radius-media: 18px;
  --radius-media-lg: 28px;
  --radius-slider: 16px;
  --max: 1080px;
  --header-h: 72px;
  --wa: #1f9b57;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bone);
  overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquoise);
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: currentColor;
}

.section {
  padding: 64px 0;
  position: relative;
}

.section--dark {
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(61, 143, 143, 0.12), transparent 50%),
    linear-gradient(165deg, var(--jungle) 0%, var(--jungle-deep) 55%, var(--volcanic) 100%);
  color: var(--on-dark);
}

.section--dark h2,
.section--dark h3 {
  color: var(--bone);
}

.section--sand {
  background:
    linear-gradient(180deg, var(--linen) 0%, var(--sand) 100%);
}

.section--jungle-soft {
  background:
    radial-gradient(ellipse at top left, rgba(74, 122, 88, 0.1), transparent 45%),
    var(--bone);
}

.section-head {
  max-width: 36rem;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 5vw, 2.55rem);
  margin-top: 12px;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
}

.section--dark .section-head p {
  color: var(--on-dark-muted);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  gap: 8px;
  background: linear-gradient(to bottom, rgba(14, 31, 24, 0.75), transparent);
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(14, 31, 24, 0.94);
  backdrop-filter: blur(10px);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.brand-logo-link {
  display: inline-flex;
  flex-shrink: 0;
}

.project-nav {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-left: 1px solid rgba(250, 247, 241, 0.28);
  padding-left: 8px;
  min-width: 0;
}

.project-nav__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
  padding: 4px 8px;
  color: rgba(250, 247, 241, 0.55);
  border-radius: 2px;
  transition: color 0.2s ease, background 0.2s ease;
}

.project-nav__item + .project-nav__item {
  border-left: 1px solid rgba(250, 247, 241, 0.18);
}

.project-nav__item strong {
  font-family: "Fraunces", serif;
  font-size: 0.84rem;
  font-weight: 500;
  white-space: nowrap;
}

.project-nav__item span {
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.project-nav__item.is-active {
  color: var(--bone);
}

.project-nav__item:not(.is-active):hover {
  color: var(--bone);
  background: rgba(250, 247, 241, 0.08);
}

.brand-logo {
  height: 48px;
  width: auto;
  max-width: 78px;
  object-fit: contain;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(250, 247, 241, 0.28);
  border-radius: 999px;
  color: var(--bone);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lang-switch:hover {
  background: rgba(250, 247, 241, 0.08);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 10px 16px;
  border-radius: 999px;
}

.header-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Hero — full-bleed, brand first */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 32px) 0 56px;
  color: var(--on-dark);
  overflow: hidden;
  /* Mobile: bias left/center so the 4 houses stay in frame (path sits on the right) */
  background:
    linear-gradient(180deg, rgba(8, 20, 16, 0.2) 0%, rgba(8, 20, 16, 0.45) 42%, rgba(8, 20, 16, 0.92) 100%),
    url("../assets/images/hero.jpg") 28% 40% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 70% 20%, rgba(61, 143, 143, 0.18), transparent 55%);
  pointer-events: none;
  animation: heroGlow 12s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from { opacity: 0.55; }
  to { opacity: 1; }
}

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

.hero-brand {
  font-family: "Fraunces", serif;
  font-size: clamp(2.8rem, 11vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--bone);
  max-width: 10ch;
  margin: 10px 0 16px;
  animation: heroRise 0.9s ease both;
}

.hero-brand em {
  font-style: italic;
  color: var(--bamboo);
}

.hero h1 {
  color: var(--on-dark);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.05rem, 3.2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.45;
  max-width: 28rem;
  margin-bottom: 14px;
  animation: heroRise 0.9s 0.12s ease both;
}

.hero-lede {
  max-width: 32rem;
  color: var(--on-dark-muted);
  font-size: 0.98rem;
  margin-bottom: 26px;
  animation: heroRise 0.9s 0.22s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  animation: heroRise 0.9s 0.32s ease both;
}

.hero-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--on-dark-muted);
  animation: heroRise 0.9s 0.4s ease both;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn--whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(250, 247, 241, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--jungle);
  border-color: rgba(26, 51, 40, 0.28);
}

.btn--outline:hover {
  background: rgba(26, 51, 40, 0.06);
}

.section--dark .btn--outline {
  color: var(--bone);
  border-color: rgba(250, 247, 241, 0.35);
}

.section--dark .btn--outline:hover {
  background: rgba(250, 247, 241, 0.08);
}

.section-cta {
  margin-top: 28px;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Concept split */
.concept-grid {
  display: grid;
  gap: 28px;
}

.concept-copy p {
  color: var(--muted);
  margin-top: 14px;
  max-width: 36rem;
}

.concept-points {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.concept-point strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--ink);
}

.concept-point p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Concept obra slider */
.obra-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: min(72vh, 640px);
  overflow: hidden;
  background: var(--jungle-deep);
  isolation: isolate;
  border-radius: var(--radius-slider);
  border: 1px solid rgba(20, 36, 28, 0.08);
}

.obra-slider__viewport {
  position: absolute;
  inset: 0;
}

.obra-slider__track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  touch-action: pan-y;
}

.obra-slider__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
}

.obra-slider__slide img,
.obra-slider__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--jungle-deep);
}

.obra-slider__slide video {
  pointer-events: none;
}

.obra-slider__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 31, 24, 0.45) 0%, transparent 38%),
    linear-gradient(0deg, rgba(14, 31, 24, 0.35) 0%, transparent 28%);
  pointer-events: none;
}

.obra-slider__date {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: rgba(14, 31, 24, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(250, 247, 241, 0.18);
  border-radius: 12px;
  color: var(--bone);
  line-height: 1.2;
}

.obra-slider__date time {
  font-family: "Fraunces", serif;
  font-size: clamp(1.05rem, 3.2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.obra-slider__date span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.72);
  font-weight: 600;
}

.obra-slider__nav {
  position: absolute;
  inset: auto 12px 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.obra-slider__btn {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(250, 247, 241, 0.28);
  border-radius: 50%;
  background: rgba(14, 31, 24, 0.45);
  backdrop-filter: blur(8px);
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.obra-slider__btn:hover {
  background: rgba(14, 31, 24, 0.72);
  transform: scale(1.04);
}

.obra-slider__btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.obra-slider__dots {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
}

.obra-slider__dot {
  width: 7px;
  height: 7px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(250, 247, 241, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.obra-slider__dot.is-active {
  background: var(--bone);
  transform: scale(1.2);
}

.obra-slider__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  height: 2px;
  background: rgba(250, 247, 241, 0.12);
}

.obra-slider__progress > i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--turquoise);
  transform-origin: left center;
}

.obra-slider.is-paused .obra-slider__progress > i {
  animation-play-state: paused;
}

@keyframes obraProgress {
  from { width: 0; }
  to { width: 100%; }
}

@media (min-width: 900px) {
  .obra-slider {
    aspect-ratio: 4 / 5;
    max-height: none;
    min-height: 520px;
  }

  .obra-slider__date {
    top: 20px;
    left: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .obra-slider__track {
    transition: none;
  }

  .obra-slider__progress > i {
    animation: none !important;
    width: 100%;
  }
}

/* Architecture features — list, not cards */
.arch-list {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.arch-list li {
  display: grid;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.arch-list .n {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--turquoise);
  font-weight: 600;
}

.arch-list h3 {
  font-size: 1.25rem;
}

.arch-list p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 40rem;
}

.arch-visual {
  margin-top: 32px;
  overflow: hidden;
  /* Soft sanctuary shape — stronger curve on top */
  border-radius: var(--radius-media-lg) var(--radius-media-lg) 16px 16px;
  border: 1px solid var(--line);
  background: var(--linen);
}

.arch-visual img {
  width: 100%;
  max-height: min(72vh, 560px);
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Materials — horizontal material story */
.materials {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.material {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.swatch {
  width: 72px;
  height: 72px;
  border-radius: 14px;
}

.swatch--teak { background: linear-gradient(145deg, #6b4428, #a07245); }
.swatch--bamboo { background: linear-gradient(145deg, #9a7a4a, #d2b484); }
.swatch--thatch { background: linear-gradient(145deg, #8a7a5e, #c4b896); }
.swatch--stone { background: linear-gradient(145deg, #5a6a62, #8fa098); }
.swatch--linen { background: linear-gradient(145deg, #d8d0c0, #f0ebe2); }

.material h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.material p {
  color: var(--muted);
  font-size: 0.9rem;
}

.material .use {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 600;
}

/* Lifestyle */
.life-grid {
  display: grid;
  gap: 28px;
}

.life-visual {
  overflow: hidden;
  border-radius: var(--radius-media);
  border: 1px solid rgba(250, 247, 241, 0.14);
}

.life-visual img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

.life-items {
  display: grid;
  gap: 22px;
}

.life-item h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--bone);
}

.life-item p {
  color: var(--on-dark-muted);
  font-size: 0.95rem;
}

/* Landscape band */
.landscape-band {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 48px 0;
  color: var(--on-dark);
  background:
    linear-gradient(180deg, rgba(14, 31, 24, 0.35) 0%, rgba(14, 31, 24, 0.88) 100%),
    url("../assets/images/master-render.jpg") center / cover no-repeat;
}

.landscape-band h2 {
  color: var(--bone);
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  max-width: 16ch;
  margin: 10px 0 12px;
}

.landscape-band p {
  max-width: 34rem;
  color: var(--on-dark-muted);
}

.sense-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.sense-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--on-dark);
}

.sense-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 8px;
  flex: 0 0 auto;
  background: var(--turquoise);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* Project / 4 houses */
.houses {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.house {
  background: var(--bone);
  padding: 22px 20px;
}

.house .label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turquoise);
  font-weight: 600;
  margin-bottom: 8px;
}

.house h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.house p {
  color: var(--muted);
  font-size: 0.9rem;
}

.plan-feature {
  margin-top: 32px;
}

.plan-feature img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background: #fff;
  display: block;
}

.plan-feature figcaption {
  margin-top: 12px;
  font-size: 0.86rem;
  color: var(--muted);
}

/* Floor plans */
.plans {
  display: grid;
  gap: 28px;
}

.plan-block figure {
  margin: 0;
}

.plan-block img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background: #fff;
  display: block;
}

.plan-block figcaption {
  margin-top: 12px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}

.dims {
  list-style: none;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.dims li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}

.dims b {
  color: var(--ink);
  font-weight: 600;
}

/* Investment */
.numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(250, 247, 241, 0.14);
  border: 1px solid rgba(250, 247, 241, 0.14);
  margin-bottom: 36px;
}

.number {
  background: rgba(14, 31, 24, 0.55);
  padding: 24px 18px;
}

.number .n {
  font-family: "Fraunces", serif;
  font-size: clamp(1.55rem, 4vw, 1.9rem);
  color: var(--bamboo);
}

.number .l {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--on-dark-muted);
}

.table-wrap {
  overflow-x: auto;
  margin-bottom: 32px;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.9rem;
}

th,
td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(250, 247, 241, 0.12);
}

th {
  color: var(--on-dark-muted);
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

td {
  color: var(--on-dark);
}

td.hl {
  color: var(--bamboo);
  font-weight: 600;
}

.note {
  font-size: 0.8rem;
  color: var(--on-dark-muted);
  margin-top: 12px;
  margin-bottom: 32px;
}

.avail-line {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--bamboo);
}

.offer-cards {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.offer-card {
  border: 1px solid rgba(250, 247, 241, 0.16);
  background: rgba(250, 247, 241, 0.04);
  padding: 22px 18px;
  border-radius: var(--radius);
}

.offer-card__tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bamboo);
  font-weight: 600;
  margin-bottom: 8px;
}

.offer-card h3 {
  color: var(--bone);
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.offer-card__unit {
  display: block;
  margin-top: 4px;
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.offer-card__land {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--bamboo);
}

.offer-card__price {
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  color: var(--bamboo);
  margin-bottom: 14px;
}

.offer-card__price span {
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  color: var(--on-dark-muted);
}

.offer-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.offer-card li {
  position: relative;
  padding-left: 14px;
  font-size: 0.9rem;
  color: var(--on-dark-muted);
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bamboo);
}

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

.table-wrap--desktop {
  display: none;
}

.panel-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--on-dark-muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cta-row--center {
  justify-content: center;
}

.split {
  display: grid;
  gap: 16px;
}

.panel {
  border: 1px solid rgba(250, 247, 241, 0.14);
  padding: 24px 20px;
  background: rgba(250, 247, 241, 0.03);
}

.panel h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.panel p {
  color: var(--on-dark-muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.panel ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.panel li {
  position: relative;
  padding-left: 16px;
  font-size: 0.92rem;
  color: var(--on-dark);
}

.panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--turquoise);
}

.fee {
  margin-top: 18px;
  display: inline-block;
  font-size: 0.82rem;
  color: var(--on-dark-muted);
  border-top: 1px solid rgba(250, 247, 241, 0.14);
  padding-top: 12px;
}

.fee b {
  color: var(--bamboo);
}

@media (min-width: 640px) {
  .numbers {
    grid-template-columns: repeat(4, 1fr);
  }

  .offer-cards {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .table-wrap--desktop {
    display: block;
    margin-bottom: 8px;
  }

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

  .panel {
    padding: 26px 24px;
  }
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  color: var(--ink);
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  font-family: "Sora", sans-serif;
  font-weight: 500;
  color: var(--turquoise);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 0 18px;
  color: var(--muted);
  max-width: 40rem;
}

/* CTA */
.cta {
  padding: 72px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(61, 143, 143, 0.16), transparent 55%),
    linear-gradient(180deg, var(--jungle) 0%, var(--volcanic) 100%);
  color: var(--on-dark);
}

.cta .eyebrow {
  color: var(--bamboo);
}

.cta .eyebrow::before {
  background: currentColor;
}

.cta h2 {
  color: var(--bone);
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  margin: 12px auto 14px;
  max-width: 16ch;
}

.cta p {
  max-width: 32rem;
  margin: 0 auto 28px;
  color: var(--on-dark-muted);
}

.cta .cta-row {
  margin-top: 0;
  margin-bottom: 8px;
}

.cta .disclaimer {
  margin-top: 22px;
  font-size: 0.78rem;
  color: rgba(250, 247, 241, 0.45);
  max-width: 28rem;
}

/* Footer */
.site-footer {
  padding: 28px 0;
  background: var(--volcanic);
  color: rgba(250, 247, 241, 0.55);
  font-size: 0.84rem;
}

.foot-grid {
  display: grid;
  gap: 12px;
}

.foot-grid a:hover {
  color: var(--bone);
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(14, 31, 24, 0.28);
  transition: transform 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.05);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Tablet+ */
@media (min-width: 640px) {
  .wrap {
    width: min(var(--max), calc(100% - 48px));
  }

  .site-header {
    padding: 0 24px;
    --header-h: 84px;
    height: var(--header-h);
  }

  :root {
    --header-h: 84px;
  }

  .header-brand {
    gap: 10px;
  }

  .brand-logo {
    height: 64px;
    max-width: 104px;
  }

  .project-nav {
    padding-left: 10px;
  }

  .project-nav__item strong {
    font-size: 1.05rem;
  }

  .project-nav__item {
    padding: 4px 14px;
  }

  .project-nav__item span {
    font-size: 0.58rem;
  }

  .header-cta {
    display: inline-flex;
  }

  .section {
    padding: 88px 0;
  }

  .hero {
    padding: calc(var(--header-h) + 48px) 0 72px;
    background-position:
      0 0,
      42% 45%;
  }

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

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

  .materials {
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
  }

  .foot-grid {
    grid-template-columns: 1.2fr 1fr auto;
    align-items: start;
  }
}

@media (min-width: 900px) {
  .concept-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
  }

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

  .arch-visual {
    margin-top: 0;
    align-self: stretch;
  }

  .arch-visual img {
    max-height: none;
    height: 100%;
    min-height: 480px;
  }

  .life-visual img {
    max-height: 420px;
  }

  .life-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: center;
  }

  .life-items {
    gap: 28px;
  }

  .landscape-band {
    min-height: 420px;
    padding: 72px 0;
  }

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

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