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

:root {
  --bg:            #f5f0e8;
  --bg-alt:        #eee8d8;
  --green-dark:    #2d4a2d;
  --green-mid:     #3d5e3d;
  --green-light:   #5a7a5a;
  --text-on-green: #e8d8b8;
  --text-primary:  #1a2e1a;
  --text-secondary:#4a6a4a;
  --border:        #d4c9b0;
  --accent:        #2d4a2d;
  --font:          -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h:         64px;
  --radius:        4px;
  --transition:    0.25s ease;
}

html { scroll-behavior: auto; } /* Lenis handles smooth scroll */

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }

/* Typography scale */
.overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: opacity var(--transition), transform var(--transition);
  border: 2px solid transparent;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn-primary {
  background: var(--green-dark);
  color: var(--text-on-green);
  border-color: var(--green-dark);
}
.btn-secondary {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-on-green {
  background: var(--text-on-green);
  color: var(--green-dark);
  border-color: var(--text-on-green);
}
.btn-outline-on-green {
  background: transparent;
  color: var(--text-on-green);
  border-color: var(--text-on-green);
}
.btn-wa {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}
.btn-wa:hover { background: #1fb955; border-color: #1fb955; opacity: 1; }
.btn-tg {
  background: #229ed9;
  color: #fff;
  border-color: #229ed9;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-tg:hover { background: #1a8bbf; border-color: #1a8bbf; opacity: 1; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--green-dark);
  z-index: 100;
  transition: height var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: #0d2418;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
  border-bottom: 1px solid rgba(232,216,184,0.12);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--text-on-green);
}
.nav__logo-icon {
  display: block;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
  filter: invert(1) hue-rotate(80deg) saturate(0.5) brightness(0.93);
  transition: transform var(--transition);
}
.nav__logo:hover .nav__logo-icon { transform: scale(1.08); }
.nav__logo-text {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
}
.nav__logo-tech { font-weight: 400; opacity: 0.75; }

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.footer__logo-icon {
  display: block;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  filter: invert(1) hue-rotate(80deg) saturate(0.5) brightness(0.93);
}
.footer__logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-on-green);
  line-height: 1;
}
.footer__logo-tech { font-weight: 400; opacity: 0.75; }

.nav__links {
  display: flex;
  gap: 32px;
}
.nav__links a {
  color: var(--text-on-green);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.nav__links a:hover { opacity: 1; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(232,216,184,0.25);
  color: var(--text-on-green);
  padding: 4px 9px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  opacity: 0.7;
  user-select: none;
}
.nav__lang::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #79c879;
  box-shadow: 0 0 6px rgba(121,200,121,0.6);
}

.nav__wa {
  padding: 8px 18px;
  font-size: 13px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-on-green);
  border-radius: 2px;
}

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__overlay.open { display: flex; }
.nav__overlay-close {
  position: absolute;
  top: 20px; right: 24px;
  background: transparent;
  border: none;
  color: var(--text-on-green);
  font-size: 28px;
}
.nav__overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.nav__overlay-links a {
  color: var(--text-on-green);
  font-size: 24px;
  font-weight: 700;
}

.nav__burger:focus-visible { outline: 2px solid var(--text-on-green); outline-offset: 2px; }

@media (max-width: 767px) {
  .nav__links { display: none; }
  .nav__wa { display: none; }
  .nav__burger { display: flex; }
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  margin-top: var(--nav-h);
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px 24px;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}
.hero__left::after {
  /* subtle tree silhouettes in bottom corner */
  content: '';
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 200px;
  height: 160px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 160' fill='none' stroke='%232d4a2d' stroke-opacity='0.08' stroke-width='1.5'><path d='M40 140 L40 100 M30 110 L40 95 L50 110 M25 120 L40 100 L55 120 M20 135 L40 110 L60 135'/><path d='M100 140 L100 80 M85 95 L100 75 L115 95 M78 110 L100 80 L122 110 M70 130 L100 90 L130 130'/><path d='M160 140 L160 90 M148 100 L160 85 L172 100 M140 115 L160 90 L180 115 M132 135 L160 100 L188 135'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}
.hero__left > * { position: relative; z-index: 1; }
.hero__left .overline { margin-bottom: 16px; }

.hero__h1 {
  color: var(--text-primary);
  margin-bottom: 14px;
}

.hero__sub-line {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  max-width: 540px;
}

.hero__sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.55;
}

.hero__ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero__ctas .btn { opacity: 1; width: 100%; justify-content: flex-start; min-width: 0; }
.hero__ctas .btn svg { flex-shrink: 0; width: 18px; }

.hero__right {
  overflow: hidden;
  position: relative;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}
.hero__right-overlay {
  display: none;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--green-dark);
  border-top: none;
  border-bottom: none;
  padding: 28px 0;
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.trust-strip__item {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-on-green);
  opacity: 0.9;
  letter-spacing: 0.3px;
  padding: 0 16px;
  border-right: 1px solid rgba(232,216,184,0.18);
}
.trust-strip__item:last-child { border-right: none; }
@media (max-width: 767px) {
  .trust-strip__item:nth-child(2) { border-right: none; }
}

/* Hero responsive */
@media (max-width: 1199px) {
  .hero__left { padding: 60px 40px 60px 0; }
}
@media (max-width: 767px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__right { height: 260px; order: -1; }
  .hero__left { padding: 40px 0; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
}

/* ── WHY US ── */
.why-us { background: var(--bg); }

.why-us__heading {
  text-align: center;
  margin-bottom: 56px;
  color: var(--text-primary);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-us__card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-us__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(45,74,45,0.12);
}

.why-us__icon {
  width: 52px;
  height: 52px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--text-on-green);
}
.why-us__icon svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.why-us__card h3 {
  color: var(--text-primary);
  margin-bottom: 10px;
}

.why-us__card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .why-us__grid { grid-template-columns: 1fr 1fr; }
}

/* ── HOMES ── */
.homes {
  background: var(--green-dark);
  color: var(--text-on-green);
}
.homes__heading {
  color: var(--text-on-green);
  margin-top: 8px;
  margin-bottom: 16px;
}
.homes__intro {
  color: var(--text-on-green);
  opacity: 0.8;
  font-size: 18px;
  margin-bottom: 48px;
  max-width: 600px;
}
.homes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.homes__card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(232,216,184,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.homes__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.homes__card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.homes__card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homes__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green-dark);
  color: var(--text-on-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid rgba(232,216,184,0.3);
}
.homes__badge--hot { background: #7a3a1a; }
.homes__badge--premium { background: #3a3a2a; }

.homes__card-body { padding: 24px; }
.homes__card-body h3 {
  color: var(--text-on-green);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(232,216,184,0.15);
}
.homes__specs, .homes__features {
  list-style: none;
  margin-bottom: 12px;
}
.homes__specs li, .homes__features li {
  font-size: 13px;
  color: var(--text-on-green);
  opacity: 0.85;
  padding: 3px 0;
  border-bottom: 1px solid rgba(232,216,184,0.1);
}
.homes__use {
  font-size: 12px;
  color: var(--text-on-green);
  opacity: 0.6;
  margin-top: 12px;
}

/* Capsule carousel */
.homes__card-img-carousel { cursor: default; }
.capsule-slide { display: none; }
.capsule-slide.active { display: block; }
.capsule-prev, .capsule-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(45,74,45,0.75);
  border: none;
  color: var(--text-on-green);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.capsule-prev:hover, .capsule-next:hover { background: var(--green-dark); }
.capsule-prev { left: 8px; }
.capsule-next { right: 8px; }

/* Capsule table */
.capsule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin-bottom: 12px;
}
.capsule-table th {
  color: var(--text-on-green);
  opacity: 0.6;
  font-weight: 600;
  text-align: left;
  padding: 4px 6px;
  border-bottom: 1px solid rgba(232,216,184,0.2);
}
.capsule-table td {
  color: var(--text-on-green);
  opacity: 0.9;
  padding: 4px 6px;
  border-bottom: 1px solid rgba(232,216,184,0.08);
}

/* Homes CTA bar */
.homes__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Homes responsive */
@media (max-width: 1199px) {
  .homes__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .homes__grid { grid-template-columns: 1fr; }
}

/* ── FORMWORK ── */
.formwork { background: var(--bg); }

.formwork__heading {
  color: var(--text-primary);
  margin-top: 8px;
  margin-bottom: 16px;
}
.formwork__intro {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 640px;
}

.formwork__products {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.formwork__product {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.formwork__product:last-child { border-bottom: none; }
.formwork__product:hover { background: #e8e0cc; }
.formwork__product--highlight {
  background: var(--green-dark);
  color: var(--text-on-green);
}
.formwork__product--highlight:hover { background: var(--green-mid); }
.formwork__product--highlight p { color: var(--text-on-green); opacity: 0.85; }
.formwork__product--highlight h3 { color: var(--text-on-green); }
.formwork__product-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  opacity: 0.5;
  min-width: 24px;
  padding-top: 3px;
}
.formwork__product--highlight .formwork__product-num { color: var(--text-on-green); }
.formwork__product h3 { font-size: 16px; margin-bottom: 4px; }
.formwork__product p { font-size: 14px; color: var(--text-secondary); }
.formwork__tag {
  display: inline-block;
  background: var(--text-on-green);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 1px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Comparison table */
.formwork__compare-wrap {
  margin-bottom: 48px;
}
.formwork__compare-title {
  margin-bottom: 20px;
  color: var(--text-primary);
}
.formwork__compare-table-wrap {
  overflow-x: auto;
  scrollbar-width: none;
}
.formwork__compare-table-wrap::-webkit-scrollbar { display: none; }
.formwork__compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.formwork__compare-table th,
.formwork__compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.formwork__compare-table thead th {
  background: var(--green-dark);
  color: var(--text-on-green);
  font-weight: 700;
}
.formwork__compare-table tbody tr:last-child td { border-bottom: none; }
.formwork__compare-table tbody tr:nth-child(even) td { background: var(--bg-alt); }
.col-pp {
  background: rgba(45,74,45,0.07) !important;
  color: var(--green-dark);
  font-weight: 600;
}
thead .col-pp {
  background: var(--green-mid) !important;
  color: var(--text-on-green) !important;
}

.formwork__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 767px) {
  .formwork__product { padding: 16px; }
}

/* ── HOW WE WORK ── */
.how {
  background: var(--green-dark);
  color: var(--text-on-green);
}
.how__heading {
  color: var(--text-on-green);
  text-align: center;
  margin-bottom: 12px;
}
.how__sub {
  text-align: center;
  color: var(--text-on-green);
  opacity: 0.7;
  margin-bottom: 56px;
}
.how__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.how__step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.how__step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(232,216,184,0.12);
  border: 1px solid rgba(232,216,184,0.4);
  color: var(--text-on-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.how__step h3 {
  color: var(--text-on-green);
  font-size: 15px;
  margin-bottom: 8px;
}
.how__step p {
  font-size: 13px;
  color: var(--text-on-green);
  opacity: 0.7;
  line-height: 1.5;
}
.how__connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: rgba(232,216,184,0.25);
  margin-top: 24px;
  transform-origin: left center;
}

@media (max-width: 1199px) {
  .how__steps { flex-wrap: wrap; gap: 32px; }
  .how__step { flex: 0 0 calc(33.333% - 22px); }
  .how__connector { display: none; }
}
@media (max-width: 767px) {
  .how__steps { flex-direction: column; gap: 24px; align-items: stretch; }
  .how__step { flex: none; text-align: left; display: flex; gap: 16px; align-items: flex-start; padding: 0; }
  .how__step-num { flex-shrink: 0; margin: 0; }
  .how__connector { display: none; }
}

/* ── FAQ ── */
.faq { background: var(--bg-alt); }
.faq__heading {
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-primary);
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq__item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}
.faq__q:hover {
  background: var(--bg-alt);
}
.faq__q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--green-light);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__item--open .faq__q::after { transform: rotate(45deg); }
.faq__a { overflow: hidden; }
.faq__a-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg); }
.testimonials__heading {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonials__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green-dark);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonials__stars {
  display: flex;
  gap: 3px;
  color: #c8a040;
}
.testimonials__stars svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.testimonials__quote {
  font-style: italic;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.7;
  flex: 1;
}
.testimonials__author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}
.testimonials__author-role {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* ── CONTACT ── */
.contact {
  background: var(--bg);
  border-top: 2px solid var(--green-dark);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.contact__info-col { align-self: center; }
.contact__heading {
  color: var(--text-primary);
  margin-bottom: 12px;
}
.contact__sub {
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-light);
}
.form-field textarea { resize: vertical; }
.form-field input.input-error,
.form-field select.input-error,
.form-field textarea.input-error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}
.contact__submit { align-self: stretch; width: 100%; justify-content: center; }
.contact__success {
  font-size: 14px;
  color: var(--green-dark);
  font-weight: 600;
  min-height: 20px;
}

.contact__info-col h3 {
  margin-bottom: 20px;
  color: var(--text-primary);
}
.contact__info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.contact__info li {
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  gap: 10px;
}
.contact__info li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green-dark);
}
.contact__info a { color: var(--green-dark); text-decoration: underline; }
.contact__wa-btn,
.contact__tg-btn { justify-content: center; }
.contact__btns {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 1199px) {
  .contact.section-pad { padding: 80px 0; }
}
@media (max-width: 1023px) {
  .contact__inner { grid-template-columns: 1fr 300px; gap: 40px; }
}
@media (max-width: 767px) {
  .contact__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ── FOOTER ── */
.footer {
  background: var(--green-dark);
  color: var(--text-on-green);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 24px;
  align-items: start;
}
.footer__logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 8px;
}
.footer__brand p { font-size: 13px; opacity: 0.7; }
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  color: var(--text-on-green);
  opacity: 0.8;
  font-size: 14px;
  transition: opacity var(--transition);
}
.footer__links a:hover { opacity: 1; }
.footer__right { font-size: 14px; opacity: 0.7; line-height: 1.8; }
.footer__contact { font-size: 14px; opacity: 0.85; line-height: 2; }
.footer__contact a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer__contact a:hover { opacity: 0.8; }
.footer__right-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 4px;
}
.footer__copy {
  border-top: 1px solid rgba(232,216,184,0.15);
  padding: 16px 24px;
  font-size: 12px;
  opacity: 0.5;
}

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

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  opacity: 0;
}

/* Offset anchors for fixed nav */
#homes, #formwork, #how, #faq, #contact {
  scroll-margin-top: var(--nav-h);
}

/* ── ACTIVE NAV LINK (scrollspy) ── */
.nav__links a {
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--text-on-green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
}
.nav__links a.is-active {
  opacity: 1;
}
.nav__links a.is-active::after { transform: scaleX(1); }

/* ── CUSTOM SELECT ARROW ── */
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%234a6a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 6 8 10 12 6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
  cursor: pointer;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: var(--green-light); }

/* ── FORM SUBMIT LOADING ── */
.contact__submit { position: relative; min-width: 160px; }
.contact__submit.is-loading {
  color: transparent;
  pointer-events: none;
}
.contact__submit.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 2px solid var(--text-on-green);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── CAPSULE CAROUSEL DOTS ── */
.capsule-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  background: rgba(45,74,45,0.55);
  padding: 5px 8px;
  border-radius: 999px;
}
.capsule-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(232,216,184,0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.capsule-dot.active {
  background: var(--text-on-green);
  transform: scale(1.2);
}
.capsule-dot:hover { background: var(--text-on-green); }

/* ── DIRECTIONS ── */
.directions {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}
.directions::before {
  /* tree skyline along bottom */
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 60px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none' fill='%232d4a2d' fill-opacity='0.07'><path d='M0 60 L40 30 L60 50 L100 20 L130 45 L170 25 L200 50 L250 15 L290 45 L330 30 L370 50 L420 20 L460 45 L500 30 L550 50 L600 15 L650 45 L700 25 L750 50 L800 20 L850 45 L900 30 L950 50 L990 20 L1030 45 L1070 25 L1120 50 L1160 30 L1200 50 L1200 60 L0 60 Z'/></svg>");
  background-repeat: repeat-x;
  background-size: 1200px 60px;
  pointer-events: none;
}
.directions__heading {
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.directions__intro {
  text-align: center;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 16px;
}
.directions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.direction-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  color: inherit;
}
.direction-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45,74,45,0.16);
  border-color: var(--green-light);
}
.direction-card--primary {
  border-color: var(--green-dark);
  box-shadow: 0 4px 18px rgba(45,74,45,0.10);
}
.direction-card__img-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--green-dark);
}
.direction-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.direction-card:hover .direction-card__img-wrap img { transform: scale(1.04); }
.direction-card__img-wrap--svg svg { width: 100%; height: 100%; display: block; }
.direction-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--text-on-green);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  padding: 5px 10px;
  letter-spacing: 1.5px;
  border-radius: 2px;
}
.direction-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.direction-card__body h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
}
.direction-card__body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.direction-card__cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.5px;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.direction-card__cta span { transition: transform var(--transition); }
.direction-card:hover .direction-card__cta span { transform: translateX(4px); }
@media (max-width: 900px) {
  .directions__grid { grid-template-columns: 1fr 1fr; }
}

/* ── FORMWORK PRODUCT IMG ── */
.formwork__product-img {
  width: 96px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.formwork__product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.formwork__product-img--icon {
  color: var(--green-dark);
  padding: 8px;
}
.formwork__product--highlight .formwork__product-img {
  background: rgba(255,255,255,0.08);
  border-color: rgba(232,216,184,0.3);
}
.formwork__product--highlight .formwork__product-img--icon { color: var(--text-on-green); }
.formwork__product-body { flex: 1; min-width: 0; }
@media (max-width: 560px) {
  .formwork__product-img { width: 64px; height: 50px; }
}

/* ── EQUIPMENT ── */
.equipment {
  background: var(--green-dark);
  color: var(--text-on-green);
  position: relative;
  overflow: hidden;
}
.equipment::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 320px;
  height: 200px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 200' fill='none' stroke='%23e8d8b8' stroke-opacity='0.08' stroke-width='1.5'><path d='M60 180 L60 110 M45 130 L60 105 L75 130 M35 150 L60 115 L85 150 M25 175 L60 125 L95 175'/><path d='M180 180 L180 90 M160 110 L180 80 L200 110 M150 130 L180 90 L210 130 M140 160 L180 100 L220 160'/><path d='M280 180 L280 120 M268 135 L280 115 L292 135 M260 155 L280 120 L300 155'/></svg>");
  background-repeat: no-repeat;
  background-position: top right;
  pointer-events: none;
  opacity: 0.6;
}
.equipment__heading {
  color: var(--text-on-green);
  margin-top: 8px;
  margin-bottom: 16px;
}
.equipment__intro {
  font-size: 17px;
  color: var(--text-on-green);
  opacity: 0.85;
  max-width: 700px;
  margin-bottom: 48px;
  line-height: 1.6;
}
.equipment__intro strong { color: var(--text-on-green); opacity: 1; font-weight: 700; }
.equipment__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.equipment__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,216,184,0.18);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform var(--transition), background var(--transition);
}
.equipment__card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.10);
}
.equipment__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--text-on-green);
}
.equipment__icon svg { width: 100%; height: 100%; }
.equipment__card h3 {
  color: var(--text-on-green);
  font-size: 16px;
  margin-bottom: 10px;
}
.equipment__card p {
  font-size: 13px;
  color: var(--text-on-green);
  opacity: 0.78;
  line-height: 1.55;
}
.equipment__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .equipment__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .equipment__grid { grid-template-columns: 1fr; }
}

/* offset anchor for new sections */
#directions, #equipment, #printing, #team { scroll-margin-top: var(--nav-h); }

/* ── 3D CONSTRUCTION PRINTING ── */
.printing { background: var(--bg-alt); }
.printing__heading { text-align: center; margin-bottom: 12px; }
.printing__intro {
  text-align: left;
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}
.printing__intro--sub {
  margin-bottom: 48px;
}
.printing__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.printing__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.printing__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.printing__features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
}
.printing__feature {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px 16px;
  align-items: start;
}
.printing__feature svg { margin-top: 2px; color: var(--green-dark); flex-shrink: 0; }
.printing__feature h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.printing__feature p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.printing__cta { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 1023px) {
  .printing__layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 767px) {
  .printing__intro { font-size: 15px; margin-bottom: 16px; }
  .printing__intro--sub { margin-bottom: 32px; }
  .printing__cta { flex-direction: column; }
  .printing__cta .btn { width: 100%; justify-content: center; }
}

/* ── OUR TEAM ── */
.team { background: var(--bg); }
.team__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.team__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.team__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.team__heading { margin-bottom: 20px; }
.team__text {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}
@media (max-width: 1023px) {
  .team__layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ── SHIPMENTS BANNER ── */
.shipments {
  background: var(--bg);
  padding: 40px 0;
}
.shipments__wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(45,74,45,0.10);
}
.shipments__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 2/1;
  object-fit: cover;
}
.shipments__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 24px 28px;
  background: linear-gradient(0deg, rgba(45,74,45,0.92) 0%, rgba(45,74,45,0.78) 60%, rgba(45,74,45,0) 100%);
  color: var(--text-on-green);
  width: 100%;
}
.shipments__caption .overline {
  color: var(--text-on-green);
  opacity: 0.85;
  margin-bottom: 6px;
}
.shipments__caption h3 {
  color: var(--text-on-green);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.shipments__caption p {
  color: var(--text-on-green);
  opacity: 0.8;
  font-size: 14px;
  max-width: 640px;
}
@media (max-width: 560px) {
  .shipments__caption { padding: 16px 18px; }
  .shipments__caption h3 { font-size: 1.05rem; }
  .shipments__caption p { font-size: 12px; }
}

/* ── FORMWORK DETAIL GALLERY ── */
.formwork__detail {
  margin-bottom: 48px;
}
.formwork__detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.formwork__detail-item {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
}
.formwork__detail-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.formwork__detail-item:hover img { transform: scale(1.03); }
.formwork__detail-item figcaption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
  border-top: 1px solid var(--border);
}
@media (max-width: 767px) {
  .formwork__detail-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ── FULL RESPONSIVE LAYER ──
   breakpoints:
   laptop   ≤ 1199px  (1024–1199)
   tablet   ≤ 1023px  (768–1023)
   mobile-L ≤ 767px   (425–767)
   mobile-M ≤ 480px   (375–480)
   mobile-S ≤ 374px   (≤374)
   ============================================ */

/* ── LAPTOP (≤1199) ── */
@media (max-width: 1199px) {
  .container { padding: 0 28px; }
  .section-pad { padding: 72px 0; }
  h1 { font-size: clamp(1.9rem, 4.6vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }

  .nav__links { gap: 24px; }

  .hero__left { padding: 60px 32px 60px 28px; }
  .hero__sub { font-size: 16px; }

  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .homes__grid { grid-template-columns: 1fr 1fr; }
  .homes__grid .homes__card:nth-child(3) { grid-column: 1 / -1; max-width: 600px; margin: 0 auto; }
  .equipment__grid { grid-template-columns: repeat(2, 1fr); }

  .formwork__detail-item img { aspect-ratio: 3/2; }
  .formwork__cta { justify-content: center; }

}

/* ── TABLET (≤1023) ── */
@media (max-width: 1023px) {
  .section-pad { padding: 64px 0; }
  .container { padding: 0 24px; }

  /* nav: still horizontal but tighter */
  .nav__links { gap: 18px; font-size: 13px; }
  .nav__links a { font-size: 13px; }
  .nav__wa { padding: 7px 14px; font-size: 12px; }

  /* hero side-by-side becomes stacked on tablet */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__right { height: 360px; order: -1; }
  .hero__left {
    padding: 48px 24px 56px;
    background: var(--bg);
  }
  .hero__left::after { display: none; }
  .hero__sub-line { max-width: 100%; }
  .hero__sub { max-width: 100%; }

  /* trust strip 2 col */
  .trust-strip__inner { grid-template-columns: 1fr 1fr; gap: 16px 0; }
  .trust-strip__item { padding: 6px 12px; }
  .trust-strip__item:nth-child(2) { border-right: none; }

  /* directions: 1 column */
  .directions__grid { grid-template-columns: 1fr; gap: 12px; max-width: 560px; margin: 0 auto; }
  .directions::before { height: 40px; opacity: 0.7; }

  .why-us__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .why-us__heading { margin-bottom: 40px; }

  .homes__grid { grid-template-columns: 1fr; gap: 14px; max-width: 520px; margin: 0 auto 40px; }
  .homes__grid .homes__card:nth-child(3) { grid-column: auto; max-width: none; }
  .homes__cta { gap: 12px; }

  .shipments { padding: 24px 0; }
  .shipments__caption { padding: 18px 22px; }
  .shipments__caption h3 { font-size: 1.15rem; }

  .formwork__detail-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .formwork__detail-item { min-width: 0; }
  .formwork__detail-item:nth-child(3) { grid-column: auto; max-width: none; margin: 0; }
  .formwork__detail-item img { width: 100%; height: auto; aspect-ratio: 4/3; display: block; }
  .formwork__detail-item figcaption { padding: 10px 12px; font-size: 12.5px; }
  .formwork__cta { justify-content: center; }

  .equipment__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .equipment__intro { font-size: 15px; margin-bottom: 36px; }
  .equipment::before { width: 220px; height: 140px; opacity: 0.4; }

  .how__steps { flex-wrap: wrap; gap: 28px 0; }
  .how__step { flex: 0 0 calc(33.333% - 12px); padding: 0 12px; }
  .how__connector { display: none; }

  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__card:nth-child(3) { grid-column: 1 / -1; max-width: 560px; margin: 0 auto; }

  .footer__inner { grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 40px 24px; }
}

/* ── MOBILE L (≤767) ── */
@media (max-width: 767px) {
  .container { padding: 0 18px; }
  .section-pad { padding: 56px 0; }
  .contact.section-pad { padding: 56px 0; }
  h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  h2 { font-size: clamp(1.35rem, 5.5vw, 1.8rem); }
  h3 { font-size: 1.1rem; }
  .overline { font-size: 10px; letter-spacing: 1.5px; }
  .btn { padding: 12px 22px; font-size: 14px; }

  /* nav */
  .nav { height: 56px; }
  :root { --nav-h: 56px; }
  .nav__inner { gap: 12px; }
  .nav__logo-icon { width: 30px; height: 30px; }
  .nav__logo-text { font-size: 15px; }
  .nav__lang { padding: 3px 7px; font-size: 10px; }
  .nav__links { display: none; }
  .nav__wa { display: none; }
  .nav__burger { display: flex; }
  .nav__overlay-links a { font-size: 22px; }

  /* hero */
  .hero__right { height: 240px; }
  .hero__left { padding: 32px 18px 40px; }
  .hero__sub-line { font-size: 14px; padding-bottom: 12px; margin-bottom: 14px; }
  .hero__sub { font-size: 15px; margin-bottom: 24px; }
  .hero__ctas { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero__ctas .btn { justify-content: center; font-size: 13px; padding: 11px 14px; }
  .hero__ctas .btn svg { width: 15px; height: 15px; }

  /* trust strip */
  .trust-strip { padding: 22px 0; }
  .trust-strip__inner { grid-template-columns: 1fr; gap: 10px; }
  .trust-strip__item {
    border-right: none;
    border-bottom: 1px solid rgba(232,216,184,0.15);
    padding-bottom: 10px;
    font-size: 12px;
  }
  .trust-strip__item:last-child { border-bottom: none; padding-bottom: 0; }

  /* directions */
  .directions__intro { font-size: 14px; margin-bottom: 32px; }
  .directions__grid { gap: 10px; max-width: 100%; }
  .direction-card__img-wrap { aspect-ratio: 16/9; }
  .direction-card__body { padding: 18px 18px 20px; }
  .direction-card__body h3 { font-size: 1.1rem; }
  .direction-card__body p { font-size: 13px; }

  /* why us 2x2 stays */
  .why-us__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .why-us__card { padding: 22px 14px; }
  .why-us__icon { width: 44px; height: 44px; margin-bottom: 14px; }
  .why-us__icon svg { width: 22px; height: 22px; }
  .why-us__card h3 { font-size: 0.95rem; }
  .why-us__card p { font-size: 12.5px; line-height: 1.5; }

  /* homes */
  .homes__intro { font-size: 15px; margin-bottom: 32px; }
  .homes__grid { gap: 12px; margin-bottom: 32px; }
  .homes__card-body { padding: 20px; }
  .capsule-prev, .capsule-next { width: 30px; height: 30px; }

  /* shipments */
  .shipments__img { aspect-ratio: 4/3; }
  .shipments__caption { padding: 14px 16px; }
  .shipments__caption h3 { font-size: 1rem; }
  .shipments__caption p { font-size: 11.5px; }

  /* formwork */
  .formwork__intro { font-size: 15px; margin-bottom: 32px; }
  .formwork__product {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 16px;
  }
  .formwork__product-num { min-width: auto; font-size: 10px; }
  .formwork__product-img { width: 60px; height: 46px; }
  .formwork__product h3 { font-size: 14px; }
  .formwork__product p { font-size: 12.5px; line-height: 1.5; }
  .formwork__product .formwork__tag { font-size: 9px; padding: 2px 6px; }

  .formwork__compare-title { font-size: 1.05rem; margin-bottom: 14px; }
  .formwork__compare-table { font-size: 13px; }
  .formwork__compare-table th,
  .formwork__compare-table td { padding: 10px 12px; }
  .formwork__cta { gap: 10px; }
  .formwork__cta .btn { flex: 1; min-width: 0; justify-content: center; }

  /* equipment */
  .equipment__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .equipment__card { padding: 22px 16px; }
  .equipment__icon { width: 44px; height: 44px; margin-bottom: 12px; }
  .equipment__card h3 { font-size: 14px; }
  .equipment__card p { font-size: 12px; line-height: 1.5; }
  .equipment::before { display: none; }
  .equipment__cta { gap: 10px; }
  .equipment__cta .btn { flex: 1; min-width: 0; justify-content: center; }

  /* how */
  .how__sub { margin-bottom: 36px; font-size: 14px; }
  .how__steps {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .how__step {
    flex: none;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    row-gap: 2px;
    align-items: start;
    padding: 0;
  }
  .how__step-num { margin: 0; width: 38px; height: 38px; grid-row: 1 / span 2; align-self: start; }
  .how__step h3 { font-size: 14px; margin-bottom: 2px; grid-column: 2; }
  .how__step p { font-size: 12.5px; grid-column: 2; }

  /* faq */
  .faq__heading { margin-bottom: 32px; }
  .faq__q { padding: 16px 18px; font-size: 14px; gap: 12px; }
  .faq__q::after { font-size: 20px; }
  .faq__a-inner { padding: 0 18px 16px; font-size: 13.5px; line-height: 1.6; }

  /* testimonials — horizontal slider */
  .testimonials__grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 4px 18px;
    margin: 0;
  }
  .testimonials__grid::-webkit-scrollbar { display: none; }
  .testimonials__card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 1.25rem;
    max-width: none;
  }
  .testimonials__card:nth-child(3) { max-width: none; }
  .testimonials__quote { font-size: 14px; }

  /* contact */
  .contact__inner { gap: 32px; }
  .contact__form { gap: 16px; }
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 16px; padding: 11px 14px; } /* 16px prevents iOS zoom */
  .contact__heading { font-size: 1.6rem; }
  .contact__info li { font-size: 14px; }
  .contact__submit { width: 100%; align-self: stretch; min-width: 0; justify-content: center; }

  /* formwork detail — compact 2-col */
  .formwork__detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .formwork__detail-item { min-width: 0; }
  .formwork__detail-item:nth-child(3) { grid-column: 1 / -1; max-width: 60%; margin: 0 auto; }
  .formwork__detail-item img { width: 100%; height: auto; aspect-ratio: 4/3; display: block; }
  .formwork__detail-item figcaption { padding: 8px 10px; font-size: 11.5px; }

  /* footer */
  .footer__inner { grid-template-columns: 1fr; gap: 24px; padding: 32px 18px; text-align: left; }
  .footer__right { grid-column: auto; }
  .footer__copy { padding: 14px 18px; font-size: 11px; }

  /* floating WA */
  .wa-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ── MOBILE M (≤480) ── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section-pad { padding: 48px 0; }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.3rem; }

  .hero__right { height: 200px; }
  .hero__left { padding: 26px 14px 34px; }
  .hero__h1 { margin-bottom: 12px; }
  .hero__sub-line { font-size: 13px; letter-spacing: 0.3px; }
  .hero__sub { font-size: 14px; line-height: 1.55; }

  .why-us__grid { grid-template-columns: 1fr; gap: 10px; }
  .why-us__card { padding: 18px 16px; display: flex; align-items: center; gap: 14px; text-align: left; }
  .why-us__icon { margin: 0; flex-shrink: 0; width: 40px; height: 40px; }
  .why-us__card h3 { margin-bottom: 4px; }

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

  .homes__cta, .formwork__cta, .equipment__cta { flex-direction: column; align-items: stretch; }
  .homes__cta .btn, .formwork__cta .btn, .equipment__cta .btn { width: 100%; justify-content: center; }
  .homes__cta .btn-tg, .formwork__cta .btn-tg, .equipment__cta .btn-tg { font-size: 13px; padding: 11px 16px; }

  .capsule-table { font-size: 11px; }
  .capsule-table th, .capsule-table td { padding: 3px 4px; }

  .testimonials__card { padding: 1rem; }
  .testimonials__quote { font-size: 13.5px; line-height: 1.6; }

  .footer__inner { padding: 28px 14px; }
  .footer__copy .container { padding: 0 14px; }

  .wa-float { width: 46px; height: 46px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 22px; height: 22px; }
}

/* ── MOBILE M (≤480) ── */
@media (max-width: 480px) {
  .hero__ctas { grid-template-columns: 1fr; }
  .homes__cta .btn-tg, .formwork__cta .btn-tg, .equipment__cta .btn-tg { font-size: 12px; padding: 11px 14px; }
  .contact.section-pad { padding: 48px 0; }
}

/* ── MOBILE S (≤374) ── */
@media (max-width: 374px) {
  .container { padding: 0 12px; }
  .section-pad { padding: 40px 0; }
  h1 { font-size: 1.45rem; line-height: 1.15; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
  .overline { font-size: 9.5px; letter-spacing: 1px; }
  .btn { padding: 11px 18px; font-size: 13px; }

  .nav__logo-icon { width: 26px; height: 26px; }
  .nav__logo-text { display: none; }
  .nav__lang { padding: 3px 6px; font-size: 9.5px; gap: 4px; }

  .hero__right { height: 170px; }
  .hero__left { padding: 22px 12px 28px; }
  .hero__sub { font-size: 13.5px; }

  .trust-strip__item { font-size: 11.5px; }

  .direction-card__body { padding: 14px 14px 16px; }
  .direction-card__body h3 { font-size: 1rem; }

  .why-us__card { padding: 14px; gap: 12px; }
  .why-us__icon { width: 36px; height: 36px; }
  .why-us__icon svg { width: 18px; height: 18px; }

  .homes__card-body { padding: 16px; }
  .homes__specs li, .homes__features li { font-size: 12px; }

  .formwork__product { padding: 12px 14px; }
  .formwork__product-img { width: 52px; height: 40px; }
  .formwork__product h3 { font-size: 13px; }
  .formwork__product p { font-size: 12px; }

  .equipment__card { padding: 18px 14px; }
  .equipment__icon { width: 40px; height: 40px; }

  .how__step-num { width: 32px; height: 32px; font-size: 11px; }

  .faq__q { padding: 14px 14px; font-size: 13.5px; }
  .faq__a-inner { padding: 0 14px 14px; font-size: 13px; }

  .contact__heading { font-size: 1.4rem; }
  .form-field label { font-size: 12px; }

  .formwork__detail-grid { grid-template-columns: 1fr; }
  .formwork__detail-item:nth-child(3) { max-width: none; }
  .testimonials__card { flex-basis: 90%; }

  .footer__logo { font-size: 16px; letter-spacing: 2px; }

  .hero__ctas { grid-template-columns: 1fr; }
  .hero__ctas .btn { font-size: 13px; padding: 11px 14px; }

  .homes__cta .btn-tg, .formwork__cta .btn-tg, .equipment__cta .btn-tg { font-size: 11.5px; padding: 10px 12px; }
  .contact.section-pad { padding: 40px 0; }
}

/* ── LANDSCAPE phone (low height) ── */
@media (max-height: 480px) and (orientation: landscape) and (max-width: 900px) {
  .hero { min-height: auto; }
  .hero__right { height: 180px; }
  .hero__left { padding: 24px 24px 28px; }
  .wa-float { width: 44px; height: 44px; bottom: 14px; right: 14px; }
}
