* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #11100c;
  --panel: #1c1a14;
  --panel-light: #272217;
  --gold: #d8ad4f;
  --gold-soft: #f3d486;
  --cream: #f5ead0;
  --muted: #b6a98c;
  --line: rgba(216, 173, 79, 0.22);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--cream);
  line-height: 1.7;
}

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

.hero {
  min-height: 92vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(216, 173, 79, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.78)),
    url("assets/hero-editora.jpg");
  background-size: cover;
  background-position: center;
  padding: 28px clamp(26px, 5vw, 72px);
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

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

.brand-symbol {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(17, 16, 12, 0.72);
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-cta {
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(17, 16, 12, 0.55);
}

.hero-content {
  max-width: 820px;
  margin-top: auto;
  margin-bottom: 10vh;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  margin-bottom: 14px;
}

h1, h2, h3 {
  line-height: 1.08;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.55rem, 5.6vw, 5.25rem);
  max-width: 920px;
  margin-bottom: 28px;
  letter-spacing: -0.035em;
}

.hero-text {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  margin-bottom: 34px;
}

.button {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #17120a;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 15px 35px rgba(216, 173, 79, 0.24);
}

.button.secondary {
  margin-top: 28px;
  background: transparent;
  color: var(--gold-soft);
  border: 1px solid var(--gold);
  box-shadow: none;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.section-title.center {
  text-align: center;
  margin-bottom: 54px;
}

.intro p,
.artist-info p,
.offer p,
.offer li {
  color: var(--muted);
}

.artists {
  padding-top: 104px;
}

.artist-card {
  background: linear-gradient(135deg, rgba(39, 34, 23, 0.98), rgba(20, 18, 13, 0.98));
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  margin-bottom: 34px;
  box-shadow: var(--shadow);
}

.artist-card.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.artist-card.reverse .artist-image {
  order: 2;
}

.artist-image {
  min-height: 430px;
  background: #242014;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.05);
}

.artist-info {
  padding: clamp(32px, 6vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag {
  display: inline-block;
  align-self: flex-start;
  border: 1px solid var(--line);
  color: var(--gold-soft);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 0.8rem;
  margin-bottom: 22px;
}

.artist-info h3 {
  font-size: clamp(2rem, 4vw, 4.4rem);
  margin-bottom: 24px;
}

.offer {
  padding-top: 64px;
}

.offer-box {
  background:
    linear-gradient(135deg, rgba(216, 173, 79, 0.10), transparent 48%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: clamp(32px, 7vw, 74px);
  box-shadow: var(--shadow);
}

.offer-box h2 {
  font-size: clamp(2.2rem, 5vw, 5rem);
  margin-bottom: 24px;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 34px;
}

.offer-grid div {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
}

.offer-grid h4 {
  color: var(--gold-soft);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.offer ul {
  list-style-position: inside;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
  }

  .nav-cta {
    display: none;
  }

  .intro,
  .artist-card,
  .artist-card.reverse,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .artist-card.reverse .artist-image {
    order: 0;
  }

  .artist-image {
    min-height: 320px;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 86vh;
    padding: 22px 20px;
  }

  h1 {
    font-size: 2.65rem;
    letter-spacing: -0.025em;
  }

  .artist-info,
  .offer-box {
    padding: 28px;
  }
}
