:root {
  --green: #054f4a;
  --green-2: #4a866a;
  --green-3: #0b3f3b;
  --cream: #f5f1dc;
  --beige: #e6e1c1;
  --orange: #cb7e2c;
  --gold: #d2c06c;
  --ink: #2d2d2b;
  --white: #fffef8;
  --line: rgba(5, 79, 74, .2);
  --shadow: 0 24px 70px rgba(5, 45, 42, .14);
  --radius: 28px;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--green);
  border-radius: 999px;
  transform: translateY(-150%);
}
.skip:focus { transform: translateY(0); }
.eyebrow {
  margin: 0 0 18px;
  color: var(--green-2);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--beige); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Raleway", Arial, sans-serif;
  letter-spacing: -.04em;
  line-height: 1.02;
}
h1 { font-size: clamp(3.7rem, 8vw, 7.1rem); font-weight: 500; }
h2 { margin-bottom: 24px; font-size: clamp(2.45rem, 5.5vw, 4.8rem); font-weight: 500; }
h3 { font-size: clamp(1.45rem, 2.4vw, 2rem); }
.accent { color: var(--orange); }
.serif-note { font-family: Georgia, serif; font-style: italic; font-weight: 400; }
.lead {
  max-width: 680px;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}
.muted { color: rgba(45, 45, 43, .72); }
.micro { font-size: .78rem; line-height: 1.55; color: rgba(45, 45, 43, .62); }
.rule { width: 72px; height: 3px; margin: 24px 0; background: var(--orange); }

.topbar {
  position: sticky;
  z-index: 90;
  top: 0;
  color: var(--white);
  background: rgba(5, 79, 74, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(16px);
}
.topbar .inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { width: 42px; height: 42px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-family: "Raleway", Arial, sans-serif; font-size: 1.08rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; font-size: .6rem; letter-spacing: .13em; text-transform: uppercase; color: var(--beige); }
.nav { display: flex; align-items: center; justify-content: center; gap: clamp(15px, 2.4vw, 32px); }
.nav a { position: relative; font-size: .78rem; font-weight: 600; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--gold); transition: right .25s ease; }
.nav a:hover::after, .nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; border: 0; background: none; padding: 9px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: currentColor; }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); background: #ae671f; }
.btn.outline { border-color: rgba(255, 255, 255, .5); background: transparent; }
.btn.outline:hover, .btn.outline:focus-visible { background: rgba(255, 255, 255, .09); }
.btn.dark { background: var(--green); }
.btn.dark:hover, .btn.dark:focus-visible { background: var(--green-3); }
.btn.cream { color: var(--green); background: var(--beige); }
.btn.cream:hover, .btn.cream:focus-visible { background: #fff; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero {
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); min-height: 760px; }
.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 88px clamp(36px, 5vw, 74px) 68px 0; }
.hero-copy::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: -320px;
  top: 80px;
  border: 1px solid rgba(230, 225, 193, .18);
  border-radius: 50%;
}
.hero h1 { margin: 0 0 28px; }
.hero h1 span { display: block; color: var(--beige); }
.hero .lead { max-width: 610px; color: rgba(255, 255, 255, .84); }
.hero-proof { display: flex; gap: 16px; align-items: center; margin: 30px 0; }
.hero-proof img { width: 54px; height: 54px; border: 2px solid var(--beige); border-radius: 50%; object-fit: cover; }
.hero-proof p { margin: 0; font-size: .76rem; line-height: 1.5; color: var(--beige); }
.hero-media { position: relative; min-height: 760px; }
.hero-media > img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; filter: saturate(.85) contrast(1.03); }
.hero-media::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, var(--green) 0, transparent 15%, transparent 78%, rgba(5, 79, 74, .2) 100%); }
.hero-media::after { content: ""; position: absolute; z-index: 1; inset: auto 0 0; height: 38%; background: linear-gradient(transparent, rgba(4, 45, 42, .54)); }
.hero-side-note { position: absolute; z-index: 2; right: 24px; top: 50%; transform: rotate(90deg) translateX(50%); transform-origin: right top; font-size: .62rem; letter-spacing: .21em; text-transform: uppercase; }
.hero-credentials {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  width: min(330px, calc(100% - 56px));
  padding: 22px;
  background: rgba(5, 79, 74, .9);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}
.hero-credentials p { margin: 0 0 8px; font-size: .73rem; color: var(--beige); }
.hero-credentials strong { display: block; font-family: "Raleway", sans-serif; font-size: 1.08rem; letter-spacing: -.02em; }

.band { background: var(--orange); color: #fff; }
.band .inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 18px; overflow: hidden; }
.band span { min-width: max-content; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.band i { width: 5px; height: 5px; flex: 0 0 5px; border-radius: 50%; background: var(--beige); }

.section { padding: clamp(88px, 11vw, 150px) 0; }
.section-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 7vw, 90px); align-items: end; margin-bottom: 58px; }
.section-head h2 { margin-bottom: 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 8vw, 100px); align-items: center; }
.portrait-frame { position: relative; min-height: 650px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.portrait-frame img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; object-position: 50% 30%; }
.portrait-frame .corner {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 270px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(5, 79, 74, .88);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}
.portrait-frame .corner small { display: block; margin-bottom: 5px; color: var(--beige); }
.performance-composite { position: relative; min-height: 720px; isolation: isolate; }
.performance-main {
  position: absolute;
  inset: 0 76px 74px 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: var(--shadow);
}
.performance-main::after { content: "PALCO / PERFORMANCE"; position: absolute; left: 22px; top: 22px; padding: 9px 13px; color: var(--beige); background: rgba(5,79,74,.88); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: .62rem; font-weight: 700; letter-spacing: .14em; }
.performance-main img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 24%; }
.performance-motion { position: absolute; z-index: 2; right: 0; bottom: 0; width: 235px; aspect-ratio: 1; margin: 0; overflow: hidden; border: 8px solid var(--cream); border-radius: 24px; background: var(--green-3); box-shadow: var(--shadow); }
.performance-motion img { width: 100%; height: 100%; object-fit: cover; }
.performance-id { position: absolute; z-index: 3; left: 24px; bottom: 96px; display: flex; align-items: center; gap: 13px; max-width: 265px; padding: 12px 16px 12px 12px; color: var(--white); background: rgba(5,79,74,.9); border: 1px solid rgba(255,255,255,.2); border-radius: 18px; backdrop-filter: blur(12px); }
.performance-id img { width: 54px; height: 54px; flex: 0 0 54px; object-fit: cover; object-position: 50% 25%; border: 2px solid var(--beige); border-radius: 50%; }
.performance-id span { display: grid; line-height: 1.25; }
.performance-id small { margin-bottom: 4px; color: var(--gold); font-size: .62rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.performance-id strong { font-family: "Raleway", sans-serif; font-size: .92rem; }
.story-copy .lead { margin-bottom: 24px; }
.credential-list { display: grid; gap: 14px; margin-top: 32px; }
.credential {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.credential b { display: grid; width: 42px; height: 42px; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-size: .7rem; }
.credential strong { display: block; font-family: "Raleway", sans-serif; }
.credential small { color: rgba(45, 45, 43, .65); }

.territories { color: var(--white); background: var(--green-3); }
.territories .section-head .lead { color: rgba(255, 255, 255, .72); }
.territory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255, 255, 255, .18); border: 1px solid rgba(255, 255, 255, .18); }
.territory-card { min-height: 340px; padding: 32px; background: var(--green-3); transition: background .25s ease; }
.territory-card:hover { background: var(--green); }
.territory-card .no { color: var(--gold); font-family: Georgia, serif; font-size: 2.1rem; font-style: italic; }
.territory-card h3 { margin: 72px 0 16px; color: var(--beige); }
.territory-card p { margin: 0; color: rgba(255, 255, 255, .68); font-size: .88rem; }

.editorial-grid { display: grid; grid-template-columns: 1.05fr .8fr 1.15fr; grid-template-rows: 340px 340px; gap: 16px; }
.editorial-card { position: relative; overflow: hidden; border-radius: 20px; background: var(--green); }
.editorial-card:nth-child(1) { grid-row: 1 / 3; }
.editorial-card:nth-child(3) { grid-row: 1 / 3; grid-column: 3; }
.editorial-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.editorial-card:hover img { transform: scale(1.035); }
.editorial-card:nth-child(1) img { object-position: 50% 45%; }
.editorial-card:nth-child(2) img { object-position: 50% 25%; }
.editorial-card:nth-child(3) img { object-position: 50% 30%; }
.editorial-card:nth-child(4) img { object-position: 50% 28%; }
.editorial-card figcaption { position: absolute; inset: auto 16px 16px; padding: 9px 12px; border-radius: 999px; background: rgba(5, 79, 74, .86); color: #fff; font-size: .68rem; }

.ecosystem { background: var(--beige); }
.ecosystem-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(45px, 8vw, 100px); align-items: center; }
.ecosystem-photo { position: relative; height: 690px; overflow: hidden; border-radius: var(--radius); }
.ecosystem-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.ecosystem-photo .seal { position: absolute; right: 22px; top: 22px; width: 92px; height: 92px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); }
.ecosystem-photo .seal img { width: 58px; height: 58px; object-fit: contain; }
.brand-panel {
  display: flex;
  min-height: 690px;
  padding: clamp(34px, 5vw, 64px);
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(210,192,108,.28), transparent 26%),
    linear-gradient(145deg, var(--green-2), var(--green) 56%, var(--green-3));
}
.brand-panel::before { content: ""; position: absolute; width: 420px; height: 420px; right: -160px; top: -120px; border: 1px solid rgba(230,225,193,.24); border-radius: 50%; }
.brand-panel::after { content: ""; position: absolute; width: 260px; height: 260px; left: -100px; bottom: 120px; border: 1px solid rgba(230,225,193,.16); border-radius: 50%; }
.brand-panel-mark { position: absolute; z-index: 1; width: 170px !important; height: 170px !important; left: clamp(34px, 5vw, 64px); top: clamp(34px, 5vw, 64px); object-fit: contain !important; }
.brand-panel p, .brand-panel strong, .brand-panel span { position: relative; z-index: 1; }
.brand-panel p { margin: 0 0 18px; color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .16em; }
.brand-panel strong { font-family: "Raleway", sans-serif; font-size: clamp(4rem, 9vw, 7rem); font-weight: 500; letter-spacing: -.06em; line-height: .8; }
.brand-panel span { margin-top: 28px; color: var(--beige); }
.destination-list { display: grid; margin-top: 38px; border-top: 1px solid var(--line); }
.destination {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.destination .index { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--green); border-radius: 50%; color: var(--green); font-size: .68rem; }
.destination strong { display: block; font-family: "Raleway", sans-serif; }
.destination small { color: rgba(45, 45, 43, .62); }
.destination .arrow { font-size: 1.35rem; transition: transform .2s ease; }
.destination:hover .arrow { transform: translate(3px, -3px); }

.brand-section { background: var(--white); }
.collab-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.collab-card { position: relative; min-height: 280px; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: var(--cream); overflow: hidden; }
.collab-card::after { content: attr(data-no); position: absolute; right: 18px; bottom: -38px; color: rgba(5, 79, 74, .07); font-family: Georgia, serif; font-size: 9rem; line-height: 1; }
.collab-card h3 { margin-top: 82px; margin-bottom: 14px; color: var(--green); }
.collab-card p { position: relative; z-index: 1; margin: 0; color: rgba(45, 45, 43, .68); }
.brand-cta { margin-top: 42px; padding: 38px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #fff; background: var(--green); border-radius: 24px; }
.brand-cta h3 { margin: 0 0 8px; color: var(--beige); }
.brand-cta p { margin: 0; color: rgba(255,255,255,.72); }

.closing { overflow: hidden; color: var(--white); background: var(--green); }
.closing-grid { display: grid; grid-template-columns: 1fr .72fr; min-height: 660px; align-items: stretch; }
.closing-copy { align-self: center; padding: 80px clamp(34px, 6vw, 80px) 80px 0; }
.closing-copy h2 { max-width: 720px; }
.closing-copy .lead { color: rgba(255,255,255,.75); }
.closing-photo { min-height: 660px; }
.closing-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }

.footer { color: var(--white); background: #032f2c; }
.footer-top { min-height: 165px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-profile { display: flex; align-items: center; gap: 14px; }
.footer-profile > img { width: 52px; height: 52px; border: 2px solid var(--beige); border-radius: 50%; object-fit: cover; }
.footer .brand-mark { width: 48px; height: 48px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; font-size: .76rem; }
.footer-bottom { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.55); font-size: .7rem; }

/* Media kit */
.kit-hero { color: var(--white); background: var(--green); }
.kit-hero .grid { display: grid; grid-template-columns: 1fr .84fr; min-height: 710px; }
.kit-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px clamp(40px, 6vw, 84px) 70px 0; }
.kit-hero-copy h1 { margin-bottom: 24px; }
.kit-hero-copy .lead { color: rgba(255,255,255,.78); }
.kit-hero-photo { position: relative; min-height: 710px; }
.kit-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 27%; }
.kit-hero-photo::after { content: "MÍDIA KIT / 2026"; position: absolute; right: 22px; bottom: 22px; padding: 10px 14px; border-radius: 999px; background: rgba(5,79,74,.88); color: var(--beige); font-size: .68rem; letter-spacing: .12em; }
.stat-band { background: var(--beige); }
.stats { min-height: 190px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.stat { padding: 28px 36px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; color: var(--green); font-family: "Raleway", sans-serif; font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 500; line-height: 1; }
.stat span { display: block; margin-top: 12px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.profile-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 120px); align-items: start; }
.profile-title { position: sticky; top: 120px; }
.profile-copy .lead { margin-bottom: 28px; }
.profile-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 38px; }
.profile-point { min-height: 140px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; }
.profile-point strong { color: var(--green); font-family: "Raleway", sans-serif; }
.profile-point p { margin: 10px 0 0; font-size: .82rem; color: rgba(45,45,43,.67); }
.kit-gallery { color: var(--white); background: var(--green-3); }
.kit-gallery .section-head .lead { color: rgba(255,255,255,.7); }
.kit-photo-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.kit-photo-grid figure { min-height: 540px; margin: 0; overflow: hidden; border-radius: 22px; }
.kit-photo-grid img { width: 100%; height: 100%; object-fit: cover; }
.kit-photo-grid figure:nth-child(1) img { object-position: 50% 28%; }
.kit-photo-grid figure:nth-child(2) img { object-position: 50% 28%; }
.kit-photo-grid figure:nth-child(3) img { object-position: 50% 25%; }
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.format-card { min-height: 250px; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.format-card .tag { color: var(--orange); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.format-card h3 { margin: 58px 0 14px; color: var(--green); }
.format-card p { margin: 0; font-size: .85rem; color: rgba(45,45,43,.68); }
.proposal { color: var(--white); background: var(--green); }
.proposal-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(45px, 8vw, 100px); align-items: start; }
.contact-list { display: grid; gap: 12px; margin-top: 34px; }
.contact-link { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.2); }
.contact-link:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.contact-link small { color: var(--beige); }
.proposal-form { padding: clamp(28px, 5vw, 48px); color: var(--ink); background: var(--cream); border-radius: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 8px; color: var(--green); font-size: .72rem; font-weight: 700; letter-spacing: .04em; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: var(--white); border: 1px solid rgba(5,79,74,.28); border-radius: 12px; outline: none; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(74,134,106,.18); }
.form-note { margin: 14px 0 0; font-size: .72rem; color: rgba(45,45,43,.64); }
.status { min-height: 22px; margin: 8px 0 0; color: var(--green); font-size: .78rem; font-weight: 700; }
.print-contact { display: none; }

.redirect { min-height: 100vh; display: grid; place-items: center; padding: 30px; color: var(--white); text-align: center; background: var(--green); }
.redirect img { width: 90px; margin: 0 auto 24px; }
.redirect h1 { font-size: clamp(3rem, 8vw, 6rem); }

@media (max-width: 1050px) {
  .nav { position: fixed; left: 24px; right: 24px; top: 88px; display: none; padding: 24px; align-items: stretch; flex-direction: column; border-radius: 20px; background: var(--green-3); box-shadow: var(--shadow); }
  .nav.is-open { display: flex; }
  .menu-toggle { display: block; }
  .topbar .inner > .btn { display: none; }
  .topbar .inner > .button-row { display: none; }
  .hero-grid { grid-template-columns: 1fr .86fr; }
  .territory-grid { grid-template-columns: 1fr 1fr; }
  .format-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 720px); }
  .hero-grid, .split, .section-head, .ecosystem-layout, .closing-grid, .kit-hero .grid, .profile-grid, .proposal-grid { grid-template-columns: 1fr; }
  .hero-copy { min-height: 650px; padding: 72px 0 55px; }
  .hero-media { min-height: 620px; }
  .hero-media::before { background: linear-gradient(180deg, var(--green) 0, transparent 12%); }
  .band .inner { justify-content: center; flex-wrap: wrap; padding: 18px 0; }
  .section-head { align-items: start; }
  .portrait-frame, .portrait-frame img { min-height: 580px; }
  .performance-composite { min-height: 800px; }
  .performance-main { inset: 0 64px 100px 0; }
  .performance-motion { width: 250px; }
  .editorial-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 500px 360px 500px; }
  .editorial-card:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
  .editorial-card:nth-child(3) { grid-column: 1 / 3; grid-row: auto; }
  .ecosystem-photo { height: 620px; }
  .closing-copy { padding: 72px 0 50px; }
  .closing-photo { min-height: 600px; }
  .footer-top, .footer-bottom { padding: 32px 0; min-height: 0; align-items: flex-start; flex-direction: column; }
  .kit-hero-copy { min-height: 600px; padding: 70px 0; }
  .kit-hero-photo { min-height: 680px; }
  .stats { grid-template-columns: 1fr; padding: 20px 0; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .profile-title { position: static; }
  .kit-photo-grid { grid-template-columns: 1fr; }
  .kit-photo-grid figure { min-height: 720px; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(3.35rem, 18vw, 5rem); }
  h2 { font-size: clamp(2.35rem, 13vw, 3.7rem); }
  .brand-copy small { display: none; }
  .hero-copy { min-height: 590px; }
  .hero-media { min-height: 540px; }
  .hero-credentials { left: 16px; right: 16px; bottom: 16px; width: auto; }
  .hero-side-note { display: none; }
  .territory-grid, .collab-grid, .format-grid, .profile-points, .form-grid { grid-template-columns: 1fr; }
  .territory-card { min-height: 280px; }
  .territory-card h3 { margin-top: 54px; }
  .performance-composite { min-height: 650px; }
  .performance-main { inset: 0 0 150px; }
  .performance-main img { object-position: 50% 20%; }
  .performance-motion { right: 14px; width: 180px; border-width: 6px; border-radius: 20px; }
  .performance-id { left: 14px; top: 16px; bottom: auto; max-width: calc(100% - 28px); }
  .editorial-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 500px); }
  .editorial-card:nth-child(1), .editorial-card:nth-child(3) { grid-column: auto; }
  .ecosystem-photo { height: 560px; }
  .destination { grid-template-columns: 42px 1fr auto; }
  .brand-cta { padding: 28px; align-items: flex-start; flex-direction: column; }
  .closing-photo { min-height: 540px; }
  .footer-nav { flex-direction: column; gap: 13px; }
  .kit-hero-photo { min-height: 560px; }
  .kit-photo-grid figure { min-height: 600px; }
  .proposal-form { padding: 24px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

@media print {
  @page { size: A4; margin: 14mm; }
  body { background: #fff; color: #111; font-size: 10pt; }
  .no-print, .topbar, .footer, .skip { display: none !important; }
  .section { padding: 22px 0; break-inside: avoid; }
  .kit-hero { color: #111; background: #fff; }
  .kit-hero .grid, .profile-grid, .proposal-grid { grid-template-columns: 1fr 1fr; min-height: 0; gap: 22px; }
  .kit-hero-copy { min-height: 0; padding: 0; }
  .kit-hero-copy .lead { color: #333; }
  .kit-hero-photo { min-height: 360px; }
  .stat-band { background: #fff; border-top: 1px solid #bbb; border-bottom: 1px solid #bbb; }
  .stats { min-height: 120px; }
  .stat b { font-size: 28pt; }
  .profile-title { position: static; }
  .profile-points, .format-grid { grid-template-columns: repeat(2, 1fr); }
  .kit-gallery { color: #111; background: #fff; }
  .kit-gallery .section-head .lead { color: #333; }
  .kit-photo-grid { grid-template-columns: repeat(3, 1fr); }
  .kit-photo-grid figure { min-height: 280px; }
  .proposal { color: #111; background: #fff; border-top: 1px solid #bbb; }
  .contact-link { border-color: #bbb; }
  .contact-link small { color: #333; }
  .proposal-form { display: none; }
  .print-contact { display: block; }
  a { color: #111; }
  h1 { font-size: 48pt; }
  h2 { font-size: 30pt; }
}
