:root {
  --ink: #17130f;
  --ink-soft: #3d352e;
  --paper: #f8f3ea;
  --paper-deep: #eee2d0;
  --line: rgba(23, 19, 15, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --teal: #116466;
  --teal-dark: #0b3e3e;
  --clay: #b85f3d;
  --berry: #7d2857;
  --gold: #d09a2d;
  --forest: #314b3f;
  --white: #fffaf2;
  --shadow: 0 22px 70px rgba(23, 19, 15, 0.16);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img[loading="lazy"] {
  content-visibility: auto;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

p {
  color: rgba(23, 19, 15, 0.76);
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 40px, 880px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: rgba(20, 16, 13, 0.93);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.brand strong,
.brand em {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 0.98rem;
}

.brand em {
  margin-top: 3px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.78rem;
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 40px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--gold);
  box-shadow: var(--shadow);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.home-hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(13, 17, 16, 0.95) 0%, rgba(13, 17, 16, 0.82) 42%, rgba(13, 17, 16, 0.24) 100%),
    url("assets/ryan.png");
  background-position: center, 72% 35%;
  background-size: cover, cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 120px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: min(100% - 40px, 820px);
  margin-left: clamp(20px, 7vw, 96px);
  padding: clamp(56px, 9vw, 96px) 0;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--berry);
}

.home-hero h1,
.page-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  max-width: 950px;
}

.hero-copy {
  max-width: 740px;
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary-dark {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

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

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

.intro-band {
  padding: clamp(36px, 6vw, 74px) 0;
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.two-col,
.story-grid,
.impact-grid,
.audience-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.story-intro h2,
.vineyard-grid h2,
.media-panel h2,
.showcase-copy h2,
.cta-panel h2,
.impact-grid h2,
.audience-grid h2,
.contact-grid h2,
.engine-grid h2,
.two-col h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-grid p {
  font-size: 1.08rem;
}

.section {
  padding: clamp(64px, 9vw, 118px) 0;
  background: var(--paper);
}

.section.muted,
.muted {
  background: #f1e7d8;
}

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

.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.text-link {
  align-self: end;
  color: var(--berry);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.feature-grid,
.service-grid,
.release-grid,
.system-grid,
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.service-grid article,
.release-card,
.system-grid article,
.pillars-grid article,
.timeline article,
.contact-panel,
.media-panel,
.song-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 12px 40px rgba(23, 19, 15, 0.08);
}

.feature-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: var(--white);
  border-color: transparent;
  overflow: hidden;
}

.feature-card p {
  color: rgba(255, 250, 242, 0.82);
}

.feature-card a {
  margin-top: auto;
  color: var(--white);
  font-weight: 900;
  text-underline-offset: 5px;
}

.feature-card-teal {
  background: var(--teal);
}

.feature-card-berry {
  background: var(--berry);
}

.feature-card-clay {
  background: var(--clay);
}

.feature-kicker,
.release-card span,
.number,
.engine-list span,
.mock-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-card h3,
.service-grid h3,
.release-card h3,
.system-grid h3,
.pillars-grid h3,
.timeline h3,
.contact-panel h3,
.song-list h3,
.mock-card strong,
.artifact-card strong {
  margin-bottom: 12px;
  font-size: 1.38rem;
  line-height: 1.12;
}

.world-section,
.founder-band,
.engine-section,
.vineyard-section {
  padding: clamp(64px, 9vw, 118px) 0;
  color: var(--white);
  background: var(--ink);
}

.world-section p,
.founder-band p,
.engine-section p,
.vineyard-section p {
  color: rgba(255, 250, 242, 0.78);
}

.world-grid,
.founder-grid,
.engine-grid,
.vineyard-grid,
.card-showcase,
.media-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.world-copy h2,
.founder-grid h2 {
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
}

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

.artifact-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  color: var(--white);
}

.artifact-card p {
  color: rgba(255, 250, 242, 0.78);
}

.artifact-card span {
  display: block;
  margin-bottom: 30px;
  font-weight: 900;
}

.artifact-card.amber {
  background: #8a621c;
}

.artifact-card.teal {
  background: var(--teal-dark);
}

.artifact-card.berry {
  background: var(--berry);
}

.artifact-card.clay {
  background: var(--clay);
}

.system-grid article,
.service-grid article,
.release-card,
.pillars-grid article,
.timeline article,
.song-list article {
  padding: 24px;
}

.founder-band {
  background: var(--forest);
}

.founder-grid img,
.page-hero-grid img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-section {
  background: var(--paper);
}

.cta-panel {
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 900px;
}

.cta-panel p {
  max-width: 820px;
}

.site-footer {
  padding: 34px 0;
  color: var(--white);
  background: #120f0c;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 250, 242, 0.68);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: rgba(255, 250, 242, 0.78);
  font-weight: 800;
  text-decoration: none;
}

.page-hero {
  min-height: 58svh;
  display: grid;
  align-items: center;
  padding: clamp(70px, 11vw, 130px) 0;
  color: var(--white);
  background: var(--ink);
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 250, 242, 0.8);
  font-size: 1.12rem;
}

.about-hero {
  background: var(--forest);
}

.teal-hero {
  background:
    linear-gradient(135deg, rgba(17, 100, 102, 0.96), rgba(49, 75, 63, 0.95)),
    var(--teal);
}

.dia-hero {
  background:
    linear-gradient(135deg, rgba(125, 40, 87, 0.95), rgba(184, 95, 61, 0.9)),
    var(--berry);
}

.music-hero {
  background:
    linear-gradient(135deg, rgba(184, 95, 61, 0.96), rgba(138, 98, 28, 0.9)),
    var(--clay);
}

.games-hero {
  background:
    linear-gradient(135deg, rgba(11, 62, 62, 0.96), rgba(125, 40, 87, 0.9)),
    var(--teal-dark);
}

.partner-hero {
  background:
    linear-gradient(135deg, rgba(23, 19, 15, 0.96), rgba(17, 100, 102, 0.9)),
    var(--ink);
}

.story-copy p,
.stack p {
  font-size: 1.08rem;
}

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

.vineyard-section {
  background: #3e3f25;
}

.check-list,
.tag-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  color: rgba(23, 19, 15, 0.82);
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 14px;
  height: 2px;
  background: var(--clay);
}

.compact li {
  font-weight: 650;
}

.dark-section {
  color: var(--white);
  background: var(--ink);
}

.dark-section .section-heading h2 {
  color: var(--white);
}

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

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

.media-grid {
  align-items: stretch;
}

.media-panel {
  padding: 30px;
  background: var(--white);
}

.song-list {
  display: grid;
  gap: 14px;
}

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

.release-card {
  min-height: 260px;
}

.card-showcase {
  align-items: center;
}

.mock-cards {
  position: relative;
  min-height: 430px;
}

.mock-card {
  position: absolute;
  width: min(72%, 310px);
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow);
}

.mock-card p {
  color: rgba(255, 250, 242, 0.78);
}

.mock-card strong {
  display: block;
}

.mock-card-one {
  top: 0;
  left: 0;
  background: var(--teal);
}

.mock-card-two {
  top: 80px;
  right: 0;
  background: var(--berry);
}

.mock-card-three {
  bottom: 0;
  left: 15%;
  background: var(--clay);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list li {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 850;
}

.engine-section {
  background: var(--teal-dark);
}

.engine-list {
  display: grid;
  gap: 14px;
}

.engine-list article {
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.engine-list p {
  margin-bottom: 0;
}

.contact-panel {
  padding: 28px;
  background: var(--white);
}

.contact-note {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 750;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 20px 20px;
    background: rgba(20, 16, 13, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .home-hero {
    min-height: 82svh;
    background-image:
      linear-gradient(180deg, rgba(13, 17, 16, 0.72) 0%, rgba(13, 17, 16, 0.92) 68%, rgba(13, 17, 16, 0.98) 100%),
      url("assets/ryan.png");
    background-position: center, 50% 18%;
  }

  .hero-content {
    align-self: end;
    width: min(100% - 40px, 760px);
    margin-inline: auto;
    padding-top: 280px;
  }

  .intro-grid,
  .two-col,
  .story-grid,
  .impact-grid,
  .audience-grid,
  .contact-grid,
  .world-grid,
  .founder-grid,
  .engine-grid,
  .vineyard-grid,
  .card-showcase,
  .media-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .service-grid,
  .release-grid,
  .system-grid,
  .pillars-grid,
  .timeline,
  .large-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-heading {
    display: block;
  }

  .text-link {
    display: inline-block;
    margin-top: 12px;
  }

  .page-hero-grid img {
    max-height: 520px;
  }
}

@media (max-width: 660px) {
  .wrap,
  .narrow {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    min-height: 70px;
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand em {
    font-size: 0.72rem;
  }

  .site-nav {
    top: 100%;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .home-hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 270px;
    padding-bottom: 54px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .feature-grid,
  .service-grid,
  .release-grid,
  .system-grid,
  .pillars-grid,
  .timeline,
  .artifact-board,
  .large-board {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 300px;
  }

  .footer-grid {
    display: block;
  }

  .site-footer nav {
    margin-top: 20px;
  }

  .page-hero {
    min-height: auto;
  }

  .mock-cards {
    display: grid;
    gap: 14px;
    min-height: 0;
  }

  .mock-card {
    position: static;
    width: 100%;
    min-height: 220px;
  }
}

/* Premium visual upgrade */
body {
  min-height: 100vh;
  background:
    linear-gradient(135deg, #130f0b 0%, #1a1510 45%, #0f1818 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 250, 242, 0.03) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(255, 250, 242, 0.025) 0 1px, transparent 1px 84px),
    linear-gradient(115deg, rgba(208, 154, 45, 0.08), transparent 34%, rgba(17, 100, 102, 0.1) 68%, transparent);
  opacity: 0.88;
}

main {
  overflow: hidden;
}

.site-header {
  transition: min-height 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.site-header.scrolled {
  min-height: 66px;
  background: rgba(14, 12, 10, 0.96);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.brand-mark {
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -30% -90%;
  background: linear-gradient(100deg, transparent 38%, rgba(255, 250, 242, 0.75), transparent 62%);
  transform: translateX(-80%);
  animation: markSheen 5.5s ease-in-out infinite;
}

.home-hero {
  min-height: calc(100svh - 76px);
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(12, 13, 12, 0.94) 0%, rgba(12, 13, 12, 0.8) 38%, rgba(12, 13, 12, 0.2) 100%),
    url("assets/hero-universe.png");
  background-position: center;
  background-size: cover;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(15, 12, 10, 0.12) 42%, rgba(15, 12, 10, 0.78) 100%),
    repeating-linear-gradient(90deg, rgba(255, 250, 242, 0.04) 0 1px, transparent 1px 118px);
}

.hero-overlay {
  z-index: 2;
  opacity: 0.55;
  animation: gridDrift 26s linear infinite;
}

.hero-constellation {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.48;
  mix-blend-mode: screen;
}

.hero-content {
  z-index: 3;
  padding-top: clamp(72px, 10vw, 128px);
  padding-bottom: clamp(72px, 10vw, 128px);
}

.hero-content::before {
  content: "";
  display: block;
  width: 96px;
  height: 2px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--gold), rgba(17, 100, 102, 0.15));
  box-shadow: 0 0 26px rgba(208, 154, 45, 0.55);
}

.hero-copy {
  text-wrap: pretty;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 250, 242, 0.84);
  background: rgba(255, 250, 242, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  font-size: 0.84rem;
  font-weight: 850;
}

.signal-strip {
  overflow: hidden;
  color: var(--white);
  background: #120f0c;
  border-block: 1px solid rgba(255, 250, 242, 0.12);
}

.signal-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 14px 0;
  animation: signalTrack 42s linear infinite;
}

.signal-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-track span::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  background: rgba(208, 154, 45, 0.55);
}

.visual-suite {
  padding: clamp(56px, 9vw, 118px) 0;
  color: var(--white);
  background:
    linear-gradient(180deg, #120f0c 0%, #1a1510 58%, #120f0c 100%);
}

.visual-suite-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 18px;
}

.image-story {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  background: #17130f;
}

.image-story-large {
  grid-row: span 2;
  min-height: 620px;
}

.image-story img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease, filter 900ms ease;
}

.image-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.02) 0%, rgba(10, 9, 8, 0.22) 42%, rgba(10, 9, 8, 0.86) 100%),
    linear-gradient(90deg, rgba(17, 100, 102, 0.15), transparent 45%, rgba(208, 154, 45, 0.1));
}

.image-story:hover img,
.image-story:focus-within img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.image-story div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.image-story span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.image-story h2,
.image-story h3 {
  margin-bottom: 8px;
  color: var(--white);
  line-height: 1;
}

.image-story h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.image-story h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
}

.image-story p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.78);
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.24) 100%),
    repeating-linear-gradient(90deg, rgba(255, 250, 242, 0.035) 0 1px, transparent 1px 96px);
}

.page-hero > .wrap {
  position: relative;
  z-index: 1;
}

.about-hero {
  background-image:
    linear-gradient(90deg, rgba(49, 75, 63, 0.96) 0%, rgba(49, 75, 63, 0.78) 48%, rgba(49, 75, 63, 0.5) 100%),
    url("assets/vineyard-maker.png");
  background-position: center;
  background-size: cover;
}

.teal-hero {
  background-image:
    linear-gradient(90deg, rgba(17, 100, 102, 0.96), rgba(12, 13, 12, 0.62)),
    url("assets/hero-universe.png");
  background-position: center;
  background-size: cover;
}

.dia-hero,
.games-hero {
  background-image:
    linear-gradient(90deg, rgba(30, 15, 27, 0.96), rgba(30, 15, 27, 0.72), rgba(30, 15, 27, 0.35)),
    url("assets/diafight-cards.png");
  background-position: center;
  background-size: cover;
}

.music-hero {
  background-image:
    linear-gradient(90deg, rgba(33, 18, 12, 0.96), rgba(33, 18, 12, 0.7), rgba(33, 18, 12, 0.26)),
    url("assets/music-campaign.png");
  background-position: center;
  background-size: cover;
}

.partner-hero {
  background-image:
    linear-gradient(90deg, rgba(11, 19, 19, 0.96), rgba(11, 19, 19, 0.72), rgba(11, 19, 19, 0.3)),
    url("assets/engagement-engine.png");
  background-position: center;
  background-size: cover;
}

.feature-image-section {
  padding: clamp(64px, 9vw, 118px) 0;
  background: var(--paper);
}

.feature-image-section-dark {
  color: var(--white);
  background:
    linear-gradient(180deg, #102121 0%, #17130f 100%);
}

.feature-image-section-dark p {
  color: rgba(255, 250, 242, 0.76);
}

.feature-image-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: center;
}

.feature-image-grid.reverse {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.feature-image-grid.reverse img {
  order: 2;
}

.feature-image-grid img {
  width: 100%;
  min-height: 420px;
  max-height: 640px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(23, 19, 15, 0.22);
}

.feature-image-grid h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  line-height: 0.98;
}

.feature-image-grid p {
  font-size: 1.08rem;
}

.image-break {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  color: var(--white);
  overflow: hidden;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.image-break::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.92), rgba(10, 9, 8, 0.62), rgba(10, 9, 8, 0.22)),
    repeating-linear-gradient(90deg, rgba(255, 250, 242, 0.035) 0 1px, transparent 1px 102px);
}

.image-break > .wrap {
  position: relative;
  z-index: 1;
}

.image-break h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.96;
}

.image-break p {
  color: rgba(255, 250, 242, 0.78);
  font-size: 1.08rem;
}

.image-break-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: end;
}

.image-break-hero {
  background-image: url("assets/hero-universe.png");
}

.image-break-engine {
  background-image: url("assets/engagement-engine.png");
}

.image-break-vineyard {
  background-image: url("assets/vineyard-maker.png");
}

.founder-portrait-stack {
  position: relative;
  min-height: 660px;
}

.founder-grid .founder-portrait {
  position: relative;
  z-index: 2;
  width: 76%;
  height: 600px;
  object-position: 50% 18%;
}

.founder-grid .founder-texture {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 58%;
  height: 300px;
  object-position: center;
  filter: saturate(1.05);
}

.founder-portrait-stack::before {
  content: "";
  position: absolute;
  left: 8%;
  bottom: 12%;
  width: 76%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208, 154, 45, 0.85), transparent);
  box-shadow: 0 0 34px rgba(208, 154, 45, 0.48);
  z-index: 3;
}

.feature-card,
.service-grid article,
.release-card,
.system-grid article,
.pillars-grid article,
.timeline article,
.contact-panel,
.media-panel,
.song-list article,
.cta-panel,
.artifact-card,
.mock-card {
  position: relative;
  overflow: hidden;
}

.service-grid article::before,
.release-card::before,
.system-grid article::before,
.pillars-grid article::before,
.timeline article::before,
.contact-panel::before,
.media-panel::before,
.song-list article::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--berry));
  opacity: 0.82;
}

.feature-card::after,
.artifact-card::after,
.mock-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 250, 242, 0.12) 45%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 800ms ease;
}

.feature-card:hover::after,
.artifact-card:hover::after,
.mock-card:hover::after {
  transform: translateX(110%);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-tilt].is-visible {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--lift, 0));
  transition: opacity 720ms ease, transform 180ms ease, box-shadow 260ms ease;
}

[data-tilt].is-visible:hover {
  --lift: -4px;
  box-shadow: 0 30px 90px rgba(23, 19, 15, 0.2);
}

@keyframes signalTrack {
  from {
    transform: translateX(0);
  }

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

@keyframes gridDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(120px);
  }
}

@keyframes markSheen {
  0%,
  55% {
    transform: translateX(-80%);
  }

  70%,
  100% {
    transform: translateX(80%);
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .home-hero {
    min-height: 84svh;
    background-image:
      linear-gradient(180deg, rgba(12, 13, 12, 0.28) 0%, rgba(12, 13, 12, 0.84) 50%, rgba(12, 13, 12, 0.98) 100%),
      url("assets/hero-universe.png");
    background-position: center;
  }

  .visual-suite-grid,
  .feature-image-grid,
  .feature-image-grid.reverse,
  .image-break-grid {
    grid-template-columns: 1fr;
  }

  .feature-image-grid.reverse img {
    order: 0;
  }

  .image-story-large {
    min-height: 520px;
  }

  .founder-portrait-stack {
    min-height: 620px;
  }
}

@media (max-width: 660px) {
  .hero-signals {
    display: grid;
    grid-template-columns: 1fr;
  }

  .signal-track {
    animation-duration: 34s;
  }

  .visual-suite-grid {
    grid-auto-rows: auto;
  }

  .image-story,
  .image-story-large {
    min-height: 380px;
  }

  .feature-image-grid img {
    min-height: 300px;
  }

  .image-break {
    padding: 72px 0;
  }

  .founder-portrait-stack {
    min-height: 560px;
  }

  .founder-grid .founder-portrait {
    width: 86%;
    height: 500px;
  }

  .founder-grid .founder-texture {
    width: 68%;
    height: 230px;
  }
}
