/* =============================================================
   Inmobiliaria J. Ortuondo — stylesheet
   Archetype: Newspaper Editorial (cream paper, high-contrast serif,
   drop caps, hairline rules, single newspaper-red accent)
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:         #faf6ee;
  --bg-2:       #f1e9d8;
  --paper:      #ffffff;
  --ink:        #1c1712;
  --ink-soft:   #3c352c;
  --ink-mute:   #746a5c;
  --ink-faint:  #a89c89;
  --accent:     #a21c2b;
  --accent-2:   #7a1520;
  --accent-soft:rgba(162,28,43,0.08);
  --line:       rgba(28,23,18,0.14);
  --line-strong:rgba(28,23,18,0.55);

  --serif-display: "Bodoni Moda", Georgia, "Times New Roman", serif;
  --serif-body:    "Source Serif 4", Georgia, serif;
  --sans:          "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 130px;
  --container-w: 1180px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--serif-body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--serif-display);
  color: var(--ink);
  text-wrap: balance;
  line-height: 1.05;
  font-weight: 600;
}

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

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

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.2rem; background: var(--ink); color: var(--bg);
  font-family: var(--sans); font-weight: 600; font-size: .9rem;
  border-radius: 3px;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

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

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.hairline { border: 0; border-top: 1px solid var(--line); }
.hairline-strong { border: 0; border-top: 1px solid var(--line-strong); }

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
}
.kicker::before {
  content: ""; width: 22px; height: 1px; background: var(--accent);
}

.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-top: .6rem; }
.section-head h2 em { font-style: italic; color: var(--accent); }
.section-head p { margin-top: 1rem; font-size: 1.08rem; color: var(--ink-mute); max-width: 56ch; }

/* =============================================================
   4. Reveal on scroll (universal, functional — not gated)
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
/* Defensive: split/dropcap text must never be trapped invisible */
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  letter-spacing: .01em;
  padding: .95rem 1.7rem;
  border-radius: 2px;
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 10px 22px -8px rgba(162,28,43,.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -8px rgba(162,28,43,.6); background: var(--accent-2); }
.btn-primary:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-outline {
  background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong);
}
.btn-outline:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.btn-ghost {
  background: transparent; color: var(--ink); padding-inline: 0;
  border-bottom: 1.5px solid var(--ink);
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

.btn-lg { padding: 1.1rem 2.1rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* =============================================================
   6. Reading progress bar (SIGNATURE EFFECT)
   ============================================================= */
.reading-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 210;
  background: transparent; pointer-events: none;
}
.reading-progress span {
  display: block; height: 100%; width: 100%;
  background: var(--accent);
  transform-origin: 0 0; transform: scaleX(0);
  transition: transform .1s linear;
}

/* =============================================================
   7. Masthead / Navigation
   ============================================================= */
.masthead {
  position: sticky; top: 0; z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--line-strong);
}
.masthead-meta {
  display: none;
}
@media (min-width: 720px) {
  .masthead-meta {
    display: flex; justify-content: space-between; align-items: center;
    padding: .5rem 1.25rem;
    max-width: var(--container-w); margin-inline: auto;
    font-family: var(--sans); font-size: .72rem; letter-spacing: .1em;
    text-transform: uppercase; color: var(--ink-mute);
    border-bottom: 1px solid var(--line);
  }
  .masthead-meta a { transition: color .25s; }
  .masthead-meta a:hover { color: var(--accent); }
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container-w); margin-inline: auto;
  padding: .9rem 1.25rem;
  gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.nav-logo img { width: 56px; height: 56px; object-fit: contain; }
@media (min-width: 720px) { .nav-logo img { width: 68px; height: 68px; } }
.nav-brand {
  font-family: var(--serif-display); font-size: 1.3rem; line-height: 1.05;
  color: var(--ink);
}
.nav-brand strong { color: var(--accent); }
.nav-brand-sub {
  display: block; font-family: var(--sans); font-size: .62rem;
  letter-spacing: .13em; text-transform: uppercase; color: var(--ink-mute);
  margin-top: .1rem;
}

.nav-links {
  display: none;
  gap: 2rem;
  font-family: var(--sans); font-size: .88rem; font-weight: 500;
}
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-links a { position: relative; padding-block: .3rem; color: var(--ink-soft); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: .9rem; flex-shrink: 0; }
.nav-tel {
  display: none; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: .92rem; color: var(--ink);
}
@media (min-width: 1160px) { .nav-tel { display: inline-flex; } }
.nav-tel svg { color: var(--accent); }

.nav-burger {
  display: grid; place-items: center; width: 40px; height: 40px; flex-shrink: 0;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span {
  position: relative; width: 20px; height: 2px; background: var(--ink);
  transition: background .3s;
}
.nav-burger span::before, .nav-burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink);
  transition: transform .3s var(--ease-out), top .3s var(--ease-out);
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }
.nav-burger[aria-expanded="true"] span { background: transparent; }
.nav-burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 190;
  background: var(--bg);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
  overflow-y: auto;
}
.mobile-nav.is-open { clip-path: inset(0 0 0 0); }
.mobile-nav-links { padding: 2rem 1.5rem; display: flex; flex-direction: column; }
.mobile-nav-links li { border-bottom: 1px solid var(--line); }
.mobile-nav-links a {
  display: block; padding: 1.1rem 0; font-family: var(--serif-display);
  font-size: 1.5rem; color: var(--ink);
}
.mobile-nav-ctas { padding: 1.5rem; display: flex; flex-direction: column; gap: .8rem; }

/* =============================================================
   8. Hero / hero-article
   ============================================================= */
.hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 5vw, 3rem); }
.hero-inner { max-width: 860px; margin-inline: auto; text-align: center; }
.hero-deck-top { margin-bottom: 1.1rem; }
.hero-title {
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 20ch;
  margin-inline: auto;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-deck {
  margin-top: 1.4rem; font-family: var(--serif-body); font-size: 1.2rem;
  color: var(--ink-mute); max-width: 52ch; margin-inline: auto;
  font-style: italic;
}
.hero-actions {
  margin-top: 2.1rem; display: flex; flex-wrap: wrap; gap: 1.1rem; justify-content: center;
}

.hero-figure { position: relative; margin-top: clamp(2.2rem, 5vw, 3.5rem); overflow: hidden; }
.hero-figure img {
  width: 100%; aspect-ratio: 16/8; object-fit: cover;
  will-change: transform;
}

.lede { max-width: 68ch; margin: clamp(2.5rem, 5vw, 3.5rem) auto 0; font-size: 1.14rem; }
.dropcap {
  float: left; font-family: var(--serif-display); font-style: italic;
  font-size: 4.4rem; line-height: .82; font-weight: 700;
  margin: .1rem .5rem -.15rem 0; color: var(--accent);
}

/* =============================================================
   9. Stats strip
   ============================================================= */
.stats {
  background: var(--ink);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.stats-inner {
  max-width: var(--container-w); margin-inline: auto; padding-inline: 1.25rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.6rem 1.5rem;
}
@media (min-width: 720px) { .stats-inner { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.stat-item { text-align: center; }
.stat-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(162,28,43,.2); color: #e0808c;
  margin-bottom: 1.1rem;
}
.stat-num {
  display: block; font-family: var(--serif-display); font-weight: 700;
  font-size: clamp(2.7rem, 6vw, 4.1rem); color: var(--bg); line-height: 1;
}
.stat-label {
  margin-top: .65rem; font-family: var(--sans); font-size: .84rem;
  font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
  color: rgba(250,246,238,.62);
}

/* =============================================================
   10. Services — numbered department blocks
   ============================================================= */
.services-list { border-top: 1px solid var(--line-strong); }
.service-row {
  display: grid; grid-template-columns: 1fr; gap: 1.2rem;
  padding-block: 2.2rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .service-row { grid-template-columns: 90px 1fr; gap: 2rem; align-items: start; }
}
@media (min-width: 960px) {
  .service-row.has-img { grid-template-columns: 90px 1fr 220px; }
}
.service-num {
  font-family: var(--serif-display); font-weight: 700; font-style: italic;
  font-size: 2.1rem; color: var(--accent); line-height: 1;
}
.service-body h3 { font-size: 1.5rem; margin-bottom: .55rem; }
.service-body p { max-width: 60ch; color: var(--ink-mute); }
.service-body .service-link {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: .85rem;
  font-family: var(--sans); font-weight: 600; font-size: .85rem; color: var(--accent);
  border-bottom: 1px solid transparent; transition: border-color .3s, gap .3s;
}
.service-body .service-link:hover { border-color: var(--accent); gap: .6rem; }
.service-thumb {
  display: none;
}
@media (min-width: 960px) {
  .service-thumb { display: block; border-radius: 2px; overflow: hidden; aspect-ratio: 4/3; }
  .service-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft), filter .5s; }
  .service-row:hover .service-thumb img { transform: scale(1.08); filter: saturate(1.12); }
}

/* =============================================================
   11. Nosotros / Historia — multi-column + pull quote
   ============================================================= */
.about { background: var(--bg-2); border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.about-figure { position: relative; overflow: hidden; margin-bottom: clamp(2rem, 5vw, 3rem); }
.about-figure img { width: 100%; aspect-ratio: 21/9; object-fit: cover; will-change: transform; }
.about-figure figcaption {
  margin-top: .7rem; font-family: var(--serif-body); font-style: italic;
  font-size: .88rem; color: var(--ink-mute);
}
.about-body p { margin-bottom: 1.1rem; }
.about-paras {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 720px) {
  .about-paras { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
  .about-paras p { margin-bottom: 0; }
}

.pull-quote {
  margin: 2.4rem 0; padding-left: 1.6rem; border-left: 3px solid var(--accent);
  break-inside: avoid;
}
.pull-quote q {
  display: block; font-family: var(--serif-display); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.22; color: var(--ink);
  quotes: none;
}
.pull-quote cite {
  display: block; margin-top: .7rem; font-family: var(--sans); font-style: normal;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-mute);
}

/* =============================================================
   12. Zona de servicio
   ============================================================= */
.coverage-text { max-width: 74ch !important; font-size: 1.08rem; }

/* =============================================================
   13. Opiniones — carousel de reseñas de Google
   ============================================================= */
.g-carousel { max-width: 1040px; margin-inline: auto; }
.g-carousel-track { position: relative; }

.g-page { display: none; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 1.2rem; }
.g-page.is-active { display: flex; animation: gReviewIn .5s var(--ease-soft); }
@keyframes gReviewIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.g-review {
  flex: 1 1 260px; max-width: 320px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px -14px rgba(28,23,18,.18);
  padding: 1.8rem 1.9rem;
}

.g-review-head { display: flex; align-items: flex-start; gap: .8rem; margin-bottom: 1.1rem; }
.g-avatar {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--sans); font-weight: 600; font-size: 1.05rem; color: #fff;
  background: var(--accent);
}
.g-review:nth-of-type(2n) .g-avatar { background: #5C6BC0; }
.g-review:nth-of-type(3n) .g-avatar { background: #26A69A; }
.g-review:nth-of-type(4n) .g-avatar { background: #EF6C00; }
.g-review:nth-of-type(5n) .g-avatar { background: #8E7CC3; }

.g-review-meta { flex: 1; min-width: 0; }
.g-review-meta strong { display: block; font-family: var(--sans); font-size: .96rem; color: var(--ink); }
.g-review-sub { display: flex; align-items: center; gap: .5rem; margin-top: .15rem; }
.g-stars { color: #FBBC04; font-size: .82rem; letter-spacing: .1em; }
.g-stars-4 { -webkit-text-fill-color: initial; background: linear-gradient(90deg, #FBBC04 0 80%, var(--line) 80% 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.g-time { font-family: var(--sans); font-size: .78rem; color: var(--ink-faint); }
.g-logo { flex-shrink: 0; margin-top: .1rem; }

.g-review q {
  display: block; font-family: var(--sans); font-size: .98rem; line-height: 1.6;
  color: var(--ink-soft); quotes: none;
}

.g-carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 1.4rem;
  margin-top: 1.6rem;
}
.g-arrow {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong); color: var(--ink);
  transition: background .3s, color .3s, border-color .3s;
}
.g-arrow:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.g-dots { display: flex; align-items: center; gap: .5rem; }
.g-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong);
  transition: background .3s, transform .3s;
}
.g-dot.is-active { background: var(--accent); transform: scale(1.3); }

.testimonials-note {
  margin-top: 1.6rem; text-align: center;
  font-family: var(--sans); font-size: .78rem; color: var(--ink-faint);
}

/* =============================================================
   14. Contact / CTA
   ============================================================= */
.contact { background: var(--ink); color: var(--bg); border-top: 1px solid var(--line-strong); }
.contact .kicker { color: #d8a3aa; }
.contact .kicker::before { background: #d8a3aa; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1.1fr .9fr; gap: 4rem; } }

.contact-phone-cta { margin-top: .4rem; }
.contact-phone-cta a {
  display: inline-block; font-family: var(--serif-display); font-style: italic;
  font-weight: 700; font-size: clamp(2.2rem, 6vw, 3.6rem); color: var(--bg);
  border-bottom: 2px solid transparent; transition: border-color .35s, color .35s;
}
.contact-phone-cta a:hover { color: var(--accent); border-color: var(--accent); }
.contact-sub { margin-top: 1.4rem; color: rgba(250,246,238,.72); max-width: 46ch; }

.contact-info-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-info-list .item { display: flex; gap: .9rem; align-items: flex-start; }
.contact-info-list svg { flex-shrink: 0; margin-top: .2rem; color: var(--accent); }
.contact-info-list strong { display: block; font-family: var(--sans); font-size: .82rem; letter-spacing: .04em; color: var(--bg); }
.contact-info-list p, .contact-info-list a { color: rgba(250,246,238,.72); }
.contact-info-list a:hover { color: var(--bg); }

.contact-map { margin-top: 2rem; border-radius: 3px; overflow: hidden; filter: grayscale(.25) contrast(1.05); }

.contact-form-wrap {
  background: rgba(250,246,238,.05); border: 1px solid rgba(250,246,238,.16);
  padding: clamp(1.5rem, 3vw, 2.2rem); border-radius: 3px;
}
.contact-form-wrap h3 { color: var(--bg); font-size: 1.3rem; margin-bottom: .3rem; }
.contact-form-wrap > p { color: rgba(250,246,238,.6); font-size: .92rem; margin-bottom: 1.4rem; }

.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block; font-family: var(--sans); font-size: .74rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: rgba(250,246,238,.65);
  margin-bottom: .45rem;
}
.form-field input, .form-field textarea {
  width: 100%; padding: .8rem .9rem; border: 1px solid rgba(250,246,238,.25);
  background: rgba(250,246,238,.05); color: var(--bg); font-family: var(--sans); font-size: .95rem;
  border-radius: 2px; transition: border-color .25s, background .25s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(250,246,238,.35); }
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--accent); background: rgba(250,246,238,.08);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.field-error {
  display: block; margin-top: .35rem; font-family: var(--sans); font-size: .78rem; color: #ff9baa;
  min-height: 1em;
}

.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 540px) { .form-row-2 { grid-template-columns: 1fr 1fr; gap: 1rem; } }

.contact-form { position: relative; }
.contact-form.is-sent { opacity: 0; transform: translateY(-10px); pointer-events: none; position: absolute; inset: 0; transition: opacity .5s, transform .5s; }
.btn-submit { position: relative; }
.btn-submit .btn-spinner { display: none; }
.contact-form.is-sending .btn-label { visibility: hidden; }
.contact-form.is-sending .btn-spinner {
  display: block; position: absolute; inset: 0; margin: auto; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%;
  animation: spin .85s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  text-align: center; padding: 1.5rem 0;
}
.form-success .success-icon { color: var(--accent); margin-bottom: 1rem; }
.form-success h3 { color: var(--bg); margin-bottom: .5rem; }
.form-success p { color: rgba(250,246,238,.72); }
.form-success p a { color: var(--bg); border-bottom: 1px solid var(--accent); }

/* =============================================================
   15. Footer
   ============================================================= */
.footer { background: var(--ink); color: rgba(250,246,238,.6); padding-top: 2.5rem; }
.footer-inner {
  display: grid; grid-template-columns: 1fr; gap: 2.2rem;
  padding-bottom: 2.2rem; border-bottom: 1px solid rgba(250,246,238,.14);
}
@media (min-width: 720px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; } }
.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: .9rem; }
.footer-brand img { width: 56px; height: 56px; }
.footer-brand span { font-family: var(--serif-display); font-size: 1.2rem; color: var(--bg); }
.footer h3 {
  font-family: var(--sans); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(250,246,238,.85); margin-bottom: .9rem; font-weight: 600;
}
.footer ul { display: flex; flex-direction: column; gap: .55rem; font-size: .92rem; }
.footer a:hover { color: var(--bg); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem;
  padding-block: 1.4rem; font-size: .78rem;
}
.footer-bottom a { border-bottom: 1px solid transparent; }
.footer-bottom a:hover { border-color: currentColor; color: var(--bg); }

/* =============================================================
   16. Mobile floating call bar
   ============================================================= */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: flex; gap: 1px; background: var(--line-strong);
  border-top: 1px solid var(--line-strong);
}
@media (min-width: 720px) { .mobile-cta { display: none; } }
.mobile-cta a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem; font-family: var(--sans); font-weight: 600; font-size: .88rem;
}
.mcta-call { background: var(--accent); color: #fff; }
.mcta-whatsapp { background: var(--ink); color: var(--bg); }

/* =============================================================
   17. Credits page
   ============================================================= */
.page-credits main { max-width: 720px; margin-inline: auto; padding: clamp(3rem, 6vw, 5rem) 1.25rem; }
.page-credits h1 { font-size: 2.2rem; margin-bottom: 1.5rem; }
.credits-list li {
  padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; color: var(--ink-mute);
}
.credits-list a { color: var(--accent); border-bottom: 1px solid transparent; }
.credits-list a:hover { border-color: var(--accent); }
.credits-back {
  display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 2rem;
  font-family: var(--sans); font-weight: 600; font-size: .9rem; color: var(--ink);
}

/* =============================================================
   18. Reduced motion — only genuinely intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .reading-progress span { transition: none; }
  /* Do NOT disable: reveal fades, hover states, count-up, parallax shortening handled in JS */
}
