/* ============================================================
   New Rent — Landing comercial
   Paleta oficial (brandbook): carbón + pizarra + arena + dorado + crema
   #1E232B · #5D6B7A · #C4B69A · #D4AF37 · #F5F4F0
   ============================================================ */

:root {
  --gold: #d4af37;         /* dorado oficial — rellenos, líneas, acentos */
  --gold-deep: #9a7c1e;    /* dorado profundo — texto/enlaces (contraste) */
  --gold-soft: #e7d9a8;    /* dorado claro sobre fondos oscuros */
  --gold-tint: #f3edda;    /* fondo dorado muy suave */
  --tan: #c4b69a;          /* arena — neutro cálido */
  --slate: #5d6b7a;        /* pizarra — secundario */
  --ink: #1e232b;          /* carbón */
  --ink-2: #333b45;
  --ink-soft: #5d6b7a;     /* = pizarra */
  --line: #e7e2d7;
  --cream: #f5f4f0;
  --cream-2: #eceae2;
  --white: #ffffff;
  --ok: #2f7d5b;
  --shadow-sm: 0 1px 3px rgba(38, 43, 52, .06), 0 6px 20px rgba(38, 43, 52, .05);
  --shadow-md: 0 10px 40px rgba(38, 43, 52, .10);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1160px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink-2);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
.section-tight { padding: 72px 0; }

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}

h1, h2, h3 { font-family: var(--font-serif); color: var(--ink); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.5rem; }
.lede { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--ink-soft); line-height: 1.6; }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600; font-size: 15.5px;
  padding: 14px 28px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: #fff; box-shadow: 0 8px 24px rgba(212,175,55,.30); }
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(212,175,55,.42); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 16.5px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s;
}
.site-header.scrolled { background: rgba(245,244,240,.92); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 40px; height: 40px; }
.brand .brand-text { line-height: 1.05; }
.brand .brand-name { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.brand .brand-text { white-space: nowrap; }
.brand .brand-name span { color: var(--gold-deep); }
.brand .brand-tag { font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a.navlink { font-size: 15px; font-weight: 500; color: var(--ink-2); transition: color .15s; }
.nav-links a.navlink:hover { color: var(--gold-deep); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 168px 0 90px;
  background:
    radial-gradient(1200px 600px at 75% -10%, rgba(212,175,55,.16), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream) 60%, var(--cream-2) 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: center; }
.hero h1 { margin-bottom: 26px; }
.hero h1 .accent { color: var(--gold-deep); font-style: italic; }
.hero .lede { max-width: 560px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-trust .t { }
.hero-trust .t b { display: block; font-family: var(--font-serif); font-size: 2.1rem; color: var(--ink); line-height: 1; }
.hero-trust .t span { font-size: 13.5px; color: var(--ink-soft); }

.hero-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md);
  border: 1px solid var(--line); overflow: hidden;
}
.hero-card .hc-top { background: var(--ink); color: #fff; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; }
.hero-card .hc-top .lab { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); }
.hero-card .hc-top .pill { font-size: 12px; background: rgba(255,255,255,.12); padding: 5px 12px; border-radius: 999px; }
.hero-card .hc-body { padding: 26px; }
.hc-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.hc-row:last-child { border-bottom: none; }
.hc-row .k { font-size: 14.5px; color: var(--ink-soft); }
.hc-row .v { font-family: var(--font-serif); font-size: 1.5rem; color: var(--ink); font-weight: 600; }
.hc-row .v.good { color: var(--ok); }
.hc-foot { background: var(--gold-tint); padding: 16px 26px; font-size: 13.5px; color: var(--gold-deep); text-align: center; }

/* Hero con foto + tarjeta flotante */
.hero-visual { position: relative; }
.hero-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); aspect-ratio: 4 / 3.4; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .hero-card { position: absolute; left: -28px; bottom: -30px; width: 270px; }
.hero-visual .hero-card .hc-body { padding: 18px 22px; }
.hero-visual .hc-row { padding: 10px 0; }
.hero-tag-float { position: absolute; top: 18px; right: 18px; background: rgba(30,35,43,.82); backdrop-filter: blur(6px); color: #fff; font-size: 12.5px; padding: 8px 15px; border-radius: 999px; display: flex; align-items: center; gap: 8px; }
.hero-tag-float svg { color: var(--gold); }

/* ---------- Galería / estándar ---------- */
.gallery { background: var(--cream); }
.gal-grid { column-count: 3; column-gap: 16px; }
.gal-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; }
.gal-item img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.gal-item:hover img { transform: scale(1.04); }
.gal-cap { position: absolute; left: 0; bottom: 0; right: 0; padding: 30px 18px 14px; font-size: 13px; font-weight: 600; color: #fff; background: linear-gradient(180deg, transparent, rgba(30,35,43,.78)); }

/* ---------- Logos / momentum strip ---------- */
.strip { background: var(--ink); color: #cfd3da; }
.strip .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-top: 30px; padding-bottom: 30px; }
.strip .s-item { display: flex; align-items: center; gap: 12px; font-size: 14.5px; }
.strip .s-item svg { flex: none; color: var(--gold-soft); }

/* ---------- Problem ---------- */
.problem { background: var(--cream-2); }
.prob-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.prob-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.prob-card .num { font-family: var(--font-serif); font-size: 2.4rem; color: var(--gold-deep); line-height: 1; margin-bottom: 10px; }
.prob-card p { font-size: 14.5px; color: var(--ink-soft); }
.prob-card p b { color: var(--ink); }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.svc .ic { width: 52px; height: 52px; border-radius: 13px; background: var(--gold-tint); display: grid; place-items: center; color: var(--gold-deep); margin-bottom: 20px; }
.svc h3 { font-size: 1.35rem; margin-bottom: 10px; }
.svc p { font-size: 15px; color: var(--ink-soft); }

/* ---------- How it works ---------- */
.how { background: var(--ink); color: #d6dae1; }
.how h2, .how .eyebrow { color: #fff; }
.how .eyebrow { color: var(--gold-soft); }
.how .section-head p { color: #b5bcc7; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 20px; }
.step { position: relative; padding-top: 20px; }
.step .n { font-family: var(--font-serif); font-size: 3rem; color: var(--gold); line-height: 1; opacity: .9; }
.step h3 { color: #fff; font-size: 1.3rem; margin: 12px 0 8px; }
.step p { font-size: 14.5px; color: #aab2bd; }
.step::before { content: ""; position: absolute; top: 34px; left: 62px; right: -14px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); opacity: .4; }
.steps .step:last-child::before { display: none; }

/* ---------- Calculator ---------- */
.calc { background: linear-gradient(180deg, var(--cream) 0%, var(--gold-tint) 100%); }
.calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; border: 1px solid var(--line); }
.calc-inputs { padding: 44px 42px; }
.calc-inputs h3 { margin-bottom: 6px; }
.calc-inputs .sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 28px; }
.field { margin-bottom: 24px; }
.field label { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.field label .val { color: var(--gold-deep); font-family: var(--font-serif); font-size: 1.15rem; }
.calc-inputs input[type="range"] { width: 100%; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 999px; background: var(--cream-2); outline: none; }
.calc-inputs input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--gold); cursor: pointer; box-shadow: 0 2px 6px rgba(212,175,55,.55); border: 3px solid #fff; }
.calc-inputs input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); cursor: pointer; border: 3px solid #fff; }

/* Caja de optimización de espacios */
.opt-box { background: var(--gold-tint); border: 1px solid var(--gold-soft); border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 24px; }
.opt-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 14px; }
.opt-title { font-size: 13.5px; font-weight: 700; color: var(--gold-deep); letter-spacing: .01em; }
.opt-box input[type="range"] { background: #fff; }
.opt-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 11px; line-height: 1.55; }
.opt-note b { color: var(--ink-2); }
.r-rooms-note { font-size: 13px; color: #cdd3db; margin: 4px 0 20px; }
.r-rooms-note b { color: #fff; }
.field .num-in { width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: 16px; color: var(--ink); background: var(--cream); }
.field .num-in:focus { outline: none; border-color: var(--gold); }
.field .hint { font-size: 12.5px; color: var(--ink-soft); margin-top: 8px; }

.calc-result { background: var(--ink); color: #fff; padding: 44px 42px; display: flex; flex-direction: column; }
.calc-result .r-lab { font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); }
.calc-result .r-big { font-family: var(--font-serif); font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1.05; margin: 8px 0 2px; }
.calc-result .r-big small { font-size: 1.2rem; color: #aab2bd; font-family: var(--font-sans); }
.calc-result .r-year { font-size: 14.5px; color: #aab2bd; margin-bottom: 26px; }
.r-compare { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; margin-top: auto; }
.r-line { display: flex; justify-content: space-between; align-items: baseline; padding: 9px 0; font-size: 15px; }
.r-line .rk { color: #b5bcc7; }
.r-line .rv { font-weight: 600; color: #fff; }
.r-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,175,55,.20); color: var(--gold-soft); border-radius: 999px; padding: 8px 16px; font-weight: 600; font-size: 14px; margin: 18px 0 6px; }
.r-disclaimer { font-size: 11.5px; color: #8b93a0; line-height: 1.5; margin-top: 14px; }

/* ---------- Case study ---------- */
.case-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.case-badge { display: inline-flex; align-items: center; gap: 9px; background: var(--gold-tint); color: var(--gold-deep); font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 999px; margin-bottom: 20px; }
.case-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 34px; }
.case-stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.case-stat b { display: block; font-family: var(--font-serif); font-size: 2.6rem; color: var(--gold-deep); line-height: 1; }
.case-stat span { font-size: 14px; color: var(--ink-soft); }
.case-visual { background: var(--ink); border-radius: var(--radius); padding: 46px; color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-md); }
.case-visual::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,.28), transparent 70%); top: -80px; right: -80px; }
.case-visual .q { font-family: var(--font-serif); font-size: 1.9rem; line-height: 1.35; position: relative; z-index: 1; }
.case-visual .who { margin-top: 24px; font-size: 14px; color: var(--gold-soft); position: relative; z-index: 1; }

/* ---------- Audience ---------- */
.aud-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.aud { display: flex; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.aud .ic { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--gold-tint); color: var(--gold-deep); display: grid; place-items: center; }
.aud h3 { font-size: 1.25rem; margin-bottom: 6px; }
.aud p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Reform line ---------- */
.reform { background: var(--cream-2); }
.reform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.reform-list { list-style: none; margin-top: 26px; }
.reform-list li { display: flex; gap: 14px; padding: 12px 0; font-size: 15.5px; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.reform-list li:last-child { border-bottom: none; }
.reform-list li svg { flex: none; color: var(--gold-deep); margin-top: 3px; }
.reform-stat { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 44px; text-align: center; box-shadow: var(--shadow-md); }
.reform-stat .big { font-family: var(--font-serif); font-size: 4rem; color: var(--gold); line-height: 1; }
.reform-stat p { color: #aab2bd; margin-top: 10px; }

/* ---------- Why / diff ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { padding: 32px 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.why-card .ic { color: var(--gold-deep); margin-bottom: 16px; }
.why-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.why-card p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 820px; margin: 0 auto; }
.member { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; text-align: center; box-shadow: var(--shadow-sm); }
.member .av { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 18px; background: var(--gold-tint); color: var(--gold-deep); display: grid; place-items: center; font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600; }
.member h3 { font-size: 1.4rem; }
.member .role { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin: 6px 0 12px; }
.member p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-serif); font-size: 1.3rem; color: var(--ink); font-weight: 600; }
.faq-q .chev { flex: none; transition: transform .25s ease; color: var(--gold-deep); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 0 24px; font-size: 15.5px; color: var(--ink-soft); }

/* ---------- CTA / contact ---------- */
.cta { background: var(--ink); color: #fff; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.cta h2 { color: #fff; }
.cta .lede { color: #b5bcc7; margin-top: 18px; }
.cta-contact { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.cta-contact a { display: inline-flex; align-items: center; gap: 12px; color: #e6e0d6; font-size: 15.5px; }
.cta-contact a svg { color: var(--gold-soft); flex: none; }
.form-card { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: 15px; color: var(--ink); background: var(--cream);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 12px; color: var(--ink-soft); margin-top: 12px; text-align: center; }
.form-status { font-size: 14px; text-align: center; margin-top: 14px; font-weight: 600; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: var(--ok); }
.form-status.err { color: #c0492f; }
#lead-submit[disabled] { opacity: .65; cursor: default; }

/* ---------- Footer ---------- */
.footer { background: #1c2027; color: #9aa1ad; padding: 60px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer .f-brand-name { font-family: var(--font-serif); font-size: 1.4rem; color: #fff; }
.footer .f-brand-name span { color: var(--gold); }
.footer p { font-size: 14px; max-width: 340px; margin-top: 14px; line-height: 1.6; }
.footer h4 { color: #fff; font-family: var(--font-sans); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 14px; transition: color .15s; }
.footer ul li a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .case-grid, .reform-grid, .cta-grid { grid-template-columns: 1fr; gap: 44px; }
  .calc-wrap { grid-template-columns: 1fr; }
  .prob-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gal-grid { column-count: 2; }
  .hero-visual { max-width: 520px; }
  .hero-visual .hero-card { left: 0; right: 0; margin: 0 auto; }
}
@media (max-width: 920px) {
  .nav-links { display: none; position: absolute; top: 78px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 20px 24px 28px; box-shadow: var(--shadow-md); gap: 6px; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links a.navlink { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links .btn { margin-top: 10px; justify-content: center; }
  .menu-toggle { display: block; }
  .nav-actions .btn:not(.menu-toggle) { display: none; }
}
@media (max-width: 680px) {
  section { padding: 68px 0; }
  .nav-links { display: none; position: absolute; top: 78px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 20px 24px 28px; box-shadow: var(--shadow-md); gap: 6px; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links a.navlink { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links .btn { margin-top: 10px; justify-content: center; }
  .menu-toggle { display: block; }
  .nav-actions .btn:not(.menu-toggle) { display: none; }
  .aud-grid, .team-grid, .svc-grid, .why-grid, .steps, .prob-grid, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 24px; }
  .case-stats { grid-template-columns: 1fr 1fr; }
  .gal-grid { column-count: 1; }
  .hero-visual .hero-card { position: static; width: 100%; margin-top: 18px; }
  .hero-photo { aspect-ratio: 4 / 3; }
  .marquee-item { font-size: 1.1rem; gap: 18px; }
}

/* ============================================================
   UI resources v2 (inspirado en nexotres.com, re-skin New Rent)
   ============================================================ */

/* Barra de progreso de scroll */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); z-index: 200; transition: width .08s linear; }

/* Píldora de estado con punto latiente */
.status-pill { display: inline-flex; align-items: center; gap: 9px; background: rgba(212,175,55,.12); border: 1px solid var(--gold-soft); color: var(--gold-deep); font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 7px 15px 7px 12px; border-radius: 999px; margin-bottom: 22px; }
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); position: relative; flex: none; }
.status-pill .dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--gold); animation: ping 1.8s cubic-bezier(0,0,.2,1) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 75%, 100% { transform: scale(2.6); opacity: 0; } }

/* Orbes flotantes del hero */
.hero > .container { position: relative; z-index: 1; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; pointer-events: none; }
.hero::before { width: 380px; height: 380px; background: radial-gradient(circle, rgba(212,175,55,.20), transparent 70%); top: -50px; right: 6%; animation: float1 15s ease-in-out infinite; }
.hero::after { width: 320px; height: 320px; background: radial-gradient(circle, rgba(93,107,122,.15), transparent 70%); bottom: -50px; left: -30px; animation: float2 19s ease-in-out infinite; }
@keyframes float1 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-28px,24px); } }
@keyframes float2 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(32px,-20px); } }

/* Marquee (texto infinito) */
.marquee { background: var(--ink); overflow: hidden; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 26px; padding: 18px 26px 18px 0; font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; white-space: nowrap; color: #e7e2d7; }
.marquee-item .sep { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sección filosofía con revelado por scroll */
.philosophy { background: radial-gradient(560px 560px at 84% 58%, rgba(212,175,55,.15), transparent 52%), var(--ink); color: #fff; position: relative; }
.philosophy .container { position: relative; z-index: 2; }
.philo-words { margin: 16px 0 30px; }
.philo-word { font-family: var(--font-serif); font-size: clamp(2.6rem, 8vw, 5.6rem); font-weight: 600; line-height: 1.04; color: rgba(255,255,255,.13); opacity: .5; transform: translateY(16px); transition: color .6s ease, opacity .6s ease, transform .6s ease; }
.philo-word.on { color: #fff; opacity: 1; transform: none; }
.philo-word .dotcol { color: var(--gold); }
.philo-lead { max-width: 640px; color: #b5bcc7; font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.6; }
.philo-dots { display: flex; gap: 10px; margin-top: 28px; }
.philo-dots i { width: 34px; height: 4px; border-radius: 999px; background: rgba(255,255,255,.18); transition: background .4s ease; }
.philo-dots i.on { background: var(--gold); }

/* Botón volver arriba */
.to-top { position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .3s ease, transform .3s ease, background .2s ease, visibility .3s; z-index: 90; cursor: pointer; border: none; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold); transform: translateY(-2px); }

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after, .marquee-track, .status-pill .dot::after { animation: none; }
}

/* ---------- Divisores diagonales ----------
   En vez de recortar la sección (lo que revelaba el fondo del body y dejaba
   líneas de otro color), dibujamos una CUÑA del propio color oscuro sobre la
   sección vecina. Nunca se ve el fondo del body → sin huecos de color. */
:root { --slant: 3vw; }
.slant-top, .slant-bottom, .slant-both { position: relative; }
.slant-top::before, .slant-both::before,
.slant-bottom::after, .slant-both::after {
  content: ""; position: absolute; left: 0; width: 100%; height: var(--slant);
  background: var(--ink); z-index: 1; pointer-events: none;
}
/* cuña superior (extiende el oscuro hacia arriba, sobre la sección anterior) */
.slant-top::before, .slant-both::before {
  bottom: calc(100% - 1px);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
/* cuña inferior (extiende el oscuro hacia abajo, sobre la sección siguiente) */
.slant-bottom::after, .slant-both::after {
  top: calc(100% - 1px);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media (max-width: 680px) { :root { --slant: 5vw; } }
