/* ============================================================
   Vidya Kathare — personal site
   Palette "Ink & Marigold" — derived from Vidya's Krishna oil
   painting: indigo night, marigold gold, Krishna blue, ivory.
   ============================================================ */

:root {
  --ink-0: #0f1530;   /* page */
  --ink-1: #151d3f;   /* card */
  --ink-2: #1d2750;   /* raised */
  --gold: #e2a63e;
  --gold-soft: #f2c879;
  --krishna: #8fb3e8;
  --paper: #f3ecdc;
  --paper-2: #eae1cc;
  --text: #e9e4d6;
  --muted: #a7abc4;
  --ink-on-paper: #1c2038;
  --muted-on-paper: #5b5f75;

  --ease: cubic-bezier(0.2, 0, 0, 1);
  --r-lg: 20px;  /* outer card radius */
  --r-md: 12px;  /* inner element radius: outer = inner + 8px padding */
  --r-sm: 10px;
  --shadow-1: 0 1px 2px rgba(4, 7, 20, 0.4), 0 4px 16px rgba(4, 7, 20, 0.35);
  --shadow-2: 0 2px 4px rgba(4, 7, 20, 0.45), 0 12px 32px rgba(4, 7, 20, 0.5);
  --maxw: 1080px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  background: var(--ink-0);
  color: var(--text);
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--ink-0); }

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  text-wrap: balance;
}

p { text-wrap: pretty; }

.mono {
  font-family: "Fragment Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.num { font-variant-numeric: tabular-nums; }

a { color: inherit; }

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ============ NAV ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 48px);
  transition-property: background-color, box-shadow, padding;
  transition-duration: 0.35s;
  transition-timing-function: var(--ease);
}

.nav.scrolled {
  background: rgba(15, 21, 48, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 24px rgba(4, 7, 20, 0.4);
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  min-height: 44px;
  align-items: center;
}

.nav-brand-dev {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  color: var(--gold);
}

.nav-brand-name {
  font-family: "Fragment Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: clamp(12px, 2.5vw, 28px);
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--muted);
  padding: 10px 4px;           /* extend hit area */
  position: relative;
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 6px;
  height: 2px;
  border-radius: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: var(--ease);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 22px;
  border: none;
  border-radius: var(--r-md);
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition-property: transform, box-shadow, background-color, color;
  transition-duration: 0.25s;
  transition-timing-function: var(--ease);
}

.btn:active { transform: scale(0.96); }

.btn-gold {
  background: var(--gold);
  color: var(--ink-0);
  box-shadow: 0 1px 2px rgba(4, 7, 20, 0.3), 0 6px 20px rgba(226, 166, 62, 0.25);
}

.btn-gold:hover {
  background: var(--gold-soft);
  box-shadow: 0 2px 4px rgba(4, 7, 20, 0.3), 0 10px 28px rgba(226, 166, 62, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1.5px rgba(233, 228, 214, 0.28);
}

.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--gold); color: var(--gold-soft); }

.btn-small { min-height: 40px; padding: 8px 16px; font-size: 0.88rem; }

.btn-arrow {
  display: inline-block;
  transition-property: transform;
  transition-duration: 0.25s;
  transition-timing-function: var(--ease);
}

.btn:hover .btn-arrow,
.essay-card:hover .btn-arrow { transform: translateX(4px); }

/* ============ HERO ============ */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 24px 72px;
  position: relative;
}

/* faint radial atmosphere — the lantern behind the ink */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 30%, rgba(226, 166, 62, 0.09), transparent 65%),
    radial-gradient(ellipse 45% 35% at 78% 78%, rgba(143, 179, 232, 0.07), transparent 60%);
  pointer-events: none;
}

.hero > * { position: relative; }

.hero-entry { color: var(--muted); }

.hero-word {
  display: flex;
  align-items: baseline;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}

.hero-dev {
  font-size: clamp(4rem, 12vw, 8.5rem);
  font-weight: 450;
  color: var(--text);
  font-variation-settings: "opsz" 144;
}

.hero-def {
  margin-top: 20px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 350;
  color: var(--muted);
  max-width: 34ch;
}

.hero-def em { color: var(--gold-soft); font-style: italic; }

.hero-songline {
  width: min(420px, 70vw);
  height: auto;
  margin-top: 26px;
  color: var(--gold);
}

#songline-path {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw 1.6s var(--ease) 0.9s forwards;
}

@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-intro {
  margin-top: 34px;
  max-width: 56ch;
  font-size: 1.05rem;
  color: var(--text);
}

.hero-intro strong { color: var(--gold-soft); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  gap: clamp(24px, 5vw, 56px);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 64px;
}

.hero-proof div { text-align: center; }

.hero-proof dt {
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  font-weight: 550;
  color: var(--gold);
}

.hero-proof dd {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 14ch;
  margin: 4px auto 0;
}

/* staggered page-load entrance (hero only) */
.stagger {
  opacity: 0;
  transform: translateY(14px);
  animation: enter 0.7s var(--ease) forwards;
  animation-delay: calc(var(--i) * 0.1s + 0.1s);
}

@keyframes enter {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ MARQUEE ============ */

.marquee {
  overflow: hidden;
  padding: 26px 0 30px;
  border-top: 1px solid rgba(233, 228, 214, 0.07);
  border-bottom: 1px solid rgba(233, 228, 214, 0.07);
}

.marquee-track {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: scroll 46s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track span {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  white-space: nowrap;
}

.marquee-track i {
  color: var(--gold);
  font-style: normal;
  font-size: 0.8rem;
  align-self: center;
}

@keyframes scroll {
  to { transform: translateX(-50%); }
}

.marquee-caption {
  text-align: center;
  color: rgba(167, 171, 196, 0.55);
  margin-top: 18px;
}

/* ============ SECTIONS (shared) ============ */

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 130px) clamp(20px, 5vw, 48px);
}

.eyebrow { color: var(--gold); margin-bottom: 14px; }

.section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 18px;
}

.section-lede {
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 44px;
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition-property: opacity, transform;
  transition-duration: 0.7s;
  transition-timing-function: var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ STORY ============ */

.story-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin-top: 12px;
}

.story-text p { margin-bottom: 20px; max-width: 58ch; }
.story-text em { color: var(--gold-soft); }

.story-sign {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
}

.story-card {
  background: var(--ink-1);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-1);
  position: sticky;
  top: 110px;
}

.story-card-label { color: var(--krishna); margin-bottom: 16px; }

.story-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.story-facts li {
  padding-left: 22px;
  position: relative;
  font-size: 0.94rem;
  color: var(--text);
}

.story-facts li::before {
  content: "♪";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ============ NEWSLETTER (uiverse-style rotating glow border) ============ */

.letter { padding-top: 40px; }

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.letter-card {
  position: relative;
  border-radius: var(--r-lg);
  padding: 2px; /* the glow ring thickness */
  background: conic-gradient(from var(--angle),
    rgba(226, 166, 62, 0.05) 0%,
    var(--gold) 12%,
    rgba(226, 166, 62, 0.05) 26%,
    rgba(143, 179, 232, 0.4) 55%,
    rgba(226, 166, 62, 0.05) 70%,
    var(--gold) 88%,
    rgba(226, 166, 62, 0.05) 100%);
  animation: spin 7s linear infinite;
}

@keyframes spin { to { --angle: 360deg; } }

.letter-inner {
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  border-radius: calc(var(--r-lg) - 2px); /* concentric with wrapper */
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
}

.letter-inner h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); }

.letter-tag {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-soft);
  margin-top: 10px;
}

.letter-body {
  max-width: 54ch;
  margin: 20px auto 0;
  color: var(--muted);
}

.letter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.letter-form input {
  min-height: 44px;
  min-width: min(320px, 100%);
  padding: 10px 18px;
  border: none;
  border-radius: var(--r-md);
  background: var(--ink-0);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  box-shadow: inset 0 0 0 1px rgba(233, 228, 214, 0.15);
  transition-property: box-shadow;
  transition-duration: 0.25s;
  transition-timing-function: var(--ease);
}

.letter-form input::placeholder { color: rgba(167, 171, 196, 0.6); }
.letter-form input:focus { outline: none; box-shadow: inset 0 0 0 1.5px var(--gold); }

.letter-note { color: rgba(167, 171, 196, 0.6); margin-top: 18px; }

/* ============ REFLECTIONS ============ */

.thoughts { margin-top: 64px; }

.thought-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.thought {
  background: var(--ink-1);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-1);
  border-left: 3px solid var(--gold);
}

.thought p {
  font-family: "Fraunces", serif;
  font-size: 1.08rem;
  font-weight: 350;
  line-height: 1.55;
  color: var(--text);
}

.essays-strip {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(233, 228, 214, 0.09);
}

.essays-strip-label { color: var(--krishna); margin-bottom: 18px; }

.essays-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.essays-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 0;
  text-decoration: none;
  color: var(--muted);
  font-size: 1rem;
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: var(--ease);
}

.essays-links a:hover { color: var(--gold-soft); }
.essays-links a:hover .btn-arrow { transform: translateX(4px); }

/* ============ OFFERS ============ */

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.offer-card {
  background: var(--ink-1);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition-property: transform, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: var(--ease);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.offer-card h3 { font-size: 1.5rem; font-weight: 550; }

.offer-threat {
  color: var(--gold-soft);
  font-size: 0.95rem;
  font-style: italic;
  font-family: "Fraunces", serif;
}

.offer-promise { color: var(--muted); font-size: 0.95rem; }

.offer-card .work-meta { margin-top: auto; padding-top: 8px; }

.offer-card-featured {
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  box-shadow: inset 0 0 0 1.5px rgba(226, 166, 62, 0.5), var(--shadow-2);
}

.offers-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.offers-cta-note { color: rgba(167, 171, 196, 0.6); }

/* ============ AI ============ */

.ai {
  max-width: none;
  background: linear-gradient(180deg, var(--ink-1), var(--ink-0));
  border-top: 1px solid rgba(226, 166, 62, 0.18);
  border-bottom: 1px solid rgba(226, 166, 62, 0.18);
  padding-left: 0;
  padding-right: 0;
}

.ai > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 5vw, 48px);
  padding-right: clamp(20px, 5vw, 48px);
}

.ai-lead p {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 62ch;
  margin-bottom: 44px;
}

.ai-lead em, .ai-col em { color: var(--gold-soft); }

.ai-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.ai-col h3 {
  font-size: 1.25rem;
  font-weight: 550;
  margin-bottom: 12px;
  padding-top: 16px;
  border-top: 2px solid var(--krishna);
  display: inline-block;
}

.ai-col p { color: var(--muted); font-size: 0.96rem; }

.ai-close {
  margin-top: 48px;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 350;
  color: var(--text);
  max-width: 58ch;
}

.ai-close a {
  color: var(--gold);
  text-decoration-color: rgba(226, 166, 62, 0.4);
  text-underline-offset: 3px;
  transition-property: text-decoration-color;
  transition-duration: 0.2s;
  transition-timing-function: var(--ease);
}

.ai-close a:hover { text-decoration-color: var(--gold); }

/* ============ QUOTES (paper) ============ */

.quotes {
  max-width: none;
  background: var(--paper);
  color: var(--ink-on-paper);
  padding-left: 0;
  padding-right: 0;
}

.quotes > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 5vw, 48px);
  padding-right: clamp(20px, 5vw, 48px);
}

.quotes .eyebrow { color: #b0782a; }

.quote-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.quote {
  padding: 34px 0 34px 28px;
  border-left: 3px solid var(--gold);
}

.quote + .quote { border-top: 1px solid rgba(28, 32, 56, 0.1); }

.quote p {
  font-family: "Fraunces", serif;
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  font-weight: 350;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink-on-paper);
  max-width: 30ch;
}

.quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  color: var(--muted-on-paper);
}

/* ============ WORK / PORTFOLIO ============ */

.work-group {
  color: var(--krishna);
  margin: 52px 0 20px;
  letter-spacing: 0.1em;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.work-card {
  background: var(--ink-1);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition-property: transform, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: var(--ease);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.work-type { color: var(--gold); }

.work-card h4 { font-size: 1.35rem; font-weight: 550; }

.work-card > p:not(.mono):not(.work-badge) {
  color: var(--muted);
  font-size: 0.94rem;
}

.work-meta { color: rgba(143, 179, 232, 0.75); margin-top: auto; }

.work-badge {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-soft);
  background: rgba(226, 166, 62, 0.1);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  align-self: flex-start;
}

.work-badge + .work-meta,
.work-meta + .work-badge { margin-top: 0; }

/* ============ ART ============ */

.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.art-item {
  border: none;
  padding: 0;
  background: none;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-1);
  transition-property: transform, box-shadow;
  transition-duration: 0.35s;
  transition-timing-function: var(--ease);
}

.art-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.art-item:active { transform: scale(0.98); }

.art-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  outline: 1px solid rgba(255, 255, 255, 0.1); /* subtle image edge on dark */
  outline-offset: -1px;
  border-radius: var(--r-lg);
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: var(--ease);
}

.art-item:hover img { transform: scale(1.04); }

.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(92vw, 760px);
  max-height: 90vh;
}

.lightbox::backdrop {
  background: rgba(8, 11, 26, 0.85);
  backdrop-filter: blur(6px);
}

.lightbox img {
  width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--r-md);
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}

.lightbox-close {
  position: absolute;
  top: 8px; right: 8px;
  width: 44px; height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 21, 48, 0.8);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition-property: background-color, transform;
  transition-duration: 0.2s;
  transition-timing-function: var(--ease);
}

.lightbox-close:hover { background: var(--ink-2); }
.lightbox-close:active { transform: scale(0.96); }

/* ============ FOOTER ============ */

.footer {
  text-align: center;
  padding: 90px 24px 48px;
  border-top: 1px solid rgba(233, 228, 214, 0.07);
}

.footer-songline {
  width: min(300px, 60vw);
  color: rgba(226, 166, 62, 0.4);
  margin-bottom: 26px;
}

.footer-dev {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  color: var(--gold);
}

.footer-line {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--muted);
  margin-top: 6px;
}

.footer-links {
  display: flex;
  gap: 26px;
  justify-content: center;
  margin-top: 26px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 2px; /* hit area */
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: var(--ease);
}

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

.footer-copy { color: rgba(167, 171, 196, 0.5); margin-top: 24px; }

/* ============ RESPONSIVE ============ */

@media (max-width: 860px) {
  .story-cols { grid-template-columns: 1fr; }
  .story-card { position: static; }
  .nav-links { display: none; } /* brand + subscribe stay */
}

@media (max-width: 520px) {
  .hero { padding-top: 110px; }
  .hero-proof { gap: 20px; }
  .letter-form { flex-direction: column; align-items: stretch; }
}

/* ============ REDUCED MOTION ============ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .stagger { animation: none; opacity: 1; transform: none; }
  #songline-path { animation: none; stroke-dashoffset: 0; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .letter-card { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .art-item img, .work-card, .essay-card, .btn { transition-duration: 0.01ms; }
}
