:root {
  color-scheme: light;
  --ink: #111111;
  --red: #df0600;
  --paper: #f5f0e7;
  --paper-light: #fbf8f1;
  --frame: #171717;
  --gutter: clamp(1.5rem, 6vw, 6.75rem);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #d9d5cf;
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.88), transparent 27rem),
    linear-gradient(135deg, var(--paper-light), var(--paper));
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

.page-frame {
  position: fixed;
  inset: clamp(0.65rem, 1.4vw, 1.25rem);
  z-index: 20;
  border: clamp(0.3rem, 0.65vw, 0.6rem) solid var(--frame);
  border-radius: clamp(1rem, 2vw, 1.8rem);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.3),
    0 1.25rem 3rem rgba(0, 0, 0, 0.17);
  pointer-events: none;
}

.landing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  padding: clamp(2.8rem, 6vh, 5rem) var(--gutter) clamp(2.7rem, 5vh, 4rem);
  isolation: isolate;
}

.brand {
  grid-column: 1;
  grid-row: 1;
  width: clamp(7rem, 11vw, 10.5rem);
  height: clamp(6.5rem, 10vw, 9.6rem);
}

.brand__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.45);
  transform-origin: top left;
}

.hero {
  z-index: 2;
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  width: min(54rem, 70vw);
  padding: clamp(1.75rem, 4vh, 3.25rem) 0 1.5rem;
}

.hero__heading h1 {
  max-width: 9.5ch;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4.5rem, 9vw, 9rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero__heading h1 span {
  display: block;
}

.hero__kicker {
  margin: clamp(0.85rem, 1.8vw, 1.4rem) 0 0;
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.3rem, 4.2vw, 4.5rem);
  letter-spacing: 0.015em;
  line-height: 0.95;
  text-transform: uppercase;
}

.tagline {
  display: flex;
  align-items: center;
  width: min(100%, 40rem);
  margin-top: clamp(1.6rem, 3vw, 2.7rem);
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
}

.tagline__line {
  position: relative;
  flex: 1 1 5rem;
  height: 2px;
  background: var(--ink);
}

.tagline__line::before,
.tagline__line--end::after {
  position: absolute;
  top: 50%;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--red);
  content: "";
  transform: translate(-50%, -50%);
}

.tagline__line--end::before {
  display: none;
}

.tagline__line--end::after {
  right: 0;
  background: var(--ink);
  transform: translate(50%, -50%);
}

.tagline p {
  flex: none;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  white-space: nowrap;
}

.tagline i {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin: 0 0.45rem -0.12em;
  background: var(--red);
}

.hero__intro {
  margin: clamp(1.5rem, 2.8vw, 2.25rem) 0 0;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}

.location {
  display: inline-flex;
  align-items: center;
  margin-top: clamp(1.5rem, 2.8vw, 2.25rem);
  gap: 0.8rem;
  border-radius: 0.65rem;
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.location svg {
  flex: 0 0 1.85rem;
  width: 1.85rem;
  height: 1.85rem;
  overflow: visible;
  fill: var(--red);
  stroke: var(--red);
  stroke-width: 1.35;
}

.location circle {
  fill: var(--paper);
  stroke: none;
}

.location:hover span,
.location:focus-visible span {
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

.social {
  z-index: 3;
  display: flex;
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  gap: clamp(0.55rem, 1vw, 0.9rem);
}

.social__link {
  display: grid;
  width: clamp(2.65rem, 3.6vw, 3.35rem);
  height: clamp(2.65rem, 3.6vw, 3.35rem);
  place-items: center;
  border: 1.5px solid rgba(17, 17, 17, 0.62);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social__link svg {
  width: 52%;
  height: 52%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social__link .social__dot,
.social__link .social__fill {
  fill: currentColor;
  stroke: none;
}

.social__link--letter span {
  font-family: Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
}

.social__link--music span {
  font-size: 1.45rem;
}

.social__link:hover {
  color: #ffffff;
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-3px);
}

.social__link:focus-visible,
.location:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.footer {
  z-index: 2;
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.footer p {
  margin: 0;
}

.decor {
  position: fixed;
  z-index: 0;
  pointer-events: none;
}

.decor-eight {
  top: clamp(-6rem, -5vw, -3rem);
  right: clamp(-6rem, -4vw, -2.5rem);
  width: clamp(18rem, 33vw, 32rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.12);
}

.decor-eight::before {
  display: none;
}

.decor-eight__spot {
  position: absolute;
  inset: 27%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: var(--paper);
  font-family: Arial, sans-serif;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 900;
  line-height: 1;
}

.decor-corner {
  right: -12vw;
  bottom: -28vw;
  width: 48vw;
  min-width: 27rem;
  aspect-ratio: 1;
  border-radius: 50% 0 0;
  background: var(--red);
  transform: rotate(-13deg);
  transform-origin: center;
}

.decor-corner::before {
  position: absolute;
  top: -0.3rem;
  left: 4%;
  width: 82%;
  height: 0.28rem;
  background: rgba(255, 255, 255, 0.9);
  content: "";
  transform: rotate(-3deg);
}

.decor-ball {
  right: clamp(11rem, 20vw, 22rem);
  bottom: clamp(7rem, 16vh, 12rem);
  width: clamp(3.5rem, 5vw, 5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #3c3c3c, #0b0b0b 65%);
  box-shadow: 0.8rem 1rem 1.7rem rgba(0, 0, 0, 0.24);
}

@media (max-width: 760px) {
  :root {
    --gutter: clamp(2.15rem, 8vw, 3.25rem);
  }

  .page-frame {
    inset: 0.5rem;
    border-width: 0.3rem;
    border-radius: 1.4rem;
  }

  .landing {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    padding: max(2.2rem, env(safe-area-inset-top)) var(--gutter) max(2rem, env(safe-area-inset-bottom));
  }

  .brand {
    width: 6.7rem;
    height: 6.15rem;
  }

  .hero {
    width: 100%;
    margin: auto 0;
    padding: 2.5rem 0 2rem;
  }

  .hero__heading h1 {
    max-width: 100%;
    /* Android does not always provide the same condensed fallback font as iOS.
       Scale the entire title slightly so its longest line stays in the safe area. */
    width: 113.64%;
    font-size: clamp(3.35rem, 17vw, 5.3rem);
    line-height: 0.86;
    letter-spacing: -0.06em;
    transform: scaleX(0.88);
    transform-origin: left center;
  }

  .hero__kicker {
    margin-top: 0.65rem;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .tagline {
    width: 100%;
    margin-top: 1.5rem;
    gap: 0.6rem;
  }

  .tagline__line {
    flex-basis: 2rem;
  }

  .tagline p {
    font-size: clamp(0.75rem, 3.4vw, 0.95rem);
  }

  .tagline i {
    margin-inline: 0.28rem;
  }

  .hero__intro {
    max-width: 24rem;
    margin-top: 1.35rem;
    font-size: clamp(0.92rem, 4vw, 1.05rem);
  }

  .location {
    margin-top: 1.35rem;
    font-size: 0.92rem;
  }

  .social {
    order: 3;
    align-self: flex-start;
    margin-bottom: 1.45rem;
  }

  .social__link {
    width: 2.45rem;
    height: 2.45rem;
  }

  .footer {
    order: 4;
  }

  .decor-eight {
    top: 3.4rem;
    right: -4.3rem;
    width: 11.5rem;
  }

  .decor-eight::before {
    border-width: 0.7rem;
  }

  .decor-eight__spot {
    font-size: 3.3rem;
  }

  .decor-corner {
    right: -17rem;
    bottom: -21rem;
    width: 36rem;
  }

  .decor-ball {
    right: 2.9rem;
    bottom: 4.4rem;
    width: 3rem;
  }
}

@media (max-width: 380px) {
  .hero {
    padding-block: 1.6rem;
  }

  .hero__heading h1 {
    font-size: clamp(3.2rem, 17.5vw, 4.25rem);
  }

  .hero__intro,
  .location {
    margin-top: 1.05rem;
  }

  .social {
    margin-bottom: 1rem;
  }

  .decor-eight {
    top: 2.5rem;
    right: -6.5rem;
    width: 9rem;
  }

  .decor-corner {
    right: -22rem;
    bottom: -29rem;
  }

  .decor-ball {
    right: 2rem;
    bottom: 1.8rem;
    width: 2.65rem;
  }
}

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