/* =========================================================
   Carmelo Gattuso — Exploration Standards
   Editorial vintage jazz · paper + ink + brass
   ========================================================= */

/* ---------- Variables ---------- */
:root {
  --ink: #0a0a0a;
  --ink-soft: #1c1c1c;
  --paper: #f3ecdf;
  --paper-warm: #ece2cf;
  --cream: #e3d8bf;
  --brass: #b8895c;
  --brass-deep: #8a5d35;
  --ember: #c75c2a;
  --midnight: #131319;
  --midnight-2: #1d1d24;
  --ash: #6b665e;
  --ash-soft: #a39c8e;

  --serif: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --sans: "Manrope", "Helvetica Neue", system-ui, sans-serif;
  --hand: "Caveat", "Brush Script MT", cursive;

  --shadow-soft: 0 30px 80px -40px rgba(10,10,10,0.35);
  --grid-gap: clamp(20px, 4vw, 48px);

  --radius: 2px;
  --hairline: 1px solid rgba(10,10,10,0.18);
  --hairline-light: 1px solid rgba(243,236,223,0.18);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "ss01";
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
em, i { font-style: italic; }
.nowrap { white-space: nowrap; }

/* Paper grain texture (SVG inline) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.skip {
  position: absolute;
  top: -100px; left: 0;
  background: var(--ink); color: var(--paper);
  padding: 12px 18px; z-index: 1001;
  font-size: 14px; letter-spacing: 0.04em;
}
.skip:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
  border-radius: 2px;
}

/* =========================================================
   HEADER & NAV
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(243, 236, 223, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(10,10,10,0.08);
  padding: 12px 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 44px; height: auto;
  filter: drop-shadow(0 1px 0 rgba(10,10,10,0.04));
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 2px;
}

.nav-toggle {
  position: relative;
  width: 48px; height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s cubic-bezier(.7,0,.2,1), opacity 0.3s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.site-nav {
  position: fixed;
  inset: 0;
  height: 100vh;
  height: 100svh;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(.7,0,.2,1), visibility 0s 0.55s;
  z-index: 105;
  visibility: hidden;
  overflow-y: auto;
}
.site-nav.is-open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.55s cubic-bezier(.7,0,.2,1), visibility 0s 0s;
}
.nav-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 24px;
}
.site-nav ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 40px;
}
.site-nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 10px 0;
  font-family: var(--serif);
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  position: relative;
  transition: color 0.3s, transform 0.3s;
  min-height: 44px;
}
.site-nav a em {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ash);
  font-feature-settings: "tnum";
}
.site-nav a:hover { color: var(--ember); transform: translateX(8px); }

.nav-foot {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: var(--hairline);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-height: 44px;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--ember); }

@media (min-width: 880px) {
  .site-header { padding: 24px clamp(28px, 4vw, 56px); }
  .site-header.is-scrolled { padding: 14px clamp(28px, 4vw, 56px); }
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    inset: auto;
    height: auto;
    background: transparent;
    padding: 0;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    justify-content: flex-end;
    visibility: visible;
    overflow: visible;
  }
  .site-nav .nav-eyebrow,
  .site-nav .nav-foot { display: none; }
  .site-nav ul {
    flex-direction: row;
    gap: 28px;
    margin: 0;
    align-items: center;
  }
  .site-nav a {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 0;
    gap: 6px;
    min-height: auto;
  }
  .site-nav a em {
    font-size: 11px;
    color: var(--brass);
    font-weight: 600;
  }
  .site-nav a:hover { transform: none; }
  .site-nav a::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--ink);
    transition: width 0.3s;
  }
  .site-nav a:hover::after { width: 100%; }
}

/* =========================================================
   BUTTONS (shared)
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  min-height: 48px;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.25s;
  font-family: var(--sans);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { flex-shrink: 0; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--ember); border-color: var(--ember); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-on-dark.btn-primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn-on-dark.btn-primary:hover { background: var(--ember); color: var(--paper); border-color: var(--ember); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 22px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(184,137,92,0.18), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(199,92,42,0.10), transparent 55%),
    var(--paper);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 28px;
  z-index: 2;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  font-feature-settings: "tnum";
  opacity: 0;
  animation: rise 0.9s 0.1s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-divider {
  flex: 0 0 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(64px, 18vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-feature-settings: "ss01", "ss02";
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
  margin: 0;
}
.hero-line { display: block; overflow: hidden; }
.hero-line span {
  display: block;
  transform: translateY(102%);
  animation: rise-clean 1s cubic-bezier(.7,0,.2,1) forwards;
}
.hero-line-1 span { animation-delay: 0.15s; }
.hero-line-2 span {
  animation-delay: 0.35s;
  font-weight: 800;
  font-style: italic;
  font-feature-settings: "ss01";
  color: var(--ink);
  background: linear-gradient(180deg, var(--ink) 60%, var(--brass-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tag {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(17px, 2.4vw, 22px);
  line-height: 1.45;
  font-weight: 300;
  max-width: 36ch;
  color: var(--ink-soft);
  padding-left: 24px;
  opacity: 0;
  animation: rise 0.9s 0.6s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-tag::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--brass);
  font-weight: 700;
}
.hero-tag em {
  font-style: italic;
  color: var(--brass-deep);
  font-feature-settings: "ss01";
}
.hero-tag-mark { display: none; }

.hero-portrait {
  position: relative;
  margin: 4px 0 8px;
  opacity: 0;
  animation: fade 1.2s 0.5s ease forwards;
}
.hero-portrait img {
  width: 100%;
  aspect-ratio: 1100 / 1100;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.04) saturate(0.95);
  border-radius: 1px;
  box-shadow: var(--shadow-soft);
}
.hero-portrait figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}
.hero-portrait-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--ember);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  opacity: 0;
  animation: rise 0.9s 0.85s cubic-bezier(.2,.7,.2,1) forwards;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  opacity: 0;
  animation: fade 1.2s 1.4s ease forwards;
}
.hero-scroll-line {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  position: relative;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  inset-block: -1px;
  width: 24%;
  background: var(--ember);
  animation: travel 3s 1.6s cubic-bezier(.5,.05,.5,1) infinite;
}

.hero-decor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(60px, 14vw, 180px);
  font-weight: 300;
  font-style: italic;
  color: rgba(10, 10, 10, 0.05);
  letter-spacing: -0.03em;
  line-height: 0.85;
  pointer-events: none;
  transform: translateY(20%);
  user-select: none;
}
.decor-text {
  display: inline-block;
  animation: marquee 38s linear infinite;
  padding-right: 1em;
}

/* HERO desktop */
@media (min-width: 880px) {
  .hero {
    padding: 140px clamp(40px, 5vw, 80px) 80px;
    min-height: 100vh;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    grid-template-rows: auto auto auto auto;
    gap: 24px 56px;
    align-items: end;
  }
  .hero-meta { grid-column: 1 / 2; grid-row: 1; }
  .hero-title {
    grid-column: 1 / 2;
    grid-row: 2;
    font-size: clamp(88px, 11vw, 168px);
  }
  .hero-tag {
    grid-column: 1 / 2;
    grid-row: 3;
    margin-top: 6px;
  }
  .hero-actions {
    grid-column: 1 / 2;
    grid-row: 4;
  }
  .hero-portrait {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    margin: 0;
    align-self: end;
  }
  .hero-portrait img {
    aspect-ratio: 4 / 5;
    object-position: center 20%;
  }
  .hero-scroll {
    grid-column: 1 / -1;
    grid-row: 5;
    margin-top: 36px;
  }
}

/* =========================================================
   GENERIC SECTION
   ========================================================= */
.section {
  position: relative;
  padding: 80px 22px;
}
.section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: var(--hairline);
}
.section-head.light { border-bottom-color: rgba(243,236,223,0.18); }
.section-num {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  line-height: 1;
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash);
}
.section-head.light .section-eyebrow { color: var(--ash-soft); }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 6.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-feature-settings: "ss01";
  font-variation-settings: "opsz" 144, "SOFT" 100;
  max-width: 16ch;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brass-deep);
}
.section-title-light { color: var(--paper); }
.section-title-light em { color: var(--brass); }

@media (min-width: 880px) {
  .section { padding: 140px clamp(40px, 5vw, 80px); }
  .section-num { font-size: 44px; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.section-about { background: var(--paper); }

.about-grid {
  display: grid;
  gap: 36px;
}
.about-body {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-body .lede {
  font-weight: 400;
  font-size: 19px;
  font-style: italic;
  color: var(--ink);
}
.about-body em { font-style: italic; color: var(--brass-deep); }
.about-body .signature {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.signature-line {
  font-family: var(--hand);
  font-size: 38px;
  line-height: 1;
  color: var(--ink);
}
.signature-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
  font-style: normal;
}

.about-figure {
  position: relative;
  margin: 8px 0;
}
.about-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 20%;
  filter: contrast(1.02) saturate(0.92);
  box-shadow: var(--shadow-soft);
}
.about-figure figcaption {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 24px 0;
  border-top: var(--hairline);
  border-bottom: var(--hairline);
}
.about-stats .stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(40px, 9vw, 60px);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--ink);
  font-feature-settings: "lnum", "tnum";
}
.about-stats .stat-lbl {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  line-height: 1.4;
}

@media (min-width: 880px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    grid-template-rows: auto auto auto;
    gap: 56px;
  }
  .about-grid .section-title {
    grid-column: 1 / 2;
    grid-row: 1;
  }
  .about-body {
    grid-column: 1 / 2;
    grid-row: 2;
    font-size: 18px;
  }
  .about-figure {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: stretch;
    margin: 0;
  }
  .about-figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
  .about-stats {
    grid-column: 1 / -1;
    grid-row: 3;
    padding: 32px 0;
  }
}

/* =========================================================
   ALBUM
   ========================================================= */
.section-album {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
}

.album-grid {
  display: grid;
  gap: 36px;
}
.album-cover {
  position: relative;
  perspective: 1200px;
}
.album-cover-frame {
  position: relative;
  background: var(--ink);
  padding: 8px;
  box-shadow: 0 40px 80px -30px rgba(10,10,10,0.45),
              0 0 0 1px rgba(10,10,10,0.05);
  transform: rotate(-1.5deg);
  transition: transform 0.6s cubic-bezier(.7,0,.2,1);
}
.album-cover:hover .album-cover-frame { transform: rotate(0deg) scale(1.02); }
.album-cover-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: contrast(1.05);
}
.album-cover figcaption {
  margin-top: 18px;
  text-align: center;
}
.album-cover-meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
}

.album-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.album-kicker {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
}
.album-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(48px, 10vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-feature-settings: "ss01";
}
.album-title em {
  font-weight: 300;
  font-style: italic;
  color: var(--brass-deep);
}

.album-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: var(--hairline);
  border-bottom: var(--hairline);
}
.album-specs div { display: flex; flex-direction: column; gap: 2px; }
.album-specs dt {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
}
.album-specs dd {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  font-feature-settings: "ss01";
}

.album-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ash);
  max-width: 38ch;
}

.tracklist {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(10,10,10,0.12);
}
.tracklist li {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: baseline;
  padding: 18px 0 16px;
  border-bottom: 1px solid rgba(10,10,10,0.12);
  position: relative;
  transition: padding-left 0.3s;
}
.tracklist li:hover { padding-left: 14px; color: var(--ember); }
.tk-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--brass-deep);
  font-feature-settings: "tnum";
}
.tk-name {
  font-family: var(--serif);
  font-size: clamp(20px, 3.4vw, 28px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.tk-rest .tk-name {
  font-style: italic;
  font-weight: 300;
  color: var(--ash);
  font-size: clamp(15px, 2.6vw, 18px);
  line-height: 1.4;
}

.album-cta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: rgba(10, 10, 10, 0.04);
  border: var(--hairline);
}
.album-cta p {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.album-cta em { font-style: italic; color: var(--brass-deep); }

@media (min-width: 880px) {
  .album-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 56px 64px;
  }
  .album-cover { grid-column: 1; grid-row: 1 / 3; align-self: start; }
  .album-meta { grid-column: 2; grid-row: 1; }
  .tracklist { grid-column: 2; grid-row: 2; }
  .album-cta {
    grid-column: 1 / -1;
    grid-row: 3;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
  }
  .album-cta p { max-width: 50ch; margin: 0; }
}

/* =========================================================
   AUDIENCE (dark)
   ========================================================= */
.section-audience {
  background: var(--midnight);
  color: var(--paper);
  position: relative;
}
.section-audience::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(184,137,92,0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(199,92,42,0.06), transparent 50%);
  pointer-events: none;
}
.section-audience > * { position: relative; }

.audience-grid {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}
.audience-card {
  padding: 32px 28px;
  background: var(--midnight-2);
  border: var(--hairline-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s, border-color 0.4s;
}
.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,137,92,0.5);
}
.audience-card-alt { background: rgba(184,137,92,0.06); }
.ac-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}
.audience-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--paper);
}
.audience-card p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(243, 236, 223, 0.78);
}
.audience-card strong { color: var(--paper); font-weight: 500; }
.audience-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: var(--hairline-light);
}
.audience-card ul li {
  font-size: 14px;
  color: var(--ash-soft);
  position: relative;
  padding-left: 18px;
}
.audience-card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brass);
}

.audience-credo {
  margin-top: 60px;
  padding: 40px 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 3.5vw, 28px);
  line-height: 1.4;
  color: var(--paper);
  border-top: var(--hairline-light);
  border-bottom: var(--hairline-light);
  max-width: 30ch;
  margin-inline: auto;
  font-feature-settings: "ss01";
}
.audience-credo span {
  color: var(--brass);
  font-style: normal;
  font-size: 1.4em;
  font-weight: 400;
  display: inline-block;
  transform: translateY(0.08em);
}

@media (min-width: 880px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 56px;
  }
  .audience-card { padding: 48px 40px; gap: 20px; }
  .audience-credo { margin-top: 80px; padding: 56px 0; }
}

/* =========================================================
   LESSONS
   ========================================================= */
.section-lessons { background: var(--paper); }

.lessons-grid {
  display: grid;
  gap: 36px;
}
.lessons-figure {
  position: relative;
  overflow: hidden;
}
.lessons-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 35%;
  filter: contrast(1.05) saturate(1.05);
}
.lessons-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lessons-body p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 40ch;
}
.lessons-list {
  display: flex;
  flex-direction: column;
  border-top: var(--hairline);
}
.lessons-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: var(--hairline);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.lessons-list li strong {
  font-weight: 600;
  color: var(--ink);
}
.ll-icon {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 0.6;
  color: var(--ember);
  margin-top: 2px;
}

.lessons-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

@media (min-width: 880px) {
  .lessons-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 64px;
  }
  .lessons-body { gap: 24px; }
  .lessons-body p { font-size: 19px; }
  .lessons-list li { font-size: 18px; padding: 20px 0; }
}

/* =========================================================
   LIVE (dark)
   ========================================================= */
.section-live {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.section-live::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184,137,92,0.12), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(199,92,42,0.08), transparent 60%);
  pointer-events: none;
}
.section-live > * { position: relative; }

.live-grid {
  display: grid;
  gap: 36px;
}
.live-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.live-text p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(243, 236, 223, 0.85);
  max-width: 40ch;
}
.live-figure img {
  width: 100%;
  aspect-ratio: 1100 / 998;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.1);
}
.live-figure figcaption {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash-soft);
}

@media (min-width: 880px) {
  .live-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
  }
  .live-text p { font-size: 19px; }
  .live-text { gap: 26px; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.section-contact {
  background: var(--paper-warm);
  padding-bottom: 100px;
}

.contact-grid {
  display: grid;
  gap: 32px;
}
.contact-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 10vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-feature-settings: "ss01";
}
.contact-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--brass-deep);
}

.contact-cards {
  display: grid;
  gap: 12px;
}
.contact-card {
  display: grid;
  grid-template-columns: minmax(80px, 130px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--paper);
  border: var(--hairline);
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  min-height: 64px;
}
.contact-card:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.contact-card:hover .cc-arrow { transform: translateX(6px); }
.cc-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
}
.contact-card:hover .cc-label { color: var(--brass); }
.cc-value {
  font-family: var(--serif);
  font-size: clamp(15px, 2.6vw, 18px);
  font-weight: 400;
  letter-spacing: -0.01em;
  word-break: break-word;
}
.cc-arrow {
  font-family: var(--serif);
  font-size: 22px;
  transition: transform 0.3s;
  color: var(--brass);
}

.contact-note {
  margin-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ash);
}

@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: start;
  }
  .contact-cards { gap: 14px; }
  .contact-card { padding: 26px 30px; min-height: 80px; }
  .contact-note { grid-column: 2; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 22px 28px;
  position: relative;
}
.footer-mark {
  margin-bottom: 36px;
  opacity: 0.85;
}
.footer-mark img {
  width: 64px;
  filter: invert(1) brightness(2);
}
.footer-cols {
  display: grid;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: var(--hairline-light);
}
.footer-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}
.footer-cols p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(243, 236, 223, 0.85);
}
.footer-cols a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(243, 236, 223, 0.25);
  transition: border-color 0.3s, color 0.3s;
}
.footer-cols a:hover { color: var(--brass); border-color: var(--brass); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-nav a { border: 0; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
}
.footer-copy {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ash-soft);
}
.footer-credit {
  font-size: 12px;
  color: var(--ash-soft);
}
.footer-credit a {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,137,92,0.5);
  transition: color 0.3s, border-color 0.3s;
}
.footer-credit a:hover { color: var(--paper); border-color: var(--paper); }

@media (min-width: 880px) {
  .site-footer { padding: 80px clamp(40px, 5vw, 80px) 36px; }
  .footer-cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    padding-bottom: 40px;
  }
  .footer-mark img { width: 80px; }
  .footer-bottom { padding-top: 28px; }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes rise-clean {
  from { transform: translateY(102%); }
  to { transform: translateY(0); }
}
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes travel {
  0% { left: 0; right: 76%; }
  50% { left: 76%; right: 0; }
  100% { left: 0; right: 76%; }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-line span,
  .hero-meta,
  .hero-tag,
  .hero-actions,
  .hero-portrait,
  .hero-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Print friendly */
@media print {
  .site-header, .site-footer, .nav-toggle, .hero-decor, .hero-scroll { display: none; }
  body { background: white; color: black; }
}
