/* ============================================================
   PAISAJISMO JAVEA NATURAL — Design System
   Natural Mediterranean · Inter
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Palette — extraída de las fotos de villa mediterránea */
  --primary:       #2C5F2E;   /* Verde bosque profundo (césped/pinos) */
  --primary-soft:  #3A7A3C;   /* Verde medio */
  --primary-light: #EBF2E8;   /* Verde muy claro (fondo secciones) */
  --accent:        #C4855A;   /* Terracota cálida (tejas, macetas) */
  --accent-hover:  #AD7248;   /* Terracota oscura */
  --sage:          #8BAD62;   /* Verde oliva suave */
  --warm-bg:       #F8F6F2;   /* Blanco cálido (paredes villa) */
  --warm-mid:      #EDE9E2;   /* Piedra arena clara */
  --warm-stone:    #D4C9B5;   /* Piedra travertino */
  --white:         #FFFFFF;
  --text:          #1C2B1E;   /* Verde-negro oscuro */
  --text-muted:    #6B705F;   /* Gris cálido verdoso */
  --text-on-dark:  rgba(255,255,255,0.88);
  --border:        rgba(44,95,46,0.12);
  --border-dark:   #D8D3CA;

  /* Typography — Inter únicamente */
  --font-heading:  'Inter', system-ui, -apple-system, sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing (8pt) */
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  48px;
  --sp-6:  64px;
  --sp-7:  96px;
  --sp-8:  128px;

  --container: 1280px;
  --radius:    4px;
  --t-fast:    150ms ease;
  --t-normal:  250ms ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--warm-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* ── Typography — Inter ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); font-weight: 300; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 300; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 400; }
h4 { font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 500; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow--light { color: var(--sage); }
.eyebrow--muted { color: var(--text-muted); }

p { max-width: 68ch; }
p + p { margin-top: var(--sp-2); }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-3);
}
@media (min-width: 1024px) { .container { padding-inline: var(--sp-5); } }

.grid-2 { display: grid; gap: var(--sp-4); }
.grid-3 { display: grid; gap: var(--sp-4); }
.grid-4 { display: grid; gap: var(--sp-3); }

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

.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }

.section    { padding-block: var(--sp-7); }
.section--sm { padding-block: var(--sp-5); }
.section--lg { padding-block: var(--sp-8); }

.section-header { margin-bottom: var(--sp-6); }
.section-header .eyebrow { margin-bottom: var(--sp-1); }
.section-header h2 { margin-bottom: var(--sp-2); }
.section-header p { color: var(--text-muted); }

/* ── Header / Nav ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow var(--t-normal);
}

body { padding-top: 72px; }

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(44,95,46,0.10);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: var(--sp-2);
}

/* Logo — empuja el resto a la derecha */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

.nav__logo-img {
  height: 40px;
  width: auto;
}

/* Nav CTA — visible siempre, compacto en móvil */
.nav__cta { display: flex; align-items: center; }
.nav__cta .btn {
  font-size: 0.7rem;
  padding: 9px 14px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .nav__inner { gap: var(--sp-4); }
  .nav__cta .btn { font-size: 0.78rem; padding: 11px 20px; }
}

/* Nav links — solo desktop, orden 1 en desktop (entre logo y CTA) */
.nav__links {
  display: none;
  align-items: center;
  gap: var(--sp-4);
}
@media (min-width: 1024px) {
  .nav__links { display: flex; order: 1; }
  .nav__cta   { order: 2; }
}

.nav__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t-fast);
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width var(--t-normal);
}

.nav__links a:hover,
.nav__links a[aria-current="page"] { color: var(--primary); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { width: 100%; }

/* Hamburger */
.nav__hamburger { display: flex; flex-direction: column; gap: 5px; padding: var(--sp-1); flex-shrink: 0; }
@media (min-width: 1024px) { .nav__hamburger { display: none; } }

.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--primary);
  transition: transform var(--t-normal), opacity var(--t-normal);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none; flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border-dark);
  padding: var(--sp-2) 0;
}
.nav__mobile.is-open { display: flex; }

.nav__mobile a {
  padding: 14px var(--sp-3);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border-dark);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--primary); background: var(--primary-light); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary); color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-soft); border-color: var(--primary-soft);
}

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

.btn-outline-dark {
  background: transparent; color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }

.btn-ghost {
  background: transparent; color: var(--primary);
  border-color: transparent; padding-inline: 0;
  letter-spacing: 0.08em;
}
.btn-ghost::after { content: ' →'; transition: transform var(--t-fast); }
.btn-ghost:hover { color: var(--primary-soft); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--primary);
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,43,30,0.88) 0%,
    rgba(28,43,30,0.40) 55%,
    rgba(28,43,30,0.08) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative; z-index: 2;
  padding-bottom: var(--sp-7);
  padding-top: var(--sp-7);
  max-width: 820px;
}

.hero__content .eyebrow {
  display: flex; align-items: center; gap: var(--sp-2);
  margin-bottom: var(--sp-3);
  color: var(--sage);
}
.hero__content .eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--sage); flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-3);
  font-weight: 300;
}

.hero h1 em { font-style: normal; color: var(--sage); }

.hero__subtitle {
  font-size: 1.05rem; font-weight: 300;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-5);
  max-width: 54ch;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; }

.hero__scroll {
  position: absolute; bottom: var(--sp-4); right: var(--sp-5);
  z-index: 2; display: flex; flex-direction: column;
  align-items: center; gap: var(--sp-1);
  color: rgba(255,255,255,0.55);
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--sage), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ── Services Grid ──────────────────────────────────────────── */
.services-grid { display: grid; gap: 1px; background: var(--border-dark); }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--warm-bg);
  position: relative; overflow: hidden;
  transition: background var(--t-normal);
  display: flex; flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--primary);
  transition: width var(--t-normal);
  z-index: 1;
}
.service-card:hover { background: var(--white); }
.service-card:hover::before { width: 100%; }

.service-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.service-card:hover .service-card__img img { transform: scale(1.05); }

.service-card__body {
  padding: var(--sp-4);
  display: flex; flex-direction: column; flex: 1;
}

.service-card__number {
  font-size: 2rem; font-weight: 200;
  color: var(--warm-stone); line-height: 1;
  margin-bottom: var(--sp-2);
  transition: color var(--t-normal);
  letter-spacing: -0.03em;
}
.service-card:hover .service-card__number { color: var(--primary); opacity: 0.6; }

.service-card h3 { margin-bottom: var(--sp-2); }
.service-card p { color: var(--text-muted); font-size: 0.9rem; flex: 1; margin-bottom: var(--sp-3); }

/* ── Portfolio gallery ──────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border-dark);
}
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.portfolio-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.portfolio-item:hover img { transform: scale(1.06); }

/* ── Split Section ──────────────────────────────────────────── */
.split { display: grid; }
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__image { order: -1; }
}

.split__image { min-height: 420px; overflow: hidden; }
.split__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.split:hover .split__image img { transform: scale(1.03); }

.split__content {
  background: var(--primary);
  padding: var(--sp-6) var(--sp-5);
  display: flex; flex-direction: column; justify-content: center;
}
.split__content .eyebrow { color: var(--sage); margin-bottom: var(--sp-2); }
.split__content h2 { color: var(--white); font-weight: 300; margin-bottom: var(--sp-3); }
.split__content p { color: var(--text-on-dark); margin-bottom: var(--sp-4); font-weight: 300; }

/* ── Stats ──────────────────────────────────────────────────── */
.stats { background: var(--primary); padding-block: var(--sp-5); }

.stats__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(255,255,255,0.12);
}
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

.stat { background: var(--primary); padding: var(--sp-4) var(--sp-3); text-align: center; }

.stat__value {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 200; color: var(--white);
  line-height: 1; letter-spacing: -0.03em;
}
.stat__value span { color: var(--sage); }
.stat__label {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: var(--sp-1);
}

/* ── Process Steps ──────────────────────────────────────────── */
.process { background: var(--primary-light); }
.process__steps { display: grid; gap: 2px; }

.process-step {
  display: grid; grid-template-columns: 72px 1fr;
  gap: var(--sp-3); align-items: start;
  padding: var(--sp-4);
  background: var(--warm-bg);
  border-left: 2px solid transparent;
  transition: border-color var(--t-normal), background var(--t-normal);
}
.process-step:hover { border-left-color: var(--primary); background: var(--white); }

.process-step__num {
  font-size: 2.4rem; font-weight: 200;
  color: var(--primary); opacity: 0.4;
  line-height: 1; letter-spacing: -0.03em;
}
.process-step h4 { font-weight: 500; margin-bottom: 6px; color: var(--text); }
.process-step p { font-size: 0.9rem; color: var(--text-muted); max-width: none; font-weight: 300; }

/* ── Zones ──────────────────────────────────────────────────── */
.zones { background: var(--primary); }
.zones h2 { color: var(--white); }
.zones .section-header p { color: rgba(255,255,255,0.72); }

.zones__chips { display: flex; flex-wrap: wrap; gap: var(--sp-1); margin-bottom: var(--sp-5); }

.zone-chip {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.zone-chip:hover, .zone-chip--accent {
  border-color: var(--sage);
  color: var(--white);
  background: rgba(139,173,98,0.1);
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq { background: var(--warm-bg); }
.faq__list { border-top: 1px solid var(--border-dark); }
.faq-item { border-bottom: 1px solid var(--border-dark); }

.faq-item__question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: var(--sp-3) 0;
  text-align: left;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 400; color: var(--text);
  gap: var(--sp-3); background: none;
}

.faq-item__icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t-fast), transform var(--t-normal), background var(--t-fast);
  font-size: 0.85rem; color: var(--primary); font-style: normal;
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  border-color: var(--primary);
  background: var(--primary-light);
}

.faq-item__answer {
  display: none; padding-bottom: var(--sp-3);
  color: var(--text-muted); font-size: 0.95rem;
  max-width: 72ch; line-height: 1.75; font-weight: 300;
}
.faq-item.is-open .faq-item__answer { display: block; }

/* ── Cards ──────────────────────────────────────────────────── */
.card { background: var(--white); overflow: hidden; display: flex; flex-direction: column; border-radius: var(--radius); }
.card__img { aspect-ratio: 16/9; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: var(--sp-4); flex: 1; display: flex; flex-direction: column; }
.card__body .eyebrow { margin-bottom: var(--sp-2); }
.card__body h3 { margin-bottom: var(--sp-2); font-size: 1.1rem; }
.card__body p { color: var(--text-muted); font-size: 0.9rem; flex: 1; margin-bottom: var(--sp-3); font-weight: 300; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials { background: var(--primary-light); }

.testimonial-grid { display: grid; gap: var(--sp-3); }
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: var(--white); padding: var(--sp-4);
  border-top: 3px solid var(--primary);
  border-radius: 0 0 var(--radius) var(--radius);
}
.testimonial__stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: var(--sp-2); }
.testimonial__text {
  font-size: 1rem; line-height: 1.65; font-weight: 300;
  color: var(--text); margin-bottom: var(--sp-3); font-style: italic;
}
.testimonial__author { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.testimonial__author strong { color: var(--primary); display: block; margin-bottom: 2px; }

/* ── Contact ────────────────────────────────────────────────── */
.contact-info { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-item { display: flex; gap: var(--sp-3); align-items: flex-start; }

.contact-item__icon {
  width: 40px; height: 40px;
  background: var(--primary-light); flex-shrink: 0;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--primary);
}
.contact-item__label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-item__value { font-size: 1rem; font-weight: 400; }
.contact-item__value a { transition: color var(--t-fast); }
.contact-item__value a:hover { color: var(--primary); }

/* ── Contact Section (onepage) ──────────────────────────────── */
.contact-section { background: var(--text); overflow: hidden; }
.contact-section__inner {
  display: grid;
  gap: var(--sp-4);
  padding-block: var(--sp-4);
  padding-inline: var(--sp-3);
}
.contact-section__header,
.contact-form { min-width: 0; overflow: hidden; }
@media (min-width: 1024px) {
  .contact-section__inner {
    grid-template-columns: 1fr 1.6fr;
    align-items: start;
    gap: var(--sp-7);
    padding-block: var(--sp-7);
    padding-inline: var(--sp-5);
  }
}
.contact-section__header .eyebrow { color: var(--sage); }
.contact-section__header h2 { color: var(--white); font-weight: 300; margin-bottom: var(--sp-3); }
.contact-section__header h2 em { color: var(--accent); font-style: normal; }
.contact-section__header > p { color: rgba(255,255,255,0.65); margin-bottom: var(--sp-4); font-weight: 300; }
.contact-section__info { display: flex; flex-direction: column; gap: var(--sp-3); }
.contact-info-item__label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); display: block; margin-bottom: 4px; }
.contact-info-item__value { color: rgba(255,255,255,0.85); font-size: 0.9rem; overflow-wrap: break-word; word-break: break-all; }
.contact-info-item__value a { color: rgba(255,255,255,0.85); transition: color var(--t-fast); }
.contact-info-item__value a:hover { color: var(--accent); }

/* ── Form ───────────────────────────────────────────────────── */
.contact-form { background: #ffffff; padding: var(--sp-3); border-radius: 4px; width: 100%; box-sizing: border-box; max-width: 100%; }
@media (min-width: 640px) { .contact-form { padding: var(--sp-5); } }

.form-row { display: grid; gap: var(--sp-2); }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { margin-bottom: var(--sp-3); }
.form-group--privacy { margin-top: var(--sp-1); }

.form-label {
  display: block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-label span[aria-hidden] { color: var(--accent); }

.form-input {
  width: 100%; padding: 13px 16px;
  background: var(--warm-bg); border: 1px solid var(--border-dark);
  color: var(--text); font-size: 1rem; font-family: inherit;
  transition: border-color var(--t-fast), background var(--t-fast);
  outline: none; border-radius: var(--radius); appearance: none;
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(44,95,46,0.08); }
.form-input::placeholder { color: var(--text-muted); font-weight: 300; }
.form-textarea { resize: vertical; min-height: 110px; }

.form-radio-group { display: flex; flex-direction: column; gap: 2px; margin-top: 6px; }
.form-radio-group--vivienda { flex-direction: row; gap: var(--sp-4); flex-wrap: wrap; }
@media (min-width: 640px) {
  .form-radio-group--wrap { flex-direction: row; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); }
}
.form-radio {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; font-size: 0.95rem; color: var(--text);
  padding: 6px 0;
  user-select: none; line-height: 1.4;
  background: none; border: none;
}
.form-radio input[type="radio"] { display: none; }
.form-radio::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  border: 2px solid #aaa;
  border-radius: 50%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  background: var(--white);
}
.form-radio:has(input:checked) { color: var(--primary); font-weight: 500; }
.form-radio:has(input:checked)::before {
  border-color: var(--primary);
  box-shadow: inset 0 0 0 4px var(--white), inset 0 0 0 9px var(--primary);
}
.form-radio:hover::before { border-color: var(--primary); }

.form-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--warm-mid); border-radius: var(--radius);
  padding: 12px var(--sp-2); margin-bottom: var(--sp-3);
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.55;
}
.form-note svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }

.form-checkbox {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; font-weight: 300;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--primary); width: 18px; height: 18px; }
.form-checkbox a { color: var(--primary); text-decoration: underline; }

.form-error { display: none; font-size: 0.75rem; color: #c0392b; margin-top: 4px; }
.form-group.has-error .form-input { border-color: #c0392b; }
.form-group.has-error .form-error { display: block; }
.form-group--privacy.has-error .form-error { display: block; }

.btn--full { width: 100%; justify-content: center; margin-top: var(--sp-2); padding-block: 16px; font-size: 0.9rem; letter-spacing: 0; }

/* ── Thank You page ─────────────────────────────────────────── */
.thankyou-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--sp-7) var(--sp-4); }
.thankyou__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-4);
}
.thankyou__icon svg { width: 32px; height: 32px; stroke: var(--white); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.thankyou__box {
  background: var(--warm-mid); border-left: 3px solid var(--primary);
  padding: var(--sp-3) var(--sp-4); border-radius: 2px;
  text-align: left; font-size: 0.88rem; color: var(--text-muted);
  margin: var(--sp-5) 0; max-width: 520px; margin-inline: auto;
}
.thankyou__box strong { color: var(--text); }
.thankyou__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: center; margin-top: var(--sp-5); }

.form-check {
  display: flex; gap: var(--sp-2); align-items: flex-start;
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; font-weight: 300;
}
.form-check input { margin-top: 3px; flex-shrink: 0; accent-color: var(--primary); }
.form-check a { color: var(--primary); text-decoration: underline; }

/* ── Map ────────────────────────────────────────────────────── */
.map-wrapper { filter: grayscale(30%) saturate(80%); transition: filter 400ms ease; border-radius: var(--radius); overflow: hidden; }
.map-wrapper:hover { filter: grayscale(0%) saturate(100%); }
.map-wrapper iframe { display: block; width: 100%; }

/* ── WhatsApp FAB ───────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: #fff; display: block; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--text); color: var(--text-on-dark); padding-top: var(--sp-7); }

.footer__grid {
  display: grid; gap: var(--sp-5);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer__logo-link { display: inline-flex; }
.footer__logo-img { height: 36px; width: auto; margin-bottom: var(--sp-3); display: block; }
.footer__brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; font-weight: 300; }

.footer__col-title { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: var(--sp-3); }

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.88rem; color: rgba(255,255,255,0.65); font-weight: 300; transition: color var(--t-fast); }
.footer__links a:hover { color: var(--white); }

.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact-item { display: flex; flex-direction: column; gap: 2px; }
.footer__contact-item span:first-child { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.footer__contact-item a,
.footer__contact-item address,
.footer__contact-item span:not(:first-child) { font-size: 0.88rem; color: rgba(255,255,255,0.72); font-style: normal; font-weight: 300; transition: color var(--t-fast); }
.footer__contact-item a:hover { color: var(--sage); }

.footer__sub {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--sp-2); padding-block: var(--sp-3);
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
}
.footer__legal { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.footer__legal a { color: rgba(255,255,255,0.35); transition: color var(--t-fast); }
.footer__legal a:hover { color: var(--white); }

/* ── Page Hero (interior) ───────────────────────────────────── */
.page-hero {
  background: var(--primary);
  padding-block: var(--sp-7);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(to left, rgba(139,173,98,0.08), transparent);
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--sage); margin-bottom: var(--sp-2); }
.page-hero h1 { color: var(--white); font-weight: 300; margin-bottom: var(--sp-3); }
.page-hero p { color: rgba(255,255,255,0.75); font-weight: 300; max-width: 54ch; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: var(--sp-5);
}
.breadcrumb a { color: var(--text-muted); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb__sep { color: var(--border-dark); }

/* ── Article ────────────────────────────────────────────────── */
.article-body { max-width: 72ch; }
.article-body h2 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); margin-top: var(--sp-5); margin-bottom: var(--sp-2); font-weight: 400; }
.article-body h3 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); margin-top: var(--sp-4); margin-bottom: var(--sp-2); font-weight: 500; }
.article-body p { margin-bottom: var(--sp-2); color: var(--text-muted); line-height: 1.8; font-weight: 300; }
.article-body ul, .article-body ol { padding-left: var(--sp-3); margin-bottom: var(--sp-3); }
.article-body li { margin-bottom: 6px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body strong { color: var(--text); font-weight: 600; }

.article-cta {
  background: var(--primary-light);
  border-left: 3px solid var(--primary);
  padding: var(--sp-4); margin-block: var(--sp-5);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-cta p { color: var(--text); margin-bottom: var(--sp-3); font-weight: 400; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--primary);
  padding-block: var(--sp-7); text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(139,173,98,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .eyebrow { color: var(--sage); margin-bottom: var(--sp-2); }
.cta-banner h2 { color: var(--white); font-weight: 300; margin-bottom: var(--sp-3); }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 52ch; margin-inline: auto; margin-bottom: var(--sp-5); font-weight: 300; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: center; }

/* ── Legal ──────────────────────────────────────────────────── */
.legal-body { max-width: 80ch; margin-inline: auto; padding-block: var(--sp-7); }
.legal-body h2 { font-size: 1.3rem; font-weight: 500; margin-top: var(--sp-5); margin-bottom: var(--sp-2); }
.legal-body h3 { font-size: 1.05rem; font-weight: 500; margin-top: var(--sp-3); margin-bottom: var(--sp-1); }
.legal-body p { color: var(--text-muted); margin-bottom: var(--sp-2); line-height: 1.8; font-weight: 300; }
.legal-body ul { padding-left: var(--sp-3); margin-bottom: var(--sp-2); }
.legal-body li { list-style: disc; color: var(--text-muted); margin-bottom: 6px; font-weight: 300; }
.legal-body a { color: var(--primary); text-decoration: underline; }

/* ── 404 ────────────────────────────────────────────────────── */
.not-found { min-height: 60vh; display: flex; align-items: center; text-align: center; padding-block: var(--sp-8); }
.not-found__num { font-size: clamp(6rem, 15vw, 12rem); font-weight: 200; color: var(--border-dark); line-height: 1; margin-bottom: var(--sp-3); letter-spacing: -0.05em; }
.not-found h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 400; margin-bottom: var(--sp-2); }
.not-found p { color: var(--text-muted); margin-bottom: var(--sp-5); font-weight: 300; }

/* ── Utilities ──────────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-accent  { color: var(--accent); }
.bg-dark      { background: var(--text); }
.bg-warm      { background: var(--warm-bg); }
.bg-mid       { background: var(--warm-mid); }
.bg-green     { background: var(--primary-light); }

.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.line-divider { width: 48px; height: 2px; background: var(--primary); margin-block: var(--sp-3); border-radius: 2px; }

body { animation: fadeIn 300ms ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(4px)} to{opacity:1;transform:translateY(0)} }
