:root {
  --bg: #070707;
  --bg-soft: #0f0f11;
  --text: #eee7d8;
  --muted: #a99f8f;
  --gold: #b89b5e;
  --gold-soft: rgba(184, 155, 94, 0.18);
  --line: rgba(238, 231, 216, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(184, 155, 94, 0.09), transparent 34rem),
    linear-gradient(180deg, #090909 0%, #050505 100%);
  color: var(--text);
  font-family: Inter, Helvetica, Arial, sans-serif;
  letter-spacing: 0.01em;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  color: var(--text);
}

.nav {
  display: flex;
  gap: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

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

.hero {
  min-height: 100vh;
  padding: 12rem 6vw 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 980px;
}

.eyebrow,
.section-label {
  color: var(--gold);
  text-transform: lowercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  margin-bottom: 1.4rem;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  margin: 0;
}

h1 {
  font-size: clamp(3.4rem, 10vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 900px;
}

.hero-text {
  max-width: 620px;
  margin: 2rem 0 2.8rem;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.8;
}

.button {
  width: fit-content;
  padding: 0.95rem 1.45rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  text-transform: lowercase;
  transition: all 0.25s ease;
}

.button:hover {
  background: var(--gold);
  color: #050505;
}

.section {
  padding: 7rem 6vw;
  border-top: 1px solid var(--line);
  max-width: 1180px;
}

.section h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  max-width: 820px;
  margin-bottom: 2rem;
}

.section p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.05rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}

.card {
  min-height: 280px;
  padding: 2rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--gold-soft);
  filter: blur(40px);
}

.card-number {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}

.card h3 {
  margin-top: 5rem;
  font-size: 2.5rem;
  letter-spacing: -0.04em;
}

.card p {
  margin: 0.8rem 0 1.5rem;
}

.text-link {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.date-list {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.date-item {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.date-item span {
  color: var(--muted);
  letter-spacing: 0.12em;
}

.date-item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.footer {
  .listen-section {
  padding: 7rem 6vw;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(184, 155, 94, 0.06), transparent 34rem),
    #070707;
}

.listen-section .section-label {
  margin-bottom: 2.8rem;
}

.listen-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.8rem, 4vw, 4.2rem);
  flex-wrap: wrap;
}

.listen-link {
  color: var(--text);
  opacity: 0.84;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: Inter, Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: lowercase;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.listen-link:hover {
  color: var(--gold);
  opacity: 1;
  transform: translateY(-2px);
}

.listen-note {
  margin: 2.6rem auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}  padding: 3rem 6vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 1.4rem;
}

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

.about-section {
  position: relative;
  max-width: none;
  min-height: 100vh;
  padding: 9rem 6vw 11rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("31966C3D-FCA3-438F-83DE-71766E5E115D.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(7, 7, 7, 0.88) 0%,
      rgba(7, 7, 7, 0.72) 34%,
      rgba(7, 7, 7, 0.38) 62%,
      rgba(7, 7, 7, 0.62) 100%
    );
  z-index: 1;
}

.about-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(7, 7, 7, 0.02) 0%,
      rgba(7, 7, 7, 0.08) 38%,
      rgba(7, 7, 7, 0.38) 68%,
      rgba(7, 7, 7, 0.82) 88%,
      rgba(7, 7, 7, 1) 100%
    );
  z-index: 2;
}

.about-content {
  position: relative;
  z-index: 3;
  max-width: 1180px;
}

.about-content h2,
.about-content p {
  max-width: 760px;
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
    padding: 1.2rem 6vw;
    align-items: flex-start;
    gap: 1rem;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero {
    padding-top: 12rem;
  }

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

  .date-item,
  .footer {
    flex-direction: column;
  }
}
