@font-face {
  font-family: "Anton";
  src: url("assets/anton.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --blue: #0759cf;
  --blue-bright: #0968ee;
  --navy: #062d67;
  --navy-deep: #041c41;
  --orange: #ff3d16;
  --orange-soft: #ff684a;
  --cream: #f5f2ec;
  --paper: #ffffff;
  --ink: #09244c;
  --muted: #5c6b7e;
  --line: #dce4ed;
  --shadow: 0 24px 70px rgba(4, 35, 79, 0.14);
  --shell: min(1220px, calc(100vw - 64px));
  --header-height: 92px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.is-menu-open, body.has-dialog { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
section[id] { scroll-margin-top: calc(var(--header-height) + 20px); }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--navy);
  background: white;
  border: 3px solid var(--orange);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #ffcf24; outline-offset: 4px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  gap: 26px;
  padding: 14px max(32px, calc((100vw - 1360px) / 2));
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: min-height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled {
  min-height: 76px;
  background: rgba(4, 28, 65, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}
.identity { display: inline-flex; flex-direction: column; width: max-content; color: white; text-decoration: none; line-height: 1; }
.identity__name { font-family: "Anton", "Arial Narrow", sans-serif; font-size: 27px; letter-spacing: 0.4px; text-transform: uppercase; }
.identity__role { margin-top: 5px; font-size: 10px; font-weight: 800; letter-spacing: 1.45px; text-transform: uppercase; color: rgba(255,255,255,.74); }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 24px; }
.main-nav a { position: relative; color: white; text-decoration: none; font-size: 13px; font-weight: 800; letter-spacing: .55px; text-transform: uppercase; white-space: nowrap; }
.main-nav > a:not(.nav-campaign)::after { content: ""; position: absolute; inset: auto 0 -8px; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; }
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { transform: scaleX(1); }
.main-nav .nav-campaign { padding: 10px 16px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; transition: background 180ms ease, border-color 180ms ease; }
.main-nav .nav-campaign:hover { background: var(--orange); border-color: var(--orange); }
.movement-mark { justify-self: end; display: inline-flex; align-items: center; }
.movement-mark img { width: 108px; height: auto; }
.menu-button { display: none; width: 48px; height: 48px; padding: 12px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: transparent; }
.menu-button > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: white; transition: transform 180ms ease, opacity 180ms ease; }

.hero { position: relative; min-height: 790px; height: 100svh; max-height: 980px; overflow: hidden; display: flex; align-items: center; color: white; background: var(--navy-deep); border-bottom: 8px solid var(--orange); }
.hero__media { position: absolute; inset: 0; background: url("assets/tomas-fiala-hero.webp") center / cover no-repeat; transform: scale(1.015); animation: heroIn 1.2s cubic-bezier(.2,.8,.2,1) both; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,19,48,.94) 0%, rgba(2,23,56,.86) 35%, rgba(2,22,49,.3) 67%, rgba(2,22,49,.13) 100%), linear-gradient(0deg, rgba(2,19,48,.35), transparent 50%); }
.hero__orbit { display: none; }
.hero__content { position: relative; z-index: 2; padding-top: var(--header-height); }
.eyebrow { margin: 0 0 18px; font-size: 12px; font-weight: 900; line-height: 1.3; letter-spacing: 2px; text-transform: uppercase; }
.eyebrow--orange { color: var(--orange); }
.hero h1, .section-heading h2, .senate h2, .contact h2, .campaign-link h2 {
  margin: 0;
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: -1.2px;
  text-transform: uppercase;
}
.hero h1 { display: flex; max-width: 770px; flex-direction: column; align-items: flex-start; font-size: clamp(72px, 9.6vw, 148px); line-height: 1; }
.hero h1 .hero__titles { display: block; margin-bottom: 18px; font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: clamp(20px, 2.2vw, 32px); font-weight: 900; line-height: 1.15; letter-spacing: 1.4px; }
.hero h1 .hero__name { display: block; font: inherit; line-height: .94; letter-spacing: inherit; }
.hero h1 .hero__suffix { display: block; margin-top: 13px; font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: clamp(18px, 1.8vw, 27px); font-weight: 900; line-height: 1.15; letter-spacing: 1px; }
.hero__claim { margin: 26px 0 0; font-size: clamp(20px, 2.1vw, 30px); font-weight: 900; }
.hero__intro { max-width: 650px; margin: 12px 0 0; color: rgba(255,255,255,.84); font-size: 17px; line-height: 1.55; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__scroll { position: absolute; z-index: 3; left: 50%; bottom: 23px; display: flex; flex-direction: column; align-items: center; gap: 3px; color: white; text-decoration: none; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; transform: translateX(-50%); }
.hero__scroll span:last-child { font-size: 24px; animation: bounce 1.8s infinite; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 12px 24px; border: 2px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 900; letter-spacing: .65px; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: transform 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease; }
.button:hover { transform: translateY(-2px); }
.button--light { color: var(--navy); background: white; }
.button--light:hover { background: var(--orange); color: white; }
.button--outline-light { color: white; border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.04); }
.button--outline-light:hover { border-color: white; background: white; color: var(--navy); }
.button--blue { color: white; background: var(--blue); }
.button--blue:hover { background: var(--navy); }
.button--orange { color: white; background: var(--orange); }
.button--orange:hover { background: white; color: var(--navy); }
.button--outline { color: var(--navy); background: transparent; border-color: var(--navy); }
.text-link { padding: 0; border: 0; background: none; font-weight: 800; text-underline-offset: 5px; cursor: pointer; }
.text-link--light { color: white; }

.roles { display: grid; grid-template-columns: repeat(3, 1fr); }
.role-card { position: relative; min-height: 305px; padding: 55px clamp(30px, 4vw, 70px); overflow: hidden; color: white; }
.role-card--blue { background: var(--blue); }
.role-card--navy { background: var(--navy); }
.role-card--orange { background: var(--orange); }
.role-card__number { position: absolute; top: 18px; right: 28px; font-family: "Anton", sans-serif; font-size: 100px; line-height: 1; opacity: .13; }
.role-card p { margin: 0 0 14px; font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; opacity: .8; }
.role-card h2 { margin: 0; font-family: "Anton", sans-serif; font-size: clamp(42px, 4vw, 63px); font-weight: 400; line-height: .98; letter-spacing: -.5px; text-transform: uppercase; }
.role-card > span:last-child { display: block; max-width: 350px; margin-top: 20px; font-size: 15px; line-height: 1.5; opacity: .83; }

.section { padding-block: clamp(92px, 10vw, 150px); }
.section-heading h2, .senate h2, .contact h2 { font-size: clamp(60px, 7.2vw, 102px); line-height: 1.16; letter-spacing: -.45px; }
.section-heading h2 em, .senate h2 em, .contact h2 em { color: var(--orange); font-style: normal; }
.section-heading--row { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 55px; }
.section-heading--row .eyebrow { margin-bottom: 10px; }
.section-heading__copy { max-width: 390px; margin: 0 0 14px; color: var(--muted); }

.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 65px 95px; align-items: start; }
.about__lead { padding-top: 16px; }
.about__lead p { margin: 0 0 21px; color: #31455f; }
.about__lead .lead { color: var(--ink); font-size: clamp(22px, 2.4vw, 32px); font-weight: 750; line-height: 1.4; }
.about__portrait { position: relative; margin: 0; }
.about__portrait::before { content: ""; position: absolute; z-index: 0; left: -35px; top: -35px; width: 78%; height: 75%; background: var(--blue); }
.about__portrait img { position: relative; z-index: 1; width: 100%; height: auto; object-fit: contain; }
.about__portrait figcaption { position: relative; z-index: 2; width: 78%; margin: -42px 0 0 auto; padding: 18px 24px; color: white; background: var(--orange); font-size: 13px; font-weight: 800; line-height: 1.45; }
.about__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #ccd7e4; }
.about__facts article { min-height: 176px; padding: 25px; background: var(--cream); }
.about__facts strong { display: block; color: var(--blue); font-family: "Anton", sans-serif; font-size: 50px; font-weight: 400; line-height: 1; }
.about__facts span { display: block; margin-top: 10px; color: #41546b; font-size: 13px; line-height: 1.45; }
.biography { margin-top: 85px; }
.biography details { border-top: 2px solid var(--navy); border-bottom: 2px solid var(--navy); }
.biography summary { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 25px 2px; list-style: none; font-weight: 900; cursor: pointer; }
.biography summary::-webkit-details-marker { display: none; }
.biography summary span { display: grid; place-items: center; width: 42px; height: 42px; border: 2px solid var(--navy); border-radius: 50%; font-size: 24px; transition: transform 180ms ease; }
.biography details[open] summary span { transform: rotate(45deg); }
.biography__content { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding: 15px 0 45px; }
.biography__content h3 { font-size: 24px; }
.biography__content p { color: #41546b; }
.biography__content--full { display: block; max-width: 920px; }
.biography__content--full h3 { margin: 38px 0 12px; font-size: 28px; line-height: 1.25; }
.biography__content--full p { margin: 0 0 22px; line-height: 1.75; }
.biography__content--full ul { display: grid; gap: 10px; padding: 0; list-style: none; }
.biography__content--full li { position: relative; padding-left: 23px; font-weight: 800; }
.biography__content--full li::before { content: ""; position: absolute; left: 0; top: .65em; width: 9px; height: 9px; background: var(--orange); }

.senate { position: relative; overflow: hidden; color: white; background: var(--navy-deep); }
.senate__orbit { position: absolute; right: -310px; top: -350px; width: 700px; height: 700px; border: 110px solid var(--orange); border-radius: 50%; opacity: .95; }
.senate__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 95px; align-items: center; }
.senate__content > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.76); }
.priorities { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; margin: 35px 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.priorities li { position: relative; padding: 15px 18px 15px 25px; border-bottom: 1px solid rgba(255,255,255,.2); font-size: 14px; font-weight: 800; }
.priorities li::before { content: ""; position: absolute; left: 2px; top: 24px; width: 8px; height: 8px; background: var(--orange); }
.senate__links { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.senate__photo { position: relative; margin: 0; }
.senate__photo img { width: 100%; height: 660px; min-height: 0; object-fit: cover; }
.senate__photo figcaption { position: absolute; inset: auto 26px 26px; padding: 20px 24px; background: rgba(4,28,65,.92); backdrop-filter: blur(8px); }
.senate__photo figcaption strong, .senate__photo figcaption span { display: block; }
.senate__photo figcaption strong { font-family: "Anton", sans-serif; font-size: 29px; font-weight: 400; text-transform: uppercase; }
.senate__photo figcaption span { max-width: 360px; margin-top: 3px; color: rgba(255,255,255,.72); font-size: 12px; }

.news { background: white; }
.social-link { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 15px; color: var(--blue); font-size: 14px; font-weight: 900; text-decoration: none; }
.social-link__icon { display: grid; place-items: center; width: 38px; height: 38px; color: white; background: var(--blue); border-radius: 50%; font-family: Arial, sans-serif; font-size: 22px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-card { display: flex; flex-direction: column; min-width: 0; border: 1px solid var(--line); background: white; transition: transform 180ms ease, box-shadow 180ms ease; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.news-card--featured { grid-column: span 2; display: grid; grid-template-columns: 1.25fr .9fr; }
.news-card__image { display: block; overflow: hidden; background: #dfe6ef; }
.news-card__image img { width: 100%; height: 250px; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.8,.2,1); }
.news-card--featured .news-card__image img { height: 100%; min-height: 440px; }
.news-card:hover .news-card__image img { transform: scale(1.035); }
.news-card__body { display: flex; flex-direction: column; flex: 1; padding: 25px; }
.news-card time { color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase; }
.news-card h3 { margin: 11px 0 12px; font-size: clamp(22px, 2.1vw, 31px); line-height: 1.12; }
.news-card h3 a { text-decoration: none; }
.news-card p { margin: 0; color: var(--muted); font-size: 14px; }
.card-link { display: inline-flex; gap: 8px; align-items: center; width: max-content; margin-top: auto; padding-top: 22px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .5px; text-transform: uppercase; text-underline-offset: 4px; }

.support { overflow: hidden; background: var(--cream); }
.slider-controls { display: flex; gap: 8px; margin-bottom: 13px; }
.slider-controls button { width: 50px; height: 50px; border: 2px solid var(--navy); border-radius: 50%; background: transparent; font-size: 22px; cursor: pointer; transition: background 150ms ease, color 150ms ease; }
.slider-controls button:hover { color: white; background: var(--navy); }
.testimonials { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(360px, 43%); gap: 28px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; }
.testimonials::-webkit-scrollbar { display: none; }
.testimonial { position: relative; min-height: 510px; margin: 0; padding: 42px; color: white; background: var(--navy); scroll-snap-align: start; overflow: hidden; }
.testimonial::after { content: "“"; position: absolute; right: 25px; top: 12px; color: var(--orange); font-family: Georgia, serif; font-size: 150px; line-height: 1; opacity: .75; }
.testimonial img { width: 95px; height: 95px; border-radius: 50%; object-fit: cover; border: 4px solid var(--blue); }
.testimonial blockquote { position: relative; z-index: 1; margin: 38px 0 42px; font-size: clamp(18px, 1.7vw, 24px); font-weight: 750; line-height: 1.5; }
.testimonial figcaption { position: absolute; inset: auto 42px 38px; }
.testimonial figcaption strong, .testimonial figcaption span { display: block; }
.testimonial figcaption strong { font-size: 16px; }
.testimonial figcaption span { margin-top: 3px; color: rgba(255,255,255,.65); font-size: 12px; }

.gallery { background: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 330px; gap: 15px; }
.gallery-item { position: relative; display: block; width: 100%; height: 100%; padding: 0; overflow: hidden; border: 0; background: var(--navy); cursor: zoom-in; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease, opacity 400ms ease; }
.gallery-item span { position: absolute; inset: auto 20px 18px; color: white; font-size: 11px; font-weight: 900; letter-spacing: 1.2px; text-align: left; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: opacity 180ms ease, transform 180ms ease; }
.gallery-item:hover img { opacity: .65; transform: scale(1.04); }
.gallery-item:hover span, .gallery-item:focus-visible span { opacity: 1; transform: translateY(0); }
.section-action { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 46px; }
.hero h1 .hero__titles { text-transform: none; }

.campaign-link { position: relative; overflow: hidden; padding-block: 90px; color: white; background: var(--blue); }
.campaign-link__circle { position: absolute; right: -190px; bottom: -330px; width: 640px; height: 640px; border: 100px solid var(--orange); border-radius: 50%; }
.campaign-link__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; align-items: end; }
.campaign-link h2 { font-size: clamp(64px, 7.2vw, 108px); line-height: 1.1; letter-spacing: -.45px; }
.campaign-link__copy { padding-bottom: 5px; }
.campaign-link__copy p { max-width: 500px; margin: 0 0 25px; color: rgba(255,255,255,.82); font-size: 19px; font-weight: 650; }
.campaign-link__copy small { display: block; margin-top: 13px; color: rgba(255,255,255,.66); }

.contact { background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.contact__intro > p:not(.eyebrow) { max-width: 500px; color: var(--muted); }
.contact__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-card { min-height: 310px; padding: 35px; color: white; background: var(--navy); }
.contact-card--blue { background: var(--blue); }
.contact-card h3 { margin: 0 0 22px; font-family: "Anton", sans-serif; font-size: 42px; font-weight: 400; text-transform: uppercase; }
.contact-card address { margin-bottom: 20px; color: rgba(255,255,255,.82); }
.contact-card > a { display: block; width: max-content; max-width: 100%; margin-top: 7px; font-size: 15px; font-weight: 800; overflow-wrap: anywhere; text-underline-offset: 4px; }
.contact-card__label { margin: 27px 0 6px; color: rgba(255,255,255,.66); font-size: 11px; font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase; }
.contact-card--image { position: relative; grid-column: span 2; min-height: 360px; padding: 0; overflow: hidden; }
.contact-card--image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,28,65,.95), rgba(4,28,65,.25)); }
.contact-card--image img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.contact-card--image > div { position: absolute; z-index: 1; inset: auto auto 32px 35px; }
.contact-card--image address { margin: 0; font-size: 18px; font-weight: 800; }

.site-footer { padding: 54px 0 28px; color: white; background: var(--navy-deep); }
.site-footer__top { display: flex; justify-content: space-between; gap: 35px; align-items: center; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.18); }
.site-footer__top strong { font-family: "Anton", sans-serif; font-size: 30px; font-weight: 400; letter-spacing: .3px; text-transform: uppercase; }
.site-footer__top p { margin: 3px 0 0; color: rgba(255,255,255,.62); font-size: 13px; }
.site-footer__top img { width: 132px; height: auto; }
.site-footer__bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 26px; align-items: center; padding-top: 25px; }
.site-footer__bottom p { margin: 0; color: rgba(255,255,255,.58); font-size: 11px; }
.site-footer__bottom p:last-child { text-align: right; }
.site-footer__bottom nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.site-footer__bottom button { padding: 0; color: white; border: 0; background: none; font-size: 11px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }

dialog { border: 0; }
dialog::backdrop { background: rgba(2, 17, 41, .76); backdrop-filter: blur(5px); }
.legal-dialog, .cookie-dialog { width: min(680px, calc(100vw - 32px)); max-height: min(780px, calc(100svh - 32px)); padding: 0; color: var(--ink); background: white; box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.legal-dialog__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 25px; padding: 30px 34px 23px; border-bottom: 1px solid var(--line); }
.legal-dialog__header .eyebrow { margin-bottom: 4px; }
.legal-dialog__header h2 { margin: 0; font-family: "Anton", sans-serif; font-size: 46px; font-weight: 400; line-height: 1.1; letter-spacing: .1px; text-transform: uppercase; }
.legal-dialog__header button { width: 43px; height: 43px; flex: 0 0 auto; border: 2px solid var(--navy); border-radius: 50%; background: transparent; font-size: 27px; line-height: 1; cursor: pointer; }
.legal-dialog__content { padding: 26px 34px 36px; overflow-y: auto; }
.legal-dialog__content h3 { margin: 25px 0 5px; }
.legal-dialog__content p { color: #42556e; }

.cookie-banner { position: fixed; z-index: 1500; left: 20px; bottom: 20px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; width: min(940px, calc(100vw - 40px)); padding: 26px; color: var(--ink); background: white; border-top: 7px solid var(--orange); box-shadow: 0 24px 80px rgba(3,25,58,.28); }
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { margin: 0; font-family: "Anton", sans-serif; font-size: 38px; font-weight: 400; line-height: 1.1; letter-spacing: .1px; text-transform: uppercase; }
.cookie-banner p { max-width: 610px; margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.cookie-banner .eyebrow { margin: 0 0 5px; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; max-width: 350px; }
.cookie-banner__actions .button { min-height: 44px; padding: 9px 17px; font-size: 11px; }
.cookie-banner__actions .text-link { margin: 5px 10px 0; font-size: 11px; }
.cookie-dialog form { padding-bottom: 28px; }
.cookie-option { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 22px 34px; border-bottom: 1px solid var(--line); }
.cookie-option strong { display: block; }
.cookie-option p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.cookie-option input { width: 24px; height: 24px; accent-color: var(--blue); }
.cookie-dialog__actions { padding: 24px 34px 0; text-align: right; }

.lightbox { width: min(1240px, calc(100vw - 32px)); max-width: none; height: min(860px, calc(100svh - 32px)); padding: 0; overflow: hidden; background: #020e21; }
.lightbox button { position: absolute; z-index: 2; top: 17px; right: 17px; width: 48px; height: 48px; color: white; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(2,14,33,.7); font-size: 30px; cursor: pointer; }
.lightbox img { width: 100%; height: 100%; object-fit: contain; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes heroIn { from { opacity: .65; transform: scale(1.08); } to { opacity: 1; transform: scale(1.015); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

@media (max-width: 1180px) {
  :root { --header-height: 82px; }
  .site-header { grid-template-columns: 1fr auto auto; padding-inline: 24px; }
  .menu-button { display: block; grid-column: 2; }
  .movement-mark { grid-column: 3; }
  .main-nav { position: fixed; inset: var(--header-height) 0 auto; display: grid; gap: 0; padding: 18px 24px 26px; background: rgba(4,28,65,.98); border-top: 1px solid rgba(255,255,255,.16); box-shadow: 0 24px 40px rgba(0,0,0,.25); opacity: 0; visibility: hidden; transform: translateY(-14px); transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease; }
  .site-header.is-menu-open .main-nav { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 14px 4px; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,.13); }
  .main-nav .nav-campaign { margin-top: 13px; padding: 14px 18px; text-align: center; border-color: var(--orange); background: var(--orange); }
  .site-header.is-menu-open .menu-button > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.is-menu-open .menu-button > span:nth-child(2) { opacity: 0; }
  .site-header.is-menu-open .menu-button > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero__shade { background: linear-gradient(90deg, rgba(2,19,48,.95), rgba(2,23,56,.72) 52%, rgba(2,22,49,.2)); }
  .roles { grid-template-columns: 1fr; }
  .role-card { min-height: 225px; }
  .role-card > span:last-child { max-width: 500px; }
  .about__grid, .senate__grid, .contact__grid { gap: 55px; }
  .about__grid { grid-template-columns: .9fr 1.1fr; }
  .senate__grid { grid-template-columns: 1.12fr .88fr; }
  .senate__photo img { height: 600px; min-height: 0; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card--featured { grid-column: span 2; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 36px, 720px); }
  .site-header { grid-template-columns: 1fr auto auto; gap: 12px; padding-inline: 18px; }
  .identity__name { font-size: 22px; }
  .identity__role { font-size: 8px; }
  .movement-mark { margin-right: 8px; }
  .movement-mark img { width: 82px; }
  .menu-button { width: 44px; height: 44px; padding: 10px; }
  .hero { min-height: 760px; height: 100svh; align-items: end; padding-bottom: 72px; }
  .hero__media { background-position: 61% center; }
  .hero__shade { background: linear-gradient(0deg, rgba(2,19,48,.98) 4%, rgba(2,19,48,.86) 48%, rgba(2,19,48,.3) 100%); }
  .hero__content { padding-top: 0; }
  .hero h1 { font-size: clamp(67px, 20vw, 112px); }
  .hero__claim { font-size: 19px; }
  .hero__intro { max-width: 560px; font-size: 15px; }
  .hero__scroll { display: none; }
  .section { padding-block: 82px; }
  .section-heading h2, .senate h2, .contact h2 { font-size: clamp(54px, 14vw, 80px); line-height: 1.16; }
  .section-heading--row { align-items: flex-start; flex-direction: column; margin-bottom: 38px; }
  .about__grid, .senate__grid, .biography__content, .campaign-link__inner { grid-template-columns: 1fr; }
  .about__grid { gap: 50px; }
  .about__lead { padding: 0; }
  .about__portrait { margin-top: 12px; }
  .about__portrait::before { left: -18px; top: -18px; }
  .biography { margin-top: 55px; }
  .biography__content { gap: 15px; }
  .senate__grid { gap: 55px; }
  .senate__orbit { display: none; }
  .senate__photo img { height: 470px; min-height: 0; }
  .priorities { grid-template-columns: 1fr; }
  .news-card--featured { display: flex; }
  .news-card--featured .news-card__image img { min-height: 0; height: 300px; }
  .testimonials { grid-auto-columns: minmax(320px, 78%); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 275px; }
  .campaign-link__inner { gap: 35px; }
  .campaign-link__copy { max-width: 600px; }
  .contact__cards { grid-template-columns: 1fr; }
  .contact-card--image { grid-column: auto; }
  .site-footer__bottom { grid-template-columns: 1fr; text-align: center; }
  .site-footer__bottom p:last-child { text-align: center; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-banner__actions { justify-content: flex-start; max-width: none; }
}

@media (max-width: 580px) {
  :root { --shell: calc(100% - 28px); --header-height: 74px; }
  body { font-size: 16px; }
  .site-header { min-height: 74px; grid-template-columns: auto minmax(0, 1fr) auto; padding: 10px 14px; }
  .site-header.is-scrolled { min-height: 70px; }
  .identity { grid-column: 2; grid-row: 1; justify-self: center; }
  .identity__role { display: none; }
  .identity__name { font-size: 20px; }
  .movement-mark { grid-column: 1; grid-row: 1; justify-self: start; margin-right: 0; }
  .movement-mark img { width: 68px; }
  .menu-button { grid-column: 3; grid-row: 1; width: 42px; height: 42px; }
  .main-nav { inset-block-start: 70px; padding-inline: 16px; }
  .hero { min-height: 700px; padding-bottom: 47px; }
  .hero__media { background-position: 64% center; background-size: cover; background-repeat: no-repeat; }
  .hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("assets/tomas-fiala-hero.webp") 64% top / auto 70% no-repeat;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 78%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 78%);
  }
  .hero__content { transform: translateY(-48px); }
  .hero .eyebrow { max-width: 270px; }
  .hero h1 { font-size: clamp(60px, 20vw, 90px); letter-spacing: -.5px; }
  .hero h1 .hero__titles { margin-bottom: 11px; font-size: 18px; }
  .hero h1 .hero__suffix { margin-top: 8px; font-size: 17px; }
  .hero__claim { margin-top: 20px; }
  .hero__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero__actions .button { min-height: 47px; padding: 10px 12px; font-size: 10px; }
  .role-card { min-height: 210px; padding: 42px 24px; }
  .role-card__number { font-size: 78px; }
  .section { padding-block: 68px; }
  .about__facts { grid-template-columns: 1fr; }
  .about__facts article { min-height: auto; }
  .about__portrait figcaption { width: 91%; }
  .biography summary { font-size: 14px; line-height: 1.35; }
  .senate__orbit { right: -360px; top: -300px; }
  .senate__photo img { height: min(70vw, 280px); min-height: 0; object-position: center 37%; }
  .senate__photo figcaption { position: static; padding: 16px 18px; }
  .news-grid { grid-template-columns: 1fr; gap: 18px; }
  .news-card--featured { grid-column: auto; }
  .news-card__image img, .news-card--featured .news-card__image img { height: 240px; }
  .testimonials { grid-auto-columns: 88%; gap: 14px; }
  .testimonial { min-height: 560px; padding: 28px; }
  .testimonial blockquote { margin-top: 30px; font-size: 17px; }
  .testimonial figcaption { inset: auto 28px 27px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 245px; }
  .gallery-item--wide { grid-column: auto; }
  .campaign-link { padding-block: 70px; }
  .campaign-link h2 { font-size: 60px; line-height: 1.1; }
  .campaign-link__circle { right: -350px; }
  .contact-card { min-height: 280px; padding: 28px; }
  .contact-card--image { min-height: 0; padding: 0; }
  .contact-card--image::after { display: none; }
  .contact-card--image img { width: 100%; height: auto; min-height: 0; object-fit: contain; }
  .contact-card--image > div { position: static; padding: 20px 22px 23px; background: var(--navy); }
  .site-footer__top { align-items: flex-start; flex-direction: column; }
  .site-footer__top strong { font-size: 24px; }
  .cookie-banner { left: 10px; bottom: 10px; width: calc(100vw - 20px); padding: 20px; }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-banner__actions .text-link { grid-column: 1 / -1; justify-self: start; }
  .legal-dialog__header, .legal-dialog__content, .cookie-option { padding-inline: 22px; }
  .legal-dialog__header h2 { font-size: 34px; line-height: 1.12; }
  .cookie-banner h2 { font-size: 34px; line-height: 1.12; }
}

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

@media print {
  .site-header, .hero__scroll, .cookie-banner, .site-footer nav, .slider-controls { display: none !important; }
  .hero { min-height: 0; height: auto; padding: 30px; color: black; background: white; }
  .hero__media, .hero__shade, .hero__orbit, .senate__orbit, .campaign-link__circle { display: none; }
  .hero__content { padding: 0; }
  .section, .campaign-link { padding: 35px 0; color: black; background: white; }
  .reveal { opacity: 1; transform: none; }
}
