:root {
  color-scheme: dark;
  --bg: #11100d;
  --ink: #f7f1e5;
  --muted: #c8bda9;
  --line: rgba(247, 241, 229, 0.18);
  --red: #d84f3f;
  --gold: #d6a94f;
  --green: #67956f;
  --panel: rgba(255, 255, 255, 0.055);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(216, 79, 63, 0.16), transparent 32%),
    radial-gradient(circle at 82% 70%, rgba(103, 149, 111, 0.14), transparent 34%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.page {
  min-height: 100vh;
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 30px;
}

.hero__media {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.ring,
.drumhead {
  position: absolute;
  border-radius: 50%;
}

.ring--outer {
  width: 92%;
  height: 92%;
  border: 2px solid rgba(214, 169, 79, 0.52);
}

.ring--middle {
  width: 70%;
  height: 70%;
  border: 20px solid rgba(216, 79, 63, 0.7);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.ring--inner {
  width: 48%;
  height: 48%;
  border: 1px solid rgba(247, 241, 229, 0.35);
}

.drumhead {
  width: 28%;
  height: 28%;
  background: linear-gradient(145deg, #f6dfb1, #b9863f);
  box-shadow: inset 0 0 28px rgba(17, 16, 13, 0.28);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.9;
  margin-bottom: 22px;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  max-width: 680px;
}

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

.button {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #17120a;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 750;
  text-decoration: none;
}

.button--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 70px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}

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

article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

article p {
  color: var(--muted);
  margin-bottom: 0;
}

@media (max-width: 780px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .hero__media {
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
  }

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