:root {
  color-scheme: light;
  --bg: #f5f2ec;
  --ink: #17191d;
  --muted: #626a73;
  --line: rgba(23, 25, 29, 0.12);
  --panel: rgba(255, 255, 255, 0.76);
  --accent: #8a6a3f;
  --accent-strong: #3f3122;
  --shadow: 0 24px 70px rgba(31, 35, 41, 0.14);
}

.theme-media {
  --bg: #101827;
  --ink: #f7f8fc;
  --muted: #bdc7d9;
  --line: rgba(255, 255, 255, 0.13);
  --panel: rgba(19, 30, 50, 0.74);
  --accent: #7c91ff;
  --accent-strong: #4156d6;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.theme-assets {
  --bg: #061014;
  --ink: #eaf7f7;
  --muted: #98b3b7;
  --line: rgba(145, 213, 210, 0.16);
  --panel: rgba(7, 23, 27, 0.78);
  --accent: #31d1c6;
  --accent-strong: #12827f;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(189, 151, 91, 0.24), transparent 30rem),
    radial-gradient(circle at 88% 6%, rgba(117, 92, 52, 0.16), transparent 36rem),
    linear-gradient(135deg, #f7f4ef 0%, var(--bg) 100%);
}

.theme-media {
  background:
    radial-gradient(circle at 8% 4%, rgba(124, 145, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 10%, rgba(244, 193, 109, 0.15), transparent 32rem),
    linear-gradient(135deg, #101827 0%, #1d2640 55%, #111827 100%);
}

.theme-assets {
  background:
    radial-gradient(circle at 12% 12%, rgba(49, 209, 198, 0.18), transparent 28rem),
    radial-gradient(circle at 90% 8%, rgba(144, 224, 215, 0.12), transparent 32rem),
    linear-gradient(135deg, #051013 0%, #0b1b20 48%, #04080a 100%);
}

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

.site-header,
.hero,
.section,
.contact-panel,
.footer {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 12px 30px rgba(35, 74, 67, 0.22);
}

.theme-media .brand-mark {
  border-radius: 999px;
}

.theme-assets .brand-mark {
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.84fr);
  gap: 48px;
  align-items: center;
  padding: 74px 0 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  font-weight: 500;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

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

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

.button.primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.button.ghost {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.42);
}

.showcase {
  position: relative;
  min-height: 520px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.theme-media .showcase {
  border-radius: 22px;
}

.theme-assets .showcase {
  border-radius: 4px;
}

.hero-photo {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: cover;
  border-radius: inherit;
  filter: saturate(0.96) contrast(1.04);
}

.theme-assets .hero-photo {
  filter: saturate(0.84) contrast(1.08) brightness(0.78);
}

.showcase::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.56));
  pointer-events: none;
}

.player-card,
.floating-note {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(9, 16, 26, 0.66);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.player-card {
  left: 38px;
  right: 38px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 14px 16px;
  border-radius: 14px;
}

.play-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  cursor: pointer;
}

.player-card strong,
.player-card span,
.floating-note strong,
.floating-note span {
  display: block;
}

.player-card span,
.floating-note span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.floating-note {
  top: 38px;
  right: 38px;
  max-width: 220px;
  padding: 16px;
  border-radius: 12px;
}

.section {
  padding: 70px 0;
}

.section.compact {
  padding-top: 34px;
}

.section-title {
  max-width: 720px;
  margin-bottom: 28px;
}

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

.card {
  min-height: 320px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 8px;
}

.theme-assets .card,
.theme-assets .card img {
  border-radius: 4px;
}

.card-number {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 800;
}

.card p {
  color: var(--muted);
  line-height: 1.58;
}

.card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(300px, 1fr);
  gap: 36px;
  align-items: start;
}

.feed {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  overflow: hidden;
}

.feed-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.feed-row:last-child {
  border-bottom: 0;
}

.feed-row span {
  color: var(--muted);
}

.feed-row a {
  color: var(--accent);
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 48px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.contact-panel p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.56;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .showcase {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .contact-panel,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 17px;
  }

  .player-card {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .floating-note {
    top: 24px;
    right: 24px;
  }
}
