:root {
  --bg: #080808;
  --bg-raised: #111111;
  --ink: #f3eee6;
  --muted: #b4ada3;
  --accent: #c86a52;
  --accent-soft: rgba(200, 106, 82, 0.16);
  --line: rgba(243, 238, 230, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "Helvetica Neue", sans-serif;
  --max: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(200, 106, 82, 0.16), transparent 48%),
    radial-gradient(ellipse at 100% 80%, rgba(200, 106, 82, 0.05), transparent 36%);
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site {
  position: relative;
  z-index: 1;
}

.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.wordmark {
  text-decoration: none;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
}

.wordmark span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.hero {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 5rem);
  padding: 3rem 0 5rem;
  text-align: center;
}

.kicker {
  margin: 0 0 1.25rem;
  color: var(--accent);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.4rem, 12vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.hero h1 em {
  display: block;
  font-style: italic;
  color: var(--accent);
}

.hero .sub {
  margin: 1.6rem auto 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.actions-start {
  justify-content: flex-start;
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.button-primary {
  color: #140b08;
  background: var(--ink);
}

.button-primary:hover {
  background: #fff;
}

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

.button-ghost:hover {
  border-color: rgba(243, 238, 230, 0.35);
}

.section {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  color: var(--muted);
}

.panel {
  display: grid;
  gap: 1.5rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: var(--bg-raised);
  box-shadow: var(--shadow);
}

.spotify-embed {
  display: block;
  width: 100%;
  min-height: 352px;
  border: 0;
  border-radius: 12px;
}

.links {
  display: grid;
  gap: 0.85rem;
}

.link-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
}

.link-card strong {
  display: block;
}

.link-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.link-card em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.86rem;
}

.link-card:hover {
  border-color: rgba(200, 106, 82, 0.5);
  background: var(--accent-soft);
}

.soon {
  opacity: 0.7;
}

.contact-line {
  font-size: 1.35rem;
}

.contact-line a {
  color: var(--ink);
}

.legal {
  max-width: 42rem;
  padding: 2.5rem 0 5rem;
}

.legal h1 {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 500;
}

.legal .updated {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal h2 {
  margin: 2rem 0 0.6rem;
  font-size: 1.2rem;
}

.legal p,
.legal li {
  color: #cfc8bc;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
}

.site-footer a {
  color: var(--muted);
}

@media (max-width: 640px) {
  .nav {
    gap: 0.85rem;
  }

  .panel,
  .link-card {
    border-radius: 1rem;
  }

  .contact-line {
    font-size: 1.1rem;
    overflow-wrap: anywhere;
  }
}
