:root {
  --ivory: #fff8ef;
  --cream: #ffe9d3;
  --peach: #ffb38d;
  --tomato: #e34332;
  --raspberry: #b91f46;
  --plum: #4a263a;
  --ink: #231b1f;
  --muted: #6f5d5c;
  --sage: #8fa875;
  --gold: #e2aa39;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(74, 38, 58, 0.14);
  --radius: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(255, 248, 239, 0.88);
  border-bottom: 1px solid rgba(74, 38, 58, 0.1);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--plum);
}

.brand-mark span {
  color: var(--tomato);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--tomato);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(74, 38, 58, 0.08);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white) !important;
  background: var(--plum);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  background: var(--white);
  border: 1px solid rgba(74, 38, 58, 0.14);
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--plum);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.section-band,
.section-grid,
.channels {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(38px, 6vw, 78px);
  padding: clamp(50px, 6vw, 76px) 0 clamp(42px, 5vw, 70px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--tomato);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 10px;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.1rem, 11vw, 9.4rem);
  line-height: 0.82;
  letter-spacing: 0;
}

.tagline {
  max-width: 610px;
  margin-bottom: 22px;
  color: var(--raspberry);
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  font-weight: 850;
  line-height: 1.08;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--tomato);
  box-shadow: 0 15px 32px rgba(227, 67, 50, 0.24);
}

.button-secondary {
  color: var(--plum);
  background: var(--white);
  border: 1px solid rgba(74, 38, 58, 0.13);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.portrait-frame {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  padding: clamp(12px, 3vw, 20px);
  background:
    linear-gradient(135deg, rgba(255, 179, 141, 0.92), rgba(255, 255, 255, 0.96) 45%, rgba(143, 168, 117, 0.72)),
    var(--cream);
  border: 1px solid rgba(74, 38, 58, 0.1);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-proof {
  position: absolute;
  right: 0;
  bottom: 14px;
  width: min(220px, 54%);
  padding: 16px;
  color: var(--white);
  background: var(--plum);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(35, 27, 31, 0.22);
}

.hero-proof span {
  display: block;
  margin-bottom: 2px;
  color: var(--gold);
  font-size: 2.1rem;
  font-weight: 950;
  line-height: 1;
}

.hero-proof p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
  overflow: hidden;
  background: var(--plum);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stats-strip article {
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-strip article:last-child {
  border-right: 0;
}

.stats-strip span {
  display: block;
  color: var(--gold);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1;
}

.stats-strip p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.metrics-note {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
  padding: clamp(72px, 9vw, 112px) 0;
}

h2 {
  margin-bottom: 0;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.copy-column {
  color: var(--muted);
  font-size: 1.03rem;
}

.copy-column p:last-child {
  margin-bottom: 0;
}

.collaboration-band {
  padding: clamp(64px, 8vw, 88px) 0;
  background: linear-gradient(135deg, #fff1e3 0%, #ffe2cf 48%, #f8dfef 100%);
}

.band-inner {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.section-kicker) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading.compact {
  max-width: 780px;
}

.collab-grid,
.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.channel-card {
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(74, 38, 58, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(74, 38, 58, 0.08);
}

.card-number,
.channel-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--tomato);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  color: var(--plum);
  font-size: 1.35rem;
  line-height: 1.12;
}

.feature-card p,
.channel-card p {
  margin: 0;
  color: var(--muted);
}

.channels {
  padding: clamp(76px, 9vw, 112px) 0;
}

.channel-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.channel-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.channel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 67, 50, 0.38);
  box-shadow: 0 20px 48px rgba(74, 38, 58, 0.14);
}

.channel-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--plum);
  font-size: 1.18rem;
  line-height: 1.2;
}

.channel-card p {
  margin-top: auto;
}

.press-section {
  padding-top: 0;
}

.press-list {
  display: grid;
  gap: 12px;
}

.press-list article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(74, 38, 58, 0.1);
  border-radius: var(--radius);
}

.press-list span {
  color: var(--tomato);
  font-weight: 950;
}

.press-list p {
  margin: 0;
  color: var(--plum);
  font-weight: 800;
}

.contact-band {
  margin-top: clamp(44px, 6vw, 78px);
  color: var(--white);
  background: var(--plum);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 58px);
}

.contact-band h2 {
  max-width: 760px;
  color: var(--white);
}

.contact-band .section-kicker {
  color: var(--gold);
}

.contact-band p:not(.section-kicker) {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-band .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 48px) 34px;
  color: var(--muted);
  border-top: 1px solid rgba(74, 38, 58, 0.1);
}

.site-footer p {
  margin: 0;
  color: var(--plum);
  font-weight: 900;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.92rem;
  font-weight: 750;
}

.site-footer a:hover {
  color: var(--tomato);
}

@media (max-width: 940px) {
  .hero,
  .section-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: start;
    width: min(100%, 470px);
  }

  .stats-strip,
  .channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-actions {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: fixed;
    inset: 72px 14px auto;
    display: grid;
    gap: 4px;
    padding: 14px;
    background: var(--white);
    border: 1px solid rgba(74, 38, 58, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stats-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stats-strip article:last-child {
    border-bottom: 0;
  }

  .collaboration-band {
    padding: 42px 0;
  }

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

  .channel-card,
  .feature-card {
    min-height: 0;
  }

  .card-number,
  .channel-card span {
    margin-bottom: 22px;
  }

  .press-list article {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer div {
    justify-content: flex-start;
  }
}

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