:root {
  --aqua: #8eeef4;
  --aqua-deep: #30c6d5;
  --pink: #de8279;
  --pink-dark: #b95e59;
  --blonde: #e8b665;
  --blue: #2d7bd7;
  --red: #d3292e;
  --suit: #211f1d;
  --cream: #fff2dc;
  --paper: #fffaf1;
  --ink: #161311;
  --muted: #5e514c;
  --white: #ffffff;
  --shadow: rgba(22, 19, 17, 0.18);
  --line: rgba(22, 19, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.92), transparent 23rem),
    radial-gradient(circle at 82% 8%, rgba(222, 130, 121, 0.28), transparent 19rem),
    linear-gradient(135deg, var(--aqua) 0%, #b8f6f7 45%, #eafff9 100%);
  font-family: Inter, Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.22;
  background:
    linear-gradient(90deg, rgba(22, 19, 17, 0.11) 1px, transparent 1px),
    linear-gradient(rgba(22, 19, 17, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
  position: fixed;
  right: clamp(18px, 5vw, 72px);
  bottom: -16vh;
  z-index: -1;
  width: min(560px, 55vw);
  height: 48vh;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.26);
  filter: blur(2px);
}

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

button {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
}

.brand-mark {
  position: relative;
  width: 50px;
  height: 50px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pink), #f3aea6);
  box-shadow: 6px 6px 0 var(--ink);
}

.brand-mark::before {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 13px;
  border: 3px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  content: "";
  background: var(--cream);
}

.brand-mark::after {
  position: absolute;
  right: -7px;
  bottom: -8px;
  width: 15px;
  height: 24px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  content: "";
  background: var(--blonde);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}

.brand-copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a,
.nav button,
.primary,
.secondary {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav a:hover,
.nav button:hover,
.primary:hover,
.secondary:hover {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}

.hero {
  display: grid;
  min-height: min(780px, calc(100vh - 82px));
  grid-template-columns: minmax(0, 0.92fr) minmax(350px, 1.08fr);
  gap: 30px;
  align-items: center;
  padding: 30px 0 42px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.tag::before {
  display: block;
  width: 12px;
  height: 12px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
  content: "";
}

h1 {
  max-width: 8ch;
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(58px, 11vw, 142px);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 7px 7px 0 rgba(255, 255, 255, 0.72), 12px 12px 0 rgba(22, 19, 17, 0.1);
}

.hero-copy p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 850;
  line-height: 1.45;
}

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

.primary,
.secondary {
  min-width: 148px;
}

.primary {
  color: var(--white);
  background: var(--ink);
}

.secondary {
  background: var(--pink);
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border: 6px solid var(--ink);
  border-radius: 42px 42px 120px 42px;
  background: var(--aqua);
  box-shadow: 16px 16px 0 var(--ink), 0 32px 70px var(--shadow);
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: min(650px, 70vh);
  min-height: 470px;
  object-fit: cover;
  object-position: center;
}

.portrait-frame::before {
  position: absolute;
  inset: 22px 22px auto auto;
  width: 118px;
  height: 118px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  content: "";
  background:
    linear-gradient(45deg, transparent 0 44%, var(--red) 44% 56%, transparent 56%),
    linear-gradient(-45deg, transparent 0 44%, var(--blue) 44% 56%, transparent 56%),
    rgba(255, 255, 255, 0.62);
  opacity: 0.88;
}

.photo-label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 12px;
  background: rgba(255, 250, 241, 0.84);
  backdrop-filter: blur(8px);
  box-shadow: 6px 6px 0 var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.banner {
  width: min(1360px, calc(100% - 32px));
  margin: 8px auto 0;
  overflow: hidden;
  border: 6px solid var(--ink);
  border-radius: 34px;
  background: var(--aqua);
  box-shadow: 12px 12px 0 var(--ink);
}

.banner img {
  display: block;
  width: 100%;
  height: clamp(210px, 31vw, 400px);
  object-fit: cover;
}

.ticker {
  display: flex;
  overflow: hidden;
  margin: 38px 0;
  border-block: 5px solid var(--ink);
  background: var(--paper);
}

.ticker-track {
  display: flex;
  min-width: max-content;
  animation: parade 17s linear infinite;
}

.ticker span {
  padding: 14px 22px;
  color: var(--ink);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(20px, 3.3vw, 44px);
  text-transform: uppercase;
  white-space: nowrap;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  padding: 22px 0 72px;
}

.brief,
.cards {
  border: 5px solid var(--ink);
  border-radius: 28px;
  background: rgba(255, 250, 241, 0.84);
  box-shadow: 10px 10px 0 var(--ink);
}

.brief {
  display: grid;
  align-content: space-between;
  gap: 32px;
  padding: clamp(22px, 4vw, 38px);
}

.brief h2,
.cards h2,
.final h2 {
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(34px, 5.8vw, 78px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brief p,
.final p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.45;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badges span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0 12px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.cards {
  padding: clamp(20px, 3vw, 30px);
}

.card-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.card {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  align-items: center;
  border: 4px solid var(--ink);
  border-radius: 22px;
  padding: 14px;
  background: var(--white);
}

.card b {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 18px;
  color: var(--ink);
  background: var(--pink);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 18px;
}

.card:nth-child(2) b {
  background: var(--blue);
  color: var(--white);
}

.card:nth-child(3) b {
  background: var(--red);
  color: var(--white);
}

.card h3 {
  margin: 0 0 6px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.4;
}

.final {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
  border: 6px solid var(--ink);
  border-radius: 36px;
  padding: clamp(26px, 5vw, 56px);
  background:
    linear-gradient(90deg, rgba(222, 130, 121, 0.22), transparent 46%, rgba(45, 123, 215, 0.18)),
    var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

@keyframes parade {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 920px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

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

  .portrait-frame {
    order: -1;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .shell,
  .banner,
  .final {
    width: min(100% - 22px, 1180px);
  }

  .nav a,
  .nav button,
  .primary,
  .secondary {
    min-height: 38px;
    padding: 0 10px;
    font-size: 11px;
  }

  .portrait-frame {
    border-radius: 28px 28px 72px 28px;
  }

  .portrait-frame img {
    min-height: 360px;
    height: 58vh;
  }

  .portrait-frame::before {
    width: 82px;
    height: 82px;
  }

  .photo-label {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .card b {
    width: 56px;
    height: 56px;
  }

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