/*
  ============================================================
  JAMPA PÃO — ESTILOS
  ============================================================

  ORDEM DO ARQUIVO:
  1. Cores e fontes
  2. Estilos gerais e botões
  3. Cabeçalho
  4. Hero
  5. Seções internas
  6. Rodapé
  7. Adaptação para tablet e celular

  Para mudar apenas informações, imagens e links, edite js/config.js.
*/

/* 1. CORES E FONTES */
:root {
  --atlantic: #173b63;
  --atlantic-deep: #0f2a49;
  --wheat: #f2b544;
  --coral: #df6041;
  --flour: #f5e9d5;
  --paper: #fffaf0;
  --graphite: #25282a;
  --white: #ffffff;
  --background: var(--paper);
  --foreground: var(--graphite);
  --card: var(--white);
  --card-foreground: var(--graphite);
  --popover: var(--white);
  --popover-foreground: var(--graphite);
  --primary: var(--atlantic);
  --primary-foreground: var(--white);
  --secondary: var(--wheat);
  --secondary-foreground: var(--atlantic-deep);
  --muted: var(--flour);
  --muted-foreground: #64615b;
  --accent: var(--coral);
  --accent-foreground: var(--white);
  --destructive: #b42318;
  --border: rgba(23, 59, 99, 0.18);
  --input: rgba(23, 59, 99, 0.18);
  --ring: var(--wheat);
  --radius: 0.5rem;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--atlantic-deep);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--graphite);
  font-family: var(--font-body);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.btn {
  align-items: center;
  border-style: solid;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.875rem;
  gap: 8px;
  justify-content: center;
  line-height: 1;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.btn svg {
  height: 17px;
  width: 17px;
}

:focus-visible {
  outline: 3px solid var(--wheat);
  outline-offset: 4px;
}

::selection {
  background: var(--wheat);
  color: var(--atlantic-deep);
}

.section-shell {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.site-header {
  align-items: center;
  background: rgba(245, 233, 213, 0.96);
  border-bottom: 1px solid rgba(23, 59, 99, 0.13);
  display: grid;
  gap: 32px;
  grid-template-columns: 180px 1fr auto;
  height: 86px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

 .brand-lockup {
  align-items: center;
  display: inline-flex;
  height: 68px;
  width: 148px;
}

.brand-lockup img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

.desktop-nav {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
  justify-self: center;
}

.desktop-nav a {
  color: var(--atlantic);
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  position: relative;
  text-transform: uppercase;
}

.desktop-nav a::after {
  background: var(--coral);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  background: var(--atlantic);
  border-radius: 999px;
  color: var(--white);
  font-weight: 750;
  height: 44px;
  padding-inline: 22px;
}

.header-cta:hover {
  background: var(--coral);
}

.mobile-menu {
  display: none;
  justify-self: end;
  position: relative;
}

.mobile-menu summary {
  align-items: center;
  color: var(--atlantic);
  cursor: pointer;
  display: flex;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary svg {
  height: 27px;
  width: 27px;
}

.mobile-menu nav {
  background: var(--flour);
  border: 1px solid rgba(23, 59, 99, 0.16);
  box-shadow: 0 18px 50px rgba(15, 42, 73, 0.22);
  display: grid;
  gap: 4px;
  padding: 14px;
  position: absolute;
  right: 0;
  top: 42px;
  width: 220px;
}

.mobile-menu nav a {
  color: var(--atlantic);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px;
  text-transform: uppercase;
}

.hero {
  background: var(--atlantic);
  isolation: isolate;
  min-height: max(700px, calc(100svh - 86px));
  overflow: hidden;
  position: relative;
}

.hero-pattern {
  background-image: url("../assets/brand/pattern-massa.webp");
  background-position: center;
  background-size: 620px;
  inset: 0;
  opacity: 0.08;
  position: absolute;
  z-index: 1;
}

.hero-copy {
  color: var(--flour);
  margin-inline: auto;
  max-width: 1240px;
  min-width: 0;
  padding: clamp(64px, 7vw, 96px) 24px;
  position: relative;
  width: min(100% - 48px, 1240px);
  z-index: 3;
}

.hero-badge {
  background: transparent;
  border: 1px solid rgba(245, 233, 213, 0.34);
  border-radius: 999px;
  color: var(--flour);
  display: inline-flex;
  font-size: 0.69rem;
  letter-spacing: 0.17em;
  padding: 8px 13px;
}

.kicker,
.eyebrow {
  color: var(--wheat);
  font-size: clamp(0.74rem, 1vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 28px 0 18px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 6.25vw, 6.2rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.88;
  margin: 0;
  max-width: 800px;
  overflow-wrap: normal;
  word-break: normal;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  color: rgba(245, 233, 213, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.65;
  margin: 30px 0 28px;
  max-width: 590px;
  min-width: 0;
  overflow-wrap: normal;
  width: 100%;
  word-break: normal;
}

.event-facts {
  border-bottom: 1px solid rgba(245, 233, 213, 0.22);
  border-top: 1px solid rgba(245, 233, 213, 0.22);
  display: grid;
  gap: 22px;
  grid-template-columns: 0.86fr 1.14fr;
  max-width: 620px;
  padding: 20px 0;
  width: 100%;
}

.event-facts > div {
  align-items: center;
  display: flex;
  gap: 14px;
}

.event-facts svg {
  color: var(--wheat);
  flex: 0 0 auto;
  height: 22px;
  width: 22px;
}

.event-facts span {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  line-height: 1.45;
  text-transform: uppercase;
}

.event-facts strong {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button-solar {
  background: var(--wheat);
  border: 1px solid var(--wheat);
  border-radius: 999px;
  color: var(--atlantic-deep);
  font-weight: 800;
  min-height: 48px;
  padding-inline: 24px;
}

.button-solar:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.button-cream {
  background: transparent;
  border-color: rgba(245, 233, 213, 0.55);
  border-radius: 999px;
  color: var(--flour);
  min-height: 48px;
  padding-inline: 24px;
}

.button-cream:hover {
  background: var(--flour);
  color: var(--atlantic);
}

.hero-visual {
  inset: 0;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}

.hero-visual::before {
  background: linear-gradient(
    90deg,
    rgba(23, 59, 99, 0.99) 0%,
    rgba(23, 59, 99, 0.98) 38%,
    rgba(23, 59, 99, 0.82) 58%,
    rgba(15, 42, 73, 0.2) 100%
  );
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-visual::after {
  border: 1px solid rgba(245, 233, 213, 0.32);
  content: "";
  inset: 28px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.hero-visual > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 72% center;
  position: absolute;
  width: 100%;
}

.hero-stamp {
  align-items: center;
  background: var(--coral);
  border: 5px solid var(--flour);
  border-radius: 50%;
  bottom: 72px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  height: 142px;
  justify-content: center;
  position: absolute;
  right: clamp(24px, 4vw, 72px);
  transform: rotate(-8deg);
  width: 142px;
  z-index: 3;
}

.hero-stamp span {
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.hero-stamp strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

.hero-caption {
  align-items: center;
  background: var(--flour);
  bottom: 28px;
  color: var(--atlantic);
  display: flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 10px;
  left: auto;
  letter-spacing: 0.11em;
  padding: 12px 16px;
  position: absolute;
  right: 28px;
  text-transform: uppercase;
  z-index: 3;
}

.diamond {
  background: var(--coral);
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
}

.sector-ticker {
  background: var(--wheat);
  color: var(--atlantic-deep);
  overflow: hidden;
  padding: 18px 24px;
}

.sector-ticker > div {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2.2vw, 34px);
  justify-content: center;
  min-width: max-content;
}

.sector-ticker span {
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.sector-ticker i {
  background: var(--coral);
  height: 7px;
  transform: rotate(45deg);
  width: 7px;
}

.manifesto {
  padding-block: clamp(86px, 10vw, 150px);
}

.section-label {
  align-items: center;
  color: var(--atlantic);
  display: flex;
  font-size: 0.69rem;
  font-weight: 850;
  gap: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 42px;
}

.section-label span {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.section-label.light {
  color: var(--flour);
}

.manifesto-grid {
  display: grid;
  gap: clamp(48px, 8vw, 120px);
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.manifesto .eyebrow,
.experience .eyebrow,
.location .eyebrow {
  color: var(--coral);
  margin-top: 0;
}

.manifesto h2,
.section-heading-row h2,
.experience h2,
.audience-panel h2,
.location h2,
.final-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.96;
  margin: 0;
}

.manifesto h2 {
  color: var(--atlantic);
  font-size: clamp(3rem, 5.6vw, 6.5rem);
}

.manifesto-text {
  align-self: end;
  border-left: 3px solid var(--wheat);
  color: #4c4d4d;
  font-size: 1.04rem;
  line-height: 1.75;
  padding-left: 30px;
}

.manifesto-text p {
  margin: 0 0 18px;
}

.chain-band {
  align-items: center;
  border-bottom: 1px solid rgba(23, 59, 99, 0.2);
  border-top: 1px solid rgba(23, 59, 99, 0.2);
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  margin-top: 84px;
  padding: 28px 0;
}

.chain-band > div:not(.chain-line) {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.chain-band span {
  color: var(--coral);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.chain-band strong {
  color: var(--atlantic);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.chain-line {
  background: rgba(23, 59, 99, 0.25);
  height: 1px;
  position: relative;
}

.chain-line::after {
  border-right: 1px solid rgba(23, 59, 99, 0.45);
  border-top: 1px solid rgba(23, 59, 99, 0.45);
  content: "";
  height: 7px;
  position: absolute;
  right: 0;
  top: -3px;
  transform: rotate(45deg);
  width: 7px;
}

.sectors-section {
  background-color: var(--atlantic-deep);
  background-image: linear-gradient(rgba(15, 42, 73, 0.95), rgba(15, 42, 73, 0.95)),
    url("../assets/brand/pattern-trama.webp");
  background-size: auto, 620px;
  color: var(--flour);
  padding-block: clamp(86px, 9vw, 132px);
}

.section-heading-row {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.5fr);
  margin-bottom: 62px;
}

.section-heading-row h2 {
  font-size: clamp(3rem, 5.2vw, 6rem);
  max-width: 900px;
}

.section-heading-row > p {
  color: rgba(245, 233, 213, 0.7);
  line-height: 1.7;
  margin: 0;
}

.sectors-grid {
  border-left: 1px solid rgba(245, 233, 213, 0.16);
  border-top: 1px solid rgba(245, 233, 213, 0.16);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sector-card {
  aspect-ratio: 1 / 0.88;
  background: rgba(23, 59, 99, 0.62);
  border-bottom: 1px solid rgba(245, 233, 213, 0.16);
  border-right: 1px solid rgba(245, 233, 213, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
  position: relative;
  transition: background 180ms ease, transform 180ms ease;
}

.sector-card::before {
  aspect-ratio: 1;
  background: rgba(245, 233, 213, 0.94);
  border: 1px solid rgba(242, 181, 68, 0.7);
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(4, 22, 40, 0.28);
  content: "";
  left: 50%;
  position: absolute;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 54%;
  z-index: 1;
}

.sector-card:hover {
  background: var(--coral);
  transform: translateY(-4px);
  z-index: 1;
}

.sector-card img {
  height: 46%;
  left: 50%;
  object-fit: contain;
  opacity: 1;
  position: absolute;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 46%;
  z-index: 2;
}

.sector-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  margin: 0;
  position: relative;
  z-index: 1;
}

.sector-index {
  font-size: 0.61rem;
  font-weight: 850;
  left: 18px;
  letter-spacing: 0.16em;
  position: absolute;
  top: 18px;
}

.experience {
  align-items: center;
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  padding-block: clamp(90px, 10vw, 150px);
}

.experience-photo {
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.experience-photo::after {
  border: 1px solid rgba(245, 233, 213, 0.7);
  content: "";
  inset: 22px;
  position: absolute;
}

.experience-photo > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.photo-note {
  background: var(--atlantic);
  bottom: 22px;
  color: var(--flour);
  display: flex;
  flex-direction: column;
  left: 22px;
  padding: 20px 24px;
  position: absolute;
  z-index: 2;
}

.photo-note span {
  color: var(--wheat);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.photo-note strong {
  font-family: var(--font-display);
  font-size: 2rem;
}

.experience-copy {
  padding-block: 30px;
}

.experience h2 {
  color: var(--atlantic);
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  max-width: 720px;
}

.experience-list {
  border-top: 1px solid rgba(23, 59, 99, 0.2);
  margin-top: 54px;
}

.experience-list article {
  border-bottom: 1px solid rgba(23, 59, 99, 0.2);
  display: grid;
  gap: 24px;
  grid-template-columns: 38px 1fr;
  padding: 24px 0;
}

.experience-list article > span {
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 850;
}

.experience-list h3 {
  color: var(--atlantic);
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 6px;
}

.experience-list p {
  color: #61605c;
  line-height: 1.65;
  margin: 0;
}

.audiences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.audience-panel {
  min-height: 610px;
  padding-block: clamp(70px, 7vw, 108px);
}

.audience-exhibitor {
  background-color: var(--atlantic);
  background-image: linear-gradient(rgba(23, 59, 99, 0.93), rgba(23, 59, 99, 0.93)),
    url("../assets/brand/pattern-massa.webp");
  background-position: center;
  background-size: auto, 640px;
  color: var(--flour);
  padding-left: max(28px, calc((100vw - 1240px) / 2));
  padding-right: clamp(32px, 4vw, 72px);
}

.audience-visitor {
  background-color: var(--wheat);
  background-image: linear-gradient(rgba(242, 181, 68, 0.92), rgba(242, 181, 68, 0.92)),
    url("../assets/brand/pattern-trama.webp");
  background-size: auto, 560px;
  color: var(--atlantic-deep);
  padding-left: clamp(32px, 4vw, 72px);
  padding-right: max(28px, calc((100vw - 1240px) / 2));
}

.panel-tag {
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  margin-bottom: 34px;
  padding: 9px 13px;
}

.audience-panel h2 {
  font-size: clamp(2.9rem, 3.6vw, 4.5rem);
  max-width: 620px;
  overflow-wrap: normal;
  word-break: normal;
}

.audience-panel ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 36px 0;
  padding: 0;
}

.audience-panel li {
  align-items: center;
  display: flex;
  font-size: 0.95rem;
  gap: 12px;
}

.audience-panel li svg {
  height: 18px;
  width: 18px;
}

.button-navy-outline {
  background: transparent;
  border-color: var(--atlantic);
  border-radius: 999px;
  color: var(--atlantic);
  font-weight: 800;
  min-height: 48px;
  padding-inline: 24px;
}

.button-navy-outline:hover {
  background: var(--atlantic);
  color: var(--white);
}

.location {
  align-items: center;
  display: grid;
  gap: clamp(48px, 7vw, 100px);
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  padding-block: clamp(90px, 10vw, 150px);
}

.location h2 {
  color: var(--atlantic);
  font-size: clamp(3rem, 4.8vw, 5.5rem);
}

.location-copy > p:not(.eyebrow) {
  color: #5d5d5a;
  line-height: 1.75;
  margin: 28px 0;
  max-width: 600px;
}

.location-details {
  border-bottom: 1px solid rgba(23, 59, 99, 0.18);
  border-top: 1px solid rgba(23, 59, 99, 0.18);
  display: grid;
  gap: 18px;
  grid-template-columns: 26px 1fr;
  margin: 30px 0;
  padding: 24px 0;
}

.location-details > svg {
  color: var(--coral);
  height: 21px;
  margin-top: 2px;
  width: 21px;
}

.location-details > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.location-details span {
  color: var(--coral);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.location-details strong {
  color: var(--atlantic);
  font-size: 0.96rem;
}

.venue-photo {
  background: var(--atlantic);
  box-shadow: 22px 22px 0 var(--wheat);
  margin: 0 22px 22px 0;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.venue-photo img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.venue-photo::after {
  background: linear-gradient(0deg, rgba(15, 42, 73, 0.72), transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
}

.venue-photo figcaption {
  bottom: 24px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 850;
  left: 24px;
  letter-spacing: 0.12em;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.final-cta {
  background: var(--atlantic-deep);
  color: var(--flour);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.final-pattern {
  background-image: url("../assets/brand/pattern-massa.webp");
  background-position: center;
  background-size: 650px;
  inset: 0;
  opacity: 0.09;
  position: absolute;
}

.final-logo {
  align-items: center;
  aspect-ratio: 16 / 7;
  background: var(--flour);
  border: 1px solid rgba(245, 233, 213, 0.48);
  border-radius: 18px;
  display: flex;
  height: auto;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
  position: absolute;
  right: max(24px, calc((100vw - 1240px) / 2));
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  z-index: 1;
}

.final-logo::after {
  display: none;
}

.final-logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.final-copy {
  margin-inline: auto;
  padding: 92px 430px 92px 0;
  position: relative;
  width: min(100% - 48px, 1240px);
  z-index: 2;
}

.final-copy > p {
  color: var(--wheat);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.final-copy h2 {
  font-size: clamp(3.2rem, 4.8vw, 5.5rem);
  margin: 24px 0 42px;
  max-width: 820px;
  overflow-wrap: normal;
  word-break: normal;
}

.final-copy > div {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-link {
  border-bottom: 1px solid rgba(245, 233, 213, 0.55);
  font-size: 0.87rem;
  padding-bottom: 4px;
}

footer {
  align-items: center;
  background: var(--flour);
  color: var(--atlantic);
  display: grid;
  gap: 24px;
  grid-template-columns: 180px 1fr auto;
  padding: 42px max(24px, calc((100vw - 1240px) / 2));
}

footer p {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  margin: 0;
}

.footer-brand {
  height: 64px;
  width: 140px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 160px 1fr auto;
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 7vw, 5.2rem);
  }

  .final-logo {
    height: auto;
    width: 300px;
  }

  .final-copy {
    padding-right: 360px;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sector-card {
    aspect-ratio: 1 / 0.72;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 76px;
    padding-inline: 24px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
    padding: 58px 0 60px;
    width: min(100% - 48px, 760px);
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 5.3rem);
    max-width: none;
  }

  .hero-lead {
    margin-top: 26px;
    max-width: 600px;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual::before {
    background: linear-gradient(
      90deg,
      rgba(23, 59, 99, 0.98) 0%,
      rgba(23, 59, 99, 0.92) 62%,
      rgba(15, 42, 73, 0.72) 100%
    );
  }

  .hero-visual::after,
  .hero-stamp,
  .hero-caption {
    display: none;
  }

  .hero-pattern {
    background-size: 520px;
    opacity: 0.1;
  }

  .manifesto-grid,
  .section-heading-row,
  .experience,
  .location {
    grid-template-columns: 1fr;
  }

  .chain-band {
    align-items: start;
    grid-template-columns: 1fr 1fr;
  }

  .chain-line {
    display: none;
  }

  .experience-photo {
    min-height: 76vw;
  }

  .audiences {
    grid-template-columns: 1fr;
  }

  .audience-panel {
    min-height: auto;
    padding: 82px 28px;
  }

  .venue-photo {
    min-height: 62vw;
    order: -1;
  }

  .final-cta {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 76px 28px;
  }

  .final-logo {
    height: auto;
    order: 1;
    padding: 18px;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 300px;
  }

  .final-copy {
    margin: 0;
    order: 2;
    padding: 42px 0 0;
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .section-shell {
    width: min(100% - 40px, 1240px);
  }

  .brand-lockup {
    height: 58px;
    width: 126px;
  }

  .hero-copy {
    padding: 42px 0 46px;
    width: min(100% - 40px, 760px);
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 4rem);
    letter-spacing: -0.055em;
    line-height: 0.9;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 24px;
    margin-top: 24px;
  }

  .event-facts {
    gap: 16px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    max-width: none;
    padding: 17px 0;
  }

  .event-facts > div {
    align-items: flex-start;
    gap: 10px;
  }

  .event-facts svg {
    height: 19px;
    margin-top: 2px;
    width: 19px;
  }

  .event-facts span {
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .event-facts strong {
    font-size: 0.8rem;
  }

  .sector-ticker > div {
    justify-content: start;
  }

  .manifesto h2,
  .section-heading-row h2,
  .experience h2,
  .audience-panel h2,
  .location h2,
  .final-copy h2 {
    font-size: clamp(2.9rem, 15vw, 4.2rem);
  }

  .manifesto-text {
    padding-left: 20px;
  }

  .chain-band {
    gap: 30px 20px;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .sector-card {
    aspect-ratio: 1 / 0.58;
  }

  .sector-card::before {
    left: auto;
    right: 7%;
    top: 50%;
    transform: translateY(-50%);
    width: 38%;
  }

  .sector-card img {
    height: 46%;
    left: auto;
    right: 9%;
    top: 50%;
    transform: translateY(-50%);
    width: 34%;
  }

  .experience-photo {
    min-height: 120vw;
  }

  .venue-photo {
    box-shadow: 12px 12px 0 var(--wheat);
    margin: 0 12px 12px 0;
    min-height: 78vw;
  }

  .final-logo {
    height: auto;
    max-width: 100%;
    width: 280px;
  }
}

@media (max-width: 430px) {
  .hero-copy {
    padding-block: 36px 42px;
  }

  .hero-badge {
    font-size: 0.59rem;
    letter-spacing: 0.12em;
  }

  .hero .kicker {
    font-size: 0.67rem;
    letter-spacing: 0.12em;
    margin: 22px 0 15px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 2.95rem);
  }

  .event-facts {
    grid-template-columns: 1fr;
  }

  .hero-actions > * {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
