/* ============================================
   Eastside Record Club — design system
   Palette: ink / paper / evergreen / amber
   Type: Fraunces display · Karla body · Space Mono utility
   ============================================ */

:root {
  color-scheme: only light;
  --ink: #211d18;
  --ink-soft: #40392f;
  --wax: #17140f;
  --paper: #efe9db;
  --paper-deep: #e6ded0;
  --card: #f6f2e8;
  --dust: #ddd4c2;
  --evergreen: #28392c;
  --evergreen-deep: #1c2a20;
  --amber: #b8703a;
  --amber-deep: #8f5527;
  --moss: #8a9a78;
  --line: rgba(33, 29, 24, 0.14);
  --line-strong: rgba(33, 29, 24, 0.30);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", sans-serif;
  --font-mono: "Space Mono", monospace;

  --max: 1080px;
  --gutter: 24px;
  --radius: 4px;
  --shadow-lift: 0 10px 30px -12px rgba(33, 29, 24, 0.28);
  --ease: cubic-bezier(0.22, 0.9, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html {
  background-color: var(--paper);
  background-image: linear-gradient(var(--paper), var(--paper));
}

body {
  margin: 0;
  background-color: var(--paper);
  background-image: linear-gradient(var(--paper), var(--paper));
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.026;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--amber-deep);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 300;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.skip-link:focus {
  left: 12px;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; margin: 0; color: var(--ink); }
p { margin: 0 0 1rem; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--evergreen);
}

.lede { font-size: 1.16rem; color: var(--ink-soft); max-width: 48ch; }

/* groove divider: paired hairlines, like the land between tracks */
.groove {
  border: 0;
  height: 5px;
  margin: 0;
  background:
    linear-gradient(var(--line), var(--line)) 0 0 / 100% 1px no-repeat,
    linear-gradient(var(--line), var(--line)) 0 4px / 100% 1px no-repeat;
}

/* ============================================
   Reveal system
   ============================================ */

html.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   Header
   ============================================ */

.site-header {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(239, 233, 219, 0.94);
  backdrop-filter: blur(6px);
  z-index: 100;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.wordmark .mark { width: 30px; height: 30px; flex: none; }

.wordmark .name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.wordmark .sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--amber-deep);
  font-weight: 400;
  margin-top: 2px;
}

nav.primary-nav { display: flex; align-items: center; gap: 30px; }

nav.primary-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}

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

nav.primary-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--amber);
}

nav.primary-nav a.nav-cta {
  border: 1.5px solid var(--ink);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

nav.primary-nav a.nav-cta:hover { background: var(--ink); color: var(--paper); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  cursor: pointer;
  color: var(--ink);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn-primary { background: var(--evergreen); color: var(--paper); }
.btn-primary:hover { background: var(--evergreen-deep); box-shadow: var(--shadow-lift); transform: translateY(-1px); }

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

.btn-arrow { transition: transform 0.2s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================
   Hero
   ============================================ */

.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: 640px;
  background: var(--wax);
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  display: block;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 20, 15, 0.18) 0%, rgba(23, 20, 15, 0) 26%),
    linear-gradient(180deg, rgba(23, 20, 15, 0) 34%, rgba(23, 20, 15, 0.86) 100%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
}

.hero-overlay .skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 300;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.skip-link:focus {
  left: 12px;
}

.wrap { max-width: var(--max); padding-bottom: 36px; }

.hero-overlay .eyebrow { color: var(--amber); text-shadow: 0 1px 10px rgba(23, 20, 15, 0.85), 0 0 3px rgba(23, 20, 15, 0.6); }

.hero-overlay h1 {
  color: var(--paper);
  font-size: clamp(2.7rem, 6.6vw, 4.4rem);
  line-height: 1.02;
  margin: 7px 0 16px;
  max-width: 12ch;
}

.hero-overlay .lede {
  color: rgba(239, 233, 219, 0.9);
  margin-bottom: 28px;
  max-width: 46ch;
}

.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-overlay .btn-ghost { border-color: rgba(239, 233, 219, 0.85); color: var(--paper); }
.hero-overlay .btn-ghost:hover { background: rgba(239, 233, 219, 0.16); color: var(--paper); }

.banner-caption {
  position: absolute;
  right: 18px;
  top: 18px;
  background: rgba(23, 20, 15, 0.7);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 2px;
  border: 1px solid rgba(239, 233, 219, 0.18);
}

/* hero load-in */
.hero-overlay .eyebrow, .hero-overlay h1, .hero-overlay .lede, .hero-overlay .hero-cta-row {
  animation: rise 0.7s var(--ease) both;
}
.hero-overlay h1 { animation-delay: 0.08s; }
.hero-overlay .lede { animation-delay: 0.16s; }
.hero-overlay .hero-cta-row { animation-delay: 0.24s; }

@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .hero-overlay .eyebrow, .hero-overlay h1, .hero-overlay .lede, .hero-overlay .hero-cta-row { animation: none; }
}

/* ============================================
   Now-spinning strip
   ============================================ */

.next-session-strip { padding: 0; }

.now-spinning {
  background-image: linear-gradient(var(--card), var(--card));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-top: -44px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-lift);
}

.date-block {
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 28px;
}

.date-block .month {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--amber-deep);
  display: block;
}

.date-block .day {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
  display: block;
  margin: 2px 0;
}

.date-block .dow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  display: block;
}

.now-spinning .session-info .eyebrow { display: block; margin-bottom: 5px; }

.now-spinning .session-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 5px;
}

.now-spinning .session-meta { font-size: 14px; color: var(--ink-soft); margin: 0; }

.now-spinning .session-action { white-space: nowrap; }

/* ============================================
   Sections
   ============================================ */

.section { padding: 76px 0; }
.section-tight { padding: 56px 0; }

.section-head { max-width: 62ch; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.15rem); margin: 10px 0 14px; }

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

.section-head-row .section-head { margin-bottom: 0; }

.text-link {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--amber-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.text-link:hover { color: var(--ink); }

/* ============================================
   Features
   ============================================ */

.features { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); }

.feature { padding: 44px 32px; border-left: 1px solid var(--line); }
.feature:first-child { border-left: none; padding-left: 0; }
.feature:last-child { padding-right: 0; }

.feature .eyebrow { margin-bottom: 12px; display: block; color: var(--amber-deep); }
.feature h3 { font-size: 1.22rem; margin-bottom: 9px; }
.feature p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ============================================
   Pressings preview (sleeve grid)
   ============================================ */

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

.sleeve-card { text-decoration: none; display: block; }

.sleeve-art {
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
  background: var(--wax);
  box-shadow: 3px 3px 0 rgba(33, 29, 24, 0.12);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.sleeve-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.sleeve-card:hover .sleeve-art {
  transform: translateY(-5px) rotate(-0.6deg);
  box-shadow: 6px 9px 0 rgba(33, 29, 24, 0.14);
}

.sleeve-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 14px; }

.sleeve-meta .catalog { font-family: var(--font-mono); font-size: 12px; color: var(--amber-deep); }

.sleeve-title { font-family: var(--font-display); font-size: 1.06rem; font-weight: 500; margin: 3px 0 2px; }

.sleeve-sub { font-size: 13px; color: var(--ink-soft); margin: 0; }

.sleeve-date { font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); white-space: nowrap; }

.sample-note {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-top: 26px;
}

/* ============================================
   Manifesto band
   ============================================ */

.manifesto {
  background: var(--evergreen-deep);
  color: var(--paper);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.manifesto .wrap { display: grid; grid-template-columns: auto 1fr; gap: 52px; align-items: center; }

.manifesto .badge-spin { width: 132px; height: 132px; flex: none; }

.manifesto .badge-spin svg { animation: slow-spin 26s linear infinite; }

@keyframes slow-spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) { .manifesto .badge-spin svg { animation: none; } }

.manifesto blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  line-height: 1.32;
  max-width: 26ch;
}

.manifesto .attr {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8b898;
  margin-top: 20px;
  display: block;
}

/* ============================================
   How it works (real sequence, so numbers are honest)
   ============================================ */

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line-strong); }

.step { padding: 30px 26px 6px 0; border-right: 1px solid var(--line); margin-right: 26px; position: relative; }
.step:last-child { border-right: none; margin-right: 0; }

.step .step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber-deep);
  display: block;
  margin-bottom: 14px;
}

.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ============================================
   CTA band
   ============================================ */

.cta-band {
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 68px 0;
  text-align: center;
}

.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 12px; }
.cta-band p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 28px; }

/* ============================================
   Footer — the record spine
   ============================================ */

.site-footer { background: var(--wax); color: var(--paper); padding: 56px 0 30px; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }

.footer-brand .wordmark .name { color: var(--paper); }
.footer-brand .wordmark .sub { color: var(--amber); }

.footer-brand p { color: rgba(239, 233, 219, 0.82); font-size: 14px; max-width: 34ch; margin-top: 14px; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 4px 0 16px;
  font-weight: 400;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(239, 233, 219, 0.94);
  font-size: 14.5px;
  padding: 5px 0;
  transition: color 0.2s var(--ease);
}

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

.footer-runout {
  border-top: 1px solid rgba(239, 233, 219, 0.14);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.etched {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(239, 233, 219, 0.66);
  font-style: italic;
}

/* ============================================
   Sessions page
   ============================================ */

.page-head { padding: 64px 0 0; }

.sessions-list { border-top: 1px solid var(--line-strong); margin-top: 44px; }

.session-row {
  display: grid;
  grid-template-columns: 96px 110px 1fr 130px;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background 0.2s var(--ease);
}

.session-row:hover { background: rgba(246, 242, 232, 0.7); }

.session-thumb {
  width: 96px; height: 96px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 2px 2px 0 rgba(33, 29, 24, 0.1);
}

.session-thumb img, .session-thumb svg { width: 100%; height: 100%; object-fit: cover; }

.session-thumb-empty {
  width: 96px; height: 96px;
  border: 1px dashed var(--line-strong);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

.session-row .catalog { font-family: var(--font-mono); font-size: 13px; color: var(--amber-deep); }

.session-row h3 { font-size: 1.24rem; margin-bottom: 5px; }

.session-row .session-note { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 6px; max-width: 56ch; }

.session-row .session-host { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.05em; color: var(--ink-soft); margin: 0; text-transform: uppercase; }

.session-row .session-date { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft); text-align: right; }

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--evergreen);
  color: var(--paper);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 9px;
}

.tag-sample { background: transparent; color: var(--amber-deep); border: 1px solid var(--amber-deep); }

/* ============================================
   About page
   ============================================ */

.about-grid { display: grid; grid-template-columns: 1fr 350px; gap: 56px; align-items: start; }

.about-body { max-width: 62ch; font-size: 1.06rem; }
.about-body p { margin-bottom: 1.35rem; }

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.55rem;
  line-height: 1.38;
  color: var(--evergreen-deep);
  border-left: 3px solid var(--amber);
  padding-left: 26px;
  margin: 44px 0;
  max-width: 50ch;
}

.host-model {
  background: var(--card);
  background-image: linear-gradient(var(--card), var(--card));
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 44px;
}

.host-model h3 { font-size: 1.12rem; margin-bottom: 10px; }
.host-model p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }

.about-photo { position: sticky; top: 92px; }

.photo-frame {
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
  background: var(--wax);
  box-shadow: 3px 3px 0 rgba(33, 29, 24, 0.12);
}

.photo-frame img { width: 100%; height: auto; display: block; }

.photo-caption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 11px;
}

.house-rules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }

.rule { border-top: 2px solid var(--ink); padding-top: 16px; }
.rule h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; margin: 0 0 6px; }
.rule p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ============================================
   Join page
   ============================================ */

.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 44px; }

.how-it-works { list-style: none; margin: 0; padding: 0; }

.how-it-works li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.how-it-works li:last-child { border-bottom: none; }

.how-it-works .step-num { font-family: var(--font-mono); font-size: 12px; color: var(--amber-deep); padding-top: 2px; }

.how-it-works .step-body h4 { font-family: var(--font-body); font-weight: 700; font-size: 15px; margin: 0 0 4px; }
.how-it-works .step-body p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

.expect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 38px; }

.expect-col h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-weight: 400;
}

.expect-col.yes h4 { color: var(--evergreen); }
.expect-col.no h4 { color: var(--amber-deep); }

.expect-col ul { margin: 0; padding-left: 18px; font-size: 14.5px; color: var(--ink-soft); }
.expect-col li { margin-bottom: 7px; }

.join-form-card {
  background: var(--card);
  background-image: linear-gradient(var(--card), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-lift);
}

.join-form-card h3 { font-size: 1.28rem; margin-bottom: 6px; }
.join-form-card > p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 26px; }

.field { margin-bottom: 20px; }

.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; }

.field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input:focus {
  border-color: var(--amber-deep);
  box-shadow: 0 0 0 3px rgba(184, 112, 58, 0.16);
  outline: none;
}

.field input::placeholder { color: var(--ink-soft); opacity: 0.55; }

.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 15px; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.ig-line { display: flex; align-items: center; gap: 10px; margin-top: 30px; font-size: 14px; padding-top: 24px; border-top: 1px solid var(--line); }

.ig-line a { text-decoration: none; font-weight: 700; color: var(--amber-deep); }
.ig-line a:hover { text-decoration: underline; }

.faq { margin-top: 64px; }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

.faq details:first-of-type { border-top: 1px solid var(--line-strong); }

.faq summary {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--amber-deep);
  font-size: 1.1rem;
  transition: transform 0.2s var(--ease);
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq .faq-body { padding: 0 0 20px; color: var(--ink-soft); font-size: 15px; max-width: 60ch; }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 920px) {
  .now-spinning { grid-template-columns: auto 1fr; }
  .now-spinning .session-action { grid-column: 1 / -1; }
  .features-grid { grid-template-columns: 1fr; }
  .feature { border-left: none; border-top: 1px solid var(--line); padding: 28px 0; }
  .feature:first-child { border-top: none; }
  .sleeve-grid { grid-template-columns: 1fr; max-width: 420px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step { padding-top: 24px; }
  .manifesto .wrap { grid-template-columns: 1fr; gap: 36px; }
  .manifesto .badge-spin { width: 96px; height: 96px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: 380px; }
  .house-rules { grid-template-columns: 1fr; gap: 22px; }
  .join-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .session-row { grid-template-columns: 96px 1fr; }
  .session-row .catalog { grid-column: 2; }
  .session-row .session-date { grid-column: 2; text-align: left; }
  .session-row > div:nth-child(3) { grid-column: 2; }
  .expect-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .hero-banner { aspect-ratio: 4 / 5; max-height: none; }
  .banner-caption { font-size: 10px; right: 12px; top: 12px; }
  .now-spinning { padding: 22px; gap: 18px; margin-top: -30px; }
  .date-block { padding-right: 18px; }
  .date-block .day { font-size: 2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; margin-right: 0; border-bottom: 1px solid var(--line); padding: 22px 0; }
  .step:last-child { border-bottom: none; }

  nav.primary-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px var(--gutter) 16px;
    display: none;
  }

  nav.primary-nav.open { display: flex; }
  nav.primary-nav a { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--line); }
  nav.primary-nav a.nav-cta { border: none; padding: 13px 0; }
  .site-header .wrap { position: relative; }
  .menu-toggle { display: block; }
}
