:root {
  --ink: #0d0d0d;
  --paper: #f4f0e9;
  --white: #fffdf9;
  --orange: #ff6a2b;
  --orange-dark: #d9470f;
  --muted: #69635d;
  --line: rgba(13, 13, 13, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

body,
a,
button {
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  width: 100%;
  margin: 0;
  padding: 1.1rem clamp(1.25rem, 4vw, 4.5rem);
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-links a,
.footer-brand,
footer a,
.text-link {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
footer a:hover,
footer a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--orange);
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  background: var(--orange);
  color: var(--ink);
  border: 1px solid var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
  font-size: 0.7rem;
}

.hero {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.closing-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--ink);
}

.hero-video .hero-image {
  z-index: 0;
}

.hero-video iframe {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.96) contrast(1.03);
}

.hero-image {
  object-position: 60% center;
  animation: hero-in 1.2s ease-out both;
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(480px, 0.8fr);
  align-items: end;
  gap: clamp(3rem, 7vw, 8rem);
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.4rem, 7vw, 7rem);
  background: var(--ink);
  color: var(--white);
}

.hero-content {
  width: min(840px, 100%);
  margin: 0;
  padding: 0;
  animation: copy-in 800ms 200ms ease-out both;
}

.eyebrow {
  margin: 0 0 1.2rem;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow.orange {
  color: var(--orange-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

p {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

h1,
h2 {
  text-transform: uppercase;
}

h1 {
  max-width: 810px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 6.6vw, 7rem);
}

h1 span {
  display: block;
  color: var(--orange);
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions,
.closing-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.text-link {
  padding: 0.8rem 0;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-stats {
  position: static;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  width: 100%;
  background: rgba(13, 13, 13, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stats div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 104px;
  padding: 1rem 1.15rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats strong {
  color: var(--orange);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
}

.hero-stats span {
  max-width: 90px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  padding: 1rem 0;
  background: var(--orange);
  color: var(--ink);
}

.ticker div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-width: max-content;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticker b {
  font-size: 0.6em;
}

.section {
  padding: clamp(5rem, 10vw, 10rem) clamp(1.4rem, 7vw, 7rem);
}

.intro,
.experience,
.included {
  max-width: 1600px;
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  column-gap: clamp(3rem, 8vw, 9rem);
}

.section-heading h2,
.fair-copy h2,
.story-copy h2,
.closing h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
}

.section-heading.compact {
  max-width: 870px;
}

.intro-copy {
  align-self: end;
  max-width: 590px;
  padding-bottom: 0.6rem;
  color: #38342f;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.7;
}

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

.intro-collage {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  align-items: end;
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(3rem, 6vw, 6rem);
}

.intro-collage figure {
  margin: 0;
  overflow: hidden;
  background: #ddd6cd;
}

.collage-main {
  height: clamp(360px, 52vw, 720px);
}

.collage-side {
  height: clamp(260px, 35vw, 520px);
}

.intro-collage img,
.card-image img,
.fair-photo img,
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.intro-collage figure:hover img,
.experience-card:hover .card-image img,
.story-image:hover img {
  transform: scale(1.025);
}

.stamp {
  position: absolute;
  left: calc(64% - 90px);
  bottom: -52px;
  display: grid;
  place-content: center;
  width: 180px;
  height: 180px;
  background: var(--orange);
  border: 12px solid var(--paper);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-8deg);
}

.stamp span {
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 1.1rem;
}

.stamp strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.03em;
}

.experience {
  padding-top: clamp(7rem, 13vw, 13rem);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.2rem, 5vw, 5rem) clamp(1.4rem, 3vw, 3rem);
  margin-top: clamp(3rem, 6vw, 6rem);
}

.experience-card:nth-child(even) {
  margin-top: 6rem;
}

.card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ddd6cd;
}

.card-image span {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 150px;
  padding: 0.9rem 1.2rem;
  background: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 16px 50%);
}

.card-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  padding-top: 1.4rem;
}

.card-number {
  color: var(--orange-dark);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.35rem;
}

.card-body h3,
.included-item h3 {
  margin-bottom: 0.6rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  letter-spacing: -0.025em;
  line-height: 1.06;
  text-transform: uppercase;
}

.card-body p,
.included-item p,
.split-heading > p,
.story-copy > p,
.fair-copy > p {
  color: var(--muted);
  line-height: 1.65;
}

.fair-play {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: var(--ink);
  color: var(--white);
}

.fair-photo {
  min-height: 520px;
  overflow: hidden;
}

.fair-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 9rem);
}

.fair-copy h2 {
  max-width: 650px;
  margin-bottom: 2rem;
}

.fair-copy > p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.04rem;
}

.fair-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.fair-badges span {
  padding: 1.3rem 0.8rem 0 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fair-badges strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--orange);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.3rem;
  line-height: 1;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  gap: 3rem;
  align-items: end;
}

.split-heading > p {
  max-width: 500px;
  margin: 0;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(3rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.included-item {
  min-height: 270px;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease, color 200ms ease;
}

.included-item:hover {
  background: var(--orange);
}

.included-item > span {
  display: block;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
  color: var(--orange-dark);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1rem;
}

.included-item:hover > span,
.included-item:hover p {
  color: var(--ink);
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 740px;
  background: var(--white);
}

.story-panel {
  min-width: 0;
}

.story-image {
  overflow: hidden;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 9rem);
}

.story-copy h2 {
  margin-bottom: 2rem;
}

.story-copy blockquote {
  margin: 2.5rem 0 0;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  line-height: 1.35;
}

.closing {
  position: relative;
  min-height: 840px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.closing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.69);
}

.closing-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(900px, 88vw);
  padding: 5rem 0;
}

.closing-logo {
  width: 130px;
  height: 110px;
  margin-bottom: 2.4rem;
  object-fit: contain;
}

.closing h2 {
  color: var(--orange);
  font-size: clamp(4rem, 9vw, 8rem);
}

.closing-content > p:not(.eyebrow) {
  max-width: 600px;
  margin: 1.5rem auto 2.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.6;
}

.button-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2.4rem clamp(1.4rem, 5vw, 5rem);
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  text-align: center;
}

footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes hero-in {
  from { transform: scale(1.04); opacity: 0.65; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes copy-in {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

  .nav-links {
    display: none;
  }

  .hero-stats {
    width: 100%;
  }

  .hero-intro {
    grid-template-columns: 1fr;
  }

  .fair-copy,
  .story-copy {
    padding: clamp(3rem, 6vw, 5rem);
  }
}

@media (max-width: 800px) {
  .site-header {
    gap: 1rem;
    padding-inline: 1.15rem;
  }

  .brand span {
    display: none;
  }

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

  .hero-image {
    object-position: 64% center;
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  h1 {
    font-size: clamp(2.8rem, 10.5vw, 4.8rem);
  }

  .hero-copy {
    max-width: 92%;
    font-size: 0.98rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats div {
    min-height: 74px;
    padding: 0.65rem 1rem;
  }

  .hero-stats strong {
    font-size: 2rem;
  }

  .ticker div {
    justify-content: flex-start;
    padding-left: 1.2rem;
  }

  .intro,
  .split-heading,
  .fair-play,
  .story {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    margin-top: 2rem;
  }

  .intro-collage {
    grid-template-columns: 1fr;
  }

  .collage-main {
    height: 62vw;
    min-height: 320px;
  }

  .collage-side {
    width: 75%;
    height: 48vw;
    min-height: 230px;
    margin-left: auto !important;
  }

  .stamp {
    left: 8%;
    bottom: 21%;
    width: 140px;
    height: 140px;
    border-width: 8px;
  }

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

  .experience-card:nth-child(even) {
    margin-top: 0;
  }

  .fair-play,
  .story {
    min-height: 0;
  }

  .fair-photo,
  .story-image {
    min-height: 58vw;
  }

  .fair-badges {
    grid-template-columns: 1fr;
  }

  .fair-badges span {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  footer > div {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .site-header > .button {
    padding-inline: 0.85rem;
    font-size: 0.62rem;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    width: 100%;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .hero-stats span {
    font-size: 0.59rem;
  }

  .section {
    padding-inline: 1.25rem;
  }

  .section-heading h2,
  .fair-copy h2,
  .story-copy h2 {
    font-size: 2.55rem;
  }

  .card-body {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

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

  .included-item {
    min-height: 220px;
  }

  .closing {
    min-height: 680px;
  }

  .closing h2 {
    font-size: 3.8rem;
  }

  .closing-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* Static multilingual header */
.site-header { grid-template-columns: minmax(160px, 1fr) auto auto auto; gap: 1.25rem; }
.language-switcher { display: flex; align-items: center; gap: 0.35rem; }
.language-link { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; font-size: 1.15rem; line-height: 1; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.language-link:hover, .language-link:focus-visible { transform: translateY(-2px); border-color: var(--orange); background: rgba(0,0,0,.35); }
.language-link.is-active { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(255,106,43,.25); }
h1, h2, h3, p { overflow-wrap: break-word; word-break: normal; hyphens: auto; }
a, span { overflow-wrap: normal; word-break: normal; }
@media (max-width: 1250px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .nav-links { display: none; }
}
@media (max-width: 800px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header > .button { grid-column: 2; grid-row: 1; }
  .language-switcher { grid-column: 1 / -1; grid-row: 2; justify-self: center; }
  .language-link { width: 32px; height: 32px; }
}
@media (max-width: 520px) {
  .site-header > .button { max-width: 205px; }
}
