:root {
  color-scheme: light;
  --ink: #191817;
  --muted: #6e6a63;
  --soft: #f6f3ed;
  --paper: #fffdf8;
  --warm: #eee7da;
  --line: #ded6ca;
  --sage: #586b5d;
  --clay: #9a604f;
  --charcoal: #292725;
  --shadow: 0 18px 50px rgba(47, 42, 35, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(25, 24, 23, 0.08);
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(18px);
}

.brand-mark,
.eyebrow,
.site-footer {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 32px);
  color: var(--muted);
  font-size: 14px;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
  overflow: hidden;
}

.hero__copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sage);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 14ch;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: 0;
}

.hero__text {
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.button--dark {
  background: var(--ink);
  color: var(--paper);
}

.button--light {
  background: transparent;
  color: var(--ink);
}

.hero__gallery {
  position: relative;
  min-height: min(640px, 70vh);
}

.hero__image {
  border: 1px solid rgba(25, 24, 23, 0.12);
  background: #fff;
  box-shadow: var(--shadow);
}

.hero__image--large {
  width: min(390px, 68%);
  margin-left: auto;
  transform: rotate(1.5deg);
}

.hero__image--small {
  position: absolute;
  width: min(220px, 42%);
}

.hero__image--top {
  top: 7%;
  left: 0;
  transform: rotate(-5deg);
}

.hero__image--bottom {
  right: 4%;
  bottom: 2%;
  transform: rotate(4deg);
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.section--warm {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__heading {
  max-width: 860px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.product-card__type,
.channel-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-panel p,
.about p {
  color: var(--muted);
  line-height: 1.65;
}

.release-layout {
  display: grid;
  gap: 22px;
}

.release-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  min-height: 520px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  background: var(--soft);
}

.release-panel__copy {
  max-width: 520px;
}

.release-panel__copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 500;
  line-height: 1;
}

.release-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.release-list li {
  padding: 9px 12px;
  border: 1px solid rgba(25, 24, 23, 0.16);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.release-collage {
  position: relative;
  min-height: 430px;
}

.release-collage img {
  position: absolute;
  width: min(240px, 42%);
  border: 1px solid rgba(25, 24, 23, 0.12);
  background: #fff;
  box-shadow: var(--shadow);
}

.release-collage img:nth-child(1) {
  top: 8%;
  left: 3%;
  transform: rotate(-5deg);
}

.release-collage img:nth-child(2) {
  top: 0;
  left: 34%;
  width: min(270px, 46%);
  transform: rotate(1.5deg);
}

.release-collage img:nth-child(3) {
  right: 0;
  bottom: 5%;
  transform: rotate(4deg);
}

.product-card__type {
  margin-bottom: 12px;
  color: var(--sage);
}

.section--channels {
  background: var(--warm);
}

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

.channel-card {
  min-height: 220px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(25, 24, 23, 0.14);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.channel-card--disabled {
  color: var(--muted);
  cursor: default;
}

.channel-card--disabled:hover {
  transform: none;
  box-shadow: none;
}

.channel-card span {
  margin-bottom: 54px;
}

.channel-card strong {
  display: block;
  max-width: 20ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  line-height: 1;
}

.about {
  max-width: 1120px;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.about h2 {
  max-width: 900px;
  margin-bottom: 24px;
}

.about p:not(.eyebrow) {
  max-width: 620px;
  font-size: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--soft);
}

.not-found__panel {
  max-width: 520px;
  text-align: center;
}

.not-found__panel h1 {
  max-width: none;
  font-size: clamp(42px, 8vw, 72px);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__gallery {
    min-height: 520px;
  }

  .release-panel {
    grid-template-columns: 1fr;
  }

  .release-collage {
    margin-top: 18px;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    display: block;
  }

  .site-nav {
    flex-wrap: wrap;
    margin-top: 18px;
    gap: 12px 20px;
  }

  h1 {
    max-width: 11ch;
    font-size: 50px;
  }

  h2 {
    font-size: 36px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero__gallery {
    min-height: 390px;
  }

  .hero__image--large {
    width: 66%;
  }

  .hero__image--small {
    width: 40%;
  }

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

  .release-panel {
    min-height: 0;
  }

  .release-collage {
    min-height: 320px;
  }

  .release-collage img {
    width: min(170px, 45%);
  }

  .site-footer {
    display: block;
  }

  .site-footer span {
    display: block;
  }

  .site-footer span + span {
    margin-top: 12px;
  }
}
