.brand-logo {
  width: 2rem;
  height: 2rem;
  display: block;
  object-fit: contain;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.footer-logo {
  width: 20rem;
  display: block;
  object-fit: contain;
}
/*
  Centerpartiet-inspired campaign site
  Current profile colors sourced from Centerpartiet's public graphic profile.

  FONT:
  Uses the Baton Turbo webfont files supplied in public/fonts/.
  Book is mapped to 400, Medium to 500, Bold to 700 and Heavy to 900.
*/

@font-face {
  font-family: "Baton Turbo";
  src: url("/fonts/BatonTurboWeb-Book.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Baton Turbo";
  src: url("/fonts/BatonTurboWeb-BookItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Baton Turbo";
  src: url("/fonts/BatonTurboWeb-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Baton Turbo";
  src: url("/fonts/BatonTurboWeb-MediumItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Baton Turbo";
  src: url("/fonts/BatonTurboWeb-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Baton Turbo";
  src: url("/fonts/BatonTurboWeb-BoldItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Baton Turbo";
  src: url("/fonts/BatonTurboWeb-Heavy.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Baton Turbo";
  src: url("/fonts/BatonTurboWeb-HeavyItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: 900;
  font-display: swap;
}

:root {
  --center-green: #114838;
  --meadow: #2b8569;
  --mint: #e0e9e6;
  --snow: #f9f6f6;
  --sand: #ece9e7;
  --night: #0f0c11;
  --white: #ffffff;

  --display: "Baton Turbo", Arial, sans-serif;
  --body: "Baton Turbo", Arial, sans-serif;

  --max: 1180px;
  --text: 760px;
  --radius: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--night);
  background: var(--snow);
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--center-green);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 246, 246, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 12, 17, .1);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--center-green);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -.02em;
}

.clover {
  font-size: 1.65rem;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  gap: 1.6rem;
  font-size: .9rem;
  font-weight: 700;
}

.desktop-nav a {
  text-decoration: none;
}

.desktop-nav a:hover {
  text-decoration: underline;
  text-underline-offset: .3em;
}

.hero {
  background: var(--center-green);
  color: var(--white);
  padding: clamp(5rem, 11vw, 9.5rem) 0 clamp(4rem, 9vw, 8rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 7rem);
}

.eyebrow,
.section-label {
  margin: 0 0 1.25rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero h1,
h2,
.hero-card-message,
.big-quote {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.045em;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3.25rem, 8.5vw, 7.7rem);
  line-height: .91;
  text-wrap: balance;
}

.hero-lead {
  max-width: 780px;
  margin: 2rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: .9rem 1.15rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid currentColor;
}

.button-light {
  background: var(--white);
  color: var(--center-green);
  border-color: var(--white);
}

.button-light:hover {
  background: transparent;
  color: var(--white);
}

.text-link {
  font-weight: 700;
  text-underline-offset: .3em;
}

.hero-card {
  padding: 1.6rem 0 0 1.8rem;
  border-left: 5px solid var(--white);
}

.hero-card-kicker {
  margin: 0 0 .6rem;
  font-weight: 700;
}

.hero-card-message {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: .97;
}

.intro {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--snow);
}

.section-label {
  color: var(--center-green);
}

h2 {
  margin: 0;
  color: var(--center-green);
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: .95;
  text-wrap: balance;
}

.large-copy {
  margin: 2rem 0 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.6;
}

.policy {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.policy-mint {
  background: var(--mint);
}

.policy-snow {
  background: var(--snow);
}

.policy-dark {
  background: var(--center-green);
  color: var(--white);
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.policy-copy {
  max-width: 680px;
}

.policy-copy p {
  margin: 0 0 1.5rem;
}

.policy-copy .lead {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.5;
}

.policy-dark h2,
.policy-dark .section-label {
  color: var(--white);
}

.callout {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--center-green);
  color: var(--white);
}

.callout h3 {
  margin: 0 0 .75rem;
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: -.03em;
}

.callout p:last-child {
  margin-bottom: 0;
}

blockquote {
  margin: 3rem 0 0;
  padding: 0 0 0 1.5rem;
  border-left: 5px solid var(--center-green);
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.quote-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--meadow);
  color: var(--white);
}

.quote-mark {
  display: block;
  height: .55em;
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.big-quote {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.7rem);
  line-height: .98;
  text-wrap: balance;
}

.about {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--sand);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.about .lead {
  margin-top: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.signature {
  margin-top: 2.5rem;
  color: var(--center-green);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 900;
}

.site-footer {
  padding: 3rem 0;
  background: var(--night);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  font-weight: 700;
  font-size: 1.15rem;
}

.site-footer p {
  margin: .35rem 0 0;
  opacity: .75;
  font-size: .9rem;
}

.site-footer a {
  font-weight: 700;
  text-underline-offset: .3em;
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    min-height: 64px;
  }

  .hero-grid,
  .policy-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(calc(100% - 1.5rem), var(--max));
  }

  .hero h1 {
    font-size: clamp(3.05rem, 16vw, 5rem);
  }

  .hero-card {
    padding-left: 1.2rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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