/* ============================================================
   Serranía Topocoro · Landing
   Paleta: teal petróleo profundo + terracota + bone crema
   Tipografía: Fraunces (serif display) + Inter (sans body)
   ============================================================ */

:root {
  --teal: #2AA79F;
  --teal-2: #1D7C77;
  --teal-3: #124742;
  --teal-4: #0C1815;         /* ink profundo, casi negro con tinte teal */
  --terra: #C25A2C;
  --terra-2: #8F3D1A;
  --terra-tint: rgba(194,90,44,0.12);
  --bone: #F5F1E9;
  --bone-2: #EAE3D3;
  --cream: #FDFAF3;
  --ink: #0C1815;
  --ink-2: #1B2A26;
  --text: #2D3835;
  --text-2: #5E6864;
  --text-muted: #90948E;
  --line: #DCD6C6;
  --line-dark: rgba(255,255,255,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(12,24,21,0.06);
  --shadow: 0 8px 24px rgba(12,24,21,0.10);
  --shadow-lg: 0 32px 60px -20px rgba(12,24,21,0.30);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bone);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ TIPOGRAFÍA ============ */
h1, h2, h3, h4, h5 {
  margin: 0 0 12px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
  font-variation-settings: "opsz" 96;
}
h1 em, h2 em, h3 em, .em-serif {
  font-style: italic;
  font-weight: 300;
  color: var(--teal-2);
}
.display-2 {
  font-size: clamp(32px, 5vw, 60px);
  margin-bottom: 20px;
  text-wrap: balance;
}
.display-2.light, .light { color: var(--bone); }
.display-2.light em { color: var(--teal); }
p { margin: 0 0 14px; }
.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 56ch;
  margin-bottom: 22px;
}
.lead.light { color: rgba(245, 241, 233, 0.75); }
strong { color: var(--ink); font-weight: 600; }
.light strong, .light em, .light { color: var(--bone); }

/* ============ WRAP ============ */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
}
.section {
  padding: 100px 0;
}
@media (max-width: 720px) {
  .section { padding: 70px 0; }
}
.section-dark {
  background: var(--ink);
  color: var(--bone);
}
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}
.section-eyebrow.light { color: var(--teal); }
.section-head { margin-bottom: 60px; max-width: 780px; }
.section-head.centered { margin: 0 auto 60px; text-align: center; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(12, 24, 21, 0.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand img {
  height: 85px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35));
}
.site-header.scrolled .brand img {
  height: 58px;
}
@media (max-width: 720px) {
  .brand img { height: 56px; }
  .site-header.scrolled .brand img { height: 44px; }
}
.nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav a {
  color: rgba(245, 241, 233, 0.82);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav a::after {
  content: ""; position: absolute;
  left: 0; right: 100%; bottom: -4px;
  height: 1.5px; background: var(--teal);
  transition: right 0.25s ease;
}
.nav a:hover { color: var(--bone); }
.nav a:hover::after { right: 0; }
@media (max-width: 900px) {
  .nav { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--terra);
  color: var(--bone);
}
.btn-primary:hover {
  background: var(--terra-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(194,90,44,0.6);
}
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(245,241,233,0.35);
}
.btn-ghost:hover {
  border-color: var(--bone);
  background: rgba(245,241,233,0.06);
}
.btn-lg { padding: 18px 32px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-block { width: 100%; padding: 18px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--bone);
  overflow: hidden;
  padding: 140px 0 90px;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: heroZoom 20s ease-out infinite alternate;
}
@media (max-width: 720px) {
  .hero-media img { object-position: center 40%; }
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(12,24,21,0.55) 0%,
      rgba(12,24,21,0.15) 30%,
      rgba(12,24,21,0.40) 65%,
      rgba(12,24,21,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.30em;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 24px;
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(42,167,159,0.35);
  border-radius: 100px;
  background: rgba(12,24,21,0.35);
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 7.5vw, 96px);
  font-weight: 300;
  line-height: 0.98;
  color: var(--bone);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-title em {
  font-style: italic;
  color: var(--teal);
  font-weight: 300;
}
.hero-lead {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(245,241,233,0.90);
  max-width: 640px;
  margin-bottom: 40px;
}
.hero-lead strong { color: var(--bone); font-weight: 500; }
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-quick {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(245,241,233,0.72);
  letter-spacing: 0.02em;
}
.hero-quick strong {
  color: var(--teal);
  font-weight: 600;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.hero-quick .sep { color: rgba(245,241,233,0.3); }
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(245,241,233,0.5);
  z-index: 3;
  animation: fadeUp 2s ease-out;
}
.scroll-dot {
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%,100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.3; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--teal-4);
  color: var(--bone);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll 45s linear infinite;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
}
.marquee-track span:not(:empty) {
  flex-shrink: 0;
}
.marquee-track span:nth-child(even) { color: var(--teal); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ GRID-2 (layouts) ============ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.grid-reverse .media-card,
.grid-reverse iframe,
.grid-reverse .map-wrap { order: -1; }
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-reverse .map-wrap { order: 0; }
}

/* ============ PROYECTO ============ */
.key-facts {
  list-style: none;
  padding: 0; margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.key-facts li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.key-facts span {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--teal-2);
  line-height: 1;
  letter-spacing: -0.03em;
}
.key-facts span em {
  font-size: 18px;
  color: var(--terra);
  font-style: normal;
  font-weight: 400;
  margin-left: 2px;
}
.key-facts small {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 4px;
}
.media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.media-card.tall { aspect-ratio: 3/4; }
.media-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.media-card:hover img { transform: scale(1.04); }

/* ============ DIFERENCIALES ============ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 720px) {
  .feat-grid { grid-template-columns: 1fr; gap: 32px; }
}
.feat {
  padding: 32px 4px 32px 40px;
  border-left: 2px solid rgba(255,255,255,0.10);
  transition: border-color 0.3s;
}
.feat:hover { border-left-color: var(--teal); }
.feat-num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.15em;
}
.feat h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--bone);
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 96;
}
.feat p {
  color: rgba(245,241,233,0.72);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.feat p strong { color: var(--teal); font-weight: 500; }

/* ============ UBICACIÓN ============ */
.loc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}
.loc-item {
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.loc-item strong {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--teal-2);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.loc-item span {
  font-size: 13px;
  color: var(--text-2);
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

/* ============ MASTER PLAN ============ */
.master-plan-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.master-plan-visual img {
  width: 100%; height: auto;
  display: block;
}
.mp-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.mp-tags span {
  padding: 10px 20px;
  background: rgba(42,167,159,0.10);
  border: 1px solid rgba(42,167,159,0.30);
  border-radius: 100px;
  font-size: 13px;
  color: var(--bone);
  font-weight: 500;
}

/* ============ ENTORNO ============ */
.entorno-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .entorno-grid { grid-template-columns: 1fr; }
}
.entorno-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.entorno-grid figure:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.entorno-grid img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.entorno-grid figcaption {
  padding: 24px;
}
.entorno-grid figcaption strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.entorno-grid figcaption span {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ============ INVERSIÓN ============ */
.fin-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.fin-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  align-items: flex-start;
}
.fin-mark {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--teal);
  color: var(--bone);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.fin-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}
.fin-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ============ GALERÍA ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid img {
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.4s ease;
  cursor: zoom-in;
  filter: brightness(0.92);
}
.gallery-grid img:hover {
  filter: brightness(1);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* ============ RESERVAR ============ */
.reservar {
  background: linear-gradient(180deg, var(--bone) 0%, var(--bone-2) 100%);
}
.commitments {
  display: flex; flex-direction: column;
  gap: 10px; margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.commitments div {
  font-size: 14px;
  color: var(--text-2);
  display: flex; align-items: center; gap: 8px;
}
.commitments div::before {
  content: "✓";
  color: var(--teal);
  font-weight: 700;
  font-size: 16px;
}

.lead-form {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.field {
  margin-bottom: 18px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) { .field-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.field input, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--bone);
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(42,167,159,0.12);
}
.fine-print {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
  text-align: center;
}
.fine-print a { color: var(--teal-2); text-decoration: underline; }
.form-success {
  padding: 16px 20px;
  background: rgba(42,167,159,0.10);
  border: 1px solid rgba(42,167,159,0.35);
  color: var(--teal-2);
  border-radius: 10px;
  margin-top: 14px;
  font-size: 14px;
}
.form-error {
  padding: 16px 20px;
  background: rgba(194,90,44,0.10);
  border: 1px solid rgba(194,90,44,0.35);
  color: var(--terra-2);
  border-radius: 10px;
  margin-top: 14px;
  font-size: 14px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--teal-4);
  color: var(--bone);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-logo {
  height: auto;
  width: 150px;
  max-width: 100%;
  margin-bottom: 20px;
  display: block;
}
.site-footer p, .site-footer a {
  color: rgba(245,241,233,0.72);
  font-size: 14px;
  line-height: 1.6;
}
.site-footer a:hover { color: var(--teal); }
.site-footer h5 {
  color: var(--bone);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(245,241,233,0.5);
  gap: 12px;
  flex-wrap: wrap;
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  z-index: 90;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ============ ETAPAS ============ */
.etapas { background: linear-gradient(180deg, var(--bone) 0%, var(--cream) 100%); }
.etapa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 900px) { .etapa-grid { grid-template-columns: 1fr; } }
.etapa-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}
.etapa-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.etapa-card.etapa-active {
  border-color: var(--terra);
  background: linear-gradient(180deg, white 0%, var(--terra-tint) 100%);
}
.etapa-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--terra);
  color: var(--bone);
}
.etapa-badge-soon { background: var(--teal); color: var(--bone); }
.etapa-badge-later { background: var(--line); color: var(--text-2); }
.etapa-num {
  font-family: 'Fraunces', serif;
  font-size: 72px;
  font-weight: 400;
  color: var(--teal-2);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.20;
  margin-bottom: -20px;
}
.etapa-card.etapa-active .etapa-num { color: var(--terra); opacity: 0.25; }
.etapa-count {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--terra);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.etapa-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.etapa-card p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* ============ FAQ ============ */
.faq-sec { background: var(--cream); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  padding: 24px 8px 24px 4px;
  cursor: pointer;
  list-style: none;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--teal-2); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  color: var(--terra);
  font-weight: 300;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-body {
  padding: 0 8px 24px 4px;
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 66ch;
}
.faq-body p { margin: 0 0 10px; }
.faq-body a { color: var(--teal-2); text-decoration: underline; }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
