:root {
  --red: #ed1c24;
  --red-dark: #b50811;
  --yellow: #ffe500;
  --ink: #161313;
  --paper: #fff;
  --soft: #f4f1ef;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
.topbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px clamp(24px, 6vw, 88px);
  background: #fff;
  position: relative;
  z-index: 20;
}
.brand img { width: min(260px, 48vw); display: block; }
nav { display: flex; gap: 28px; }
nav a, .back-link { text-decoration: none; font-weight: 700; }
nav a:hover, .back-link:hover { color: var(--red); }

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  overflow: hidden;
  background: linear-gradient(135deg, #ef1c24 0%, #d50814 100%);
  color: white;
}
.hero-copy {
  padding: clamp(64px, 9vw, 132px) 32px clamp(60px, 8vw, 110px) clamp(28px, 8vw, 120px);
  align-self: center;
  position: relative;
  z-index: 3;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.light { color: #fff; opacity: .82; }
.hero .eyebrow { color: var(--yellow); }
.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.6rem);
  line-height: .78;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.hero h1 span { font-weight: 300; }
.number {
  margin: 18px 0 2px;
  color: var(--yellow);
  font-size: clamp(5.7rem, 13vw, 12.5rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.07em;
}
.slogan { margin: 16px 0 0; font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid white;
  border-radius: 999px;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 800;
}
.button.primary { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.button.secondary { background: transparent; color: white; }
.button:hover { transform: translateY(-2px); }
.hero-image { position: relative; display: flex; align-items: end; justify-content: center; min-height: 680px; }
.hero-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: var(--yellow);
  clip-path: polygon(0 52%, 7% 4%, 15% 58%, 24% 0, 35% 61%, 47% 3%, 58% 58%, 70% 0, 80% 62%, 91% 6%, 100% 52%, 100% 100%, 0 100%);
}
.sun { position: absolute; width: min(44vw, 650px); aspect-ratio: 1; border-radius: 50%; background: #ff9d12; filter: blur(1px); top: 12%; right: -6%; opacity: .8; }
.hero-image img { position: relative; z-index: 2; width: min(92%, 680px); max-height: 95%; object-fit: contain; object-position: bottom; }

.about { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(30px, 7vw, 120px); padding: clamp(80px, 10vw, 150px) clamp(24px, 8vw, 120px); }
.section-label { color: var(--red); font-size: .88rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; padding-top: 14px; }
.about h2, .contact h2 { margin: 0 0 28px; font-size: clamp(2.4rem, 5vw, 5rem); line-height: .95; letter-spacing: -.055em; }
.about-content > p { max-width: 720px; margin: 0 0 46px; font-size: 1.2rem; }
.facts { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #ccc; }
.facts div { padding: 24px 20px 24px 0; border-bottom: 1px solid #ccc; }
.facts span { display: block; color: #6d6765; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.facts strong { display: block; margin-top: 6px; font-size: 1.05rem; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: clamp(80px, 9vw, 140px) clamp(24px, 8vw, 120px); background: var(--ink); color: white; }
.contact-links { border-top: 1px solid #504b4b; }
.contact-links a { display: block; padding: 20px 0; border-bottom: 1px solid #504b4b; text-decoration: none; font-size: clamp(1rem, 1.8vw, 1.25rem); overflow-wrap: anywhere; }
.contact-links a:hover { color: var(--yellow); }
.contact-links span { display: block; margin-bottom: 5px; color: #aaa4a4; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

footer { padding: 28px clamp(24px, 6vw, 88px); background: var(--red); color: white; }
.legal { margin: 0; font-size: .85rem; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.35); font-weight: 700; }

.legal-page { background: var(--soft); }
.policy { max-width: 880px; margin: 0 auto; padding: clamp(70px, 10vw, 130px) 24px; }
.policy h1 { margin: 0 0 8px; font-size: clamp(3rem, 7vw, 6rem); line-height: .95; letter-spacing: -.06em; }
.policy .updated { color: #706a67; margin-bottom: 58px; }
.policy h2 { margin: 36px 0 10px; font-size: 1.35rem; }
.policy p { font-size: 1.05rem; }
.policy a { color: var(--red-dark); font-weight: 700; }

@media (max-width: 800px) {
  .topbar { min-height: 72px; padding: 10px 20px; }
  nav { gap: 16px; }
  nav a { font-size: .9rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 56px 24px 6px; }
  .hero-image { min-height: 520px; }
  .sun { width: 90vw; }
  .about, .contact { grid-template-columns: 1fr; gap: 34px; }
  .facts { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  .brand img { width: 170px; }
  nav a:first-child { display: none; }
  .hero h1 { font-size: 4.5rem; }
  .number { font-size: 6.8rem; }
  .hero-image { min-height: 430px; }
  .about-content > p { font-size: 1.05rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button:hover { transform: none; }
}
