/* =========================================================
   P & CO Real Estate — Stylesheet
   ========================================================= */

:root {
  /* Colores — Paleta "Azul Marino" */
  --color-bg: #ffffff;
  --color-dark: #0B1F3A;
  --color-dark-2: #000000;
  --color-gold: #5b6470;
  --color-gold-light: #9aa2ad;
  --color-cream: #f2f3f5;
  --color-text: #16181d;
  --color-text-light: #6b7280;
  --color-border: #e0e2e6;

  /* Tipografía */
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-logo-main: "Cormorant Garamond", Georgia, serif;
  --font-logo-sub: "Arimo", Arial, sans-serif;

  /* Espaciados */
  --section-padding: 6.5rem 0;
  --container-width: 1200px;

  /* Transiciones */
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

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

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
  text-align: center;
}
.section-title--left { text-align: left; }
.section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 2rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .03em;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-gold);
  color: #fff;
}
.btn--primary:hover { background: var(--color-dark); transform: translateY(-2px); }
.btn--outline-light {
  border: 1px solid rgba(255,255,255,.6);
  color: #fff;
}
.btn--outline-light:hover { background: #fff; color: var(--color-dark); transform: translateY(-2px); }
.btn--ghost {
  border: 1px solid var(--color-dark);
  color: var(--color-dark);
  padding: .6rem 1.4rem;
  font-size: .82rem;
}
.btn--ghost:hover { background: var(--color-dark); color: #fff; }
.btn--block { width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: all .4s var(--ease);
}
.header.is-scrolled {
  background: rgba(18,21,28,.92);
  backdrop-filter: blur(10px);
  padding: .85rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo__main {
  font-family: var(--font-logo-main);
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
}
.logo__sub {
  font-family: var(--font-logo-sub);
  font-size: .58rem;
  letter-spacing: .32em;
  color: var(--color-gold-light);
  margin-top: .2rem;
}
.nav { display: flex; align-items: center; gap: 2.5rem; }
.nav__list { display: flex; gap: 2.2rem; }
.nav__link {
  color: #fff;
  font-size: .92rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width .3s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__cta { color: #fff; border-color: rgba(255,255,255,.5); }
.nav__cta:hover { background: var(--color-gold); border-color: var(--color-gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 110;
}
.nav-toggle span {
  height: 2px; width: 100%;
  background: #fff;
  transition: all .3s var(--ease);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__video, .hero__fallback-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}
.hero__fallback-img {
  background-image: url("../assets/images/hero-portada.png");
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,21,28,.55) 0%, rgba(18,21,28,.65) 55%, rgba(18,21,28,.9) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-top: 5rem;
}
.hero__content .eyebrow { color: var(--color-gold-light); }
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.hero__title em { color: var(--color-gold-light); font-style: normal; }
.hero__subtitle {
  max-width: 520px;
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2.4rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 20px;
  z-index: 1;
}
.scroll-indicator span {
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { padding: var(--section-padding); background: var(--color-cream); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.service-card {
  background: #fff;
  padding: 2.4rem 1.8rem;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(18,21,28,.08);
}
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-gold);
  margin-bottom: 1.4rem;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: .7rem;
  color: var(--color-dark);
}
.service-card p { color: var(--color-text-light); font-size: .93rem; }

/* =========================================================
   PROPERTIES
   ========================================================= */
.properties { padding: var(--section-padding); }
.filters {
  display: flex;
  justify-content: center;
  gap: .8rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: .55rem 1.4rem;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: all .3s var(--ease);
}
.filter-btn:hover { border-color: var(--color-gold); color: var(--color-dark); }
.filter-btn.is-active {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: #fff;
}

.properties__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.property-card {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), opacity .3s ease;
  background: #fff;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(18,21,28,.1);
}
.property-card.is-hidden { display: none; }
.property-card__img { position: relative; height: 220px; overflow: hidden; }
.property-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.property-card:hover .property-card__img img { transform: scale(1.08); }
.badge {
  position: absolute; top: 14px; left: 14px;
  padding: .3rem .8rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 3px;
  color: #fff;
}
.badge--venta { background: var(--color-gold); }
.badge--renta { background: #3f6b52; }
.badge--vendida {
  background: #b91c1c;
  font-size: .78rem;
  padding: .38rem .95rem;
  letter-spacing: .06em;
  box-shadow: 0 2px 10px rgba(185,28,28,.35);
}
.badge--comercial { background: #3a4a63; }

.property-card__img--gallery { cursor: pointer; }
.property-card__img--contain {
  background: var(--color-cream);
}
.property-card__img--contain img {
  object-fit: contain;
}
.gallery-count {
  position: absolute;
  bottom: 14px; right: 14px;
  display: flex; align-items: center; gap: .35rem;
  padding: .3rem .7rem;
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(18,21,28,.7);
  border-radius: 20px;
}
.gallery-count svg { width: 15px; height: 15px; }

.property-card__body { padding: 1.5rem; }
.property-card__price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: .3rem;
}
.property-card__title { font-size: 1.02rem; font-weight: 600; margin-bottom: .25rem; }
.property-card__location { color: var(--color-text-light); font-size: .87rem; margin-bottom: .9rem; }
.property-card__specs {
  display: flex; gap: 1rem;
  font-size: .8rem;
  color: var(--color-text-light);
  border-top: 1px solid var(--color-border);
  padding-top: .9rem;
  margin-bottom: 1.1rem;
}
.property-card__link {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 2px;
  transition: color .3s var(--ease);
}
.property-card__link:hover { color: var(--color-dark); border-color: var(--color-dark); }

/* =========================================================
   DISEÑO Y CONSTRUCCIÓN
   ========================================================= */
.design-build {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.design-build__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.design-build__video, .design-build__fallback-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}
.design-build__fallback-img {
  background-image: url("assets/images/diseno-construccion/render-01.jpg");
  animation: kenburns 18s ease-in-out infinite alternate;
}
.design-build__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(18,21,28,.92) 0%, rgba(18,21,28,.74) 45%, rgba(18,21,28,.35) 100%);
}
.design-build__content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 560px;
  padding: 5rem 0;
}
.design-build .eyebrow { color: var(--color-gold-light); }
.design-build__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.design-build__text {
  color: rgba(255,255,255,.85);
  font-size: 1.02rem;
  margin-bottom: 1.8rem;
}
.design-build__list {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.6rem;
  list-style: none;
  margin-bottom: 2.2rem;
  padding: 0;
}
.design-build__list li {
  position: relative;
  padding-left: 1.3rem;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
}
.design-build__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
}
.design-build__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 760px) {
  .design-build { min-height: auto; }
  .design-build__overlay { background: linear-gradient(180deg, rgba(18,21,28,.68) 0%, rgba(18,21,28,.92) 100%); }
  .design-build__content { max-width: none; padding: 4rem 0; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding: var(--section-padding); background: var(--color-cream); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__img img { border-radius: 6px; box-shadow: 0 30px 60px rgba(18,21,28,.15); }
.about__text { color: var(--color-text-light); margin: 1.2rem 0 2.5rem; font-size: 1.02rem; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: left; }
.stat__number, .stat__plus {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-gold);
}
.stat p { font-size: .85rem; color: var(--color-text-light); margin-top: .3rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { padding: var(--section-padding); }
.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
}
.contact-form {
  background: var(--color-cream);
  padding: 2.5rem;
  border-radius: 6px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { margin-bottom: 1.3rem; position: relative; }
.form-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: .45rem;
  color: var(--color-dark);
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  background: #fff;
  transition: border-color .3s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}
.form-error {
  display: none;
  font-size: .76rem;
  color: #b0392f;
  margin-top: .35rem;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #b0392f; }
.form-field.has-error .form-error { display: block; }
.form-error--terms { margin-top: -.8rem; margin-bottom: 1rem; }
.form-error--terms.is-visible { display: block; }
.form-success {
  display: none;
  margin-top: 1rem;
  font-size: .9rem;
  color: #3f6b52;
  font-weight: 600;
}
.form-success.is-visible { display: block; }

.contact-form__divider {
  text-align: center;
  font-size: .8rem;
  color: var(--color-text-light);
  margin: 1.2rem 0;
  position: relative;
}
.contact-form__divider::before,
.contact-form__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: var(--color-border);
}
.contact-form__divider::before { left: 0; }
.contact-form__divider::after { right: 0; }

.contact-info__card {
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--color-border);
}
.contact-info__card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: .5rem;
  color: var(--color-dark);
}
.contact-info__card p { color: var(--color-text-light); font-size: .92rem; margin-bottom: .2rem; }
.contact-info__card a:hover { color: var(--color-gold); }
.contact-info__social { display: flex; gap: 1rem; }
.contact-info__social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-dark);
  transition: all .3s var(--ease);
}
.contact-info__social svg { width: 18px; height: 18px; }
.contact-info__social a:hover { background: var(--color-gold); border-color: var(--color-gold); color: #fff; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--color-dark); color: rgba(255,255,255,.7); padding-top: 4.5rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__brand p { margin-top: 1rem; font-size: .88rem; max-width: 260px; }
.footer__col h4 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer__col a { display: block; margin-bottom: .7rem; font-size: .9rem; transition: color .3s; }
.footer__col a:hover { color: var(--color-gold-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: .82rem;
}

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  z-index: 90;
  animation: pulse 2.4s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =========================================================
   PROPERTY DETAIL (ficha estilo listing / brochure)
   ========================================================= */
.property-detail { padding-top: 6.5rem; padding-bottom: 6rem; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 1.4rem;
  transition: color .3s var(--ease);
}
.back-link:hover { color: var(--color-gold); }

/* Carrusel principal de fotos */
.brochure-hero { margin-bottom: 2.2rem; }
.brochure-hero__slider {
  position: relative;
  width: 100%;
  height: 62vh;
  min-height: 380px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-cream);
}
.brochure-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}
.brochure-hero__badge {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  z-index: 2;
}
.brochure-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(18,21,28,.55);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background .3s var(--ease);
  z-index: 2;
}
.brochure-hero__nav:hover { background: rgba(18,21,28,.8); }
.brochure-hero__nav--prev { left: 1rem; }
.brochure-hero__nav--next { right: 1rem; }
.brochure-hero__counter {
  position: absolute;
  bottom: 1.1rem; right: 1.2rem;
  z-index: 2;
  background: rgba(18,21,28,.6);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .8rem;
  border-radius: 20px;
}
.brochure-hero__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .7rem;
  margin-top: .7rem;
}
.brochure-hero__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: .7;
  transition: all .3s var(--ease);
}
.brochure-hero__thumb img { width: 100%; height: 100%; object-fit: cover; }
.brochure-hero__thumb:hover { opacity: 1; }
.brochure-hero__thumb.is-active { opacity: 1; border-color: var(--color-gold); }
.brochure-hero__thumb--more img { filter: brightness(.5); }
.brochure-hero__more {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}
.brochure-hero__more small {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: .2rem;
}

/* Encabezado de la ficha: título, dirección y precio */
.listing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--color-border);
}
.listing-header__top h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--color-dark);
  margin-bottom: .3rem;
}
.listing-header__address { color: var(--color-text-light); font-size: 1rem; }
.listing-header__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  text-align: right;
}
.listing-header__price small {
  display: block;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-top: .2rem;
}

/* Franja de specs, estilo MLS */
.listing-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 1.8rem 0;
}
.listing-stats__item {
  flex: 1 1 0;
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid var(--color-border);
}
.listing-stats__item:last-child { border-right: none; }
.listing-stats__item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-dark);
}
.listing-stats__item span {
  font-size: .74rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.listing-header__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

/* Navegación rápida por secciones */
.section-tabs {
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2.6rem;
  position: sticky;
  top: 84px;
  background: #fff;
  z-index: 5;
}
.section-tabs a {
  padding: .9rem 0;
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-text-light);
  border-bottom: 2px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.section-tabs a:hover { color: var(--color-dark); border-color: var(--color-border); }

/* Secciones de contenido */
.detail-section { margin-bottom: 3rem; scroll-margin-top: 140px; }
.detail-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 1.4rem;
}
.detail-description { color: var(--color-text); font-size: 1rem; line-height: 1.8; max-width: 760px; }

/* Recorrido panorámico (arrastrar) */
.pano-viewer {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--color-dark);
  box-shadow: 0 30px 60px rgba(18,21,28,.15);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.pano-viewer.is-dragging { cursor: grabbing; }
.pano-viewer__track {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  max-width: none;
  pointer-events: none;
  -webkit-user-drag: none;
}
.pano-viewer__hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.1rem;
  border-radius: 30px;
  background: rgba(18,21,28,.72);
  color: #fff;
  font-size: .82rem;
  letter-spacing: .02em;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.pano-viewer__hint svg { width: 18px; height: 18px; flex-shrink: 0; }
.pano-viewer.has-interacted .pano-viewer__hint { opacity: 0; }
.pano-viewer__caption {
  margin-top: .9rem;
  font-size: .88rem;
  color: var(--color-text-light, #6b7280);
}
@media (max-width: 640px) {
  .pano-viewer { height: 300px; }
}

.property-video {
  display: flex;
  justify-content: center;
}
.property-video__player {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  border-radius: 6px;
  background: var(--color-dark);
  box-shadow: 0 30px 60px rgba(18,21,28,.15);
  object-fit: cover;
}

.description-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.description-layout .detail-description { max-width: none; }
.description-layout__img img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 100%);
  opacity: .82;
}
@media (max-width: 760px) {
  .description-layout { grid-template-columns: 1fr; }
  .description-layout__img { order: -1; }
  .description-layout__img img {
    height: 220px;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 100%);
  }
}
.text-justify { text-align: justify; text-justify: inter-word; hyphens: auto; }
.detail-subheading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-dark);
  margin: 2rem 0 .9rem;
}

/* Detalles categorizados, tipo ficha MLS */
.spec-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.spec-group h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-gold);
  margin-bottom: .8rem;
}
.spec-rows { display: flex; flex-direction: column; }
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: .88rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-row dt { color: var(--color-text-light); flex-shrink: 0; }
.spec-row dd { color: var(--color-text); text-align: right; }

/* Índice de Estilo de Vida */
.lifestyle-panel {
  background: linear-gradient(160deg, var(--color-cream) 0%, #fff 100%);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 2.2rem;
}
.lifestyle-panel .detail-description { margin-bottom: 1.6rem; }

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.1rem;
}
.lifestyle-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  padding: 1.4rem .9rem 1.2rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-gold);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(18,21,28,.07);
  cursor: default;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-top-color .3s var(--ease);
}
.lifestyle-card:hover {
  box-shadow: 0 22px 44px rgba(18,21,28,.16);
  transform: translateY(-5px);
  border-top-color: var(--color-dark);
}
.lifestyle-card__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(184,147,90,.35);
}
.lifestyle-card__icon svg { width: 22px; height: 22px; }
.lifestyle-card h3 {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.25;
}
.lifestyle-score {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: var(--color-cream);
  padding: .2rem .6rem;
  border-radius: 20px;
}
/* Área donde la barra y la descripción se cruzan (crossfade) */
.lifestyle-card__meter {
  position: relative;
  width: 100%;
  min-height: 2.6rem;
  display: flex;
  align-items: center;
}
.lifestyle-bar {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  height: 4px;
  border-radius: 3px;
  background: var(--color-border);
  overflow: hidden;
  opacity: 1;
  transition: opacity .3s var(--ease);
}
.lifestyle-bar span {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: var(--color-gold);
}
.lifestyle-card__tooltip {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .74rem;
  line-height: 1.35;
  color: var(--color-text-light);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.lifestyle-card:hover .lifestyle-bar,
.lifestyle-card:focus-within .lifestyle-bar {
  opacity: 0;
}
.lifestyle-card:hover .lifestyle-card__tooltip,
.lifestyle-card:focus-within .lifestyle-card__tooltip {
  opacity: 1;
}

.lifestyle-note {
  margin-top: 1.2rem;
  font-size: .78rem;
  color: var(--color-text-light);
  font-style: italic;
}

/* Mapa de ubicación */
.map-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(18,21,28,.1);
  line-height: 0;
}
.map-frame iframe { display: block; width: 100%; }

@media (max-width: 600px) {
  .map-frame iframe { height: 280px; }
}

.contact-people {
  position: relative;
  overflow: hidden;
  margin-top: 1.6rem;
  padding: 1.4rem 1.4rem 1.6rem;
  background: var(--color-cream);
  border-radius: 10px;
}
.contact-people__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-family: var(--font-logo-main);
  font-weight: 700;
  font-size: clamp(3.5rem, 14vw, 9rem);
  letter-spacing: .04em;
  color: var(--color-gold);
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}
.contact-people__title,
.contact-people__cols {
  position: relative;
  z-index: 1;
}
.contact-people__title {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-dark);
}
.contact-people__cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: start;
}
.contact-people__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.contact-people .contact-form {
  margin: 0;
  padding: 1.4rem 1.5rem;
  background: transparent;
}
.contact-people .contact-form .form-row { gap: .8rem; }
.contact-people .contact-form .form-field { margin-bottom: .8rem; }
.contact-people .contact-form .form-field label { font-size: .76rem; margin-bottom: .3rem; }
.contact-people .contact-form .form-field input,
.contact-people .contact-form .form-field select,
.contact-people .contact-form .form-field textarea { padding: .55rem .7rem; font-size: .88rem; }
.contact-people .contact-form textarea { min-height: 70px; }
.contact-people .contact-form .schedule-terms { margin: .6rem 0 .8rem; font-size: .76rem; }
.contact-people .contact-form .btn--block { padding: .7rem 1rem; font-size: .88rem; }
@media (max-width: 760px) {
  .contact-people__cols { grid-template-columns: 1fr; }
}
.contact-person {
  padding: 1rem 1.1rem;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}
.contact-person h4 {
  margin: 0 0 .2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-dark);
}
.contact-person__role {
  margin: 0 0 .6rem;
  font-size: .82rem;
  color: var(--color-text-light);
}
.contact-person__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-person__links a {
  font-size: .85rem;
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
.contact-person__links a:hover { border-color: var(--color-gold); }

/* Más propiedades (fichas de propiedad) */
.related-properties { background: var(--color-cream); }
.related-properties__more {
  text-align: center;
  margin-top: 2.5rem;
}

/* Boletín */
.newsletter {
  background: var(--color-dark);
  padding: 3.5rem 0;
}
.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.newsletter__text { max-width: 480px; }
.newsletter .eyebrow { color: var(--color-gold-light); }
.newsletter__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: #fff;
  margin-bottom: .6rem;
}
.newsletter__subtitle {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  margin: 0;
}
.newsletter__form {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  flex-wrap: wrap;
}
.newsletter__field { position: relative; }
.newsletter__field input {
  width: 280px;
  max-width: 100%;
  padding: .8rem 1rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: .92rem;
}
.newsletter__field input::placeholder { color: rgba(255,255,255,.55); }
.newsletter__field input:focus { outline: none; border-color: var(--color-gold); }
.newsletter__field.has-error input { border-color: #e08b7d; }
.newsletter__field .form-error { color: #f2b8ac; }
.newsletter #newsletterSuccess {
  width: 100%;
  color: var(--color-gold);
  margin-top: 1rem;
}

/* Tarjeta de contacto / asesor */
.agent-card {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  background: var(--color-cream);
  border-radius: 8px;
  padding: 1.8rem 2rem;
}
.agent-card__avatar {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-logo-main);
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
}
.agent-card__info { flex: 1 1 240px; }
.agent-card__info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-dark);
}
.agent-card__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: .35rem;
}
.agent-card__brand .logo__main {
  color: var(--color-dark);
  font-size: 1.4rem;
}
.agent-card__brand .logo__sub {
  color: var(--color-text-light);
  margin-top: .15rem;
}
.agent-card__info p { color: var(--color-text-light); font-size: .88rem; margin-bottom: .4rem; }
.agent-card__contacts { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.agent-card__contacts a { font-size: .88rem; font-weight: 600; color: var(--color-dark); }
.agent-card__contacts a:hover { color: var(--color-gold); }

@media (max-width: 900px) {
  .spec-groups { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .brochure-hero__slider { height: 42vh; min-height: 260px; }
  .brochure-hero__thumbs { grid-template-columns: repeat(3, 1fr); }
  .listing-header { align-items: flex-start; }
  .listing-header__price { text-align: left; }
  .listing-stats { flex-wrap: wrap; }
  .listing-stats__item { flex: 1 1 45%; border-right: none; margin-bottom: 1rem; }
  .section-tabs { gap: 1.2rem; overflow-x: auto; top: 68px; }
  .spec-groups { grid-template-columns: 1fr; }
  .agent-card { justify-content: center; text-align: center; }
  .agent-card__contacts { justify-content: center; }
}

/* =========================================================
   LIGHTBOX / GALERÍA
   ========================================================= */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(10,11,15,.96);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox__stage img {
  width: min(88vw, 78vh);
  height: min(88vw, 78vh);
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}

@media (max-width: 600px) {
  .lightbox__stage img { width: min(92vw, 62vh); height: min(92vw, 62vh); }
}
.lightbox__caption { color: rgba(255,255,255,.75); font-size: .9rem; text-align: center; }
.lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
  opacity: .85;
  transition: opacity .3s;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.lightbox__nav:hover { background: rgba(255,255,255,.2); }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }

@media (max-width: 600px) {
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__close { top: 12px; right: 14px; }
}

/* =========================================================
   CALENDARIO DE CITAS (panel lateral)
   ========================================================= */
.schedule-modal {
  position: fixed; inset: 0;
  z-index: 210;
  display: none;
}
.schedule-modal.is-open { display: block; }
.schedule-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(18,21,28,.55);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.schedule-modal.is-open .schedule-modal__overlay { opacity: 1; }

.schedule-modal__panel {
  position: absolute;
  top: 0; right: 0;
  z-index: 1;
  height: 100%;
  width: min(420px, 100%);
  background: #fff;
  box-shadow: -20px 0 50px rgba(18,21,28,.25);
  overflow-y: auto;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.schedule-modal.is-open .schedule-modal__panel { transform: translateX(0); }

.schedule-modal__close {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--color-text-light);
  transition: color .3s var(--ease);
}
.schedule-modal__close:hover { color: var(--color-dark); }
.schedule-modal__panel h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-dark);
  padding-right: 1.5rem;
  margin-top: .3rem;
}
.schedule-modal__subtitle {
  color: var(--color-text-light);
  font-size: .88rem;
  margin-bottom: 1.6rem;
}
.schedule-modal__label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: .7rem;
}

/* Tipo de recorrido */
.schedule-tour-type {
  display: flex;
  gap: .6rem;
  margin-bottom: 1.8rem;
}
.schedule-tour-btn {
  flex: 1;
  padding: .7rem .5rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-align: center;
  transition: all .3s var(--ease);
}
.schedule-tour-btn:hover { border-color: var(--color-gold); color: var(--color-dark); }
.schedule-tour-btn.is-active {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: #fff;
}

/* Selector de día: 3 opciones visibles + flechas */
.schedule-days {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.8rem;
}
.schedule-days__nav {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.schedule-days__nav:hover { border-color: var(--color-gold); color: var(--color-dark); }
.schedule-days__nav:disabled { opacity: .3; cursor: default; }
.schedule-days__nav:disabled:hover { border-color: var(--color-border); color: var(--color-text-light); }
.schedule-days__list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}
.schedule-day-btn {
  padding: .7rem .3rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  text-align: center;
  transition: all .3s var(--ease);
}
.schedule-day-btn:hover { border-color: var(--color-gold); }
.schedule-day-btn.is-active {
  background: var(--color-gold);
  border-color: var(--color-gold);
}
.schedule-day-btn.is-active .schedule-day-btn__weekday,
.schedule-day-btn.is-active .schedule-day-btn__number { color: #fff; }
.schedule-day-btn__weekday {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
.schedule-day-btn__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-top: .1rem;
}

/* Horarios */
.schedule-times {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.8rem;
}
.schedule-time-btn {
  padding: .55rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-text-light);
  transition: all .3s var(--ease);
}
.schedule-time-btn:hover { border-color: var(--color-gold); color: var(--color-dark); }
.schedule-time-btn.is-active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
}

/* Términos y condiciones */
.schedule-terms {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin: 1.2rem 0 1.4rem;
  font-size: .82rem;
  color: var(--color-text-light);
}
.schedule-terms input { margin-top: .2rem; flex-shrink: 0; }

.schedule-modal__error {
  display: none;
  font-size: .82rem;
  color: #b0392f;
  margin-top: .8rem;
  text-align: center;
}
.schedule-modal__error.is-visible { display: block; }

@media (max-width: 480px) {
  .schedule-modal__panel { width: 100%; padding: 1.6rem; }
  .schedule-tour-type { flex-direction: column; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 992px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .properties__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 80%);
    height: 100vh;
    background: var(--color-dark-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem;
    gap: 2.4rem;
    transition: right .45s var(--ease);
  }
  .nav.is-open { right: 0; }
  .nav__list { flex-direction: column; gap: 1.6rem; }
  .nav-toggle { display: flex; }
  .nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .services__grid { grid-template-columns: 1fr; }
  .properties__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}

/* ===== Timeline (proceso de compra) ===== */
.process-timeline {
  list-style: none;
  padding: 0 0 0 1.6rem;
  margin: 1.75rem 0 0;
  border-left: 2px solid var(--color-cream);
}
.process-timeline li { position: relative; padding-bottom: 1.6rem; }
.process-timeline li:last-child { padding-bottom: 0; }
.process-timeline li::before {
  content: '';
  position: absolute;
  left: -1.68rem;
  top: .3rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-dark);
}
.process-timeline strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: .2rem;
}
.process-timeline span.duration {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--color-dark);
  background: var(--color-cream);
  padding: .2rem .6rem;
  border-radius: 20px;
  margin-bottom: .4rem;
}
.process-timeline p {
  margin: 0;
  color: var(--color-text-light);
  font-size: .92rem;
  line-height: 1.6;
}
.timeline-total {
  margin-top: 1.75rem;
  padding: 1.1rem 1.4rem;
  background: var(--color-cream);
  border-radius: 8px;
  font-size: .92rem;
  color: var(--color-text-light);
}
.timeline-total strong { color: var(--color-text); }

/* ===== FAQ ===== */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 1.1rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.03rem;
  color: var(--color-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-gold);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p {
  margin: .85rem 0 0;
  color: var(--color-text-light);
  font-size: .93rem;
  line-height: 1.65;
}
