:root {
  --green: #00a358;
  --green-dark: #009450;
  --green-deep: #071a10;
  --green-black: #031109;
  --green-soft: #eaf6ef;
  --lime: #95c600;
  --lime-light: #c8eb59;
  --white: #ffffff;
  --off-white: #f4f6f3;
  --gray: #606760;
  --line: #dce5dc;
  --ink: #102117;
  --shadow: 0 24px 70px rgba(1, 44, 22, 0.13);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1220px;
  --font-display: "Arial Black", "Segoe UI", Arial, sans-serif;
  --font-body: "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--white);
  padding: 12px 18px;
  color: var(--green-deep);
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--light { color: var(--lime-light); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.05; letter-spacing: -0.035em; }
h2 { margin-bottom: 24px; font-size: clamp(2.25rem, 4.8vw, 4.6rem); }
h3 { margin-bottom: 14px; font-size: 1.25rem; }
p { color: var(--gray); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button--lime { background: var(--lime); color: var(--green-black); box-shadow: 0 12px 28px rgba(149, 198, 0, 0.25); }
.button--lime:hover { background: var(--lime-light); box-shadow: 0 16px 34px rgba(149, 198, 0, 0.34); }
.button--green { background: var(--green-dark); color: var(--white); box-shadow: 0 12px 28px rgba(0, 148, 80, 0.23); }
.button--green:hover { background: var(--green); }
.button--outline-light { border: 1px solid rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.08); color: var(--white); backdrop-filter: blur(8px); }
.button--outline-light:hover { background: var(--white); color: var(--green-deep); }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(4, 24, 12, 0.92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.header__inner { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--white); line-height: 0.88; }
.brand__name { font-family: var(--font-display); font-size: 0.88rem; font-weight: 900; letter-spacing: -0.045em; }
.brand__name strong { display: block; font-size: 1.36rem; }
.brand__number { color: var(--lime); font-family: var(--font-display); font-size: 2rem; font-weight: 900; letter-spacing: -0.08em; }

.main-nav { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 25px); }
.main-nav > a:not(.button) { position: relative; color: rgba(255, 255, 255, 0.82); font-size: 0.76rem; font-weight: 700; }
.main-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; transform: scaleX(0); background: var(--lime); content: ""; transition: transform 180ms ease; }
.main-nav > a:hover,
.main-nav > a.is-active { color: var(--white); }
.main-nav > a:hover::after,
.main-nav > a.is-active::after { transform: scaleX(1); }
.main-nav .nav-cta { min-height: 42px; padding: 10px 18px; font-size: 0.7rem; }
.menu-toggle { display: none; width: 48px; height: 48px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 50%; background: rgba(0, 0, 0, 0.16); color: var(--white); cursor: pointer; }
.menu-toggle span { width: 19px; height: 2px; border-radius: 10px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; overflow: hidden; background: var(--green-black); color: var(--white); }
.hero__picture { display: block; width: 100%; }
.hero__image { width: 100%; height: auto; object-fit: contain; }
.hero__accessible-copy { position: relative; z-index: 2; background: linear-gradient(110deg, var(--green-black), #053b1e 60%, var(--green-dark)); }
.hero__copy-inner { display: flex; min-height: 126px; align-items: center; justify-content: center; padding-block: 26px; }
.hero__identity { min-width: 0; }
.hero__copy-inner h1 { margin: 0; color: var(--white); font-size: clamp(2rem, 4vw, 4.2rem); line-height: 0; text-transform: uppercase; }
.hero__copy-inner h1 span { color: var(--lime); }
.hero__title-logo { display: block; width: min(100%, 410px); height: auto; aspect-ratio: 2151 / 729; object-fit: contain; object-position: left center; }
.hero__copy-inner > div:first-child > p:last-child { margin: 6px 0 0; color: var(--white); font-family: var(--font-display); font-size: clamp(1.08rem, 2.2vw, 1.55rem); font-weight: 800; }
.hero__copy-inner em { color: #ffc400; font-family: "Segoe Script", cursive; font-size: 1.25em; font-style: normal; font-weight: 700; }
.hero__actions { display: grid; width: min(100%, 880px); grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.hero__actions .button { width: 100%; padding-inline: 16px; white-space: normal; text-align: center; }

.positioning {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 22px 0;
  background:
    radial-gradient(circle at 12% -40%, rgba(149, 198, 0, 0.22), transparent 42%),
    linear-gradient(115deg, var(--green-black), #06331d 72%, #07572e);
}
.positioning::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.035) 35%, rgba(255, 255, 255, 0.035) 62%, transparent 62%);
  content: "";
  pointer-events: none;
}
.positioning__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.positioning article {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 172px;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  padding: 34px 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: linear-gradient(145deg, #b8e62d, var(--lime));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.3);
}
.positioning article::after {
  position: absolute;
  top: -20px;
  right: -6px;
  color: rgba(3, 17, 9, 0.075);
  font-family: var(--font-display);
  font-size: 6.2rem;
  font-weight: 900;
  line-height: 1;
  content: "01";
  pointer-events: none;
}
.positioning article:nth-child(2)::after { content: "02"; }
.positioning article:nth-child(3)::after { content: "03"; }
.positioning article:nth-child(4)::after { content: "04"; }
.positioning strong,
.positioning .stat { position: relative; z-index: 1; color: var(--green-black); font-family: var(--font-display); font-size: 1.75rem; font-weight: 900; line-height: 1; }
.positioning .stat-suffix { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; }
.positioning p { position: relative; z-index: 1; flex-basis: 100%; margin: 12px 0 0; color: rgba(7, 26, 16, 0.78); font-size: 0.88rem; font-weight: 750; line-height: 1.35; }
.positioning__icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  margin-right: 10px;
  border: 1px solid rgba(3, 17, 9, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  color: var(--green-dark);
  font-size: 1.15rem;
}

@media (hover: hover) and (pointer: fine) {
  .positioning article { transition: transform 220ms ease, box-shadow 220ms ease; }
  .positioning article:hover { transform: translateY(-4px); box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26), inset 0 1px rgba(255, 255, 255, 0.3); }
}

.intro { overflow: hidden; }
.intro__grid { display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr); align-items: center; gap: clamp(60px, 8vw, 120px); }
.photo-frame { position: relative; min-height: 610px; overflow: hidden; border-radius: var(--radius-lg); background: var(--green-soft); box-shadow: var(--shadow); }
.photo-frame::before { position: absolute; z-index: 1; inset: auto -90px -80px auto; width: 270px; height: 270px; border: 36px solid rgba(149, 198, 0, 0.8); border-radius: 50%; content: ""; }
.photo-frame picture,
.photo-frame img { width: 100%; height: 100%; }
.photo-frame img { position: absolute; object-fit: cover; object-position: 53% 29%; }
.photo-frame__badge { position: absolute; z-index: 2; bottom: 28px; left: 28px; display: flex; flex-direction: column; border-radius: var(--radius-sm); background: var(--lime); padding: 16px 22px; color: var(--green-black); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18); }
.photo-frame__badge strong { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; }
.photo-frame__badge span { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.intro__content h2 { max-width: 720px; }
.intro__content > p:not(.eyebrow):not(.intro__statement) { max-width: 720px; margin: 0 0 18px; font-size: 1.02rem; line-height: 1.7; }
.intro__statement { margin: 30px 0; border-left: 5px solid var(--lime); padding: 10px 0 10px 22px; color: var(--green-deep); font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--green-dark); font-weight: 800; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(5px); }

.para-project { position: relative; overflow: hidden; background: radial-gradient(circle at 70% 42%, #0a6435 0, #07351d 33%, var(--green-deep) 75%); color: var(--white); }
.para-project::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 46px 46px; content: ""; mask-image: linear-gradient(to right, transparent, #000); }
.para-project__grid { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: 60px; }
.para-project h2 { color: var(--white); }
.para-project p { max-width: 650px; color: rgba(255, 255, 255, .7); }
.para-project__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.para-project__tags span { border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 10px 16px; color: var(--white); font-size: .76rem; font-weight: 800; text-transform: uppercase; }
.para-map { position: relative; display: flex; align-items: center; justify-content: center; perspective: 1000px; }
.para-visual { position: relative; width: min(100%, 650px); margin: 0; isolation: isolate; animation: para-visual-float 7s ease-in-out infinite; }
.para-visual::before { position: absolute; z-index: -2; inset: 10% 4% -5%; border-radius: 45%; background: radial-gradient(circle, rgba(149,198,0,.32), rgba(0,163,88,.14) 48%, transparent 72%); content: ""; filter: blur(26px); }
.para-visual__frame { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.34); border-radius: 34px; background: rgba(255,255,255,.08); box-shadow: 0 32px 75px rgba(0,0,0,.34), 0 0 0 8px rgba(149,198,0,.06); transform: rotate(-.65deg); }
.para-visual__frame::after { position: absolute; z-index: 2; inset: 0; border-radius: inherit; background: linear-gradient(135deg, rgba(255,255,255,.2), transparent 28%, transparent 68%, rgba(149,198,0,.14)); content: ""; pointer-events: none; }
.para-visual img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: contain; object-position: center; }
.para-visual__shine { position: absolute; z-index: 3; top: -45%; left: -35%; width: 22%; height: 190%; transform: rotate(18deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent); filter: blur(3px); animation: para-visual-shine 8s ease-in-out infinite; pointer-events: none; }
.para-visual__orbit { position: absolute; z-index: -1; right: -16px; bottom: -18px; width: 86px; height: 86px; border: 1px solid rgba(200,235,89,.45); border-radius: 50%; box-shadow: inset 0 0 0 12px rgba(149,198,0,.06), 0 0 28px rgba(149,198,0,.16); animation: para-visual-orbit 12s linear infinite; }
.para-visual__orbit::after { position: absolute; top: 8px; left: 9px; width: 10px; height: 10px; border-radius: 50%; background: var(--lime-light); box-shadow: 0 0 18px var(--lime); content: ""; }

@keyframes para-visual-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes para-visual-breathe {
  from { transform: scale(1.015); }
  to { transform: scale(1.055); }
}

@keyframes para-visual-shine {
  0%, 28% { transform: translateX(-180%) rotate(18deg); opacity: 0; }
  38% { opacity: .75; }
  54%, 100% { transform: translateX(760%) rotate(18deg); opacity: 0; }
}

@keyframes para-visual-orbit { to { transform: rotate(360deg); } }

.proposals { background: var(--off-white); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; margin-bottom: 54px; }
.section-heading > div { max-width: 790px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 390px; margin-bottom: 6px; }
.section-heading--center { justify-content: center; text-align: center; }
.section-heading--center > div { max-width: 930px; }
.proposal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.proposal-card { position: relative; min-height: 338px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 32px 28px; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.proposal-card::after { position: absolute; right: -42px; bottom: -54px; width: 140px; height: 140px; border: 20px solid var(--green-soft); border-radius: 50%; content: ""; transition: border-color 220ms ease, transform 220ms ease; }
.proposal-card--featured { grid-column: span 2; display: grid; grid-template-columns: 72px minmax(0, 1fr); grid-template-rows: auto auto 1fr; column-gap: 26px; align-content: start; border-color: rgba(149, 198, 0, .28); background: linear-gradient(135deg, var(--green-deep), #07512b); color: var(--white); box-shadow: 0 22px 50px rgba(7, 26, 16, .16); }
.proposal-card--featured::after { right: -30px; bottom: -76px; width: 210px; height: 210px; border-width: 34px; border-color: rgba(149, 198, 0, .16); }
.proposal-card--featured .card-icon { grid-row: 1 / 4; width: 64px; height: 64px; margin: 0; background: var(--lime); color: var(--green-deep); font-size: 1.65rem; }
.proposal-card--featured small { color: var(--lime-light); }
.proposal-card--featured h3 { max-width: 520px; color: var(--white); font-size: clamp(1.55rem, 2.5vw, 2.15rem); }
.proposal-card--featured p { max-width: 680px; color: rgba(255, 255, 255, .76); font-size: .95rem; }
.proposal-card:hover { z-index: 1; transform: translateY(-8px); border-color: rgba(0, 163, 88, .35); box-shadow: var(--shadow); }
.proposal-card:hover::after { transform: scale(1.12); border-color: rgba(149, 198, 0, .32); }
.proposal-card .card-icon { display: inline-grid; width: 48px; height: 48px; place-items: center; margin-bottom: 34px; border-radius: 14px; background: var(--green-soft); color: var(--green-dark); font-size: 1.35rem; font-weight: 900; }
.proposal-card small { display: block; margin-bottom: 10px; color: var(--green-dark); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.proposal-card h3 { max-width: 260px; font-size: 1.23rem; }
.proposal-card p { position: relative; z-index: 1; margin-bottom: 0; font-size: .86rem; line-height: 1.55; }
.section-action { margin-top: 42px; text-align: center; }

.trajectory { position: relative; overflow: hidden; background: var(--green-deep); color: var(--white); }
.trajectory::before { position: absolute; top: -180px; right: -140px; width: 520px; height: 520px; border: 70px solid rgba(149,198,0,.08); border-radius: 50%; content: ""; }
.trajectory__heading { position: relative; max-width: 790px; margin-bottom: 76px; }
.trajectory h2 { color: var(--white); }
.trajectory__heading > p:last-child { color: rgba(255,255,255,.62); }
.timeline { position: relative; display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.timeline::before { position: absolute; top: 45px; bottom: 45px; left: 56px; width: 1px; background: linear-gradient(var(--lime), rgba(149,198,0,.15)); content: ""; }
.timeline li { position: relative; display: grid; grid-template-columns: 112px minmax(0, 1fr); align-items: start; gap: 30px; padding: 0 0 55px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li > span { position: relative; z-index: 1; display: grid; width: 112px; height: 80px; place-items: center; border: 1px solid rgba(149,198,0,.4); border-radius: 18px; background: var(--green-deep); color: var(--lime); font-family: var(--font-display); font-size: 1.24rem; font-weight: 900; }
.timeline li > div { max-width: 780px; padding: 10px 0 0; }
.timeline small { color: var(--lime); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.timeline h3 { margin: 8px 0 10px; color: var(--white); font-size: clamp(1.45rem, 2.8vw, 2.25rem); }
.timeline p { margin: 0; color: rgba(255,255,255,.6); }

.statement { position: relative; display: flex; min-height: 620px; align-items: center; overflow: hidden; background: var(--green-deep); color: var(--white); isolation: isolate; }
.statement__image { position: absolute; z-index: -2; inset: 0 0 0 auto; width: 58%; height: 100%; }
.statement__image img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: right bottom; }
.statement__overlay { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, var(--green-deep) 0%, rgba(7,26,16,.98) 38%, rgba(7,26,16,.82) 55%, rgba(7,26,16,.24) 78%, rgba(7,26,16,.08) 100%); }
.statement__content { position: relative; width: min(calc(100% - 48px), var(--container)); margin-inline: auto; padding-block: 86px; }
.statement__content > * { max-width: 640px; }
.statement h2 { color: var(--white); font-size: clamp(2rem, 3.5vw, 3.4rem); line-height: 1.12; text-wrap: balance; }
.statement__content > p:last-child { border-left: 3px solid var(--lime); padding-left: 18px; color: rgba(255,255,255,.72); }
.statement__content > p:last-child strong { color: var(--white); font-family: var(--font-display); }

.differences { background: var(--white); }
.difference-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.difference-grid article { min-height: 300px; border-top: 4px solid var(--green); border-radius: 0 0 var(--radius) var(--radius); background: var(--off-white); padding: 32px 28px; }
.difference-grid article > span { color: var(--green); font-family: var(--font-display); font-size: 3rem; font-weight: 900; opacity: .22; }
.difference-grid h3 { margin-top: 32px; margin-bottom: 14px; text-transform: uppercase; }
.difference-grid p { margin-bottom: 0; font-size: .9rem; }
.commitment { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; margin-top: 90px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--green-deep), #064725); padding: clamp(42px, 6vw, 78px); color: var(--white); box-shadow: var(--shadow); }
.commitment__heading h2 { color: var(--white); font-size: clamp(2.2rem, 4vw, 3.7rem); }
.commitment ol { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.commitment li { display: grid; grid-template-columns: 56px 1fr; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.13); padding: 18px 0; }
.commitment li:first-child { padding-top: 0; }
.commitment li:last-child { border-bottom: 0; }
.commitment li > span { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--green-deep); font-family: var(--font-display); font-size: .8rem; font-weight: 900; }
.commitment strong { font-family: var(--font-display); font-size: 1.12rem; text-transform: uppercase; }
.commitment p { margin: 3px 0 0; color: rgba(255,255,255,.62); font-size: .85rem; }

.participation { background: var(--off-white); }
.participation__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.participation__grid article { min-height: 250px; border-radius: var(--radius); background: var(--white); padding: 34px; box-shadow: 0 1px 0 var(--line); transition: transform 180ms ease, box-shadow 180ms ease; }
.participation__grid article:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.participation__grid article > span { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 42px; border-radius: 50%; background: var(--green); color: var(--white); font-size: 1.35rem; }
.participation__grid h3 { font-size: 1.16rem; }
.participation__grid p { margin-bottom: 0; font-size: .86rem; }

.gallery { background: var(--white); }
.gallery__carousel { --gallery-progress: 7.14%; position: relative; }
.gallery__grid { display: flex; gap: 18px; overflow-x: auto; padding: 8px max(7vw, 72px) 24px; scroll-behavior: smooth; scroll-padding-inline: max(7vw, 72px); scroll-snap-type: x mandatory; scrollbar-width: none; }
.gallery__grid::-webkit-scrollbar { display: none; }
.gallery-card { position: relative; flex: 0 0 min(72vw, 860px); height: 520px; overflow: hidden; border: 0; border-radius: var(--radius-lg); padding: 0; cursor: zoom-in; background: var(--green-deep); box-shadow: 0 18px 42px rgba(7, 26, 16, .16); scroll-snap-align: center; scroll-snap-stop: always; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease, opacity 250ms ease; }
.gallery-card--portrait img { object-position: 53% 28%; }
.gallery-card--wide img { object-position: center; }
.gallery-card--vertical img { object-position: 50% 44%; }
.gallery-card::after { position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(2,15,7,.8)); content: ""; }
.gallery-card:hover img { transform: scale(1.035); opacity: .94; }
.gallery-card span { position: absolute; z-index: 1; bottom: 26px; left: 28px; color: var(--white); font-family: var(--font-display); font-size: .86rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.gallery__nav { position: absolute; z-index: 3; top: calc(50% - 35px); display: grid; width: 56px; height: 56px; place-items: center; transform: translateY(-50%); border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: rgba(4,24,12,.78); color: var(--white); box-shadow: 0 12px 28px rgba(0,0,0,.2); cursor: pointer; font-size: 2rem; line-height: 1; backdrop-filter: blur(10px); transition: transform 180ms ease, background 180ms ease; }
.gallery__nav:hover { transform: translateY(-50%) scale(1.06); background: var(--green-dark); }
.gallery__nav--prev { left: 18px; }
.gallery__nav--next { right: 18px; }
.gallery__meta { display: grid; grid-template-columns: auto minmax(100px, 1fr) auto; align-items: center; gap: 18px; padding: 2px max(7vw, 72px) 0; color: var(--green-deep); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.gallery__counter { min-width: 56px; font-family: var(--font-display); }
.gallery__progress { height: 3px; overflow: hidden; border-radius: 99px; background: var(--green-soft); }
.gallery__progress span { display: block; width: var(--gallery-progress); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green), var(--lime)); transition: width 320ms ease; }

.updates { padding-top: 30px; }
.updates + .faq { padding-top: 0; }
.updates__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.updates__panel { position: relative; min-height: 430px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--green-deep), #086239); padding: clamp(38px, 6vw, 70px); color: var(--white); }
.updates__panel--light { border: 1px solid var(--line); background: var(--off-white); color: var(--ink); }
.updates__panel h2 { max-width: 520px; color: inherit; font-size: clamp(2rem, 3.6vw, 3.5rem); }
.updates__panel p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.65); }
.updates__panel--light p:not(.eyebrow) { color: var(--gray); }
.updates__accent { position: absolute; right: -18px; bottom: -32px; color: rgba(255,255,255,.07); font-family: var(--font-display); font-size: clamp(6rem, 13vw, 11rem); font-weight: 900; letter-spacing: -.08em; line-height: 1; pointer-events: none; }
.updates__portrait { display: none; }
@media (max-width: 860px) {
  .updates__accent { position: static; display: block; margin: 32px auto 0; width: 100%; text-align: center; font-size: clamp(4rem, 18vw, 7rem); line-height: 1.15; }
}
@media (min-width: 861px) {
  .updates__panel:first-child { isolation: isolate; }
  .updates__panel:first-child > p, .updates__panel:first-child > h2 { position: relative; z-index: 2; }
  .updates__portrait { display: block; position: absolute; inset: 330px 0 0; overflow: hidden; pointer-events: none; mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 68%, transparent 100%); }
  .updates__portrait img { position: absolute; top: -45px; left: 50%; width: 105%; max-width: none; height: auto; transform: translateX(-50%); }
  .updates__panel:first-child .updates__accent { z-index: 1; left: 32px; right: auto; bottom: 24px; color: rgba(255,255,255,.16); font-size: clamp(5rem, 8vw, 8rem); }
}
.updates__links { display: grid; gap: 12px; margin-top: 30px; }
.updates__social { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 16px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); padding: 15px 18px; box-shadow: 0 10px 24px rgba(7,26,16,.05); transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.updates__social:hover { transform: translateY(-3px); border-color: rgba(0,148,80,.38); box-shadow: 0 16px 32px rgba(7,26,16,.1); }
.updates__social-icon { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 15px; background: var(--green-soft); color: var(--green-dark); }
.updates__social-icon svg { width: 25px; height: 25px; fill: currentColor; stroke: currentColor; stroke-width: 1.8; }
.updates__social-icon svg rect, .updates__social-icon svg circle:not(.updates__social-dot) { fill: none; }
.updates__social strong, .updates__social small { display: block; }
.updates__social strong { color: var(--ink); font-family: var(--font-display); font-size: 1rem; }
.updates__social small { margin-top: 3px; color: var(--gray); font-size: .76rem; }
.updates__social-arrow { color: var(--green); font-size: 1.4rem; font-weight: 800; }
.updates__filters { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.updates__filters h3 { margin: 0; color: var(--ink); font-family: var(--font-display); font-size: 1.125rem; }
.updates__filters .updates__links { margin-top: 16px; }
.updates__filters .updates__social { grid-template-columns: 54px minmax(0, 1fr) auto; }
@media (max-width: 760px) {
  .updates__filters .updates__social { grid-template-columns: 48px minmax(0, 1fr) auto; }
}

.agenda { padding-top: 0; }
.agenda__inner { display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 90px; border-radius: var(--radius-lg); background: var(--green-deep); padding: clamp(42px, 6vw, 78px); color: var(--white); }
.agenda h2 { color: var(--white); }
.agenda__copy > p:last-child { max-width: 600px; color: rgba(255,255,255,.64); }
.agenda__contact { display: grid; grid-template-columns: 86px 1fr; align-items: center; gap: 22px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.07); padding: 24px; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.agenda__contact:hover { transform: translateY(-3px); border-color: rgba(184,232,42,.55); background: rgba(255,255,255,.1); }
.agenda__contact-mark { display: grid; width: 86px; height: 86px; place-items: center; border-radius: 22px; background: var(--lime); color: var(--green-black); font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; letter-spacing: -.05em; }
.agenda__contact-copy small, .agenda__contact-copy strong, .agenda__contact-copy > span { display: block; }
.agenda__contact-copy small { margin-bottom: 7px; color: var(--lime-light); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.agenda__contact-copy strong { color: var(--white); font-family: var(--font-display); font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.15; text-transform: uppercase; }
.agenda__contact-copy > span { margin-top: 13px; color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 700; text-transform: uppercase; white-space: nowrap; }
.agenda__contact-copy b { margin-left: 5px; color: var(--lime); font-size: 1rem; }

.faq { background: var(--off-white); }
.faq__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.faq__heading { position: sticky; top: 120px; align-self: start; }
.faq__heading h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.accordion { border-top: 1px solid #ccd7cd; }
.accordion__item { border-bottom: 1px solid #ccd7cd; }
.accordion h3 { margin: 0; font-family: var(--font-body); letter-spacing: 0; }
.accordion button { display: grid; width: 100%; grid-template-columns: 1fr 38px; align-items: center; gap: 20px; border: 0; background: transparent; padding: 25px 0; color: var(--ink); cursor: pointer; font-family: var(--font-display); font-size: 1rem; font-weight: 800; text-align: left; }
.accordion button span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--green); color: var(--white); font-size: 1.1rem; }
.accordion__panel { padding: 0 58px 22px 0; }
.accordion__panel p { margin: 0; }

.main-cta { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--green-black), #03542a); padding: 120px 0; color: var(--white); }
.main-cta::after { position: absolute; right: -130px; bottom: -170px; width: 460px; height: 460px; border: 70px solid rgba(149,198,0,.12); border-radius: 50%; content: ""; }
.main-cta__map { position: absolute; top: 50%; left: 63%; transform: translate(-50%, -50%); color: transparent; font-family: var(--font-display); font-size: clamp(16rem, 34vw, 34rem); font-weight: 900; line-height: 1; -webkit-text-stroke: 2px rgba(149,198,0,.09); }
.main-cta__content { position: relative; z-index: 1; text-align: center; }
.main-cta h2 { max-width: 940px; margin-inline: auto; color: var(--white); }
.main-cta__content > p:not(.eyebrow) { max-width: 740px; margin: 0 auto 32px; color: rgba(255,255,255,.68); font-size: 1.08rem; }
.main-cta__signature { display: flex; flex-direction: column; margin: 34px 0; }
.main-cta__signature strong { color: var(--white); font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 5.8rem); line-height: .95; text-transform: uppercase; }
.main-cta__signature strong span { color: var(--lime); }
.main-cta__signature em { color: #ffc400; font-family: "Segoe Script", cursive; font-size: clamp(1.8rem, 4vw, 3.5rem); font-style: normal; }
.main-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.contact { background: var(--white); }
.contact__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(55px, 8vw, 110px); }
.contact__info { padding-top: 24px; }
.contact__info h2 { font-size: clamp(2.3rem, 4.4vw, 4.2rem); }
.contact__candidate { display: flex; align-items: center; gap: 16px; margin-top: 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.contact__candidate-photo { width: 62px; height: 62px; flex: 0 0 62px; overflow: hidden; border: 2px solid var(--green-soft); border-radius: 50%; background: var(--off-white); }
.contact__candidate-photo img { width: 100%; height: 100%; transform: scale(1.7); transform-origin: 50% 8%; object-fit: cover; object-position: 50% top; }
.contact__candidate strong { font-family: var(--font-display); font-size: 1.05rem; text-transform: uppercase; }
.contact__candidate p { margin: 3px 0 0; font-size: .82rem; }
.contact__notice { margin-top: 20px; border-radius: var(--radius-sm); background: var(--off-white); padding: 14px 16px; font-size: .76rem; }
.contact-form { border-radius: var(--radius-lg); background: var(--off-white); padding: clamp(28px, 5vw, 54px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid label { color: var(--ink); font-size: .78rem; font-weight: 800; }
.form-grid label > span { color: var(--green-dark); }
.form-grid__full { grid-column: 1 / -1; }
.form-grid input,
.form-grid select,
.form-grid textarea { width: 100%; margin-top: 7px; border: 1px solid #c9d4ca; border-radius: 12px; outline: none; background: var(--white); padding: 13px 14px; color: var(--ink); transition: border-color 180ms ease, box-shadow 180ms ease; }
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(0,163,88,.12); }
.form-grid textarea { resize: vertical; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; color: var(--gray); font-size: .75rem; }
.checkbox input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--green-dark); font-size: .8rem; font-weight: 700; }

.site-footer { background: var(--green-black); padding: 76px 0 24px; color: var(--white); }
.footer__grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 60px; padding-bottom: 54px; }
.brand--footer { margin-bottom: 20px; }
.footer__grid h2 { margin-bottom: 20px; color: var(--white); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.footer__grid p { color: rgba(255,255,255,.55); font-size: .82rem; }
.footer__grid > div:first-child p { color: var(--white); font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; }
.footer__grid > div:first-child em { color: #ffc400; font-family: "Segoe Script", cursive; font-size: 1.25em; font-style: normal; }
.footer__grid > div:not(:first-child) a { display: block; margin-bottom: 10px; color: rgba(255,255,255,.57); font-size: .82rem; transition: color 180ms ease; }
.footer__grid > div:not(:first-child) a:hover { color: var(--lime); }
.footer__legal { display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; }
.footer__legal p { margin: 0; color: rgba(255,255,255,.45); font-size: .66rem; }

.floating-contact { position: fixed; z-index: 700; right: 22px; bottom: 24px; display: flex; align-items: center; gap: 9px; border: 2px solid rgba(255,255,255,.8); border-radius: 999px; background: var(--green); padding: 11px 16px; color: var(--white); box-shadow: 0 14px 34px rgba(0,0,0,.26); font-size: .78rem; font-weight: 800; transition: transform 180ms ease, opacity 180ms ease; }
.floating-contact:hover { transform: translateY(-3px); }
.floating-contact span:first-child { display: grid; width: 22px; height: 22px; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-size: .6rem; }
.back-to-top { position: fixed; z-index: 690; right: 26px; bottom: 88px; display: grid; width: 44px; height: 44px; place-items: center; transform: translateY(15px); border: 1px solid rgba(255,255,255,.3); border-radius: 50%; opacity: 0; pointer-events: none; background: var(--green-deep); color: var(--white); cursor: pointer; box-shadow: 0 10px 26px rgba(0,0,0,.2); transition: opacity 180ms ease, transform 180ms ease; }
.back-to-top.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }

.lightbox { position: fixed; width: min(94vw, 1180px); max-width: 1180px; max-height: 92vh; overflow: visible; border: 0; border-radius: var(--radius); background: transparent; padding: 0; }
.lightbox::backdrop { background: rgba(0, 10, 5, .92); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 88vh; border-radius: var(--radius); object-fit: contain; }
.lightbox__close { position: absolute; z-index: 2; top: -18px; right: -18px; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: var(--white); color: var(--green-deep); cursor: pointer; font-size: 1.7rem; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { animation: reveal-in 520ms ease both; }

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .main-nav { gap: 14px; }
  .main-nav > a:not(.button) { font-size: .68rem; }
  .hero__actions { width: min(100%, 720px); }
  .proposal-grid { grid-template-columns: repeat(2, 1fr); }
  .difference-grid, .participation__grid { grid-template-columns: repeat(2, 1fr); }
  .para-project__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 88px 0; }
  .site-header.menu-active { backdrop-filter: none; }
  .menu-toggle { display: flex; }
  .main-nav { position: fixed; top: 78px; right: 0; bottom: 0; left: 0; display: flex; visibility: hidden; align-items: stretch; flex-direction: column; gap: 0; transform: translateY(-14px); opacity: 0; overflow-y: auto; background: rgba(3,17,9,.98); padding: 22px 24px 40px; transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease; }
  .main-nav.is-open { visibility: visible; transform: translateY(0); opacity: 1; }
  .main-nav > a:not(.button) { border-bottom: 1px solid rgba(255,255,255,.1); padding: 15px 4px; color: var(--white); font-family: var(--font-display); font-size: 1rem; }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .nav-cta { margin-top: 22px; }
  .hero__actions { width: 100%; }
  .positioning__grid { grid-template-columns: repeat(2, 1fr); }
  .intro__grid { grid-template-columns: 1fr; }
  .intro__media { max-width: 650px; }
  .photo-frame { min-height: 700px; }
  .para-project__grid { grid-template-columns: 1fr; }
  .para-map { max-width: 560px; margin-inline: auto; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .timeline li { grid-template-columns: 90px 1fr; }
  .timeline li > span { width: 90px; height: 70px; }
  .timeline::before { left: 45px; }
  .statement { min-height: 580px; }
  .statement__image { width: 66%; }

  .commitment { grid-template-columns: 1fr; gap: 24px; }
  .gallery__grid { grid-template-rows: repeat(2, 260px); }
  .updates__grid { grid-template-columns: 1fr; }
  .agenda__inner { grid-template-columns: 1fr; gap: 30px; }
  .faq__grid { grid-template-columns: 1fr; gap: 45px; }
  .faq__heading { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 74px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .header__inner { min-height: 70px; }
  .brand__name { font-size: .72rem; }
  .brand__name strong { font-size: 1.12rem; }
  .brand__number { font-size: 1.7rem; }
  .main-nav { top: 70px; }
  .hero { padding-top: 70px; }
  .hero__image { width: 100%; }
  .hero__copy-inner { min-height: auto; padding-block: 26px; }
  .hero__copy-inner h1 { font-size: clamp(2.15rem, 12vw, 3.4rem); }
  .hero__title-logo { width: min(100%, 340px); }
  .hero__copy-inner > div:first-child > p:last-child { font-size: 1rem; }
  .hero__actions { grid-template-columns: 1fr; }
  .hero__actions .button { width: 100%; }
  .positioning { padding: 14px 0; }
  .positioning__grid { width: 100%; grid-template-columns: 1fr 1fr; gap: 10px; padding-inline: 12px; }
  .positioning article { min-height: 150px; padding: 24px 18px; border-radius: 18px; }
  .positioning article::after { top: -10px; right: -3px; font-size: 4.5rem; }
  .positioning strong, .positioning .stat { font-size: 1.35rem; }
  .positioning .stat-suffix { font-size: 1rem; }
  .positioning p { margin-top: 10px; font-size: .74rem; }
  .positioning__icon { width: 30px; height: 30px; flex-basis: 30px; margin-right: 7px; font-size: .95rem; }
  .photo-frame { min-height: 540px; border-radius: var(--radius); }
  .photo-frame img { object-position: 53% 30%; }
  .photo-frame__badge { bottom: 18px; left: 18px; }
  .para-project__grid { gap: 35px; }
  .para-project__tags { gap: 7px; }
  .para-visual { width: 100%; }
  .para-visual__frame { border-radius: 24px; transform: none; }
  .para-visual__orbit { right: -8px; bottom: -12px; width: 66px; height: 66px; }
  .proposal-grid, .difference-grid, .participation__grid { grid-template-columns: 1fr; }
  .proposal-card { min-height: 0; }
  .proposal-card--featured { grid-column: auto; display: block; }
  .proposal-card--featured .card-icon { margin-bottom: 28px; }
  .timeline li { grid-template-columns: 62px 1fr; gap: 16px; padding-bottom: 42px; }
  .timeline li > span { width: 62px; height: 58px; border-radius: 14px; font-size: .92rem; }
  .timeline::before { top: 30px; bottom: 30px; left: 31px; }
  .timeline li > div { padding-top: 2px; }
  .timeline h3 { font-size: 1.25rem; }
  .timeline p { font-size: .82rem; }
  .statement { min-height: 760px; align-items: flex-end; }
  .statement__image { inset: 0; width: 100%; }
  .statement__image img { object-position: 50% top; }
  .statement__overlay { background: linear-gradient(180deg, rgba(7,26,16,.16) 0%, rgba(7,26,16,.42) 34%, rgba(7,26,16,.88) 56%, var(--green-deep) 100%); }
  .statement__content { width: min(calc(100% - 36px), var(--container)); padding-block: 340px 54px; }
  .statement h2 { font-size: clamp(1.8rem, 6.2vw, 2.5rem); }
  .difference-grid article { min-height: 250px; }
  .difference-grid h3 { margin-top: 24px; }
  .commitment { margin-top: 60px; padding: 34px 24px; }
  .commitment li { grid-template-columns: 46px 1fr; gap: 12px; }
  .commitment li > span { width: 40px; height: 40px; }
  .gallery__grid { gap: 12px; margin-inline: -14px; padding: 6px 28px 18px; scroll-padding-inline: 28px; }
  .gallery-card { flex-basis: 82vw; height: 460px; border-radius: var(--radius); }
  .gallery__nav { top: calc(50% - 30px); width: 46px; height: 46px; font-size: 1.65rem; }
  .gallery__nav--prev { left: 2px; }
  .gallery__nav--next { right: 2px; }
  .gallery__meta { grid-template-columns: auto 1fr; gap: 12px; padding-inline: 0; }
  .gallery__meta > span:last-child { display: none; }
  .updates { padding-top: 0; }
  .updates__panel { min-height: 390px; padding: 40px 28px; }
  .agenda__inner { padding: 36px 24px; }
  .updates__social { grid-template-columns: 48px 1fr auto; gap: 13px; padding: 13px; }
  .updates__social-icon { width: 48px; height: 48px; border-radius: 13px; }
  .agenda__contact { grid-template-columns: 64px 1fr; gap: 16px; padding: 18px; }
  .agenda__contact-mark { width: 64px; height: 64px; border-radius: 17px; font-size: 1.4rem; }
  .agenda__contact-copy > span { font-size: .65rem; }
  .main-cta { padding: 90px 0; }
  .main-cta__actions { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid__full { grid-column: auto; }
  .contact-form { padding: 26px 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__legal { align-items: flex-start; flex-direction: column; }
  .floating-contact { right: 14px; bottom: 14px; padding: 12px; }
  .floating-contact span:last-child { display: none; }
  .back-to-top { right: 16px; bottom: 76px; }
  .lightbox { width: calc(100vw - 24px); }
  .lightbox__close { top: -12px; right: -4px; }
}

@media (max-width: 420px) {
  .positioning article { min-height: 142px; padding: 22px 15px; }
  .positioning strong, .positioning .stat { font-size: 1.18rem; }
  .positioning p { font-size: .7rem; }
  .photo-frame { min-height: 480px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .reveal.is-visible { animation: none; }
}
/* Trajectory: a connected editorial sequence, ending in the current chapter. */
#trajetoria .trajectory__heading { max-width: 850px; margin-bottom: clamp(32px, 4vw, 56px); }
#trajetoria .timeline { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
#trajetoria .timeline::before { top: 28px; bottom: auto; left: 28px; right: 28px; width: auto; height: 1px; background: linear-gradient(90deg, rgba(149,198,0,.35), var(--lime)); }
#trajetoria .timeline li { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; padding: 0; }
#trajetoria .timeline li > span { width: 76px; height: 56px; border-radius: 28px; font-size: 1.1rem; }
#trajetoria .timeline li > div { flex: 1; width: 100%; max-width: none; padding: 28px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.025); }
#trajetoria .timeline li:last-child > span { background: var(--lime); color: var(--green-deep); }
#trajetoria .timeline li:last-child > div { border-color: rgba(149,198,0,.55); background: linear-gradient(145deg, rgba(149,198,0,.11), rgba(149,198,0,.025)); }
#trajetoria .timeline small { font-size: .875rem; letter-spacing: .08em; }
#trajetoria .timeline h3 { margin: 12px 0 16px; font-size: clamp(1.45rem, 2.1vw, 1.85rem); line-height: 1.2; text-wrap: balance; }
#trajetoria .timeline p { margin: 0; font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,.75); }
@media (min-width: 761px) {
  #principio .statement__image { width: 48%; inset: 32px 3% 0 auto; height: calc(100% - 32px); }
  #principio .statement__content > * { max-width: 54%; }
  #principio .statement__overlay { background: linear-gradient(90deg, var(--green-deep) 0%, rgba(7,26,16,.98) 35%, rgba(7,26,16,.6) 55%, rgba(7,26,16,.06) 76%); }
}
@media (max-width: 900px) {
  #trajetoria .timeline { grid-template-columns: 1fr; gap: 28px; }
  #trajetoria .timeline::before { top: 28px; bottom: 28px; left: 37px; right: auto; width: 1px; height: auto; background: linear-gradient(rgba(149,198,0,.35), var(--lime)); }
  #trajetoria .timeline li { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 22px; }
  #trajetoria .timeline li > div { padding: 24px; }
}
@media (max-width: 480px) {
  #trajetoria .timeline li { grid-template-columns: 58px minmax(0, 1fr); gap: 14px; }
  #trajetoria .timeline li > span { width: 58px; height: 48px; font-size: .95rem; }
  #trajetoria .timeline::before { left: 28px; }
  #trajetoria .timeline li > div { padding: 20px 18px; }
  #trajetoria .timeline small { letter-spacing: .04em; }
}
/* A close portrait integrated into the statement background. */
#principio .statement__image { overflow: hidden; }
#principio .statement__image img { position: absolute; top: 0; left: 50%; width: auto; height: 215%; max-width: none; transform: translateX(-50%); object-fit: contain; object-position: center top; }
@media (min-width: 761px) {
  #principio .statement__image { inset: 0 max(0px, calc((100% - 1220px) / 2 - 80px)) 0 auto; width: 52%; height: 100%; opacity: .8; mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 98%); }
}
@media (max-width: 760px) {
  #principio .statement__image { inset: 0 0 auto; width: 100%; height: clamp(380px, 115vw, 560px); mask-image: linear-gradient(to bottom, #000 0%, #000 64%, transparent 100%); }
  #principio .statement__image img { top: max(-48px, -8vw); width: min(140%, 680px); height: auto; }
  #principio .statement__overlay { background: linear-gradient(180deg, rgba(7,26,16,.04) 0%, rgba(7,26,16,.08) 30%, rgba(7,26,16,.16) 48%, rgba(7,26,16,.8) 66%, var(--green-deep) 82%); }
  #principio .statement__content { padding-block: calc(clamp(380px, 115vw, 560px) - 40px) 54px; }
}
/* Contact navigation groups the existing social, office and team sections. */
.nav-contact { position: relative; }
.nav-contact > summary { position: relative; display: flex; align-items: center; gap: 7px; list-style: none; cursor: pointer; color: rgba(255,255,255,.82); font-size: .76rem; font-weight: 700; }
.nav-contact > summary::-webkit-details-marker { display: none; }
.nav-contact > summary::after { width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); content: ''; }
.nav-contact.is-active > summary, .nav-contact[open] > summary { color: var(--white); }
.nav-contact.is-active > summary::before { position: absolute; bottom: -9px; left: 0; right: 0; height: 2px; background: var(--lime); content: ''; }
.nav-contact__links { position: absolute; top: calc(100% + 20px); right: 0; display: grid; min-width: 240px; padding: 8px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; background: var(--green-deep); box-shadow: 0 16px 36px rgba(0,0,0,.25); }
.nav-contact__links a { display: block; padding: 12px 14px; border-radius: 8px; color: var(--white); font-size: .9rem; font-weight: 600; }
.nav-contact__links a:hover, .nav-contact__links a:focus-visible, .nav-contact__links a.is-active { background: rgba(149,198,0,.12); color: var(--lime-light); }
@media (min-width: 861px) and (max-width: 1100px) { .nav-contact > summary { font-size: .68rem; } }
@media (max-width: 860px) {
  .nav-contact > summary { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--font-display); font-size: 1rem; color: var(--white); }
  .nav-contact.is-active > summary::before { display: none; }
  .nav-contact__links { position: static; min-width: 0; margin: 8px 0; box-shadow: none; }
}
/* Privacy information and separate permissions within the existing form. */
.contact-form .checkbox { font-size: .875rem; line-height: 1.6; }
.contact-form .checkbox span { min-width: 0; }
.form-privacy { margin-top: 20px; font-size: .875rem; color: var(--gray); }
.form-privacy summary { cursor: pointer; color: var(--green-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.form-privacy > div { padding-top: 12px; }
.form-privacy p { margin: 0 0 12px; }
.form-privacy-note { margin: 20px 0 0; color: var(--gray); font-size: .875rem; line-height: 1.6; }
.contact-form [data-privacy-open], .privacy-dialog a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.privacy-dialog { width: min(720px, calc(100% - 32px)); max-height: calc(100dvh - 48px); padding: clamp(24px, 4vw, 40px); border: 0; border-radius: 24px; color: var(--ink); background: var(--white); overflow-y: auto; }
.privacy-dialog::backdrop { background: rgba(3,17,9,.72); }
.privacy-dialog__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.privacy-dialog h2 { margin: 0 0 18px; font-size: clamp(1.4rem, 4vw, 1.9rem); }
.privacy-dialog h3 { margin: 22px 0 8px; font-size: 1.05rem; }
.privacy-dialog p { font-size: 1rem; line-height: 1.65; margin: 0 0 12px; }
.privacy-dialog [data-privacy-close] { flex: 0 0 auto; width: 40px; height: 40px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: var(--green-soft); color: var(--ink); font-size: 1.8rem; cursor: pointer; }

/* Accessible document heading; preserves the approved visual layout. */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
