:root {
  --ink: #050505;
  --cream: #ffffff;
  --paper: #f7f7f5;
  --clay: #f51b25;
  --yellow: #f51b25;
  --sage: #050505;
  --line: rgba(5, 5, 5, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

main {
  overflow: hidden;
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(22px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
}

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

.brand-logo {
  width: clamp(178px, 17vw, 245px);
  height: auto;
  display: block;
}

.brand-mark {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand-name small {
  margin-top: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links > a:not(.nav-cta) {
  transition: color 180ms ease;
}

.nav-links > a:not(.nav-cta):hover,
.nav-links > a:not(.nav-cta):focus-visible {
  color: var(--clay);
}

.nav-cta {
  padding: 13px 18px;
  border: 1px solid var(--ink);
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  min-height: 480px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(22px, 3vw, 44px);
  align-items: stretch;
  padding: clamp(24px, 3vw, 46px) clamp(22px, 4vw, 64px) 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 34px;
}

.hero .eyebrow {
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0 0 32px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow span {
  padding: 0 9px;
  color: var(--clay);
}

.hero h1,
.events h2,
.closing h2 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.87;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(40px, 4.1vw, 62px);
}

em {
  color: var(--clay);
  font-family: "Courier New", Courier, monospace;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.085em;
  text-transform: lowercase;
}

.hero-intro {
  max-width: 440px;
  margin: 22px 0 22px;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--clay);
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(4px, 4px);
}

.hero-photo {
  position: relative;
  min-height: 480px;
  align-self: stretch;
  overflow: hidden;
  background-color: var(--ink);
  background-image:
    linear-gradient(180deg, rgba(245, 27, 37, 0.04) 38%, rgba(5, 5, 5, 0.62) 100%),
    url("hero-festival-selfie.jpg");
  background-position: 54% center;
  background-size: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 0 12px rgba(245, 27, 37, 0.24);
}

.hero-photo span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 8px 10px;
  background: var(--clay);
  color: #fff;
  font-family: "Courier New", Courier, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--clay);
  color: #fff;
  transform: rotate(-1.4deg) scale(1.02);
}

.ticker div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 17px 0;
  animation: drift 24s linear infinite;
}

.ticker span {
  font-family: "Courier New", Courier, monospace;
  font-size: 19px;
  font-weight: 700;
}

.ticker b {
  font-size: 10px;
}

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

.intro-section {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 50px;
  padding: 130px clamp(22px, 4vw, 64px) 80px;
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 11px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.label-line {
  width: 60px;
  height: 1px;
  margin-top: 5px;
  background: var(--clay);
}

.intro-statement > p {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.94;
  text-transform: uppercase;
}

.intro-statement > span {
  display: block;
  max-width: 440px;
  margin: 34px 0 0 auto;
  font-size: 14px;
  line-height: 1.7;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  border-right: 1px solid var(--line);
  transition: background 220ms ease, color 220ms ease;
}

.service-card:last-child {
  border-right: 0;
}

.service-card:hover {
  background: var(--clay);
  color: #fff;
}

.service-number {
  margin-bottom: 48px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-card h2 {
  margin: 0 0 18px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3vw, 43px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-card p {
  max-width: 340px;
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.service-image {
  height: clamp(220px, 24vw, 340px);
  overflow: hidden;
  background: var(--ink);
}

.service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 600ms ease;
}

.service-card:first-child .service-image img {
  object-position: 47% center;
}

.service-card:nth-child(2) .service-image img {
  object-position: center 42%;
}

.service-card:nth-child(3) .service-image img {
  object-position: center 38%;
}

.service-card:hover .service-image img {
  transform: scale(1.03);
}

.service-content {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 34px clamp(24px, 3vw, 48px) 38px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 30px;
}

.tags span {
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 99px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.events {
  padding: 120px clamp(22px, 4vw, 64px);
  background: var(--paper);
}

.events-visual {
  position: relative;
  min-height: 310px;
  margin-bottom: 100px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(245, 27, 37, 0.22), rgba(5, 5, 5, 0.22)),
    url("photo-blurred-event.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: 14px 14px 0 var(--clay);
}

.events-visual span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: calc(100% - 48px);
  padding: 10px 13px;
  background: var(--ink);
  color: #fff;
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.events-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.events-heading .eyebrow {
  margin: 0 0 8px;
}

.events h2 {
  max-width: 720px;
  font-size: clamp(48px, 7vw, 90px);
}

.events-card {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 12px 12px 0 var(--ink);
}

.event-date {
  height: 120px;
  display: grid;
  place-content: center;
  background: var(--clay);
  color: var(--paper);
  text-align: center;
}

.event-date span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.event-date strong {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 900;
}

.event-copy p {
  margin: 0 0 8px;
  font-family: "Courier New", Courier, monospace;
  font-size: 25px;
  font-weight: 700;
}

.event-copy span {
  display: block;
  max-width: 650px;
  font-size: 13px;
  line-height: 1.6;
}

.event-arrow {
  padding-right: 20px;
  color: var(--clay);
  font-size: 28px;
}

.closing {
  position: relative;
  padding: 140px 24px;
  background-color: var(--clay);
  background-image:
    linear-gradient(rgba(245, 27, 37, 0.88), rgba(245, 27, 37, 0.93)),
    url("photo-fun-day.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.closing::before,
.closing::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.closing::before {
  width: 280px;
  height: 280px;
  top: -120px;
  left: -100px;
}

.closing::after {
  width: 420px;
  height: 420px;
  right: -170px;
  bottom: -260px;
}

.closing-kicker {
  margin: 0 0 30px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.closing h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(55px, 8vw, 106px);
}

.closing h2 em {
  color: #fff;
}

.closing-note {
  max-width: 520px;
  margin: 36px auto;
  font-family: "Courier New", Courier, monospace;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 36px;
  padding: 17px 20px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 32px clamp(22px, 4vw, 64px);
  border-top: 1px solid rgba(243, 239, 228, 0.18);
  background: var(--ink);
  color: #fff;
}

footer p {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

footer p:last-child {
  text-align: right;
}

.footer-brand {
  display: inline-flex;
  width: min(210px, 100%);
}

.footer-logo {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 820px) {
  .nav-links > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .hero-copy {
    padding-bottom: 30px;
  }

  .hero-photo {
    min-height: 470px;
  }

  .intro-section {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }

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

  .service-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-image {
    height: 420px;
  }

  .service-content {
    min-height: 320px;
  }

  .events-heading {
    display: block;
  }

  .events-heading .eyebrow {
    margin-bottom: 24px;
  }

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

  .event-date {
    height: 110px;
  }

  .event-arrow {
    display: none;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer p,
  footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 540px) {
  .nav {
    min-height: 78px;
  }

  .brand-name small {
    display: none;
  }

  .nav-cta {
    padding: 11px 12px;
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .hero-intro {
    margin-top: 28px;
  }

  .hero-photo {
    min-height: 340px;
  }

  .events {
    padding-block: 90px;
  }

  .events-visual {
    min-height: 240px;
    margin-bottom: 76px;
    box-shadow: 8px 8px 0 var(--clay);
  }

  .service-image {
    height: 320px;
  }

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

  .event-date {
    width: 100px;
  }

  .closing {
    padding-block: 110px;
  }
}

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

  .ticker div {
    animation: none;
  }
}
