/* ==========================================================================
   Talks by Avi Flombaum
   A playbill for three talks. Theme inherited from avi.nyc's dark mode
   (black stage, burgundy / cyan / amber lights, Playfair + DM Sans).
   Each act wears the costume of its own microsite: its typeface, its
   palette, its screenshot in a browser frame.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */
:root {
  --bg: #000000;
  --surface: #080808;
  --surface-elevated: #0F0F0F;
  --border: #1A1A1A;
  --border-strong: #2A2A2A;
  --body: #FFFFFF;
  --body-secondary: #A0A0A0;
  --body-tertiary: #6A6A6A;
  --burgundy: #C74B7A;
  --burgundy-hover: #D95E8B;
  --cyan: #4ECDC4;
  --amber: #E8A849;

  /* love.avi.nyc */
  --love-a: #ff5b5b;
  --love-b: #c2185b;
  --love-c: #7b4fb0;
  --love-ink: #0b0b0c;

  /* internet.avi.nyc */
  --enter-purple: #2b003b;
  --enter-purple-2: #3f0057;
  --enter-gold: #ffd745;
  --enter-red: #ff2e4d;

  /* product.avi.nyc */
  --product-ice: #eef3f6;
  --product-ink: #0e1f2b;
  --product-water: #176b8a;
  --product-glacier: #7fd3ef;

  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-love: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
  --font-enter: 'Lakki Reddy', 'Bricolage Grotesque', Georgia, serif;
  --font-product: 'Archivo', 'Helvetica Neue', Arial, sans-serif;

  --container: 760px;
  --wide: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--body); }

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

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--amber);
  color: #000;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}
.skip:focus { top: 1rem; }

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

/* --------------------------------------------------------------------------
   Reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: clamp(5rem, 12vh, 8rem) var(--gutter) clamp(4rem, 9vh, 6rem);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(199, 75, 122, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 15% 85%, rgba(78, 205, 196, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 85% 70%, rgba(232, 168, 73, 0.08) 0%, transparent 55%);
  animation: heroGlow 9s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes heroGlow {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.06); }
}

/* Spotlight cone: the one bit of stagecraft. */
.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -10%;
  width: 60vw;
  max-width: 900px;
  height: 120%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(255, 255, 255, 0.05), transparent 70%);
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, #000, transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 85%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero__kicker {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--burgundy);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) forwards 0.15s;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__line {
  display: block;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--body-secondary);
  opacity: 0;
  animation: fadeUp 1s var(--ease) forwards 0.4s;
}
.hero__line--big {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 800;
  font-style: normal;
  color: var(--body);
  margin-top: 0.15em;
  animation-delay: 0.6s;
}
.hero__punct { color: var(--amber); }
.hero__learn { color: var(--cyan); font-weight: 800; }
.hero__love { color: var(--love-a); font-weight: 800; }
.hero__amp {
  font-style: italic;
  font-weight: 400;
  color: var(--body-secondary);
  font-size: 0.85em;
  margin: 0 0.02em;
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--body-secondary);
  max-width: 34em;
  margin: 1.75rem auto 2.25rem;
  line-height: 1.45;
  opacity: 0;
  animation: fadeUp 1s var(--ease) forwards 0.85s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) forwards 1.05s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   Shared section type
   -------------------------------------------------------------------------- */
.section-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.8vw, 2.6rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.section-heading em { font-style: italic; color: var(--amber); }
.prose {
  color: var(--body-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 62ch;
}
.prose p + p { margin-top: 1.25rem; }

.program-intro {
  padding: 6rem 0 4rem;
  background: var(--surface);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--ghost {
  border-color: var(--border-strong);
  color: var(--body-secondary);
  background: transparent;
}
.btn--ghost:hover { color: var(--body); border-color: var(--body-tertiary); }
.btn--primary { background: var(--burgundy); color: #fff; }
.btn--primary:hover { background: var(--burgundy-hover); color: #fff; }
.btn--lg { padding: 1rem 1.75rem; font-size: 1.05rem; }
.btn--love { background: linear-gradient(90deg, var(--love-a), var(--love-b)); color: #fff; }
.btn--love:hover { color: #fff; }
.btn--enter { background: var(--enter-gold); color: var(--enter-purple); }
.btn--enter:hover { color: var(--enter-purple); }
.btn--product { background: var(--product-ink); color: #fff; }
.btn--product:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Acts
   -------------------------------------------------------------------------- */
.act {
  position: relative;
  padding: clamp(4rem, 9vw, 8rem) var(--gutter);
  overflow: hidden;
}
.act__inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 899px) {
  /* On a phone the poster leads, like a playbill cover, and the copy follows. */
  .act__poster { order: -1; }
  .act--enter::before, .act--enter::after { display: none; }
}
@media (min-width: 900px) {
  .act__inner { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 4rem; }
  .act__inner--flip .act__copy { order: 2; }
  .act__inner--flip .act__poster { order: 1; }
}

.act__number {
  font-family: ui-monospace, 'IBM Plex Mono', Menlo, monospace;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border: 1px solid currentColor;
  border-radius: 100px;
  opacity: 0.9;
}
.act__title {
  line-height: 0.95;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.act__thesis {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.35;
  margin-bottom: 1.25rem;
}
.act__prose {
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 58ch;
  margin-bottom: 1.75rem;
}

.act__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem 1.5rem;
  margin-bottom: 1.75rem;
  font-size: 0.92rem;
}
@media (min-width: 560px) { .act__facts { grid-template-columns: 1fr 1fr 1fr; } }
.act__facts div { border-top: 1px solid currentColor; padding-top: 0.6rem; }
.act__facts dt { font-family: var(--font-serif); font-style: italic; opacity: 0.75; margin-bottom: 0.15rem; }
.act__facts dd { line-height: 1.45; }

.act__beats {
  list-style: none;
  counter-reset: beat;
  margin-bottom: 2rem;
  font-size: 0.98rem;
}
.act__beats li {
  counter-increment: beat;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed currentColor;
  line-height: 1.4;
}
.act__beats li::before {
  content: counter(beat, decimal-leading-zero);
  font-family: var(--font-serif);
  font-style: italic;
  opacity: 0.6;
}
.act__links { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Poster: screenshot in a browser frame, phone tucked in the corner */
.act__poster {
  position: relative;
  display: block;
  text-decoration: none;
  padding-bottom: 14%;
  padding-right: 10%;
}
.frame {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.6s var(--ease);
}
.frame--desktop {
  transform: rotate(-1.5deg);
  background: #111;
}
.frame__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: #1c1c1e;
}
.frame__bar i {
  width: 10px; height: 10px; border-radius: 50%;
  background: #3a3a3c;
}
.frame__bar i:nth-child(1) { background: #ff5f57; }
.frame__bar i:nth-child(2) { background: #febc2e; }
.frame__bar i:nth-child(3) { background: #28c840; }
.frame__url {
  margin-left: 10px;
  flex: 1;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.72rem;
  color: #9a9a9e;
  background: #0c0c0d;
  border-radius: 5px;
  padding: 3px 10px;
}
.frame--mobile {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 26%;
  max-width: 200px;
  border-radius: 18px;
  border: 5px solid #1c1c1e;
  background: #1c1c1e;
  transform: rotate(4deg);
  aspect-ratio: 390 / 844;
}
.frame--mobile img { height: 100%; object-fit: cover; object-position: top; }
.act__poster:hover .frame--desktop { transform: rotate(-0.5deg) translateY(-6px); }
.act__poster:hover .frame--mobile { transform: rotate(2deg) translateY(-10px); }

/* Costume: love.avi.nyc */
.act--love {
  background: var(--love-ink);
  color: #f2f1ec;
}
.act--love::before {
  content: '';
  position: absolute;
  inset: auto -20% -40% auto;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.22), transparent 60%);
  pointer-events: none;
}
.act--love .act__number { color: var(--love-a); }
.act__title--love {
  font-family: var(--font-love);
  font-weight: 800;
  font-size: clamp(3.2rem, 8vw, 6rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.88;
}
.act__title--love span {
  background: linear-gradient(90deg, var(--love-a), var(--love-b) 60%, var(--love-c));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.act--love .act__thesis { color: #c9c8c2; }
.act--love .act__prose { color: #c9c8c2; }
.act--love .act__facts div { border-color: #2a2a2c; }
.act--love .act__beats li { border-color: #2a2a2c; }
.act--love .btn--ghost { border-color: #3a3a3c; color: #c9c8c2; }
.act--love .btn--ghost:hover { color: #fff; }

/* Costume: internet.avi.nyc */
.act--enter {
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, var(--enter-purple-2), transparent 70%),
    var(--enter-purple);
  color: #fbf7ef;
}
.act--enter::before,
.act--enter::after {
  content: '✦';
  position: absolute;
  color: var(--enter-gold);
  opacity: 0.6;
  font-size: 1.4rem;
  pointer-events: none;
  animation: twinkle 3.5s ease-in-out infinite;
}
.act--enter::before { left: 6%; top: 18%; }
.act--enter::after { right: 8%; bottom: 14%; font-size: 1rem; animation-delay: 1.4s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.8); }
  50% { opacity: 0.85; transform: scale(1.1); }
}
.act--enter .act__number { color: var(--enter-gold); }
.act__title--enter {
  font-family: var(--font-enter);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.4vw, 4.8rem);
  color: var(--enter-gold);
  line-height: 1.05;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.35);
}
.act__title--enter span {
  font-family: ui-monospace, 'IBM Plex Mono', Menlo, monospace;
  font-weight: 500;
  font-size: 0.82em;
}
.act--enter .act__thesis { color: var(--enter-gold); }
.act--enter .act__prose { color: #dccfe3; }
.act--enter .act__facts div { border-color: rgba(255, 255, 255, 0.18); }
.act--enter .act__beats li { border-color: rgba(255, 255, 255, 0.18); }
.act--enter .btn--ghost { border-color: rgba(255, 255, 255, 0.25); color: #dccfe3; }
.act--enter .btn--ghost:hover { color: #fff; }
.act--enter .frame { box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 215, 69, 0.25); }

/* Costume: product.avi.nyc */
.act--product {
  background: var(--product-ice);
  color: #22333e;
}
.act--product::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(23, 107, 138, 0.14));
  pointer-events: none;
}
.act--product .act__number { color: var(--product-water); }
.act__title--product {
  font-family: var(--font-product);
  font-weight: 900;
  font-variation-settings: 'wdth' 112;
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  letter-spacing: -0.035em;
  color: var(--product-ink);
  line-height: 0.92;
}
.act__title--product span { color: var(--product-water); }
.act--product .act__thesis { color: var(--product-water); }
.act--product .act__prose { color: #22333e; }
.act--product .act__facts div { border-color: #cfdae1; }
.act--product .act__beats li { border-color: #b9c8d1; }
.act--product .act__facts dt,
.act--product .act__beats li::before { color: #5d6f7b; opacity: 1; }
.act--product .btn--ghost { border-color: #b9c8d1; color: #3c4d58; }
.act--product .btn--ghost:hover { color: var(--product-ink); border-color: var(--product-ink); }
.act--product .frame { box-shadow: 0 30px 70px rgba(14, 31, 43, 0.28), 0 0 0 1px rgba(14, 31, 43, 0.08); }
.act--product .frame__bar { background: #e3ebf0; }
.act--product .frame__url { background: #fff; color: #5d6f7b; }
.act--product .frame--mobile { border-color: #0e1f2b; background: #0e1f2b; }
.act--product :focus-visible { outline-color: var(--product-water); }

/* --------------------------------------------------------------------------
   Intermission quote
   -------------------------------------------------------------------------- */
.quote-section {
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  text-align: center;
  position: relative;
  background: var(--surface);
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(199, 75, 122, 0.08) 0%, transparent 70%);
}
.quote-container { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
blockquote .highlight { color: var(--amber); font-style: italic; }
.quote-attribution {
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: var(--body-tertiary);
}

/* --------------------------------------------------------------------------
   Speaker
   -------------------------------------------------------------------------- */
.speaker {
  padding: clamp(5rem, 9vw, 8rem) var(--gutter);
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.speaker__inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .speaker__inner { grid-template-columns: 5fr 7fr; gap: 4rem; }
}
.speaker__portrait img {
  border-radius: 14px;
  filter: grayscale(1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border-strong);
}
.speaker__portrait figcaption,
.speaker__room figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--body-tertiary);
  font-style: italic;
  font-family: var(--font-serif);
}
.speaker__stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border-strong);
  padding-top: 1.5rem;
}
.speaker__stats strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  color: var(--body);
  margin-bottom: 0.35rem;
}
.speaker__stats li:nth-child(1) strong { color: var(--burgundy); }
.speaker__stats li:nth-child(2) strong { color: var(--cyan); }
.speaker__stats li:nth-child(3) strong { color: var(--amber); }
.speaker__stats span { font-size: 0.85rem; color: var(--body-secondary); line-height: 1.35; display: block; }
@media (max-width: 480px) {
  .speaker__stats { grid-template-columns: 1fr; gap: 1.25rem; }
}

.speaker__room {
  max-width: var(--wide);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
}
.speaker__room img {
  border-radius: 14px;
  box-shadow: 0 0 0 1px var(--border-strong);
}

.press {
  max-width: var(--container);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  text-align: center;
}
.press__lede {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--body-secondary);
  margin-bottom: 1.5rem;
}
.press img {
  margin: 0 auto;
  filter: invert(1) grayscale(1);
  opacity: 0.55;
  transition: opacity 0.3s;
}
.press img:hover { opacity: 0.9; }

/* --------------------------------------------------------------------------
   Book
   -------------------------------------------------------------------------- */
.book {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(78, 205, 196, 0.08), transparent 70%);
}
.book__inner { position: relative; text-align: center; }
.book__inner .prose { margin: 0 auto 2.5rem; }
.formats {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
  margin: 0 auto 2.5rem;
  max-width: 720px;
}
@media (min-width: 640px) { .formats { grid-template-columns: repeat(3, 1fr); } }
.formats li {
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.35);
}
.formats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.formats li:nth-child(1) strong { color: var(--burgundy); }
.formats li:nth-child(2) strong { color: var(--cyan); }
.formats li:nth-child(3) strong { color: var(--amber); }
.formats span { font-size: 0.9rem; color: var(--body-secondary); line-height: 1.5; }
.book__alt { margin-top: 1.5rem; font-size: 0.9rem; color: var(--body-tertiary); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
footer {
  padding: 3.5rem var(--gutter);
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; }
.footer-link { display: inline-block; margin-top: 0.4rem; font-size: 0.9rem; color: var(--body-secondary); }
.footer-note {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--body-tertiary);
}
