.section-shell {
  width: var(--content-width);
  margin: 0 auto;
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.section-head-split {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  align-items: start;
  gap: 28px;
}

.section-side-note {
  align-self: start;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px 26px;
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.48);
  border: 1px solid rgba(107, 77, 52, 0.12);
  box-shadow: var(--shadow-md);
}

.section-side-note p {
  color: var(--text-soft);
  line-height: 1.72;
  max-width: 42ch;
}

.side-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.side-pill-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(196, 132, 74, 0.08);
  border: 1px solid rgba(139, 90, 60, 0.22);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 90, 60, 0.08), var(--bronze));
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
  max-width: 16ch;
}

.section-title em {
  color: var(--bronze);
  font-style: italic;
}

.section-copy {
  max-width: 58ch;
  color: var(--text-soft);
  line-height: 1.85;
}

.site-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1220px, calc(100% - 28px));
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(51, 71, 52, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 52px rgba(20, 35, 20, 0.28);
  backdrop-filter: blur(18px);
  transition: top 0.35s ease, padding 0.35s ease, background 0.35s ease;
}

.site-nav.is-scrolled {
  top: 10px;
  padding: 12px 18px;
  background: rgba(37, 51, 37, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(236, 219, 195, 0.22), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(214, 190, 161, 0.28);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 0.9;
  color: var(--text-inverse);
  letter-spacing: -0.03em;
}

.brand-copy span {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links,
.footer-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a {
  color: rgba(248, 241, 231, 0.72);
}

.nav-playlist-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-playlist-link svg {
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 102;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-inverse);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.site-footer {
  padding: 0 0 48px;
}

.footer-shell {
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.footer-brand span,
.footer-copy {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(66, 46, 32, 0.55);
}

.footer-links a {
  color: rgba(66, 46, 32, 0.72);
}

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