:root {
  --ink: #171717;
  --paper: #fffdf8;
  --soft: #f3efe5;
  --accent: #ffd34f;
  --accent-2: #ff8a65;
  --line: rgba(23,23,23,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

.polka-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: .45;
  background-image: radial-gradient(circle, rgba(23,23,23,.10) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
}

.site-header, main, footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}
.brand {
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -.04em;
  font-size: 1.25rem;
}
.brand span { color: #9b9b9b; margin-left: 4px; }
nav { display: flex; gap: 10px; }
nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
}
nav a.active, nav a:hover { background: var(--soft); }

.hero {
  min-height: 74vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 50px;
  padding: 40px 0 70px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem;
  font-weight: 900;
  color: #777;
  margin: 0 0 14px;
}
h1, h2 { margin: 0; letter-spacing: -.055em; line-height: .98; }
h1 { font-size: clamp(3.2rem, 8vw, 7.6rem); max-width: 10ch; }
h2 { font-size: clamp(2.2rem, 5vw, 4.6rem); max-width: 10ch; }
.lead, .video-section p { font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.65; color: #555; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid var(--line);
}
.btn.primary { background: var(--ink); color: white; }
.btn.ghost { background: rgba(255,255,255,.7); color: var(--ink); }

.hero-card {
  min-height: 520px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,211,79,.8) 0 12%, transparent 12.5%),
    radial-gradient(circle at 78% 72%, rgba(255,138,101,.35) 0 11%, transparent 11.5%),
    var(--soft);
  overflow: hidden;
}
.hero-card img { width: 86%; max-height: 520px; object-fit: contain; animation: bob 4s ease-in-out infinite; }

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.facts article { padding: 28px 22px; display: flex; flex-direction: column; gap: 4px; border-right: 1px solid var(--line); }
.facts article:last-child { border-right: 0; }
.facts strong { font-size: 2rem; letter-spacing: -.05em; }
.facts span { color: #777; }

.video-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 46px;
  align-items: center;
  padding: 110px 0;
}
.video-frame {
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 20px 70px rgba(0,0,0,.08);
}
.video-frame video { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.gallery-intro { padding: 70px 0 50px; }
.gallery-intro h1 { max-width: 9ch; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-bottom: 80px;
}
.gallery-card {
  margin: 0;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
}
.gallery-card.tall { grid-row: span 2; }
.gallery-card img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; display: block; }
.gallery-card.tall img { min-height: 744px; }
.gallery-card figcaption {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  background: var(--paper);
  font-weight: 800;
  border-top: 1px solid var(--line);
}
.gallery-card figcaption span { color: #999; }

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 80px;
  padding: 42px;
  background: var(--accent);
  border-radius: 32px;
}
.cta-card h2 { max-width: 8ch; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 42px;
  color: #777;
  border-top: 1px solid var(--line);
  font-size: .92rem;
}

.cheese {
  position: fixed;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.10));
  animation: fly 14s linear infinite;
  font-size: 2.1rem;
}
.cheese-1 { top: 18%; left: -80px; animation-delay: -2s; }
.cheese-2 { top: 58%; left: -100px; animation-delay: -8s; transform: scale(.8); }
.cheese-3 { top: 82%; left: -120px; animation-delay: -12s; transform: scale(1.15); }

@keyframes fly {
  0% { translate: -10vw 0; rotate: 0deg; }
  40% { translate: 45vw -45px; rotate: 180deg; }
  70% { translate: 78vw 35px; rotate: 300deg; }
  100% { translate: 120vw -12px; rotate: 480deg; }
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

@media (max-width: 860px) {
  .hero, .video-section { grid-template-columns: 1fr; }
  .hero { padding-top: 24px; }
  .hero-card { min-height: 420px; }
  .video-section { padding: 80px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.tall { grid-row: auto; }
  .gallery-card.tall img { min-height: 360px; }
  .cta-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .site-header, main, footer { width: min(100% - 24px, 1180px); }
  .site-header { padding: 18px 0; }
  nav a { padding: 8px 10px; font-size: .92rem; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.4rem); }
  .hero { gap: 28px; padding-bottom: 48px; }
  .hero-card { min-height: 340px; border-radius: 28px; }
  .facts { grid-template-columns: 1fr; }
  .facts article { border-right: 0; border-bottom: 1px solid var(--line); }
  .facts article:last-child { border-bottom: 0; }
  .gallery-intro { padding-top: 40px; }
  .gallery-grid { gap: 16px; }
  .gallery-card img, .gallery-card.tall img { min-height: 300px; }
  .cta-card { padding: 28px; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
