/* ============================================================
   TOKENS — white chrome, deep navy photographic sections, one
   confident red-orange accent used identically for every button,
   badge and highlight. Single committed visual identity.
   ============================================================ */
:root{
  --bg:        #ffffff;
  --bg-soft:   #f3f5f8;
  --ink:       #161a2c;
  --muted:     #5c6372;
  --line:      #e7e9ef;

  --navy:      #10131d;
  --navy-2:    #191d2c;
  --navy-line: rgba(255,255,255,0.10);

  --accent:      #e8491f;
  --accent-dark: #c23a16;
  --accent-soft: #fdeae1;

  --white:#ffffff;
  --shadow: 0 24px 50px -18px rgba(16,19,29,0.28);

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Helvetica, Arial, sans-serif;
  --wrap: 1180px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
::selection{ background:var(--accent); color:#fff; }
a{ color:inherit; }
h1,h2,h3,p{ margin:0; text-wrap:balance; }
img{ max-width:100%; display:block; }
ul{ list-style:none; margin:0; padding:0; }
a:focus-visible, button:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; }

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

/* ============================================================
   BUTTON — one style, used everywhere (hero, sections, nav, footer)
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; gap:.6rem;
  background:var(--accent); color:#fff;
  font-family:var(--font); font-weight:700; font-size:.94rem;
  padding:.95rem 1.7rem; border-radius:7px;
  text-decoration:none; border:none; cursor:pointer;
  transition:background .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow:0 14px 28px -12px rgba(232,73,31,0.55);
}
.btn:hover{ background:var(--accent-dark); transform:translateY(-2px); }
.btn .arrow{ display:inline-block; transition:transform .2s ease; }
.btn:hover .arrow{ transform:translate(3px,-3px); }
.btn.btn-sm{ padding:.62rem 1.2rem; font-size:.82rem; box-shadow:none; }
.btn.btn-ghost{
  background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,0.35);
  box-shadow:none;
}
.btn.btn-ghost:hover{ background:rgba(255,255,255,0.08); border-color:#fff; }

/* ============================================================
   NAV
   ============================================================ */
.navbar{
  position:sticky; top:0; z-index:100;
  background:var(--bg);
  border-bottom:1px solid var(--line);
  display:flex; align-items:stretch;
}
.nav-logo{
  display:flex; align-items:center; gap:.7rem;
  background:var(--accent); color:#fff;
  padding:1rem 1.8rem;
  text-decoration:none;
  flex-shrink:0;
}
.nav-logo .mark{
  width:34px; height:34px; border-radius:7px;
  background:#fff; color:var(--accent);
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:.95rem; letter-spacing:-0.02em;
}
.nav-logo .word{ font-weight:800; font-size:1.02rem; letter-spacing:-0.01em; white-space:nowrap; }
.nav-logo .word small{ font-weight:800; font-size:1rem; letter-spacing:-0.01em; }

.nav-cta{ display:flex; align-items:center; gap:1rem; padding:0 .6rem 0 2rem; margin-left:auto; flex-shrink:0; }

/* -------- hamburger + drawer menu (replaces a horizontal link row) -------- */
.hamburger{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:5px; width:44px; height:44px; flex-shrink:0;
  background:transparent; border:none; padding:0; margin:0;
  cursor:pointer; -webkit-tap-highlight-color:transparent;
}
.hamburger span{
  display:block; width:24px; height:2px; border-radius:2px;
  background:var(--ink); transition:transform .25s cubic-bezier(.2,.7,.2,1), opacity .2s ease;
}
body.menu-open .navbar .hamburger span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
body.menu-open .navbar .hamburger span:nth-child(2){ opacity:0; }
body.menu-open .navbar .hamburger span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.drawer-backdrop{
  position:fixed; inset:0; z-index:190;
  background:rgba(9,11,17,0.55); backdrop-filter:blur(2px);
  opacity:0; pointer-events:none; transition:opacity .3s ease;
  border:none;
}
body.menu-open .drawer-backdrop{ opacity:1; pointer-events:auto; }

.nav-drawer{
  position:fixed; top:0; right:0; z-index:200;
  width:min(400px, 88vw); height:100%;
  background:var(--navy); color:#fff;
  display:flex; flex-direction:column;
  padding:1.6rem 2.2rem 2.4rem;
  transform:translateX(100%);
  transition:transform .4s cubic-bezier(.2,.7,.2,1);
  box-shadow:-40px 0 70px rgba(0,0,0,0.4);
}
body.menu-open{ overflow-y:hidden; }
body.menu-open .nav-drawer{ transform:translateX(0); }

.drawer-head{ display:flex; align-items:center; justify-content:space-between; }
.drawer-close{
  width:40px; height:40px; border-radius:50%;
  border:1px solid var(--navy-line); color:#fff; background:transparent;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font); font-size:1.3rem; line-height:1; cursor:pointer; text-decoration:none;
}
.drawer-close:hover{ border-color:var(--accent); color:var(--accent); }

.drawer-links{ display:flex; flex-direction:column; margin:2.6rem 0 auto; }
.drawer-links a{
  display:flex; align-items:baseline; gap:.9rem;
  text-decoration:none; color:#fff;
  font-weight:800; font-size:1.5rem; letter-spacing:-0.01em;
  padding:.85rem 0; border-bottom:1px solid var(--navy-line);
  transition:color .2s ease, padding-left .2s ease;
}
.drawer-links a .n{ font-family:var(--font); font-weight:800; font-size:.72rem; color:var(--accent); }
.drawer-links a:hover{ color:var(--accent); padding-left:.4rem; }

.drawer-foot{ padding-top:1.8rem; }
.drawer-foot p{ color:rgba(255,255,255,0.5); font-size:.78rem; margin-bottom:1.1rem; }

/* ============================================================
   HERO — dark photographic hero, bold statement, one accent CTA
   ============================================================ */
.hero{
  position:relative;
  min-height:92svh;
  display:flex; align-items:center;
  background:var(--navy);
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover; object-position:right center;
  filter:saturate(0.94) brightness(0.72) contrast(1.02);
}
.hero::before{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(9,11,17,0.97) 4%, rgba(9,11,17,0.88) 34%, rgba(9,11,17,0.5) 58%, rgba(9,11,17,0.12) 82%);
}
.hero::after{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(9,11,17,0.55), transparent 30%);
}
.hero .wrap{ position:relative; z-index:2; width:100%; padding-top:5rem; padding-bottom:6rem; }
.hero .hero-copy{ max-width:34em; }
.hero-eyebrow{
  font-weight:700; font-size:.78rem; letter-spacing:.1em; text-transform:uppercase;
  color:var(--accent); margin-bottom:1.1rem;
  opacity:0; animation:rise .8s .05s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero h1{
  font-size:clamp(2.5rem, 5.2vw, 4.1rem);
  font-weight:800; line-height:1.08; letter-spacing:-0.01em;
  color:#fff; margin-bottom:1.4rem;
  opacity:0; animation:rise .8s .15s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero h1 .accent-word{ color:var(--accent); }
.hero-sub{
  color:rgba(255,255,255,0.72); font-size:1.08rem; max-width:34em; line-height:1.65;
  margin-bottom:2.1rem;
  opacity:0; animation:rise .8s .25s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-actions{ display:flex; gap:1rem; flex-wrap:wrap; opacity:0; animation:rise .8s .35s cubic-bezier(.2,.7,.2,1) forwards; }

@keyframes rise{ to{ opacity:1; transform:none; } }
@media (prefers-reduced-motion: reduce){
  .hero-eyebrow,.hero h1,.hero-sub,.hero-actions{ opacity:1; animation:none; }
}

/* ============================================================
   SECTION SHELL — badge / headline / checklist / button on the
   left, photo collage + stat badge on the right
   ============================================================ */
.section{ padding:6.5rem 0; }
.section.alt{ background:var(--bg-soft); }
.section .wrap{ display:grid; grid-template-columns:1fr 1fr; gap:4.5rem; align-items:center; }
.section .wrap.reverse .s-copy{ order:2; }
.section .wrap.reverse .s-media{ order:1; }

.badge{
  display:inline-flex; align-items:center; gap:.65rem;
  background:var(--accent-soft); color:var(--accent-dark);
  font-weight:800; font-size:.7rem; letter-spacing:.09em; text-transform:uppercase;
  padding:.5rem 1.05rem .5rem .7rem; border-radius:999px;
  margin-bottom:1.3rem;
}
.badge .dash{ width:16px; height:2px; background:var(--accent); display:inline-block; }

.s-copy h2{
  font-size:clamp(1.9rem, 3.3vw, 2.5rem);
  font-weight:800; line-height:1.16; letter-spacing:-0.01em;
  color:var(--ink); margin-bottom:1.15rem;
}
.s-copy h2 .accent-word{ color:var(--accent); }
.s-copy > p.lede{ color:var(--muted); font-size:1.02rem; line-height:1.72; max-width:36em; }

.checklist{
  background:var(--bg); border:1px solid var(--line);
  border-radius:10px; padding:1.6rem 1.9rem;
  display:grid; grid-template-columns:1fr 1fr; gap:1rem 2.2rem;
  margin:1.9rem 0 1.8rem;
}
.section.alt .checklist{ background:var(--bg-soft); }
.checklist.single{ grid-template-columns:1fr; }
.checklist li{ display:flex; align-items:flex-start; gap:.65rem; font-weight:700; font-size:.94rem; color:var(--ink); }
.checklist li .arrow{ color:var(--accent); font-weight:800; flex-shrink:0; }
.checklist li span.detail{ display:block; font-weight:500; color:var(--muted); font-size:.85rem; margin-top:.15rem; }

/* photo collage + stat badge */
.s-media{ position:relative; padding-bottom:3rem; }
.collage{ position:relative; }
.collage .img-a{ width:80%; margin-left:auto; border-radius:6px; overflow:hidden; box-shadow:var(--shadow); }
.collage.collage-solo .img-a{ width:94%; }
.collage .img-a img{ width:100%; height:auto; aspect-ratio:4/5; object-fit:cover; }
.collage .img-b{
  position:absolute; left:0; bottom:-2.6rem; width:48%;
  border:7px solid var(--bg); border-radius:4px; overflow:hidden;
  box-shadow:0 25px 45px -18px rgba(16,19,29,0.35);
}
.collage .img-b img{ width:100%; height:auto; aspect-ratio:4/5; object-fit:cover; }
.stat-badge{
  position:absolute; right:0; bottom:-1.8rem;
  background:var(--accent); color:#fff; text-align:center;
  padding:1.5rem 1.7rem; border-radius:8px;
  box-shadow:0 24px 45px -16px rgba(232,73,31,0.55);
}
.stat-badge .num{ font-size:2.5rem; font-weight:800; line-height:1; letter-spacing:-0.02em; font-variant-numeric:tabular-nums; }
.stat-badge .label{ font-size:.62rem; font-weight:800; letter-spacing:.07em; text-transform:uppercase; margin-top:.4rem; opacity:.92; }

.single-media{ border-radius:8px; overflow:hidden; box-shadow:var(--shadow); position:relative; }
.single-media img{ width:100%; height:auto; display:block; aspect-ratio:5/4; object-fit:cover; filter:saturate(0.92) contrast(1.03); }
.single-media .stat-badge{ position:absolute; right:1.4rem; bottom:1.4rem; }

/* side-by-side photo pair — no overlap, each image keeps its own aspect ratio */
.s-media.s-media-flat{ padding-bottom:0; }
.gallery-pair{ display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; align-items:start; }
.gallery-pair figure{ margin:0; }
.gallery-pair img{ width:100%; height:auto; display:block; border-radius:8px; box-shadow:var(--shadow); }
.gallery-pair figure .stat-inline{ display:flex; }
.gallery-pair.asym{ grid-template-columns:1fr 2.1fr; align-items:end; }
.gallery-pair.asym-left{ grid-template-columns:2.1fr 1fr; align-items:end; }

.stat-inline{
  display:inline-flex; align-items:center; gap:1rem;
  background:var(--accent); color:#fff;
  padding:1rem 1.5rem; border-radius:8px; margin-top:1.2rem;
  box-shadow:0 20px 40px -16px rgba(232,73,31,0.5);
}
.stat-inline .num{ font-size:1.9rem; font-weight:800; line-height:1; letter-spacing:-0.02em; font-variant-numeric:tabular-nums; }
.stat-inline .label{ font-size:.64rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; opacity:.92; }
.stat-inline.stat-inline-sm{ padding:.65rem 1.1rem; margin-top:.7rem; font-size:.76rem; font-weight:800; letter-spacing:.02em; }
.stat-inline.stack{ flex-direction:column; align-items:flex-start; gap:.3rem; }
.stat-inline.stack .num{ font-size:2.1rem; }

/* ============================================================
   STAT BAND (Trayectoria — standalone typographic moment)
   ============================================================ */
.stat-band{ background:var(--navy); color:#fff; padding:5.5rem 0; position:relative; overflow:hidden; }
.stat-band::after{
  content:''; position:absolute; right:-6%; top:50%; transform:translateY(-50%);
  width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle, rgba(232,73,31,0.22), transparent 70%);
}
.stat-band .wrap{ position:relative; z-index:1; display:grid; grid-template-columns:auto 1fr auto; gap:3.5rem; align-items:center; }
.stat-band .badge{ background:rgba(232,73,31,0.16); color:#ffb999; }
.stat-band .num{
  font-size:clamp(5.5rem, 11vw, 9rem); font-weight:800; line-height:0.85; letter-spacing:-0.02em;
  color:#fff;
}
.stat-band .num .accent-word{ color:var(--accent); }
.stat-band h2{ font-size:clamp(1.4rem,2.4vw,1.8rem); font-weight:800; margin-bottom:1rem; max-width:16em; }
.stat-band p{ color:rgba(255,255,255,0.68); max-width:32em; line-height:1.75; margin-bottom:.9rem; font-size:.98rem; }
.stat-band p:last-child{ margin-bottom:0; }

.book-frame{
  width:clamp(240px, 26vw, 340px); max-width:100%; flex-shrink:0; background:#fff; border-radius:8px;
  overflow:hidden; box-shadow:0 30px 60px -18px rgba(0,0,0,0.55);
}
.book-frame img{ width:100%; height:auto; display:block; }
.book-caption{
  margin-top:.9rem; text-align:center; color:rgba(255,255,255,0.5);
  font-size:.72rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase;
}

/* ============================================================
   PROPÓSITO — closing quote band
   ============================================================ */
.closing{ background:var(--navy-2); color:#fff; padding:7.5rem 0; text-align:center; border-top:1px solid var(--navy-line); }
.closing .badge{ background:rgba(232,73,31,0.16); color:#ffb999; }
.closing .quote-mark{ font-size:3.6rem; font-weight:800; color:var(--accent); line-height:1; margin-bottom:.6rem; }
.closing blockquote{
  font-size:clamp(1.4rem, 2.6vw, 2rem); font-weight:700; line-height:1.5;
  max-width:30em; margin:0 auto 1.6rem; color:#fff;
}
.closing cite{ font-style:normal; font-weight:700; color:rgba(255,255,255,0.62); font-size:.92rem; display:block; margin-bottom:2.2rem; }
.proposito-actions{ display:flex; flex-wrap:wrap; justify-content:center; gap:1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer{ background:var(--navy); color:rgba(255,255,255,0.78); padding:3.2rem 0 2rem; }
.foot-top{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1.6rem; padding-bottom:2.2rem; border-bottom:1px solid var(--navy-line); }
.foot-brand{ display:flex; align-items:center; gap:.7rem; }
.foot-brand .mark{ width:32px; height:32px; border-radius:7px; background:var(--accent); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.85rem; }
.foot-brand .word{ font-weight:800; color:#fff; font-size:.98rem; }
.foot-links{ display:flex; gap:1.8rem; flex-wrap:wrap; }
.foot-links a{ text-decoration:none; color:rgba(255,255,255,0.72); font-weight:700; font-size:.78rem; letter-spacing:.04em; text-transform:uppercase; }
.foot-links a:hover{ color:var(--accent); }
.foot-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:.8rem; padding-top:1.6rem; font-size:.78rem; color:rgba(255,255,255,0.45); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 620px){
  .nav-cta .btn-sm span:not(.arrow){ display:none; }
  .nav-cta .btn-sm{ padding:.6rem; }
}

@media (max-width: 980px){
  .wrap{ padding:0 1.4rem; }
  .section .wrap{ grid-template-columns:1fr; gap:3rem; }
  .section .wrap.reverse .s-copy,
  .section .wrap.reverse .s-media{ order:0; }
  .checklist{ grid-template-columns:1fr; }
  .s-media{ padding-bottom:4rem; max-width:420px; }
  .s-media.s-media-flat{ padding-bottom:0; max-width:520px; }
  .gallery-pair{ grid-template-columns:1fr 1fr; gap:.8rem; }
  .gallery-pair.asym{ grid-template-columns:1fr 1.8fr; }
  .gallery-pair.asym-left{ grid-template-columns:1.8fr 1fr; }
  .stat-band .wrap{ grid-template-columns:1fr; text-align:left; gap:1.5rem; }
  .book-frame{ width:min(340px, 100%); }
  .foot-top, .foot-bottom{ flex-direction:column; align-items:flex-start; }
}
