/* ==========================================================================
   ANCLA — inmobiliaria demo (Awolkie Tech)
   Identidad: marino profundo + dorado latón, tipografía editorial serif +
   sans geométrica + mono de "ficha técnica". Motivo firma: marcas de
   agrimensura (corner brackets) en cada propiedad, como un plano catastral.
   ========================================================================== */

:root {
  --accent: #C29A4B;                 /* dorado latón — color de acento editable */
  --accent-dark: #8F7132;
  --navy-950: #0A1B2B;
  --navy-900: #0F2438;
  --navy-800: #15304A;
  --navy-700: #1E4262;
  --cream-100: #F6F1E6;
  --cream-50: #FBF8F2;
  --ink: #182430;
  --ink-soft: #4B5A68;
  --line: rgba(15, 36, 56, 0.14);
  --line-dark: rgba(246, 241, 230, 0.2);
  --white: #FFFFFF;

  --font-display: "Spectral", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;

  --radius: 4px;
  --radius-lg: 6px;
  --shadow-soft: 0 24px 50px -28px rgba(10, 27, 43, 0.5);
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy-950);
  margin: 0;
  line-height: 1.14;
  font-weight: 600;
}

p { margin: 0; line-height: 1.7; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--navy-950); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent-dark);
  margin: 0 0 12px;
}
.eyebrow--light { color: var(--accent); }

.section__head {
  max-width: 660px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.section__head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section__sub { margin-top: 14px; font-size: 1.04rem; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }

section { padding: 92px 0; }

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--navy-950);
  box-shadow: 0 14px 28px -14px rgba(194, 154, 75, 0.75);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(194, 154, 75, 0.85); }
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }
.btn--dark {
  background: var(--navy-950);
  color: var(--cream-100);
}
.btn--dark:hover { background: var(--navy-800); transform: translateY(-2px); }
.btn--lg { padding: 16px 28px; font-size: 0.98rem; }
.btn--nav { padding: 9px 20px; font-size: 0.82rem; }
.btn--block { width: 100%; justify-content: center; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 20px 0;
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}
.nav.is-scrolled {
  background: rgba(10, 27, 43, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 6px 24px -18px rgba(10,27,43,0.6);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__logo { width: 34px; height: 34px; object-fit: contain; }
.nav__brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white);
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: color .18s ease;
}
.nav__links a:not(.btn):hover { color: var(--accent); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--white); }

@media (max-width: 880px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--navy-950);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .32s ease;
  }
  .nav__links.is-open { transform: translateX(0); }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--navy-950);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg video, .hero__bg-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__bg-fallback { z-index: 1; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,17,27,0.55) 0%, rgba(10,17,27,0.35) 40%, rgba(10,17,27,0.88) 100%);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: 220px 24px 64px;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--accent);
  margin: 0 0 18px;
}
.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  color: var(--white);
  max-width: 14ch;
}
.hero__tagline {
  margin-top: 20px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(246,241,230,0.86);
  max-width: 44ch;
  font-family: var(--font-body);
}
.hero__actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

.hero__stats {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line-dark);
  max-width: var(--container);
  margin: 56px auto 0;
  padding: 24px 24px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hero__stat-num {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--accent);
  display: block;
}
.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(246,241,230,0.65);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

@media (max-width: 760px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__content { padding-top: 170px; }
}

/* ==========================================================================
   MISIÓN / VISIÓN
   ========================================================================== */
.mv { background: var(--cream-100); }
.mv__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 56px;
}
.mv__divider { background: var(--line); }
.mv__label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.mv__col h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 16px; }
.mv__col p { font-size: 1.02rem; }

@media (max-width: 780px) {
  .mv__grid { grid-template-columns: 1fr; }
  .mv__divider { height: 1px; width: 100%; }
}

/* ==========================================================================
   CATÁLOGO
   ========================================================================== */
.catalog { background: var(--cream-100); }
.catalog__filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-pill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream-50);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .18s ease;
}
.filter-pill:hover { border-color: var(--accent); color: var(--navy-950); }
.filter-pill.is-active { background: var(--navy-950); border-color: var(--navy-950); color: var(--cream-100); }

.catalog__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 980px) { .catalog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .catalog__grid { grid-template-columns: 1fr; } }

.property-card {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.property-card__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.property-card__frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.property-card:hover .property-card__frame img { transform: scale(1.06); }

/* ---------- plano arquitectónico (sustituye fotografía donde no hay foto real) ---------- */
.plan-art {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--navy-950);
  background-image:
    linear-gradient(rgba(194,154,75,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194,154,75,0.16) 1px, transparent 1px);
  background-size: 22px 22px;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.property-card:hover .plan-art,
.tour__gallery button:hover .plan-art { transform: scale(1.04); }
.plan-art svg { width: 56%; height: 56%; overflow: visible; }
.pl-line { fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.pl-fill { fill: rgba(194, 154, 75, 0.1); stroke: none; }
.pl-dim { fill: none; stroke: rgba(246,241,230,0.4); stroke-width: 1; stroke-dasharray: 3 3; }
.pl-dot { fill: var(--accent); }

/* marcas de agrimensura — motivo firma */
.corner-mark {
  position: absolute;
  width: 22px; height: 22px;
  border-color: var(--accent);
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
}
.corner-mark--tl { top: 12px; left: 12px; border-top: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.corner-mark--tr { top: 12px; right: 12px; border-top: 2px solid var(--accent); border-right: 2px solid var(--accent); }
.corner-mark--bl { bottom: 12px; left: 12px; border-bottom: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.corner-mark--br { bottom: 12px; right: 12px; border-bottom: 2px solid var(--accent); border-right: 2px solid var(--accent); }

.property-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--white);
}
.property-card__badge--venta { background: var(--navy-900); }
.property-card__badge--alquiler { background: var(--accent-dark); }

.property-card__body { padding: 22px; }
.property-card__loc {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.property-card__title { font-size: 1.2rem; margin-bottom: 10px; }
.property-card__specs {
  display: flex;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  margin: 14px 0;
}
.property-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.property-card__price {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-950);
}
.property-card__price small { font-size: 0.7rem; font-weight: 400; color: var(--ink-soft); }
.link-arrow {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent-dark);
  transition: gap .18s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.link-arrow:hover { gap: 8px; }

/* ==========================================================================
   POR QUÉ TRABAJAR CON NOSOTROS
   ========================================================================== */
.why { background: var(--navy-950); color: var(--cream-100); }
.why .section__head h2 { color: var(--white); }
.why .section__sub { color: rgba(246,241,230,0.7); }
.why__list {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
@media (max-width: 900px) { .why__list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why__list { grid-template-columns: 1fr; } }
.why__item { background: var(--navy-950); padding: 32px 26px; }
.why__num { font-family: var(--font-mono); color: var(--accent); font-size: 0.85rem; margin-bottom: 16px; display: block; }
.why__title { font-size: 1.12rem; color: var(--white); margin-bottom: 10px; }
.why__text { font-size: 0.94rem; color: rgba(246,241,230,0.68); }

/* ==========================================================================
   AGENTES
   ========================================================================== */
.agents { background: var(--cream-100); }
.agents__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 780px) { .agents__grid { grid-template-columns: 1fr; max-width: 420px; } }
.agent-card { text-align: left; }
.agent-card__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 18px;
}
.agent-card__photo img { width: 100%; height: 100%; object-fit: cover; }

.agent-card__seal {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 18px;
  background-color: var(--navy-950);
  background-image:
    linear-gradient(rgba(194,154,75,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194,154,75,0.16) 1px, transparent 1px);
  background-size: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agent-card__monogram {
  width: 108px; height: 108px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--accent);
  background: rgba(194,154,75,0.06);
}
.agent-card__name { font-size: 1.25rem; margin-bottom: 4px; }
.agent-card__role {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
}

/* ==========================================================================
   RECORRIDO / GALERÍA
   ========================================================================== */
.tour { background: var(--navy-900); color: var(--cream-100); }
.tour .section__head h2 { color: var(--white); }
.tour .section__sub { color: rgba(246,241,230,0.7); }
.tour__wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.tour__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.tour__meta-title { font-size: 1.4rem; color: var(--white); }
.tour__meta-specs { font-family: var(--font-mono); font-size: 0.85rem; color: var(--accent); }

.tour__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 10px;
}
.tour__gallery button {
  border: none; padding: 0; margin: 0; cursor: zoom-in;
  border-radius: var(--radius); overflow: hidden; background: none;
}
.tour__gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.tour__gallery button:hover img { transform: scale(1.05); }
.tour__gallery .g-large { grid-column: span 2; grid-row: span 2; }
@media (max-width: 780px) {
  .tour__gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .tour__gallery .g-large { grid-column: span 2; grid-row: span 1; }
}

.tour__360 { margin-top: 40px; }
.tour__360-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tour__360-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: var(--navy-950);
  padding: 5px 11px;
  border-radius: 999px;
}
#panoramaViewer {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-800);
}
@media (max-width: 640px) { #panoramaViewer { height: 320px; } }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(6, 12, 20, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; object-fit: contain; border-radius: var(--radius); }
.lightbox__stage {
  width: min(80vw, 860px);
  height: min(70vh, 600px);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lightbox__stage .plan-art svg { width: 46%; height: 46%; }
.lightbox__caption {
  position: absolute;
  bottom: 8vh;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(246,241,230,0.75);
}
.lightbox__close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: var(--white);
  font-size: 2rem; cursor: pointer; line-height: 1;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); width: 46px; height: 46px; border-radius: 50%;
  cursor: pointer; font-size: 1.2rem;
}
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* ==========================================================================
   CONTADORES
   ========================================================================== */
.stats-band {
  background: var(--cream-50);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-band__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 780px) { .stats-band__grid { grid-template-columns: repeat(2, 1fr); } }
.stat__num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--navy-950);
}
.stat__num span.stat__suffix { color: var(--accent-dark); }
.stat__label {
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   TESTIMONIOS
   ========================================================================== */
.testimonials { background: var(--cream-100); }
.testimonials__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .testimonials__grid { grid-template-columns: 1fr; max-width: 560px; } }
.testimonial-card {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--line);
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--navy-950);
  line-height: 1.6;
}
.testimonial-card__author { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.testimonial-card__author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-950); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: 0.92rem; color: var(--navy-950); }
.testimonial-card__role { font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent-dark); }

/* ==========================================================================
   CONTACTO
   ========================================================================== */
.contact { background: var(--navy-950); color: var(--cream-100); }
.contact__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; gap: 40px; } }
.contact__intro h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.5rem); }
.contact__intro p { margin-top: 16px; color: rgba(246,241,230,0.72); font-size: 1.02rem; max-width: 42ch; }
.contact__direct { margin-top: 30px; display: flex; flex-direction: column; gap: 10px; }
.contact__direct a { font-family: var(--font-mono); color: var(--accent); font-size: 0.95rem; }

.tabs { display: flex; gap: 8px; margin-bottom: 22px; }
.tab-btn {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: rgba(246,241,230,0.7);
  cursor: pointer;
}
.tab-btn.is-active { background: var(--accent); color: var(--navy-950); border-color: var(--accent); }

.form {
  background: var(--navy-900);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.form__field { margin-bottom: 18px; }
.form__field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(246,241,230,0.6);
  margin-bottom: 8px;
}
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background: var(--navy-950);
  color: var(--cream-100);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.form__field textarea { resize: vertical; min-height: 90px; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus { border-color: var(--accent); outline: none; }
.form__note { font-size: 0.8rem; color: rgba(246,241,230,0.55); margin-top: 14px; text-align: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--navy-950); border-top: 1px solid var(--line-dark); padding: 40px 0; }
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); }
.footer__meta { font-size: 0.82rem; color: rgba(246,241,230,0.5); }
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-100);
  transition: border-color .18s ease, color .18s ease;
}
.footer__social a:hover { border-color: var(--accent); color: var(--accent); }

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.wa-float {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -10px rgba(0,0,0,0.5);
  color: var(--white);
}

/* ==========================================================================
   UTIL / SCROLL REVEAL HOOKS (GSAP targets these classes)
   ========================================================================== */
.reveal { opacity: 0; }
.js-fade-up { opacity: 0; transform: translateY(28px); }
