/* ProximityParks · ESG 2025 landing — built on the ProximityParks Design System */

:root {
  --pp-red: #e93529;
  --pp-red-dark: #c42620;
  --pp-red-darker: #a11a15;
  --pp-red-light: #f05b50;
  --pp-charcoal: #3a3a3a;
  --pp-black: #1a1a1a;
  --pp-gray-text: #4a4a4a;
  --pp-white: #ffffff;
  --pp-gray-100: #f7f7f7;
  --pp-gray-150: #f2f2f2;
  --pp-gray-200: #eeeeee;
  --pp-gray-300: #dddddd;
  --pp-gray-400: #aaaaaa;
  --pp-gray-500: #777777;
  --pp-gradient: linear-gradient(135deg, #f05b50 0%, #e93529 35%, #c42620 70%, #a11a15 100%);
  --esg-e: #5b9a30; --esg-s: #e07b1a; --esg-g: #1e6fb0;
  --pp-bg-gradient: linear-gradient(145deg, #ffffff 0%, #f4f4f4 50%, #ebebeb 100%);
  --pp-font: 'Montserrat', sans-serif;
  --pp-radius-sm: 4px; --pp-radius-md: 8px; --pp-radius-lg: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
  --pad: 56px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--pp-font);
  font-weight: 400;
  color: var(--pp-charcoal);
  background: var(--pp-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--pp-red); color: #fff; }

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

/* uppercase stacked title system */
h1, h2, h3 { font-weight: 800; text-transform: uppercase; line-height: 1.0; letter-spacing: 0.4px; color: var(--pp-charcoal); }
.accent { color: var(--pp-red); }

.overline {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--pp-red);
}
.kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.kicker .bar { width: 34px; height: 2px; background: var(--pp-red); flex: none; }
.kicker .overline { color: var(--pp-red); }
.kicker.on-red .bar { background: #fff; }
.kicker.on-red .overline { color: rgba(255,255,255,0.92); }

.section-title { font-size: clamp(30px, 4.4vw, 60px); line-height: 0.98; }
.section-lead { font-size: clamp(15px, 1.4vw, 18px); color: var(--pp-gray-500); max-width: 60ch; margin-top: 22px; line-height: 1.65; font-weight: 400; }

.section-pad { padding: 120px 0; }
.bg-gray { background: var(--pp-bg-gradient); }

/* awards section background image */
.awards-bg {
  background-image: url("https://proximityparks.com/wp-content/uploads/2024/07/Fondo_White-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* hexagon helper */
.hexline { position: absolute; pointer-events: none; opacity: 0.5; z-index: 0; }

/* ---------- scroll progress ---------- */
#progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--pp-gradient); z-index: 300;
}

/* ---------- buttons (pill) ---------- */
.pp-btn {
  font-family: var(--pp-font); font-size: 13px; font-weight: 700; letter-spacing: 0.4px;
  padding: 13px 28px; border-radius: 100px; border: none; cursor: pointer; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s, color .2s, border-color .2s;
}
.pp-btn svg { width: 15px; height: 15px; }
.pp-btn-primary { background: var(--pp-red); color: #fff; box-shadow: 0 10px 28px -12px rgba(233,53,41,0.6); }
.pp-btn-primary:hover { background: var(--pp-red-dark); transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(233,53,41,0.7); }
.pp-btn-secondary { background: transparent; color: var(--pp-red); border: 1.5px solid var(--pp-red); }
.pp-btn-secondary:hover { background: rgba(233,53,41,0.06); transform: translateY(-2px); }
.pp-btn-white { background: #fff; color: var(--pp-red); }
.pp-btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(0,0,0,0.3); }
.pp-btn-ghost-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); }
.pp-btn-ghost-white:hover { border-color: #fff; transform: translateY(-2px); }

/* ---------- nav ---------- */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad);
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 12px var(--pad);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 8px 30px -20px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-logo { height: 30px; width: auto; display: block; }
.nav-right { display: flex; align-items: center; gap: 26px; }
.nav-right a.navlink {
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--pp-charcoal); text-decoration: none; opacity: 0.78; transition: opacity .2s, color .2s;
}
.nav-right a.navlink:hover { opacity: 1; color: var(--pp-red); }
.nav-right a.esg-link.e:hover { opacity: 1; color: var(--esg-e); }
.nav-right a.esg-link.s:hover { opacity: 1; color: var(--esg-s); }
.nav-right a.esg-link.g:hover { opacity: 1; color: var(--esg-g); }
.nav-right .pp-btn { padding: 10px 20px; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 90px; overflow: hidden;
  background: #fff;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('backgrounds/Fondo_5.png') center/cover no-repeat;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.82) 42%, rgba(255,255,255,0.25) 72%, rgba(255,255,255,0) 100%);
}
.hero-iso {
  position: absolute; top: 96px; right: var(--pad); width: 52px; height: auto; z-index: 4;
}
.hero .wrap { position: relative; z-index: 3; width: 100%; }
.hero-content { max-width: 760px; }
.hero h1 {
  font-size: clamp(44px, 7.4vw, 104px); line-height: 0.94; letter-spacing: 0.5px;
  margin: 26px 0 0; text-transform: none;
}
.hero .sub {
  font-size: clamp(16px, 1.5vw, 20px); color: var(--pp-gray-text); font-weight: 400;
  max-width: 54ch; margin-top: 28px; line-height: 1.6;
}
.hero .sub p + p { margin-top: 14px; }
.hero .ctas { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--pp-gray-400);
}
.scroll-cue .track { width: 1px; height: 46px; background: rgba(0,0,0,0.14); position: relative; overflow: hidden; }
.scroll-cue .track::after { content:''; position:absolute; left:0; top:0; width:100%; height:42%; background: var(--pp-red); animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0%{transform:translateY(-100%);} 60%,100%{transform:translateY(260%);} }

/* ---------- reveal ---------- */
@keyframes reveal { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; animation: reveal .9s var(--ease) forwards; }
.reveal.shown { opacity: 1 !important; transform: none !important; animation: none !important; }
.d1 { animation-delay: .1s; } .d2 { animation-delay: .25s; } .d3 { animation-delay: .4s; } .d4 { animation-delay: .55s; }

.fade-up { opacity: 0; transform: translateY(40px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.fade-up.in { opacity: 1; transform: translateY(0); }
.s1 { transition-delay: .08s; } .s2 { transition-delay: .16s; } .s3 { transition-delay: .24s; } .s4 { transition-delay: .32s; } .s5 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .fade-up { animation: none !important; opacity: 1 !important; transform: none !important; transition: none !important; }
}
@media print {
  .reveal, .fade-up { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------- metrics (contained dark highlights panel) ---------- */
.metrics { position: relative; background: transparent; border: none; }
.metrics-panel {
  position: relative; overflow: hidden;
  background: var(--pp-black);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 50px 110px -50px rgba(26,26,26,0.55);
}
/* ghosted hexagon watermark bleeding off the right edge */
.mp-hexwm {
  position: absolute; right: -90px; top: 50%; transform: translateY(-50%);
  width: 320px; height: 360px; z-index: 0; pointer-events: none;
  background: rgba(255,255,255,0.03);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 1; }
.metric {
  padding: 52px 34px 46px; position: relative; z-index: 1;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.metric:last-child { border-right: none; }
/* accent tick — vertical bar to the left of each number */
.metric::before { content: none; }
.metric .num {
  font-weight: 800; font-size: clamp(40px, 4.6vw, 66px); line-height: 1; letter-spacing: -1px; color: #fff;
  display: inline-block; border-left: 4px solid var(--mc, var(--pp-red)); padding-left: 16px;
}
.metric .num .u { font-size: 0.38em; font-weight: 700; margin-left: 5px; letter-spacing: 0; color: var(--mc, var(--pp-red)); }
.metric .lbl { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 16px; padding-left: 20px; }

/* ---------- pillars sticky ---------- */
.pillars { background: var(--pp-bg-gradient); position: relative; }
.pillar-sticky {
  position: sticky; top: 0; height: 100vh; display: grid; grid-template-columns: 0.95fr 1.05fr;
  align-items: center; overflow: hidden;
}
/* scroll track: each step is one viewport tall so the sticky panel stays
   pinned while E → S → G cross the IntersectionObserver threshold */
.pillar-step { height: 100vh; }
.pillar-mobile-head { display: none; }
.pillar-left {
  position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center;
  padding: 0 56px 0 max(var(--pad), calc((100vw - var(--maxw))/2 + var(--pad)));
  overflow: hidden;
}
.pillar-bg-wrap { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); width: 460px; height: 460px; z-index: 0; }
.pillar-bg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; pointer-events: none; transition: opacity .6s var(--ease); }
.pillar-bg.active { opacity: 0.15; pointer-events: auto; }
.pillar-bg.active:hover { opacity: 0.5; }
.pillar-num { font-size: 12px; font-weight: 700; letter-spacing: 3px; color: var(--pp-red); position: relative; z-index: 1; }
.pillar-letter {
  font-size: clamp(170px, 24vw, 340px); font-weight: 800; line-height: 0.8; letter-spacing: -6px;
  background: var(--pp-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative; z-index: 1; margin: 6px 0;
}
.pillar-name { font-size: clamp(26px, 3vw, 42px); line-height: 1; position: relative; z-index: 1; }
.pillar-tag { font-size: 17px; color: var(--pp-gray-500); margin-top: 14px; max-width: 30ch; font-weight: 400; position: relative; z-index: 1; text-transform: none; }
.pillar-stats { display: flex; gap: 40px; margin-top: 36px; position: relative; z-index: 1; }
.pillar-stats .ps .n { font-size: 34px; font-weight: 800; color: var(--pp-charcoal); letter-spacing: -1px; line-height: 1; }
.pillar-stats .ps .t { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--pp-gray-500); margin-top: 8px; }

.pillar-right { height: 100%; display: flex; flex-direction: column; justify-content: center;
  padding: 0 max(var(--pad), calc((100vw - var(--maxw))/2 + var(--pad))) 0 60px; }
.pillar-panel { display: none; }
.pillar-panel[data-key="e"] { --pa: var(--esg-e); }
.pillar-panel[data-key="s"] { --pa: var(--esg-s); }
.pillar-panel[data-key="g"] { --pa: var(--esg-g); }
.pillar-panel.active { display: flex; flex-direction: column; animation: panelIn .55s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.pillar-panel {
  --pa: var(--pp-red);
  position: relative;
  max-width: 600px;
}
.pillar-panel .pp-head {
  display: flex; align-items: center; gap: 10px;
  background: transparent; padding: 0 0 16px; position: relative; z-index: 1;
}
.pillar-panel .pp-hex {
  width: 14px; height: 16px; flex: none; background: var(--pa, var(--pp-red));
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.pillar-panel .pcat {
  font-size: 11px; font-weight: 700; letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--pa, var(--pp-red));
}
.pillar-panel .pp-body { padding: 0; position: relative; z-index: 1; }
.pillar-panel h3 { font-size: clamp(22px, 2.3vw, 32px); line-height: 1.06; margin-bottom: 16px; }
.pillar-panel p { font-size: 16px; color: var(--pp-gray-text); line-height: 1.65; margin-bottom: 28px; max-width: 46ch; font-weight: 400; }

/* SaaS-style feature grid replaces the old hairline bullet list */
.pillar-panel .plist {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.pillar-panel .plist li {
  display: flex; flex-direction: column; gap: 13px; align-items: flex-start;
  color: var(--pp-charcoal);
  font-size: 14px; line-height: 1.45; font-weight: 500;
  padding: 18px 18px 20px;
  background: var(--pp-gray-100);
  border: 1px solid var(--pp-gray-200);
  border-radius: 14px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease),
              border-color .4s var(--ease), background .4s var(--ease);
}
.pillar-panel .plist li:hover {
  transform: translateY(-5px);
  background: #fff;
  border-color: color-mix(in srgb, var(--pa) 40%, transparent);
  box-shadow: 0 20px 44px -26px color-mix(in srgb, var(--pa) 60%, transparent);
}
.pillar-panel .plist .pchk {
  width: 32px; height: 32px; flex: none; margin: 0;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--pa) 11%, #fff);
  border-radius: 9px;
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.pillar-panel .plist .pchk::before {
  content: ''; width: 12px; height: 14px; background: var(--pa, var(--pp-red));
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.pillar-panel .plist li:hover .pchk {
  background: color-mix(in srgb, var(--pa) 18%, #fff);
  transform: scale(1.06);
}
/* staggered tile entrance for a livelier panel switch */
.pillar-panel.active .plist li { animation: tileIn .5s var(--ease) backwards; }
.pillar-panel.active .plist li:nth-child(1) { animation-delay: .12s; }
.pillar-panel.active .plist li:nth-child(2) { animation-delay: .19s; }
.pillar-panel.active .plist li:nth-child(3) { animation-delay: .26s; }
.pillar-panel.active .plist li:nth-child(4) { animation-delay: .33s; }
@keyframes tileIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .pillar-panel.active .plist li { animation: none; }
}

.pillar-dots { position: fixed; right: 28px; top: 50%; transform: translateY(-50%); z-index: 150;
  display: flex; flex-direction: column; gap: 14px; opacity: 0; transition: opacity .4s; }
.pillar-dots.show { opacity: 1; }
.pillar-dots .dot { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid var(--pp-gray-400);
  background: transparent; cursor: pointer; transition: all .3s var(--ease); position: relative; }
.pillar-dots .dot span { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 10px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; color: var(--pp-charcoal);
  opacity: 0; transition: opacity .3s; pointer-events: none; }
.pillar-dots .dot:hover span { opacity: 0.7; }
.pillar-dots .dot.active { background: var(--pp-red); border-color: var(--pp-red); transform: scale(1.3); }

/* ---------- cortinilla / pull quote (red) ---------- */
.cortinilla {
  position: relative; min-height: 78vh; display: flex; align-items: center;
  background: url('backgrounds/Fondo_2.png') center/cover no-repeat; color: #fff; overflow: hidden;
}
.cortinilla::before { content:''; position:absolute; inset:0; background: rgba(196,38,32,0.12); }
.cortinilla .wrap { position: relative; z-index: 2; }
.cortinilla .mark { font-size: 90px; font-weight: 800; line-height: 0.5; color: rgba(255,255,255,0.55); height: 50px; }
.cortinilla blockquote { font-size: clamp(28px, 4vw, 58px); font-weight: 800; text-transform: uppercase; line-height: 1.04; letter-spacing: 0.4px; max-width: 17ch; margin: 28px 0; color: #fff; }
.cortinilla cite { font-style: normal; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.85); }

/* ---------- frameworks ---------- */
.fw-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 56px; }
.fw-card {
  background: #fff; border: 1px solid var(--pp-gray-200); border-radius: var(--pp-radius-lg);
  padding: 28px 22px; min-height: 240px; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.fw-card:hover { transform: translateY(-7px); border-color: var(--pp-red); box-shadow: 0 18px 40px -22px rgba(233,53,41,0.5); }
.fw-card .tag { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--pp-red); }
.fw-card .nm { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; margin-top: 14px; color: var(--pp-charcoal); }
.fw-card .ds { font-size: 13px; color: var(--pp-gray-500); line-height: 1.55; margin-top: auto; padding-top: 20px; font-weight: 400; }

/* ---------- awards ---------- */
.awards-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 56px; }
.award {
  background: #fff; border: 1px solid var(--pp-gray-200); border-top: 3px solid var(--pp-red);
  border-radius: 0 0 var(--pp-radius-lg) var(--pp-radius-lg); padding: 26px 22px 24px;
  display: flex; flex-direction: column; min-height: 230px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s cubic-bezier(.2,.8,.2,1), border-color .35s;
}
.award:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -22px rgba(233,46,43,0.35);
  border-color: var(--pp-red);
}
.award .hex { width: 30px; height: auto; margin-bottom: 18px; transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.award:hover .hex { transform: scale(1.12) rotate(8deg); }
.award .org { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--pp-gray-400); }
.award .ttl { font-size: 17px; font-weight: 800; text-transform: uppercase; line-height: 1.1; color: var(--pp-charcoal); margin-top: auto; }
.award .date { font-size: 12px; font-weight: 600; color: var(--pp-red); margin-top: 12px; }

/* ---------- people ---------- */
.people-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; margin-top: 56px; }
.people-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.people-stats .cell { background: #fff; border: 1px solid var(--pp-gray-200); border-radius: var(--pp-radius-lg); padding: 30px 26px; }
.people-stats .cell .n { font-size: clamp(38px, 4vw, 56px); font-weight: 800; color: var(--pp-red); line-height: 1; letter-spacing: -1px; }
.people-stats .cell .n .u { font-size: 0.4em; font-weight: 700; }
.people-stats .cell .t { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--pp-gray-500); margin-top: 12px; }
.quotes { display: flex; flex-direction: column; gap: 16px; }
.qcard { background: #fff; border: 1px solid var(--pp-gray-200); border-left: 3px solid var(--pp-red);
  border-radius: 0 var(--pp-radius-md) var(--pp-radius-md) 0; padding: 22px 26px; }
.qcard p { font-size: 16px; line-height: 1.6; color: var(--pp-gray-text); font-weight: 400; }
.qcard .who { margin-top: 16px; }
.qcard .who b { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.4px; color: var(--pp-charcoal); display: block; }
.qcard .who span { font-size: 12px; color: var(--pp-gray-400); font-weight: 500; }

/* ---------- roadmap ---------- */
.rm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.rm-card { background: #fff; border: 1px solid var(--pp-gray-200); border-radius: var(--pp-radius-lg); padding: 34px 30px; }
.rm-card .mk { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--pp-red); }
.rm-card h3 { font-size: 24px; margin: 12px 0 4px; line-height: 1; }
.rm-card .obj { display: flex; align-items: baseline; gap: 9px; margin: 24px 0 6px; }
.rm-card .obj .n { font-size: 54px; font-weight: 800; color: var(--pp-charcoal); line-height: 1; letter-spacing: -2px; }
.rm-card .obj .l { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--pp-gray-400); }
.rm-bar { height: 6px; background: var(--pp-gray-200); border-radius: 100px; overflow: hidden; margin-top: 12px; }
.rm-bar > i { display: block; height: 100%; width: 0; background: var(--pp-gradient); border-radius: 100px; transition: width 1.4s var(--ease); }
.rm-share { font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--pp-gray-400); margin-top: 9px; }
.rm-card ul { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 11px; }
.rm-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: var(--pp-charcoal); line-height: 1.5; }
.rm-card li .tick { width: 13px; height: 13px; margin-top: 3px; flex: none; }

/* ---------- CTA / contraportada (red) ---------- */
.cta {
  position: relative; padding: 150px 0 120px; overflow: hidden; color: #fff; text-align: center;
  background: url('backgrounds/Fondo_2.png') center/cover no-repeat;
}
.cta::before { content:''; position:absolute; inset:0; background: rgba(196,38,32,0.10); }
.cta .wrap { position: relative; z-index: 2; }
.cta .iso { width: 56px; height: auto; margin-bottom: 30px; filter: brightness(0) invert(1); }
.cta h2 { font-size: clamp(34px, 5.4vw, 80px); line-height: 0.98; color: #fff; max-width: 16ch; margin: 0 auto; }
.cta .ctas { display: flex; gap: 14px; justify-content: center; margin-top: 42px; flex-wrap: wrap; }
.cta .contact { margin-top: 64px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.25); display: flex; flex-direction: column; align-items: center; gap: 5px; }
.cta .contact .role { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.cta .contact .nm { font-size: 20px; font-weight: 800; text-transform: uppercase; color: #fff; }
.cta .contact .title { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.78); letter-spacing: 0.3px; margin-bottom: 6px; }
.cta .contact a { color: #fff; text-decoration: none; font-size: 15px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.5); }
.cta .contact a:hover { border-color: #fff; }
.cta .getcloser { height: 30px; width: auto; margin: 50px auto 0; display: block; opacity: 0.95; }

/* ---------- footer ---------- */
footer { background: #D8D8D8; color: #333333; }

.ft-main { display: grid; grid-template-columns: 27.6fr 26.4fr 20fr 20fr; gap: 48px; padding: 70px 0 64px; }

.ft-col { display: flex; flex-direction: column; }

.ft-getcloser { width: 180px; height: auto; margin-bottom: 20px; }

.ft-tagline { font-size: 13px; color: #666; margin-bottom: 32px; line-height: 1.5; }

.ft-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: none;
  color: #333333; margin-bottom: 16px;
}

.ft-email-form { display: flex; flex-direction: column; gap: 0; margin-top: 4px; }
.ft-email-form input {
  background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.12);
  color: #333; font-size: 13px; font-family: inherit;
  padding: 11px 14px; outline: none; width: 100%; box-sizing: border-box;
}
.ft-email-form input::placeholder { color: #999; }
.ft-email-form button {
  background: var(--pp-red); color: #fff; border: none; cursor: pointer;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; padding: 11px 14px;
  font-family: inherit; transition: background .2s; text-align: left; width: 100%;
}
.ft-email-form button:hover { background: color-mix(in srgb, var(--pp-red) 85%, #000); }

.ft-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ft-links a { color: #333333; font-size: 14px; text-decoration: none; transition: color .2s; }
.ft-links a:hover { color: #e93529; }

.ft-contact { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.ft-contact a { color: #333333; font-size: 14px; text-decoration: none; transition: color .2s; }
.ft-contact a:hover { color: #e93529; }

.ft-social { display: flex; gap: 16px; margin-bottom: 28px; }
.ft-social a { color: var(--pp-red); transition: color .2s; display: flex; }
.ft-social a:hover { color: #e93529; opacity: .7; }

.ft-gptw { width: 60px; height: auto; opacity: 1; margin-top: 4px; }

.ft-bottom { border-top: 1px solid rgba(0,0,0,0.1); padding: 20px 0; }
.ft-legal { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
.ft-legal span, .ft-legal a { font-size: 11px; color: #888; text-decoration: none; transition: color .2s; }
.ft-legal a:hover { color: #e93529; }

/* ===================================================================
   VIDEO — scroll-expand reel (small preview on the right → large autoplay)
   =================================================================== */
/* Overlay reel: a fixed layer that floats over the hero → highlights seam.
   Small preview parked right-of-centre, expands to centre as the seam crosses
   the middle of the viewport. Hero and Highlights stay flush — no spacer. */
.video-reel {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
}
.video-card {
  position: absolute; top: 0; left: 0;
  width: 392px; max-width: 92vw;
  transform-origin: top left;
  transform: translate(0, 0);
  transition: transform .72s var(--ease);
  pointer-events: auto; will-change: transform;
}
.video-embed {
  position: relative; width: 100%; padding-bottom: 56.25%; height: 0;
  border-radius: 14px; overflow: hidden; background: #0d0d0d;
  box-shadow: 0 20px 50px -24px rgba(0,0,0,0.45);
  transition: box-shadow .8s var(--ease), border-radius .8s var(--ease);
}
.video-embed iframe, .video-embed img { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.video-poster { z-index: 1; transition: opacity .5s var(--ease); }
.video-iframe { position: absolute; inset: 0; z-index: 2; }
.video-reel.playing .video-poster { opacity: 0; pointer-events: none; }
.video-reel.go .video-embed { box-shadow: 0 44px 100px -34px rgba(0,0,0,0.62); border-radius: 16px; }

/* tool buttons (minimize / expand / close) */
.video-tools {
  position: absolute; top: 12px; right: 12px; z-index: 5;
  display: flex; gap: 8px; opacity: 0; transform: translateY(-4px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.video-reel.go .video-tools { opacity: 1; transform: none; pointer-events: auto; }
.vtool {
  width: 26px; height: 26px; border-radius: 50%; border: none; cursor: pointer;
  display: grid; place-items: center; color: #fff; background: rgba(18,18,18,0.5);
  -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.vtool:hover { background: rgba(18,18,18,0.82); transform: translateY(-1px); }
.vtool svg { width: 11px; height: 11px; display: block; }
/* expand button lives only on the collapsed preview as the affordance to re-open */
.vtool-expand { display: none; }

/* collapsed preview: small card sitting at its original right-of-centre spot,
   clickable to re-expand. A play/expand cue floats in its centre. */
.video-card { cursor: pointer; }
.video-reel.go .video-card { cursor: default; }
.video-cue {
  position: absolute; inset: 0; z-index: 4; display: grid; place-items: center;
  pointer-events: none; transition: opacity .3s var(--ease);
}
.video-reel.go .video-cue { opacity: 0; }
.video-cue span {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.92); display: grid; place-items: center;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.5);
}
.video-cue span::before {
  content: ''; width: 0; height: 0; margin-left: 4px;
  border-left: 15px solid var(--pp-red); border-top: 9px solid transparent; border-bottom: 9px solid transparent;
}

/* ===================================================================
   2025 KEY HIGHLIGHTS header (on metrics)
   =================================================================== */
.metrics { padding-top: 104px; padding-bottom: 96px; }
.highlights-head { padding-bottom: 44px; }
.highlights-head .section-title { font-size: clamp(34px, 5vw, 72px); }

/* ===================================================================
   PILLAR NAV ARROWS + counter
   =================================================================== */
.pillar-nav { display: flex; align-items: center; gap: 18px; margin-top: 44px; position: relative; z-index: 2; }
.pnav {
  width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--pp-gray-300);
  background: #fff; color: var(--pp-charcoal); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease), border-color .2s, transform .2s var(--ease), color .2s, box-shadow .2s, opacity .2s;
}
.pnav svg { width: 20px; height: 20px; }
.pnav:hover:not(:disabled) { background: var(--pp-red); border-color: var(--pp-red); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(233,53,41,0.7); }
.pnav:disabled { opacity: 0.32; cursor: default; }
.pnav-count { font-size: 14px; font-weight: 700; letter-spacing: 1px; color: var(--pp-gray-400); min-width: 64px; }
.pnav-count .pnav-cur { color: var(--pp-red); font-size: 22px; }
.pillar-hint { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--pp-gray-400); margin-top: 14px; position: relative; z-index: 2; }

/* ===================================================================
   IMAGE SLOTS
   =================================================================== */
image-slot { display: block; }
.pillar-img { width: 100%; height: 116px; margin-bottom: 22px; }
.people-photo { width: 100%; height: clamp(260px, 32vw, 400px); margin: 28px 0 0; }
.people-photo, .pillar-img { --slot-border: var(--pp-gray-300); }

/* ===================================================================
   PEOPLE — person cards (image + quote)
   =================================================================== */
.people-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); margin: 56px 0 12px; border-top: 2px solid var(--pp-charcoal); }
.people-stats-row .cell { padding: 34px 30px 12px 0; }
.people-stats-row .cell + .cell { padding-left: 32px; border-left: 1px solid var(--pp-gray-300); }
.people-stats-row .cell .n { font-size: clamp(52px, 6vw, 88px); font-weight: 800; color: var(--pp-red); letter-spacing: -3px; line-height: 0.85; }
.people-stats-row .cell .n .u { font-size: 0.42em; font-weight: 700; letter-spacing: 0; }
.people-stats-row .cell .t { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--pp-gray-500); margin-top: 16px; }
.people-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.pcard {
  background: #fff; border: 1px solid var(--pp-gray-200); border-radius: var(--pp-radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -28px rgba(0,0,0,0.32); border-color: var(--pp-gray-300); }
.pcard-img { width: 100%; height: 248px; display: block; border-bottom: 3px solid var(--pp-red); }
.pcard-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.pcard-body p { font-size: 15.5px; line-height: 1.6; color: var(--pp-gray-text); font-weight: 400; }
.pcard-who { margin-top: auto; padding-top: 22px; }
.pcard-who b { display: block; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.4px; color: var(--pp-charcoal); }
.pcard-who span { font-size: 12px; color: var(--pp-gray-400); font-weight: 500; }

/* ===================================================================
   ROADMAP — animated "A Clear Path Forward"
   =================================================================== */
.horizon {
  display: grid; grid-template-columns: auto 1fr; gap: 52px; align-items: center;
  margin-top: 56px; padding: 40px 44px; background: #fff;
  border: 1px solid var(--pp-gray-200); border-radius: var(--pp-radius-lg);
}
.horizon-total { display: flex; align-items: center; gap: 18px; }
.ht-num { font-size: clamp(56px, 7vw, 100px); font-weight: 800; color: var(--pp-red); line-height: 0.85; letter-spacing: -3px; }
.ht-lbl { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--pp-gray-500); line-height: 1.35; }
.hbar { display: flex; width: 100%; height: 18px; border-radius: 100px; overflow: hidden; background: var(--pp-gray-150); }
.hbar .seg { height: 100%; width: 0; transition: width 1.4s var(--ease); }
.seg-short { background: var(--pp-red); }
.seg-med { background: #f3877f; }
.seg-long { background: #f9cbc7; }
.hlegend { display: flex; gap: 38px; margin-top: 24px; flex-wrap: wrap; }
.hleg { display: flex; align-items: center; gap: 9px; }
.hleg .dot { width: 11px; height: 11px; border-radius: 3px; flex: none; }
.hleg .dot.short { background: var(--pp-red); }
.hleg .dot.med { background: #f3877f; }
.hleg .dot.long { background: #f9cbc7; }
.hleg b { font-size: 22px; font-weight: 800; color: var(--pp-charcoal); letter-spacing: -0.5px; }
.hleg .hl-t { font-size: 12px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; color: var(--pp-gray-500); }

.rm-tracks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.track-card {
  background: #fff; border: 1px solid var(--pp-gray-200); border-top: 3px solid var(--pp-red);
  border-radius: var(--pp-radius-lg); padding: 32px 30px;
}
.tc-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.tc-pillar { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--pp-red); }
.tc-count { display: flex; align-items: baseline; gap: 7px; }
.tc-count .n { font-size: 46px; font-weight: 800; color: var(--pp-charcoal); letter-spacing: -2px; line-height: 1; }
.tc-count i { font-size: 11px; font-style: normal; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--pp-gray-400); }
.tc-theme { font-size: 17px; font-weight: 800; text-transform: uppercase; line-height: 1.12; color: var(--pp-charcoal); margin: 16px 0 20px; min-height: 40px; }
.tc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tc-list li {
  position: relative; padding-left: 22px; font-size: 13.5px; line-height: 1.5; color: var(--pp-charcoal);
  opacity: 0; transform: translateX(-8px); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.tc-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; background: var(--pp-red); transform: rotate(45deg); }
.track-card.in .tc-list li { opacity: 1; transform: none; }
.track-card.in .tc-list li:nth-child(1) { transition-delay: .12s; }
.track-card.in .tc-list li:nth-child(2) { transition-delay: .20s; }
.track-card.in .tc-list li:nth-child(3) { transition-delay: .28s; }
.track-card.in .tc-list li:nth-child(4) { transition-delay: .36s; }
.track-card.in .tc-list li:nth-child(5) { transition-delay: .44s; }
.track-card.in .tc-list li:nth-child(6) { transition-delay: .52s; }

/* ===================================================================
   ROADMAP — horizontal scroll (pinned)
   =================================================================== */
.rm-hscroll { position: relative; height: 300vh; margin-top: 64px; }
.hsticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; }
.hstrack { display: flex; gap: 28px; padding: 0 max(var(--pad), calc((100vw - var(--maxw))/2 + var(--pad))); will-change: transform; }
.hpanel {
  flex: 0 0 auto; width: min(620px, 76vw); min-height: 66vh;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent, var(--pp-red)) 5%, #fff) 0%, #fff 30%);
  border: 1px solid color-mix(in srgb, var(--accent, var(--pp-red)) 18%, var(--pp-gray-200));
  border-radius: 18px;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 70px -46px color-mix(in srgb, var(--accent, var(--pp-red)) 42%, transparent);
}
/* fine accent hairline along the top edge */
.hpanel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 3;
  background: linear-gradient(90deg, var(--accent, var(--pp-red)) 0%, color-mix(in srgb, var(--accent, var(--pp-red)) 32%, transparent) 60%, transparent 100%);
}
.hp-head { position: relative; background: transparent; color: inherit; padding: 40px 44px 0; overflow: visible; z-index: 1; }
.hp-hexwm { display: none; }
.hp-index { position: relative; display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: 2.4px; text-transform: uppercase; color: var(--accent, var(--pp-red)); }
.hp-index::before {
  content: ''; width: 14px; height: 16px; flex: none; background: var(--accent, var(--pp-red));
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.hp-pillar { position: relative; font-size: clamp(30px, 3.4vw, 48px); font-weight: 800; text-transform: uppercase; color: var(--pp-charcoal); margin-top: 14px; line-height: 1; }
.hp-body { padding: 30px 44px 44px; flex: 1; position: relative; z-index: 1; }
.hp-count { display: flex; align-items: baseline; gap: 12px; margin: 0 0 2px; }
.hp-count .n { font-size: clamp(72px, 8vw, 124px); font-weight: 800; color: var(--accent, var(--pp-red)); line-height: 0.82; letter-spacing: -5px; }
.hp-count .l { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--pp-gray-400); }
.hp-theme { font-size: 19px; font-weight: 800; text-transform: uppercase; color: var(--pp-charcoal); line-height: 1.12; margin: 14px 0 22px; }
.hp-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.hp-list li {
  position: relative; padding: 13px 0 13px 24px; font-size: 14.5px; line-height: 1.5; color: var(--pp-charcoal);
  border-top: 1px solid color-mix(in srgb, var(--accent, var(--pp-red)) 12%, var(--pp-gray-150));
}
.hp-list li:first-child { border-top: none; }
.hp-list li::before {
  content: ''; position: absolute; left: 0; top: 18px; width: 11px; height: 13px; background: var(--accent, var(--pp-red));
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.hsprogress { position: absolute; left: 50%; bottom: 46px; transform: translateX(-50%); width: min(var(--maxw), 86vw); height: 3px; background: var(--pp-gray-200); border-radius: 100px; overflow: hidden; }
.hsprogress > i { display: block; height: 100%; width: 0; background: var(--pp-gradient); border-radius: 100px; }
.hs-cue { display: flex; align-items: center; gap: 10px; margin-top: 30px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--pp-gray-400); }
.hs-cue svg { width: 26px; height: 12px; }

/* ---------- hamburger ---------- */
.hamburger { display: none; }
.mobile-menu {
  display: none !important; position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
  background: rgba(255,255,255,0.98) !important; backdrop-filter: blur(16px) !important; -webkit-backdrop-filter: blur(16px) !important;
  flex-direction: column !important; align-items: flex-start !important; justify-content: center !important;
  padding: 32px 36px !important; gap: 28px !important; z-index: 198 !important;
  transition: opacity .3s !important;
}
.mobile-menu.open { display: flex !important; }
.mobile-navlink {
  font-size: 22px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--pp-charcoal); text-decoration: none; transition: color .2s;
}
.mobile-navlink:hover { color: var(--pp-red); }

/* ---------- pillar panel mobile image ---------- */
.pillar-panel-mobile-img {
  display: none; width: 100%; height: 220px; object-fit: cover;
  border-radius: 10px; margin-bottom: 20px;
}
.pillar-photo-wrap { position: relative; display: none; }
.pillar-photo-letter {
  position: absolute; left: 6px; right: 6px; bottom: 6px; top: auto; transform: none;
  font-size: clamp(60px, 18vw, 90px); font-weight: 800; line-height: 0.8; letter-spacing: -4px;
  -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0.9;
}
.pillar-letter-e { background-image: linear-gradient(135deg,#7dbe3f 0%,#5b9a30 45%,#3f7320 100%); }
.pillar-letter-s { background-image: linear-gradient(135deg,#f2a23c 0%,#e07b1a 45%,#b85f10 100%); }
.pillar-letter-g { background-image: linear-gradient(135deg,#3e97d9 0%,#1e6fb0 45%,#14507f 100%); }

/* ---------- pillar labels (mobile only) ---------- */
.pillar-panel-num {
  display: none; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pp-gray-400); margin-bottom: 8px;
}
.pillar-panel-label {
  display: none;
  font-size: 30px; font-weight: 800; letter-spacing: 0; text-transform: none;
  margin-bottom: 16px;
}
.pillar-label-e { color: var(--esg-e); }
.pillar-label-s { color: var(--esg-s); }
.pillar-label-g { color: var(--esg-g); }

/* ---------- responsive ---------- */
@media (max-width: 768px) {
  :root { --pad: 28px; }
  html, body { overflow-x: hidden; max-width: 100%; }
  .hero { padding-bottom: 0; min-height: auto; }
  .pillars { padding-top: 40px; background: linear-gradient(180deg, #f4f4f4 0%, #ebebeb 100%); }
  .nav-right { display: none; }
  .hamburger {
    display: flex !important; flex-direction: column !important; gap: 5px !important; justify-content: center !important;
    background: none !important; border: none !important; cursor: pointer !important; padding: 6px !important; z-index: 210 !important;
    position: relative !important;
  }
  .hamburger span { display: block !important; width: 24px !important; height: 2px !important; background: var(--pp-charcoal) !important; border-radius: 2px !important; transition: transform .3s, opacity .3s !important; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  nav.scrolled .hamburger span { background: var(--pp-charcoal); }
  .hero-iso { width: 40px; top: 80px; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2) { border-right: none; }
  .metric:nth-child(1), .metric:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  /* mobile: drop the sticky scrollytelling — stack all three panels */
  .pillar-sticky { position: static; height: auto; display: block; }
  .pillar-left { display: none; }
  .pillar-right { padding: 0 28px; height: auto; display: block !important; background: linear-gradient(180deg, #f4f4f4 0%, #ebebeb 100%); }
  .pillar-step { display: none; }
  .pillar-panel { display: block !important; animation: none !important; padding: 0 !important; margin-bottom: 48px; max-width: none; }
  .pillar-panel-label { display: block !important; }
  .pillar-panel-num { display: block !important; }
  .pillar-panel[data-key="e"] .pillar-panel-num { margin-top: 20px; }
  .pillar-panel-mobile-img { display: block; margin-bottom: 0; }
  .pillar-photo-wrap { display: block; margin-bottom: 20px; }
  .pillar-panel .pp-head { padding: 26px 2px 0; }
  .pillar-panel .pp-body { padding: 14px 2px 6px; }
  .pillar-panel .plist { grid-template-columns: 1fr; gap: 10px; }
  .pillar-panel.active .plist li { animation: none; }
  .pillar-mobile-head { display: none; padding: 90px 28px 8px; }
  .pillar-mobile-head h2 { font-size: clamp(24px, 9vw, 40px); line-height: 0.98; margin-top: 18px; word-break: break-word; }
  .fw-grid { grid-template-columns: 1fr 1fr; }
  .awards-row { grid-template-columns: 1fr 1fr; }
  .people-grid { grid-template-columns: 1fr; gap: 44px; }
  .rm-grid { grid-template-columns: 1fr; }
  .pillar-dots { display: none; }
  .pillar-nav { display: none; }
  .pillar-hint { display: none; }
  .video-card { width: min(440px, 86vw); }
  .testimonial-slider { grid-template-columns: 1fr !important; height: auto !important; }
  .ts-photos-wrap { height: 280px; position: relative; }
  .ts-panel { min-height: 320px; }
  .people-stats-row { grid-template-columns: 1fr 1fr; }
  .people-cards { grid-template-columns: 1fr; }
  .horizon { grid-template-columns: 1fr; gap: 30px; }
  .rm-tracks { grid-template-columns: 1fr; }
  .rm-hscroll { height: auto; margin-top: 36px; }
  .hsticky { position: static; height: auto; overflow: visible; display: block; }
  .hstrack { flex-direction: column; gap: 16px; padding: 0 28px; transform: none !important; }
  .hpanel { width: auto; min-height: 0; padding: 0; }
  .hpanel .hp-head { padding: 32px 26px 0; }
  .hpanel .hp-body { padding: 24px 26px 30px; }
  .hsprogress, .hs-cue { display: none; }
  /* Footer mobile */
  .ft-main { grid-template-columns: 1fr 1fr !important; gap: 32px !important; padding: 48px 0 36px !important; }
  .ft-bottom .ft-legal { gap: 16px !important; }
  .people-stats-row { grid-template-columns: 1fr 1fr; }
  .people-stats-row .cell:nth-child(3) { border-left: none; padding-left: 0; }
  .people-stats-row .cell:nth-child(n+3) { border-top: 1px solid var(--pp-gray-300); margin-top: 8px; padding-top: 26px; }
}
@media (max-width: 560px) {
  .metrics-grid, .fw-grid, .awards-row { grid-template-columns: 1fr; }
  .metric { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .pillar-stats { gap: 26px; flex-wrap: wrap; }
  .ft-main { grid-template-columns: 1fr !important; }
  .pillar-mobile-head h2 { font-size: clamp(22px, 8vw, 32px); }
}
