/* ===========================================================
   China en Primera Mano™ · Experiencia Cantón 2026
   Sistema visual Mingta Group Latam
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,300;1,6..72,400;1,6..72,500&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root{
  --bg:#140D0A;
  --bg-2:#1C120D;
  --panel:#22150F;
  --panel-2:#2A1A12;
  --cream:#F4EDE2;
  --cream-2:#E7DCCC;
  --dim:#B7A696;
  --dim-2:#8E7E70;
  --orange:#E2652B;
  --orange-bright:#F58037;
  --orange-soft:#F0A06A;
  --line:rgba(244,237,226,0.12);
  --line-2:rgba(244,237,226,0.07);
  --ink:#1A0E07;

  --serif:'Newsreader',Georgia,serif;
  --sans:'Hanken Grotesk',-apple-system,BlinkMacSystemFont,sans-serif;

  --grad-orange:radial-gradient(125% 130% at 2% 0%, #C2491B 0%, #913317 30%, #4A2011 60%, #1C120D 100%);
  --grad-orange-soft:radial-gradient(120% 140% at 100% 0%, #5A2511 0%, #2A1810 45%, #1A110C 100%);
  --maxw:1180px;
  --pad:clamp(22px,5vw,64px);
  --sec:clamp(84px,11vw,168px);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  background:var(--bg);
  color:var(--cream);
  font-family:var(--sans);
  font-size:18px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
::selection{background:var(--orange);color:var(--ink)}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

/* ---------- Layout ---------- */
.wrap{max-width:var(--maxw);margin:0 auto;padding-inline:var(--pad)}
.section{padding-block:var(--sec);position:relative}
.divider{height:1px;background:var(--line-2);max-width:var(--maxw);margin-inline:auto}

/* ---------- Premium glow sections ---------- */
.section-glow{
  --glow-x:50%;
  --glow-y:50%;
  background:
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(190,95,35,.24) 0%, transparent 70%),
    radial-gradient(ellipse 70% 90% at 85% 15%, rgba(210,80,28,.18) 0%, transparent 60%),
    linear-gradient(165deg, #1E1410 0%, #17100B 40%, #120D09 100%);
  overflow:hidden;
}
.section-glow::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:radial-gradient(
    640px circle at var(--glow-x) var(--glow-y),
    rgba(225,120,45,.30) 0%,
    rgba(190,85,32,.14) 32%,
    transparent 72%
  );
  transition:opacity .3s;
  opacity:1;
}
.section-glow > .wrap{
  position:relative;
  z-index:1;
}

/* ---------- Type ---------- */
.eyebrow{
  display:inline-flex;align-items:center;gap:16px;
  font-family:var(--sans);font-weight:600;
  font-size:.78rem;letter-spacing:.24em;text-transform:uppercase;
  color:var(--orange);margin-bottom:28px;
}
.eyebrow::before{content:"";width:38px;height:1.5px;background:var(--orange);flex:none}
.eyebrow.center{justify-content:center}

h1,h2,h3{font-family:var(--serif);font-weight:400;line-height:1.02;letter-spacing:-0.01em;overflow-wrap:break-word;word-break:normal;hyphens:none}
h1{font-size:clamp(2rem,5.6vw,5.6rem)}
h2{font-size:clamp(2.3rem,5.2vw,4.2rem);line-height:1.04}
h3{font-size:clamp(1.35rem,2.2vw,1.7rem);line-height:1.12}
em,.it{font-style:italic;color:var(--orange);font-weight:400}
h1 em,h2 em{color:var(--orange)}

.lead{font-size:clamp(1.15rem,1.7vw,1.5rem);color:var(--cream-2);line-height:1.55;font-weight:400;max-width:42ch}
.body{color:var(--dim);font-size:1.075rem;line-height:1.68;max-width:64ch}
.body.lg{font-size:clamp(1.1rem,1.5vw,1.3rem);color:var(--cream-2);line-height:1.6}
.body+.body{margin-top:1.1em}
.muted{color:var(--dim-2)}
.tm{font-size:.5em;vertical-align:super;color:var(--orange);font-style:normal;font-family:var(--sans);font-weight:600}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:12px;
  font-family:var(--sans);font-weight:600;font-size:1rem;
  padding:17px 30px;border-radius:999px;border:1px solid transparent;
  cursor:pointer;transition:transform .25s cubic-bezier(.2,.7,.3,1),background .25s,box-shadow .25s,border-color .25s;
  white-space:nowrap;line-height:1;
}
.btn .arrow{transition:transform .3s cubic-bezier(.2,.7,.3,1)}
.btn:hover .arrow{transform:translateX(5px)}
.btn-primary{background:var(--orange);color:var(--ink);box-shadow:0 12px 36px -14px rgba(226,101,43,.8)}
.btn-primary:hover{background:var(--orange-bright);transform:translateY(-2px);box-shadow:0 18px 46px -14px rgba(226,101,43,.9)}
.btn-ghost{background:rgba(244,237,226,.045);color:var(--cream);border-color:var(--line)}
.btn-ghost:hover{background:rgba(244,237,226,.09);border-color:rgba(244,237,226,.28);transform:translateY(-2px)}
.btn-block{width:100%;justify-content:center}

/* ---------- Chips ---------- */
.chips{display:flex;flex-wrap:wrap;gap:12px}
.chip{
  display:inline-flex;align-items:center;gap:10px;
  border:1px solid var(--orange);border-radius:999px;
  padding:12px 22px;font-size:.82rem;letter-spacing:.14em;text-transform:uppercase;
  font-weight:600;color:#fff;background:rgba(20,13,10,.55);
}
.chip::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--orange);flex:none}

/* ---------- Nav ---------- */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  padding:18px var(--pad);
  transition:background .35s,backdrop-filter .35s,padding .35s,border-color .35s;
  border-bottom:1px solid transparent;
}
.nav.scrolled{background:rgba(20,13,10,.82);backdrop-filter:blur(18px) saturate(1.2);border-bottom-color:var(--line-2);padding-block:13px}
.nav .logo img{height:38px;width:auto}
.nav-links{display:flex;align-items:center;gap:34px}
.nav-links a{font-size:.95rem;color:var(--cream-2);font-weight:500;transition:color .2s;position:relative}
.nav-links a:hover{color:var(--cream)}
.nav-links a::after{content:"";position:absolute;left:0;bottom:-6px;width:0;height:1.5px;background:var(--orange);transition:width .25s}
.nav-links a:hover::after{width:100%}
.nav-cta{display:flex;align-items:center;gap:18px}
.nav-cta .btn{padding:13px 24px;font-size:.92rem}
.menu-btn{display:none;background:none;border:0;color:var(--cream);cursor:pointer;flex-direction:column;gap:5px;padding:8px}
.menu-btn span{width:24px;height:2px;background:var(--cream);transition:.3s}

/* ---------- Hero ---------- */
.hero{position:relative;min-height:auto;display:flex;align-items:flex-end;padding-bottom:clamp(24px,3vw,40px);padding-top:96px;overflow:hidden}
.hero-video{

  position:absolute;inset:0;z-index:0;
  width:100%;height:100%;
  object-fit:cover;
  object-position:center;
}
.hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(20,13,10,0) 0%,rgba(20,13,10,0) 70%,var(--bg) 100%);
}
.hero-inner{position:relative;z-index:2;width:100%;max-width:var(--maxw);margin-inline:auto;padding-inline:var(--pad);display:flex;flex-direction:column;align-items:flex-start;text-align:left}
.hero-inner > .glass-card{max-width:760px;width:100%;margin-inline:0}
.hero h1{margin-bottom:8px}
.hero .tagline{font-family:var(--serif);font-style:italic;font-size:clamp(1.4rem,2.6vw,2.2rem);color:var(--cream);margin-bottom:18px;font-weight:300}
.hero .lead{margin-bottom:0;color:var(--cream-2);margin-right:auto;max-width:760px;font-size:clamp(1rem,1.45vw,1.25rem)}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin:22px 0;justify-content:flex-start}
.hero .chips{max-width:760px;justify-content:flex-start}

/* ---------- Glass container ---------- */
.glass-card{
  background:rgba(20,13,10,.65);
  border:1px solid var(--line);
  border-radius:16px;
  padding:clamp(20px,2.2vw,28px) clamp(22px,2.4vw,32px);
}
.glass-card > *:last-child{margin-bottom:0}
.cierre .glass-card{display:inline-block;max-width:760px;margin-inline:auto}
.cierre .glass-card + .glass-card{margin-top:32px}


/* ---------- Placeholder imagery ---------- */
.ph{
  position:relative;overflow:hidden;
  background:
    repeating-linear-gradient(135deg,rgba(226,101,43,.10) 0 2px,transparent 2px 13px),
    linear-gradient(135deg,#3a2014,#1d120c 70%);
  display:flex;align-items:center;justify-content:center;
}
.ph::after{
  content:attr(data-label);
  position:absolute;left:14px;top:14px;
  font-family:'Hanken Grotesk',monospace;
  font-size:.66rem;letter-spacing:.16em;text-transform:uppercase;
  color:rgba(244,237,226,.5);
  border:1px dashed rgba(244,237,226,.3);
  padding:8px 12px;border-radius:7px;
  background:rgba(20,13,10,.35);
}

/* ---------- Statement section ---------- */
.statement{text-align:left}
.statement .big{font-family:var(--serif);font-size:clamp(1.9rem,4vw,3.3rem);line-height:1.12;letter-spacing:-0.01em;color:var(--cream);max-width:20ch}
.statement .big .soft{color:var(--dim)}
.twoline{margin-top:42px;display:flex;flex-direction:column;gap:6px;font-family:var(--serif);font-size:clamp(1.5rem,2.6vw,2.2rem);font-style:italic}
.twoline span:first-child{color:var(--dim)}
.twoline span:last-child{color:var(--orange)}

/* Statement subtitle (Poppins) */
.statement-sub{
  font-family:'Poppins',var(--sans);
  font-size:clamp(1.05rem,1.4vw,1.25rem);
  font-weight:400;
  line-height:1.72;
  color:#5A4D42;
  max-width:52ch;
  margin-top:28px;
}
.section-light .statement-sub{color:#5A4D42}
.cierre .statement-sub{color:rgba(244,237,226,.7);text-align:center;margin-inline:auto}

/* ---------- Grid helpers ---------- */
.grid{display:grid;gap:24px}
.cols-2{grid-template-columns:repeat(2,1fr)}
.cols-3{grid-template-columns:repeat(3,1fr)}
.cols-4{grid-template-columns:repeat(4,1fr)}
.split{display:grid;grid-template-columns:0.95fr 1.05fr;gap:clamp(40px,7vw,110px);align-items:start}
.split.center{align-items:center}

/* ---------- Market shift list ---------- */
.shifts{display:grid;grid-template-columns:repeat(2,1fr);gap:0;border-top:1px solid var(--line-2);margin-top:44px}
.shifts li{list-style:none;padding:20px 4px;border-bottom:1px solid var(--line-2);font-size:1.1rem;color:var(--cream-2);display:flex;align-items:center;gap:16px}
.shifts li::before{content:"";width:7px;height:7px;background:var(--orange);border-radius:50%;flex:none}

/* ---------- Pull quote / questions ---------- */
.qblock{margin-top:56px;border-left:2px solid var(--orange);padding-left:clamp(24px,4vw,48px);display:flex;flex-direction:column;gap:22px}
.qrow .q-label{font-size:.8rem;letter-spacing:.16em;text-transform:uppercase;color:var(--dim-2);margin-bottom:8px}
.qrow .q-text{font-family:var(--serif);font-size:clamp(1.6rem,3vw,2.6rem);line-height:1.1}
.qrow.alt .q-text{color:var(--orange);font-style:italic}

/* ---------- Pain checklist ---------- */
.pains{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:8px}
.pain{
  display:flex;align-items:flex-start;gap:16px;
  padding:22px 24px;border:1px solid var(--line);border-radius:16px;
  background:rgba(244,237,226,.02);font-size:1.05rem;color:var(--cream-2);line-height:1.4;
  transition:border-color .3s,background .3s,transform .3s;
}
.pain:hover{border-color:rgba(226,101,43,.4);background:rgba(226,101,43,.05);transform:translateY(-2px)}
.pain .x{flex:none;width:24px;height:24px;border-radius:50%;border:1px solid rgba(226,101,43,.45);color:var(--orange);display:grid;place-items:center;font-size:.85rem;margin-top:1px}

/* ---------- "No es / Es" contrast ---------- */
.nots{display:flex;flex-wrap:wrap;gap:12px;margin:30px 0}
.not{display:inline-flex;align-items:center;gap:10px;padding:12px 20px;border:1px solid var(--line);border-radius:999px;color:var(--dim);font-size:.98rem;text-decoration:line-through;text-decoration-color:rgba(226,101,43,.55)}
.steps-inline{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:46px;counter-reset:s}
.step-mini{position:relative;padding-top:26px;border-top:2px solid var(--line)}
.step-mini::before{counter-increment:s;content:counter(s,decimal-leading-zero);position:absolute;top:-14px;left:0;font-family:var(--serif);font-size:1rem;color:var(--orange);background:transparent;padding-right:10px}
.step-mini .t{font-weight:600;color:var(--cream);margin-bottom:7px;font-size:.78rem;letter-spacing:.16em;text-transform:uppercase}
.step-mini p{color:var(--dim);font-size:1rem;line-height:1.45}

/* ---------- Antes / Después ---------- */
.ba{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:8px}
.ba-col{border:1px solid var(--line);border-radius:22px;padding:clamp(28px,3vw,40px);background:rgba(244,237,226,.02)}
.ba-col.after{background:var(--grad-orange-soft);border-color:rgba(226,101,43,.35)}
.ba-col .tag{font-size:.78rem;letter-spacing:.2em;text-transform:uppercase;font-weight:600;margin-bottom:22px;display:inline-block}
.ba-col.before .tag{color:var(--dim-2)}
.ba-col.after .tag{color:var(--orange)}
.ba-col ul{list-style:none}
.ba-col li{padding:13px 0;border-bottom:1px solid var(--line-2);display:flex;gap:14px;align-items:flex-start;color:var(--cream-2);font-size:1.05rem;line-height:1.4}
.ba-col li:last-child{border-bottom:0}
.ba-col li .mk{flex:none;font-family:var(--serif);line-height:1;color:var(--dim-2);font-size:1.1rem}
.ba-col.after li .mk{color:var(--orange)}
.ba-col.before li{color:var(--dim)}

/* ---------- Method DIRECTO ---------- */
.directo-word{display:flex;gap:6px;flex-wrap:wrap;margin:8px 0 0}
.method-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:0;margin-top:8px;border-top:1px solid var(--line)}
.method-step{
  display:grid;grid-template-columns:auto 1fr;gap:28px;
  padding:32px 30px;border-bottom:1px solid var(--line);
  transition:background .3s;position:relative;
}
.method-step:nth-child(odd){border-right:1px solid var(--line)}
.method-step:hover{background:rgba(226,101,43,.045)}
.method-step .letter{font-family:var(--serif);font-size:clamp(2.4rem,3.6vw,3.4rem);color:var(--orange);line-height:.8}
.method-step .num{position:absolute;top:16px;right:20px;font-size:.72rem;letter-spacing:.14em;color:var(--dim-2);font-weight:600}
.method-step h3{margin-bottom:10px}
.method-step p{color:var(--dim);font-size:1.04rem;line-height:1.5}

/* ---------- Fases de la Feria ---------- */
.section-fases{
  background:#F3EDE4;
  color:var(--ink);
}
.section-fases .eyebrow{color:var(--orange)}
.section-fases .eyebrow::before{background:var(--orange)}
.section-fases h2{color:var(--ink)}
.section-fases h2 em{color:var(--orange)}
.section-fases .body.lg{color:#3D2E22}
.fases-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:44px;
}
.fase-card{
  padding:24px 26px;
  background:var(--orange);
  border-radius:14px;
  box-shadow:0 12px 32px -18px rgba(226,101,43,.55);
}
.fase-head{
  font-size:.78rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:700;
  color:#fff;
  margin-bottom:12px;
  opacity:.95;
}
.fase-card p{
  font-size:.98rem;
  line-height:1.55;
  color:#fff;
}
@media (max-width:980px){
  .fases-grid{grid-template-columns:1fr}
}

/* ---------- Route cards ---------- */
.routes{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;align-items:stretch}
.route{
  border:1px solid var(--line);border-radius:24px;padding:clamp(28px,2.4vw,38px);
  background:rgba(244,237,226,.02);display:flex;flex-direction:column;
  transition:transform .35s cubic-bezier(.2,.7,.3,1),border-color .35s,box-shadow .35s;position:relative;overflow:hidden;
}
.route:hover{transform:translateY(-6px);border-color:rgba(226,101,43,.45)}
.route.featured{background:var(--grad-orange);border-color:rgba(245,128,55,.5);box-shadow:0 30px 80px -40px rgba(226,101,43,.7)}
.route .badge{display:inline-block;align-self:flex-start;width:auto;max-width:max-content;margin:0 0 14px;font-size:.66rem;letter-spacing:.16em;text-transform:uppercase;font-weight:700;color:var(--orange);border:1px solid rgba(226,101,43,.5);padding:6px 12px;border-radius:999px}
.route.featured .badge{color:var(--ink);background:var(--orange);border-color:transparent}
.route .phase-tag{font-size:.76rem;letter-spacing:.16em;text-transform:uppercase;color:var(--orange);font-weight:600;margin-bottom:18px}
.route.featured .phase-tag{color:var(--orange-soft)}
.route h3{margin-bottom:6px}
.route .days{color:var(--dim);font-size:.98rem;margin-bottom:26px}
.route.featured .days{color:var(--cream-2)}
.route .price{font-family:var(--serif);font-size:clamp(2.2rem,3vw,2.9rem);color:var(--cream);line-height:1;margin-bottom:4px}
.route .price-sub{font-size:.92rem;color:var(--dim);margin-bottom:26px}
.route.featured .price-sub{color:var(--cream-2)}
.route .desc{font-size:1rem;line-height:1.55;color:var(--cream-2);margin-top:auto;padding-top:24px;border-top:1px solid var(--line)}
.route.featured .desc{border-top-color:rgba(244,237,226,.18)}
.route .desc strong{color:var(--cream);font-weight:600}

/* ---------- Includes / excludes ---------- */
.incl-grid{display:grid;grid-template-columns:1.25fr 1fr;gap:28px;align-items:start}
.incl-card{border:1px solid var(--line);border-radius:22px;padding:clamp(28px,3vw,42px)}
.incl-card.yes{background:var(--grad-orange-soft);border-color:rgba(226,101,43,.3)}
.incl-card .h{display:flex;align-items:center;gap:14px;margin-bottom:26px;font-family:var(--serif);font-size:1.6rem}
.incl-card .h .dot{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;flex:none;font-size:1.1rem;font-family:var(--sans);font-weight:700}
.incl-card.yes .h .dot{background:var(--orange);color:var(--ink)}
.incl-card.no .h .dot{border:1.5px solid var(--dim-2);color:var(--dim-2)}
.incl-list{list-style:none;display:grid;gap:2px}
.incl-list li{display:flex;gap:14px;align-items:flex-start;padding:12px 0;border-bottom:1px solid var(--line-2);font-size:1.02rem;line-height:1.45;color:var(--cream-2)}
.incl-list li:last-child{border-bottom:0}
.incl-list li .mk{flex:none;margin-top:2px;width:20px;height:20px;border-radius:50%;display:grid;place-items:center;font-size:.7rem}
.incl-card.yes li .mk{background:rgba(226,101,43,.2);color:var(--orange)}
.incl-card.no li{color:var(--dim)}
.incl-card.no li .mk{border:1px solid var(--dim-2);color:var(--dim-2)}

/* ---------- Validar (surprises list) ---------- */
.surprise-list{display:flex;flex-wrap:wrap;gap:12px;margin-top:6px}
.surprise{padding:12px 20px;border:1px solid var(--line);border-radius:999px;color:var(--cream-2);font-size:.98rem;background:rgba(244,237,226,.025)}
.validate-stack{display:flex;flex-direction:column;gap:0;margin-top:20px;border-top:1px solid var(--line-2)}
.validate-stack .v{padding:18px 0;border-bottom:1px solid var(--line-2);font-size:1.08rem;color:var(--cream-2);line-height:1.5;display:flex;gap:16px}
.validate-stack .v .mk{color:var(--orange);font-family:var(--serif);flex:none}

/* ---------- FAQ ---------- */
.faq{max-width:920px;margin-inline:auto}
.faq-item{border-bottom:1px solid var(--line)}
.faq-item:first-child{border-top:1px solid var(--line)}
.faq-q{width:100%;background:none;border:0;cursor:pointer;text-align:left;
  display:flex;justify-content:space-between;align-items:center;gap:24px;
  padding:30px 8px;font-family:var(--serif);font-size:clamp(1.25rem,2vw,1.65rem);color:var(--cream);transition:color .2s}
.faq-q:hover{color:var(--orange-soft)}
.faq-icon{flex:none;width:34px;height:34px;border-radius:50%;border:1px solid var(--line);display:grid;place-items:center;position:relative;transition:.3s}
.faq-icon::before,.faq-icon::after{content:"";position:absolute;background:var(--orange);transition:.3s}
.faq-icon::before{width:14px;height:2px}
.faq-icon::after{width:2px;height:14px}
.faq-item.open .faq-icon{background:var(--orange);border-color:var(--orange)}
.faq-item.open .faq-icon::before,.faq-item.open .faq-icon::after{background:var(--ink)}
.faq-item.open .faq-icon::after{transform:scaleY(0)}
.faq-a{overflow:hidden;max-height:0;transition:max-height .45s cubic-bezier(.4,0,.2,1)}
.faq-a-inner{padding:0 8px 32px;color:var(--dim);font-size:1.08rem;line-height:1.65;max-width:74ch}
.faq-a-inner p+p{margin-top:.9em}
.faq-a-inner .hl{color:var(--cream-2)}

/* ---------- Inversión ---------- */
.invest-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.invest{border:1px solid var(--line);border-radius:20px;padding:32px;display:flex;flex-direction:column;gap:6px;transition:border-color .3s,background .3s}
.invest:hover{border-color:rgba(226,101,43,.4);background:rgba(226,101,43,.04)}
.invest .nm{font-family:var(--serif);font-size:1.5rem;color:var(--cream)}
.invest .ph2{font-size:.82rem;letter-spacing:.12em;text-transform:uppercase;color:var(--orange);font-weight:600}
.invest .dys{color:var(--dim);font-size:.98rem}
.invest .pr{font-family:var(--serif);font-size:2.2rem;color:var(--cream);margin-top:12px;line-height:1}
.invest .prs{color:var(--dim);font-size:.9rem}

/* ---------- Primer paso ---------- */
.firststep .needs{display:grid;grid-template-columns:repeat(2,1fr);gap:0;margin:36px 0;border-top:1px solid var(--line-2)}
.firststep .needs li{list-style:none;padding:16px 4px;border-bottom:1px solid var(--line-2);color:var(--cream-2);font-size:1.06rem;display:flex;gap:14px;align-items:center}
.firststep .needs li::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--orange);flex:none}

/* ---------- Cierre ---------- */
.cierre{position:relative;text-align:center;overflow:hidden;padding-block:clamp(48px,6.5vw,100px);min-height:50svh;display:flex;align-items:center}
.cierre-bg{
  position:absolute;inset:0;z-index:0;
  width:100%;height:100%;
  object-fit:cover;
  object-position:center;
}
.cierre-overlay{
  position:absolute;inset:0;z-index:1;
  background:transparent;
}
.cierre .wrap{position:relative;z-index:2;display:flex;flex-direction:column;align-items:center}
.cierre .big{font-family:var(--serif);font-size:clamp(2rem,4.2vw,3.4rem);line-height:1.18;max-width:22ch;margin-inline:auto;color:var(--cream)}
.cierre .big .soft{color:rgba(244,237,226,.85)}
.cierre .twoline2{margin-top:36px;font-family:var(--serif);font-style:italic;font-size:clamp(1.4rem,2.4vw,2rem)}
.cierre .twoline2 .a{color:rgba(244,237,226,.85)}
.cierre .twoline2 .b{color:var(--cream)}
.cierre .brandline{margin-top:0}
.cierre .brandline .nm{font-family:var(--serif);font-size:clamp(2.4rem,5vw,4rem);color:var(--cream)}
.cierre .brandline .ex{font-size:.9rem;letter-spacing:.22em;text-transform:uppercase;color:var(--orange-soft);font-weight:600;margin-top:10px}
.cierre .brandline .vl{font-family:var(--serif);font-style:italic;font-size:1.4rem;color:var(--cream-2);margin-top:14px}
.cierre-actions{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;margin-top:50px}
.cierre-img{margin-top:44px;max-width:480px;margin-inline:auto}
.cierre-img img{width:100%;aspect-ratio:3/2;object-fit:cover;border-radius:16px}

/* ---------- Light section theme ---------- */
.section-light{
  background:#F3EDE4;
  color:var(--ink);
}
.section-light + .divider{
  background:transparent;
}
.divider + .section-light{
  /* remove top divider effect */
}

/* Eyebrow */
.section-light .eyebrow{color:var(--orange)}
.section-light .eyebrow::before{background:var(--orange)}

/* Headings */
.section-light h2,
.section-light h3{color:var(--ink)}
.section-light h2 em,
.section-light h3 em{color:var(--orange)}

/* Body */
.section-light .body{color:#6B5D51}
.section-light .body.lg{color:#3D2E22}
.section-light .body .soft,
.section-light .big .soft{color:#8E7E70}

/* Statement */
.section-light .statement .big{color:var(--ink)}
.section-light .statement .big .soft{color:#7A6B5E}
.section-light .twoline span:first-child{color:#8E7E70}
.section-light .twoline span:last-child{color:var(--orange)}

/* Pain cards */
.section-light .pain{
  border-color:rgba(26,14,7,.1);
  background:rgba(255,255,255,.5);
  color:#3D2E22;
}
.section-light .pain:hover{
  border-color:rgba(226,101,43,.45);
  background:rgba(226,101,43,.07);
}
.section-light .pain .x{
  border-color:rgba(226,101,43,.45);
  color:var(--orange);
}

/* Quote block */
.section-light .qblock{border-left-color:var(--orange)}
.section-light .qrow .q-text{color:var(--ink)}
.section-light .qrow.alt .q-text{color:var(--orange)}
.section-light .qrow .q-label{color:#8E7E70}

/* Shifts list */
.section-light .shifts{border-top-color:rgba(26,14,7,.1)}
.section-light .shifts li{border-bottom-color:rgba(26,14,7,.1);color:#3D2E22}

/* Split body overrides */
.section-light .split .body{color:#6B5D51}

/* BA cards */
.section-light .ba-col{
  border-color:rgba(26,14,7,.1);
  background:rgba(255,255,255,.5);
}
.section-light .ba-col.after{
  background:var(--grad-orange-soft);
  border-color:rgba(226,101,43,.35);
}
.section-light .ba-col li{
  border-bottom-color:rgba(26,14,7,.08);
  color:#3D2E22;
}
.section-light .ba-col.before li{color:#8E7E70}
.section-light .ba-col li .mk{color:#8E7E70}
.section-light .ba-col.after li .mk{color:var(--orange)}
.section-light .ba-col.after li{color:var(--cream-2)}
.section-light .ba-col .tag{color:#8E7E70}
.section-light .ba-col.after .tag{color:var(--orange)}

/* Nots */
.section-light .not{
  border-color:rgba(26,14,7,.1);
  color:#8E7E70;
}

/* Steps inline */
.section-light .step-mini{border-top-color:rgba(26,14,7,.1)}
.section-light .step-mini::before{background:#F3EDE4;color:var(--orange)}
.section-light .step-mini .t{color:var(--ink)}
.section-light .step-mini p{color:#6B5D51}

/* Method */
.section-light .method-grid{border-top-color:rgba(26,14,7,.1)}
.section-light .method-step{border-bottom-color:rgba(26,14,7,.1)}
.section-light .method-step:nth-child(odd){border-right-color:rgba(26,14,7,.1)}
.section-light .method-step:hover{background:rgba(226,101,43,.06)}
.section-light .method-step .letter{color:var(--orange)}
.section-light .method-step .num{color:#8E7E70}
.section-light .method-step p{color:#6B5D51}

/* Surprise / Validate */
.section-light .surprise{
  border-color:rgba(26,14,7,.1);
  background:rgba(255,255,255,.5);
  color:#3D2E22;
}
.section-light .validate-stack{border-top-color:rgba(26,14,7,.1)}
.section-light .validate-stack .v{
  border-bottom-color:rgba(26,14,7,.08);
  color:#3D2E22;
}
.section-light .validate-stack .v .mk{color:var(--orange)}

/* Include cards */
.section-light .incl-card{border-color:rgba(26,14,7,.1)}
.section-light .incl-card.yes{
  background:linear-gradient(135deg,rgba(226,101,43,.08) 0%,rgba(226,101,43,.03) 100%);
  border-color:rgba(226,101,43,.25);
}
.section-light .incl-list li{
  border-bottom-color:rgba(26,14,7,.06);
  color:#3D2E22;
}
.section-light .incl-card.no li{color:#8E7E70}

/* Invest */
.section-light .invest{
  border-color:rgba(26,14,7,.1);
}
.section-light .invest:hover{
  border-color:rgba(226,101,43,.4);
  background:rgba(226,101,43,.06);
}
.section-light .invest .nm{color:var(--ink)}
.section-light .invest .pr{color:var(--ink)}
.section-light .invest .dys{color:#6B5D51}
.section-light .invest .prs{color:#8E7E70}

/* Route cards */
.section-light .route{
  border-color:rgba(26,14,7,.1);
  background:rgba(255,255,255,.5);
}
.section-light .route:hover{border-color:rgba(226,101,43,.45)}
.section-light .route h3{color:var(--ink)}
.section-light .route .price{color:var(--ink)}
.section-light .route .days{color:#6B5D51}
.section-light .route .price-sub{color:#6B5D51}
.section-light .route .desc{
  border-top-color:rgba(26,14,7,.08);
  color:#3D2E22;
}

/* FAQ */
.section-light .faq-item{border-bottom-color:rgba(26,14,7,.12)}
.section-light .faq-item:first-child{border-top-color:rgba(26,14,7,.12)}
.section-light .faq-q{color:var(--ink)}
.section-light .faq-q:hover{color:var(--orange)}
.section-light .faq-icon{border-color:rgba(26,14,7,.18)}
.section-light .faq-a-inner{color:#6B5D51}
.section-light .faq-a-inner .hl{color:var(--orange)}

/* FAQ light variant */
.section-faq{background:#F3EDE4}
.section-faq .step-mini::before{background:#F3EDE4}

/* Mingta differentials */
.mingta-attrs{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:36px;
}
.mingta-attr{
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px 18px;
  background:rgba(244,237,226,.03);
  display:flex;flex-direction:column;gap:8px;
  transition:border-color .25s,background .25s,transform .25s;
}
.mingta-attr:hover{border-color:rgba(226,101,43,.45);background:rgba(226,101,43,.06);transform:translateY(-2px)}
.mingta-attr .num{
  font-family:var(--serif);font-style:italic;
  font-size:1.6rem;line-height:1;color:var(--orange);
  display:inline-flex;align-items:center;min-height:28px;
}
.mingta-attr .num svg{width:auto;height:26px;display:block;color:var(--orange)}
.mingta-attr .t{
  font-size:.86rem;line-height:1.45;color:var(--cream-2);font-weight:500;
}
@media (max-width:980px){
  .mingta-attrs{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:560px){
  .mingta-attrs{grid-template-columns:1fr}
}

/* Profile grid (Para empresarios) */
.profile-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:40px;
}
.profile-card{
  border:1px solid var(--line);
  border-radius:16px;
  padding:24px 22px;
  background:rgba(244,237,226,.03);
  transition:border-color .25s,background .25s,transform .25s;
}
.profile-card:hover{border-color:rgba(226,101,43,.45);background:rgba(226,101,43,.06);transform:translateY(-2px)}
.profile-card h3{
  font-family:var(--serif);
  color:var(--orange);
  font-size:1.15rem;
  font-weight:500;
  margin:0 0 10px;
  letter-spacing:.01em;
}
.profile-card p{
  color:var(--dim);
  font-size:.95rem;
  line-height:1.5;
  margin:0;
}
.not-label{
  font-size:.78rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--cream-2);font-weight:600;margin-right:4px;
}
@media (max-width:980px){
  .profile-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:560px){
  .profile-grid{grid-template-columns:1fr}
}


/* Needs list */
.section-light .needs{border-top-color:rgba(26,14,7,.1)}
.section-light .needs li{
  border-bottom-color:rgba(26,14,7,.08);
  color:#3D2E22;
}

/* Inline style overrides for cream/dim references */
.section-light [style*="color:var(--cream)"],
.section-light [style*="color:var(--cream-2)"]{
  color:var(--ink) !important;
}
.section-light [style*="color:var(--dim)"]{
  color:#6B5D51 !important;
}

/* Chips on light */
.section-light .chip{
  border-color:rgba(26,14,7,.12);
  background:rgba(255,255,255,.5);
  color:#3D2E22;
}

/* Divider between light/dark */
.section-light + .divider{
  max-width:100%;
  background:rgba(26,14,7,.06);
}


/* ---------- Section images ---------- */

/* Franja 2 — Statement: floating accent image */
.statement-visual{
  margin-top:40px;
  border-radius:14px;
  overflow:hidden;
  max-width:480px;
}
.statement-visual img{
  width:100%;
  height:auto;
  aspect-ratio:16/8;
  object-fit:cover;
  border-radius:14px;
}

/* Franja 4 — El problema: photo strip */
.photo-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:40px;
  max-width:720px;
}
.photo-strip img{
  width:100%;
  aspect-ratio:3/2;
  object-fit:cover;
  border-radius:12px;
}

/* Franja 5 — Para quién es: feature image */
.feature-image{
  margin-top:44px;
  border-radius:16px;
  overflow:hidden;
  position:relative;
  max-width:800px;
}
.feature-image img{
  width:100%;
  max-height:260px;
  object-fit:cover;
  border-radius:16px;
}
.feature-image figcaption{
  position:absolute;
  bottom:0;left:0;right:0;
  padding:18px 24px;
  background:linear-gradient(0deg,rgba(20,13,10,.7) 0%,transparent 100%);
  font-family:var(--serif);
  font-style:italic;
  font-size:clamp(.95rem,1.3vw,1.15rem);
  color:var(--cream-2);
  border-radius:0 0 16px 16px;
}

/* Franja 6 — Antes/Después: collage mosaic */
.photo-mosaic{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:12px;
  margin-top:40px;
  max-width:700px;
}
.photo-mosaic img{
  width:100%;
  height:100%;
  max-height:220px;
  object-fit:cover;
  border-radius:14px;
}
.photo-mosaic .mosaic-stack{
  display:grid;
  grid-template-rows:1fr 1fr;
  gap:12px;
}
.photo-mosaic .mosaic-stack img{
  max-height:104px;
}

/* Franja 11 — Validar: inline editorial photo */
.editorial-photo{
  margin-top:44px;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:28px;
  align-items:center;
  max-width:800px;
}
.editorial-photo img{
  width:220px;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:16px;
}
.editorial-photo .caption{
  font-family:var(--serif);
  font-size:clamp(1.3rem,2vw,1.8rem);
  line-height:1.2;
  font-style:italic;
}
.section-light .editorial-photo .caption{color:var(--ink)}
.section-light .editorial-photo .caption em{color:var(--orange);font-weight:400}

/* Franja 14 — Primer paso: offset image */
.offset-image{
  margin-top:44px;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:28px;
  align-items:end;
}
.offset-image img{
  width:240px;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:16px;
}
.offset-image .img-caption{
  font-family:var(--serif);
  font-size:clamp(1.2rem,1.8vw,1.6rem);
  line-height:1.2;
  font-style:italic;
  padding-bottom:16px;
}
.section-light .offset-image .img-caption{color:var(--ink)}
.section-light .offset-image .img-caption em{color:var(--orange);font-weight:400}

/* Responsive images */
@media (max-width:980px){
  .photo-strip{grid-template-columns:1fr 1fr;max-width:480px}
  .photo-strip img:nth-child(3){grid-column:1 / -1}
  .photo-mosaic{grid-template-columns:1fr;max-width:400px}
  .editorial-photo{grid-template-columns:1fr;max-width:100%}
  .editorial-photo img{width:180px}
  .offset-image{grid-template-columns:1fr}
  .offset-image img{width:180px}
  .feature-image img{max-height:200px}
}
@media (max-width:680px){
  .statement-visual{max-width:320px}
  .statement-visual img{aspect-ratio:16/9}
  .photo-strip{grid-template-columns:1fr;max-width:280px;gap:10px}
  .photo-strip img{aspect-ratio:16/10}
  .feature-image img{max-height:160px}
  .photo-mosaic{max-width:300px;gap:8px}
  .photo-mosaic img{max-height:150px}
  .photo-mosaic .mosaic-stack{gap:8px}
  .photo-mosaic .mosaic-stack img{max-height:70px}
  .editorial-photo{gap:18px}
  .editorial-photo img{width:140px;aspect-ratio:1/1}
  .offset-image img{width:140px}
  .offset-image{gap:18px}
}

/* ---------- Footer ---------- */
.footer{padding:64px var(--pad);display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:24px;border-top:1px solid var(--line-2)}
.footer img{height:40px}
.footer .meta{color:var(--dim-2);font-size:.9rem;line-height:1.6}
.footer .meta a{color:var(--orange-soft)}

/* ---------- Section heading block ---------- */
.shead{max-width:60ch}
.shead.center{margin-inline:auto;text-align:center}
.shead h2{margin-bottom:24px}

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion:no-preference){
  .reveal{opacity:0;transform:translateY(24px);transition:transform .8s cubic-bezier(.2,.7,.3,1)}
  .reveal.in{opacity:1;transform:none}
  .reveal.d1{transition-delay:.08s}
  .reveal.d2{transition-delay:.16s}
  .reveal.d3{transition-delay:.24s}
  .reveal.d4{transition-delay:.32s}
}

/* ---------- Responsive ---------- */
@media (max-width:980px){
  .split{grid-template-columns:1fr;gap:48px}
  .cols-4,.steps-inline{grid-template-columns:repeat(2,1fr)}
  .routes,.cols-3,.invest-grid{grid-template-columns:1fr}
  .route.featured{order:-1}
  .method-grid{grid-template-columns:1fr}
  .method-step:nth-child(odd){border-right:0}
  .incl-grid{grid-template-columns:1fr}
  .nav-links{display:none}
}
@media (max-width:680px){
  body{font-size:17px}
  .shifts,.pains,.ba,.firststep .needs,.method-grid{grid-template-columns:1fr}
  .cols-2{grid-template-columns:1fr}
  .steps-inline{grid-template-columns:1fr}
  .nav-cta .btn{display:none}
  .menu-btn{display:flex}
  .hero{min-height:auto;padding-top:120px}
}

/* ===== Método Directo v2 (dark, matches reference screenshot) ===== */
.method-v2 .wrap{max-width:1240px}
.method-v2-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px}
.method-v2-top .page-num{font-size:.72rem;letter-spacing:.32em;color:var(--dim-2);font-weight:600}
.method-v2-top .method-eyebrow{font-size:.72rem;letter-spacing:.28em;color:var(--dim-2);font-weight:600;text-transform:uppercase}
.method-v2-title{font-family:var(--serif);font-weight:400;font-size:clamp(2rem,3.6vw,3.2rem);line-height:1.08;color:var(--cream);margin:0 0 36px;max-width:none}
.method-v2-title em{font-style:italic;color:var(--orange)}
.method-v2-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
@media(max-width:1000px){.method-v2-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.method-v2-grid{grid-template-columns:1fr}}
.method-v2-card{position:relative;background:rgba(255,255,255,.025);border:1px solid var(--line);border-radius:14px;padding:22px 22px 24px;min-height:200px;transition:background .25s ease,border-color .25s ease,transform .25s ease}
.method-v2-card:hover{background:rgba(226,101,43,.06);border-color:rgba(226,101,43,.35);transform:translateY(-2px)}
.method-v2-card .num{position:absolute;top:18px;right:20px;font-size:.7rem;letter-spacing:.16em;color:var(--dim-2);font-weight:600}
.method-v2-card .letter{font-family:var(--serif);font-size:clamp(2.6rem,3.6vw,3.4rem);color:var(--orange);line-height:.9;margin-bottom:10px}
.method-v2-card h3{font-family:var(--serif);font-weight:400;font-size:1.18rem;color:var(--cream);margin:0 0 8px}
.method-v2-card p{font-size:.92rem;line-height:1.5;color:var(--dim);margin:0}
.method-v2-card--glow{background:radial-gradient(120% 90% at 80% 0%,rgba(226,101,43,.28),rgba(226,101,43,.06) 55%,transparent 80%),rgba(255,255,255,.025);border-color:rgba(226,101,43,.4)}
.method-v2-closing{display:flex;align-items:center;padding:22px;min-height:200px}
.method-v2-closing p{font-size:.95rem;line-height:1.55;color:var(--dim);margin:0}
.method-v2-closing em{font-family:var(--serif);font-style:italic;color:var(--cream)}

/* Método DIRECTO — light variant */
.section-light.method-v2 .method-v2-top .page-num,
.section-light.method-v2 .method-v2-top .method-eyebrow{color:#8E7E70}
.section-light.method-v2 .method-v2-title{color:var(--ink)}
.section-light.method-v2 .method-v2-title em{color:var(--orange)}
.section-light .method-v2-card{
  background:rgba(255,255,255,.55);
  border-color:rgba(26,14,7,.1);
}
.section-light .method-v2-card:hover{
  background:rgba(226,101,43,.08);
  border-color:rgba(226,101,43,.35);
}
.section-light .method-v2-card .num{color:#8E7E70}
.section-light .method-v2-card .letter{color:var(--orange)}
.section-light .method-v2-card h3{color:var(--ink)}
.section-light .method-v2-card p{color:#6B5D51}
.section-light .method-v2-card--glow{
  background:radial-gradient(120% 90% at 80% 0%,rgba(226,101,43,.22),rgba(226,101,43,.05) 55%,transparent 80%),rgba(255,255,255,.6);
  border-color:rgba(226,101,43,.4);
}
.section-light .method-v2-closing p{color:#6B5D51}
.section-light .method-v2-closing em{color:var(--ink)}

/* Subtítulos dentro de "Qué incluye" */
.incl-list .incl-sub{
  list-style:none;
  color:var(--orange);
  font-family:var(--sans);
  font-weight:600;
  font-size:.82rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin:22px 0 6px;
  padding-left:0;
}
.incl-list .incl-sub:first-child{margin-top:0}
.incl-list .incl-sub::before{display:none}

/* ============ Ecosistema al regresar ============ */
.section-eco{
  background:
    radial-gradient(90% 60% at 15% 0%,rgba(226,101,43,.14),transparent 60%),
    linear-gradient(180deg,rgba(255,255,255,.03),transparent 40%);
}
.eco-label{
  margin:44px 0 22px;
  font-family:var(--sans);
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--orange);
  display:flex;align-items:center;gap:16px;
}
.eco-label::after{
  content:"";flex:1;height:1px;
  background:linear-gradient(90deg,rgba(226,101,43,.5),transparent);
}
.eco-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}
.eco-card{
  position:relative;
  padding:28px 24px 26px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  background:rgba(255,255,255,.035);
  transition:background .3s ease,border-color .3s ease,transform .3s ease;
}
.eco-card::before{
  content:"";position:absolute;left:0;top:22px;bottom:22px;width:2px;
  background:var(--orange);opacity:.55;border-radius:2px;
}
.eco-card:hover{
  background:rgba(226,101,43,.09);
  border-color:rgba(226,101,43,.42);
  transform:translateY(-3px);
}
.eco-num{
  display:block;
  font-family:var(--sans);
  font-size:.78rem;letter-spacing:.14em;font-weight:600;
  color:var(--orange);margin-bottom:12px;
}
.eco-card h3{
  font-family:var(--serif);
  font-size:clamp(1.12rem,1.5vw,1.35rem);
  line-height:1.25;
  margin:0 0 10px;
  color:var(--cream);
}
.eco-card p{
  margin:0;
  font-size:.94rem;
  line-height:1.6;
  color:var(--dim);
}
@media (max-width:640px){
  .eco-grid{grid-template-columns:1fr}
}

/* ===== ESTRUCTURA OPERATIVA ===== */
.section-struct .struct-grid{
  display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(32px,5vw,72px);align-items:center;
}
.struct-title{
  font-family:var(--serif);font-weight:400;line-height:1.14;letter-spacing:-0.01em;
  font-size:clamp(1.9rem,3.3vw,3rem);color:var(--ink);margin:0 0 26px;
}
.struct-title em{font-style:italic;color:var(--orange)}
.struct-sub{
  font-family:var(--serif);font-size:clamp(1rem,1.25vw,1.15rem);color:#5A4D42;
  display:inline-block;padding-bottom:8px;border-bottom:2px solid var(--orange);margin:0 0 22px;
}
.struct-services{
  font-weight:600;font-size:clamp(.95rem,1.15vw,1.08rem);color:var(--ink);line-height:1.6;margin:0 0 38px;
}
.struct-stats{display:grid;grid-template-columns:1fr 1fr;gap:26px 34px}
.struct-stat{display:flex;flex-direction:column;gap:6px}
.struct-stat .sv{
  font-family:var(--serif);font-size:clamp(1.35rem,2vw,1.75rem);color:var(--orange);line-height:1.1;
}
.struct-stat .sl{font-size:.92rem;color:#5A4D42;line-height:1.4}
.struct-photos{display:grid;gap:18px}
.struct-photos img{
  width:100%;height:clamp(200px,24vw,290px);object-fit:cover;border-radius:14px;display:block;
  box-shadow:0 18px 44px -22px rgba(26,14,7,.45);
}
@media(max-width:860px){
  .section-struct .struct-grid{grid-template-columns:1fr}
  .struct-stats{grid-template-columns:1fr;gap:20px}
  .struct-photos img{height:clamp(180px,48vw,240px)}
}
