:root {
  --bg: #2b0718;
  --bg-deep: #18030f;
  --panel: rgba(83, 16, 42, 0.72);
  --text: #fff8f0;
  --muted: #ead9ca;
  --gold: #d8af5e;
  --gold-soft: #f2dfba;
  --line: rgba(216, 175, 94, 0.2);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --container: min(1120px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 175, 94, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(185, 39, 90, 0.22), transparent 20%),
    linear-gradient(180deg, #4d0b26 0%, var(--bg) 42%, var(--bg-deep) 100%);
}

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

.shell,
.topbar,
.hero,
.content,
.footer {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

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

.brand img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(216, 175, 94, 0.65);
}

.brand-kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand-title {
  display: inline-flex;
  flex-direction: column;
  font-weight: 800;
  line-height: 0.95;
  color: var(--gold-soft);
}

.home-link {
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  padding: 26px 0 20px;
}

.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
}

.hero h1 {
  margin: 14px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.94;
}

.hero p {
  max-width: 760px;
  color: rgba(255, 245, 236, 0.82);
  line-height: 1.85;
  font-size: 1.05rem;
}

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

.card {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(113, 22, 55, 0.68), rgba(43, 7, 24, 0.84)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold-soft);
}

.card p {
  margin: 0;
  color: rgba(255, 245, 236, 0.82);
  line-height: 1.85;
}

.footer {
  padding: 0 0 30px;
  text-align: center;
  color: rgba(255, 245, 236, 0.68);
}

.footer a {
  color: var(--gold-soft);
}

@media (max-width: 760px) {
  .topbar,
  .hero,
  .content,
  .footer {
    width: min(100vw - 24px, 1120px);
  }

  .topbar,
  .content {
    grid-template-columns: 1fr;
  }

  .topbar {
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .content {
    display: grid;
  }

  .home-link {
    width: 100%;
    text-align: center;
  }
}
