:root {
  --bg: #eef3f8;
  --card: #ffffff;
  --soft: #f7fbff;
  --ink: #17324a;
  --muted: #64788f;
  --line: #dbe5ef;
  --accent: #4ba2e7;
  --heroA: #183149;
  --heroB: #274762;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(239, 83, 80, 0.12), transparent 26%),
    linear-gradient(180deg, #f9fbfe 0%, var(--bg) 48%, #e6edf5 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

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

.page-shell {
  width: min(1440px, calc(100vw - 40px));
  margin: 18px auto 40px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 38px rgba(18, 41, 65, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand img {
  width: 110px;
}

.brand h1,
.gallery-intro h3,
.gallery-copy h4,
.hero-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.eyebrow,
.section-kicker,
.card-kicker {
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
}

.subhead,
.brand p:last-child,
.gallery-intro p,
.gallery-copy p,
.hero-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.top-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.button-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  margin-top: 24px;
  padding: 32px;
  border-radius: 36px;
  background: linear-gradient(145deg, var(--heroA), var(--heroB));
  box-shadow: 0 28px 60px rgba(17, 34, 52, 0.2);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 420px;
  height: 420px;
  background: url("assets/the_punch_logo.png") center/contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.hero-copy h2 {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(44px, 4.8vw, 76px);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.hero-copy > p:last-of-type {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255,255,255,0.82);
  font-size: 22px;
  line-height: 1.45;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-points span {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.hero-shots {
  position: relative;
  min-height: 560px;
}

.desktop-shot,
.mobile-shot,
.gallery-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  box-shadow: 0 20px 42px rgba(14, 34, 52, 0.14);
}

.desktop-shot {
  position: absolute;
  inset: 0 64px 90px 0;
  padding: 16px;
  border-radius: 34px;
}

.desktop-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
}

.mobile-shot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 280px;
  padding: 10px;
  border-radius: 34px;
}

.mobile-shot img {
  border-radius: 26px;
}

.gallery-intro {
  margin: 34px 0 18px;
}

.gallery-intro h3 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.gallery-card {
  border-radius: 30px;
  overflow: hidden;
}

.gallery-card-wide {
  grid-column: 1 / -1;
}

.gallery-copy {
  padding: 22px 22px 16px;
}

.gallery-card img {
  width: 100%;
  background: var(--soft);
}

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

  .hero-copy h2 {
    max-width: none;
  }

  .hero-shots {
    min-height: 0;
    display: grid;
    gap: 18px;
  }

  .desktop-shot,
  .mobile-shot {
    position: static;
    width: 100%;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100vw - 24px, 1440px);
  }

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

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

  .hero {
    padding: 24px;
  }

  .hero-copy > p:last-of-type {
    font-size: 18px;
  }
}
