:root {
  --ink: #1a1410;
  --ink-soft: #2a211c;
  --panel: #241c17;
  --line: rgba(232, 213, 181, 0.14);
  --cream: #f4ead8;
  --cream-dim: #d8c7ab;
  --amber: #c4783a;
  --amber-soft: #e0a05a;
  --gold: #d4a574;
  --sage: #8a9a74;
  --ok: #c9b48a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

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

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(26, 20, 16, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--cream-dim);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(180deg, #e0a05a, #c4783a);
  color: #1a1410;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--cream);
  background: rgba(255,255,255,0.03);
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: end stretch;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,20,16,0.15) 0%, rgba(26,20,16,0.35) 40%, rgba(26,20,16,0.92) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(196,120,58,0.18), transparent 50%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
}

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

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.92;
  max-width: 12ch;
}

.lede {
  max-width: 38ch;
  margin: 18px 0 28px;
  color: var(--cream-dim);
  font-size: 1.15rem;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Sections */
section { padding: 88px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head p {
  max-width: 42ch;
  color: var(--cream-dim);
}

h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); }

/* Listen */
.listen-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.player-card, .note-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.player-frame {
  aspect-ratio: 16 / 9;
  background: #111;
}

.player-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.player-meta, .note-card { padding: 22px; }

.player-meta h3, .note-card h3 { font-size: 1.7rem; margin-bottom: 8px; }

.note-card p { color: var(--cream-dim); margin-bottom: 16px; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

.chip {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--cream-dim);
}

/* Seasons */
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.season {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
}

.season img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.season:hover img { transform: scale(1.05); }

.season::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(16,12,10,0.88) 100%);
}

.season-copy {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
}

.season-copy span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

/* Shop */
.shop-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
}

.shop-hero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product:hover {
  border-color: rgba(212,165,116,0.45);
  transform: translateY(-2px);
}

.product .tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.product h3 { font-size: 1.55rem; margin-bottom: 8px; }

.product p { color: var(--cream-dim); flex: 1; }

.product .go {
  margin-top: 16px;
  color: var(--amber-soft);
  font-weight: 600;
  font-size: 0.92rem;
}

.fineprint {
  margin-top: 22px;
  color: var(--cream-dim);
  font-size: 0.88rem;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
  color: var(--cream-dim);
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.foot a { color: var(--cream-dim); }

@media (max-width: 900px) {
  .listen-grid,
  .shop-hero,
  .season-grid,
  .product-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .listen-grid,
  .shop-hero,
  .season-grid,
  .product-grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  section { padding: 64px 0; }
}
