@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;1,600;1,700&display=swap');

:root {
  --ink: #1d2523;
  --muted: #6d7770;
  --paper: #f2f0e9;
  --line: rgba(29, 37, 35, 0.16);
  --lime: #c5d93f;
  --orange: #e27d48;
  --white: #fffdf7;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Manrope', sans-serif;
}

a {
  color: inherit;
}

.landing-page {
  min-height: 100vh;
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 5vw 24px;
  display: flex;
  flex-direction: column;
}

.topbar,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wordmark-mark {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: bold;
}

.topbar-note,
.footer {
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: center;
  flex: 1;
  padding: clamp(54px, 9vh, 110px) 0;
}

.hero-copy {
  max-width: 570px;
  animation: rise-in .8s ease-out both;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .91;
}

h1 em {
  color: var(--orange);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -.06em;
}

.intro {
  max-width: 440px;
  margin: 34px 0 38px;
  color: #55605a;
  font-size: 16px;
  line-height: 1.75;
}

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

.channel-button {
  display: grid;
  grid-template-columns: 42px 1fr 18px;
  align-items: center;
  gap: 12px;
  min-width: 202px;
  padding: 10px 15px 10px 10px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.channel-button:hover,
.channel-button:focus-visible {
  transform: translateY(-4px);
  box-shadow: 5px 5px 0 var(--ink);
  outline: none;
}

.youtube-button {
  background: var(--white);
}

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

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

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

.button-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
}

.youtube-button .button-icon {
  color: var(--white);
  background: #ff0033;
}

.instagram-button .button-icon {
  color: var(--white);
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 52%, #6228d7);
}

.x-button .button-icon {
  color: var(--white);
  background: #000000;
}

.facebook-button .button-icon {
  color: var(--white);
  background: #1877f2;
}

.button-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.button-icon svg circle:not(.instagram-dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.button-label {
  display: grid;
  gap: 2px;
  min-width: 0;
  max-width: 100%;
  font-size: 14px;
  font-weight: 800;
}

.button-label small {
  max-width: 100%;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .06em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.instagram-button .button-label small {
  color: #aeb8b0;
}

.x-button .button-label small {
  color: #aeb8b0;
}

.facebook-button .button-label small {
  color: #aeb8b0;
}

.button-arrow {
  font-size: 20px;
  line-height: 1;
}

.hero-image {
  min-height: min(62vh, 590px);
  position: relative;
  background-color: #58645e;
  background-image: linear-gradient(180deg, rgba(29, 37, 35, .02), rgba(29, 37, 35, .38));
  background-position: center;
  background-size: cover;
  box-shadow: 16px 16px 0 var(--lime);
  animation: image-in 1s .1s ease-out both;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 253, 247, .65);
}

.image-caption {
  position: absolute;
  right: 31px;
  bottom: 31px;
  left: 31px;
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.image-caption span:first-child {
  color: var(--lime);
  font-size: 20px;
}

.footer {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes image-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 760px) {
  .landing-page {
    padding: 20px 24px 18px;
  }

  .topbar-note {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 54px;
    padding: 58px 0 72px;
  }

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

  h1 {
    font-size: clamp(53px, 16vw, 82px);
  }

  .intro {
    margin-top: 28px;
    font-size: 15px;
  }

  .channel-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .channel-button {
    min-width: 0;
    grid-template-columns: 36px minmax(0, 1fr) 18px;
    gap: 8px;
    padding-right: 10px;
  }

  .button-icon {
    width: 36px;
    height: 36px;
  }

  .button-arrow {
    display: block;
  }

  .hero-image {
    min-height: 58vh;
    box-shadow: 9px 9px 0 var(--lime);
  }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}