/* =========================================================
   DesignsbyDivya — Portfolio
   Shared stylesheet
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg:           #FBFAF7;
  --bg-alt:       #F1EDE6;
  --ink:          #14110E;
  --ink-soft:     #2A2622;
  --muted:        #6B6660;
  --muted-soft:   #A09B95;
  --line:         #E5DFD5;
  --line-strong:  #14110E;
  --accent:       #C75B2F;
  --accent-ink:   #6E2E14;
  --white:        #FFFFFF;

  --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --sans:  "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --max:   1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --radius-sm: 4px;
  --radius:    10px;
  --radius-lg: 18px;

  --t-fast: 180ms cubic-bezier(.2,.7,.2,1);
  --t-med:  340ms cubic-bezier(.2,.7,.2,1);
  --t-slow: 620ms cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.015em;
  line-height: 1.02;
}
.h-xl  { font-family: var(--serif); font-size: clamp(48px, 7.4vw, 104px); line-height: 0.98; letter-spacing: -0.02em; }
.h-lg  { font-family: var(--serif); font-size: clamp(36px, 4.6vw, 64px);  line-height: 1.04; letter-spacing: -0.015em; }
.h-md  { font-family: var(--serif); font-size: clamp(26px, 2.8vw, 38px);  line-height: 1.1;  letter-spacing: -0.01em; }
.h-sm  { font-family: var(--sans);  font-size: 19px; line-height: 1.3; font-weight: 600; letter-spacing: -0.01em; }
.lead  { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.5; color: var(--ink-soft); max-width: 60ch; }
.body  { color: var(--ink-soft); }
.small { font-size: 14px; color: var(--muted); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-wide {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: clamp(72px, 10vw, 140px) 0; }
.section-tight { padding: clamp(48px, 6vw, 96px) 0; }

.divider {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand__role {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav__link {
  position: relative;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link:hover { color: var(--ink); background: var(--bg-alt); }
.nav__link.is-current { color: var(--ink); background: var(--bg-alt); }
.nav__link.is-current::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.nav__cta {
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__cta:hover { background: var(--ink); color: var(--bg); }

.nav__toggle { display: none; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 8px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
  }
  .nav__toggle .bars {
    display: inline-block; width: 16px; height: 10px; position: relative;
  }
  .nav__toggle .bars::before, .nav__toggle .bars::after {
    content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ink);
  }
  .nav__toggle .bars::before { top: 0; }
  .nav__toggle .bars::after  { bottom: 0; }

  .mobile-menu[hidden] { display: none; }
  .mobile-menu {
    position: fixed; inset: 64px 0 0 0;
    background: var(--bg);
    padding: 24px var(--gutter) 48px;
    display: flex; flex-direction: column; gap: 4px;
    z-index: 60;
    border-top: 1px solid var(--line);
  }
  .mobile-menu a {
    font-family: var(--serif); font-size: 32px; padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-ink); }
.btn-primary .arrow { transition: transform var(--t-fast); }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(24px, 3vw, 48px) 0 0;
  background: #F2EEED;
  border-bottom: 1px solid var(--line);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 112px);
  align-items: start;
}
.hero__copy {
  padding-top: clamp(8px, 2vw, 24px);
  padding-bottom: clamp(20px, 3vw, 40px);
}
.hero__visual--fit { max-height: clamp(380px, 52vw, 560px); display: flex; align-items: flex-end; }
.hero__visual--fit img { max-height: 100%; width: auto; max-width: 100%; }
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2EAA63;
  box-shadow: 0 0 0 4px color-mix(in srgb, #2EAA63 18%, transparent);
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  overflow: hidden;
}
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
/* Variant: fit image's natural aspect ratio (no further cropping) */
.hero__visual--fit {
  aspect-ratio: auto;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  align-self: end;
  margin-bottom: -1px; /* flush with banner bottom */
}
.hero__visual--fit img {
  width: 115%;
  max-width: none;
  height: auto;
  object-fit: contain;
  display: block;
  margin-left: -7.5%;
}
@media (max-width: 880px) {
  .hero__visual--fit img { width: 100%; margin-left: 0; }
}
.hero__badge {
  position: absolute;
  left: 16px; bottom: 16px;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line);
}

/* ---------- Marquee / ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: var(--bg);
}
.ticker__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: tick 38s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticker__track span { display: inline-flex; align-items: center; gap: 56px; }
.ticker__track span::after {
  content: "✦"; color: var(--accent); margin-left: 56px;
}
@keyframes tick {
  to { transform: translateX(-50%); }
}

/* ---------- Section header ---------- */
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 32px; margin-bottom: clamp(40px, 5vw, 72px);
}
.section-head__title { font-family: var(--serif); font-size: clamp(34px, 4.6vw, 64px); line-height: 1; letter-spacing: -0.02em; }
.section-head__meta { display: flex; flex-direction: column; align-items: end; gap: 4px; }
@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: start; }
  .section-head__meta { align-items: start; }
}

/* ---------- Projects ---------- */
.projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.project-card:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: 0 24px 48px -28px rgba(20,17,14,0.18);
}
.project-card:nth-child(even) { grid-template-areas: "media body"; }
.project-card:nth-child(even) .project-card__media { grid-area: media; }
.project-card:nth-child(even) .project-card__body  { grid-area: body; }
.project-card:nth-child(odd)  { grid-template-areas: "body media"; }
.project-card:nth-child(odd) .project-card__media { grid-area: media; }
.project-card:nth-child(odd) .project-card__body  { grid-area: body; }
@media (max-width: 820px) {
  .project-card,
  .project-card:nth-child(even),
  .project-card:nth-child(odd) {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "body";
  }
}

.project-card__media {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
}
.project-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.project-card:hover .project-card__media img { transform: scale(1.03); }

.project-card__index {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 10px;
  background: color-mix(in srgb, var(--ink) 80%, transparent);
  color: var(--bg);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  border-radius: 999px;
}

.project-card__body { padding: clamp(8px, 2vw, 24px); }
.project-card__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.project-card__tag::before {
  content: ""; width: 18px; height: 1px; background: var(--muted);
}
.project-card__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05; letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.project-card__title a { background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size var(--t-med); padding-bottom: 2px;
}
.project-card__title a:hover { background-size: 100% 1px; }
.project-card__desc { color: var(--ink-soft); margin-bottom: 24px; max-width: 50ch; }
.project-card__meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
  padding-top: 18px; border-top: 1px solid var(--line);
}
.project-card__meta dt { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 4px; }
.project-card__meta dd { margin: 0; color: var(--ink); font-size: 14px; }
.project-card__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500; font-size: 14px;
  padding-bottom: 4px; border-bottom: 1px solid var(--ink);
  transition: gap var(--t-fast);
}
.project-card__cta:hover { gap: 14px; }

/* ---------- Capability grid ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 880px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cap-grid { grid-template-columns: 1fr; } }
.cap {
  background: var(--bg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 168px;
  transition: background var(--t-fast);
}
.cap:hover { background: var(--bg-alt); }
.cap__num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--muted); }
.cap__title { font-family: var(--serif); font-size: 22px; line-height: 1.1; }
.cap__desc { font-size: 13.5px; color: var(--muted); margin-top: auto; }

/* ---------- About strip ---------- */
.about-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 880px) { .about-strip { grid-template-columns: 1fr; } }
.about-strip__quote {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.about-strip__quote em { color: var(--accent); font-style: italic; }
.about-strip__meta { display: grid; gap: 24px; }
.fact { display: flex; gap: 18px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); }
.fact:first-child { border-top: 1px solid var(--line); }
.fact__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); min-width: 96px; }
.fact__value { font-size: 15px; color: var(--ink); }

/* ---------- CTA / Footer ---------- */
.cta-block {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: end;
}
.cta-block .h-lg { color: var(--bg); }
.cta-block p { color: color-mix(in srgb, var(--bg) 76%, transparent); max-width: 44ch; }
.cta-block .btn-primary { background: var(--bg); color: var(--ink); }
.cta-block .btn-primary:hover { background: var(--accent); color: var(--bg); }
@media (max-width: 720px) { .cta-block { grid-template-columns: 1fr; } }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; font-weight: 500; }
.footer-col a { display: block; padding: 6px 0; color: var(--ink-soft); font-size: 14.5px; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--accent); }
.footer-brand .display { font-family: var(--serif); font-size: 32px; line-height: 1; margin-bottom: 12px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 32ch; }

.footer-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
  flex-wrap: wrap; gap: 12px;
}
.footer-bar .socials { display: flex; gap: 12px; }
.footer-bar .socials a {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 999px;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.footer-bar .socials a:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.footer-bar .socials svg { width: 15px; height: 15px; }

/* ---------- Generic page header ---------- */
.page-header {
  padding: clamp(56px, 8vw, 120px) 0 clamp(32px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
}
.page-header__eyebrow { margin-bottom: 28px; }
.page-header__title { font-family: var(--serif); font-size: clamp(48px, 7vw, 96px); line-height: 0.98; letter-spacing: -0.02em; max-width: 14ch; }
.page-header__sub { margin-top: 28px; max-width: 60ch; color: var(--ink-soft); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.5; }

/* ---------- Tag chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 12px; letter-spacing: 0.02em; color: var(--ink-soft);
  background: var(--bg);
}
.chip.is-on { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- Index list (UI Work, Research) ---------- */
.index-list { border-top: 1px solid var(--line); }
.index-row {
  display: grid;
  grid-template-columns: 60px 1.4fr 1fr 0.6fr 32px;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding var(--t-fast);
}
.index-row:hover { padding-left: 12px; padding-right: 12px; background: var(--bg-alt); }
.index-row__num { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.index-row__title { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 30px); line-height: 1.1; }
.index-row__meta { font-size: 13px; color: var(--muted); }
.index-row__year { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.index-row__arrow { color: var(--ink); transition: transform var(--t-fast); }
.index-row:hover .index-row__arrow { transform: translate(4px, -4px); }
@media (max-width: 720px) {
  .index-row { grid-template-columns: 40px 1fr 32px; }
  .index-row__meta, .index-row__year { display: none; }
}

/* ---------- Two col ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }

/* ---------- Case study ---------- */
.case-hero {
  padding: clamp(56px, 8vw, 120px) 0 clamp(40px, 5vw, 80px);
}
.case-hero__meta { display: flex; gap: 28px; flex-wrap: wrap; color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 32px; }
.case-cover {
  aspect-ratio: 16/9;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.case-cover img { width: 100%; height: 100%; object-fit: cover; }

.case-section { padding: clamp(56px, 7vw, 96px) 0; }
.case-section h2 { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 24px; max-width: 22ch; }
.case-section p { color: var(--ink-soft); max-width: 64ch; margin-bottom: 16px; }

.case-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0;
}
@media (max-width: 720px) { .case-stats { grid-template-columns: 1fr 1fr; } }
.stat { background: var(--bg); padding: 28px 22px; }
.stat__value { font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); line-height: 1; letter-spacing: -0.01em; }
.stat__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

.case-figure {
  margin: 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 16/10;
}
.case-figure img { width: 100%; height: 100%; object-fit: cover; }
.case-figure figcaption { padding: 14px 4px 0; font-size: 13px; color: var(--muted); }

.case-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) { .case-next { grid-template-columns: 1fr; } }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
}

/* ---------- Placeholder image ---------- */
.ph {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, var(--bg-alt) 0 14px, color-mix(in srgb, var(--bg-alt) 70%, var(--bg)) 14px 28px);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.ph span { padding: 6px 10px; background: var(--bg); border: 1px solid var(--line); border-radius: 4px; }

/* ---------- Tools / Stack ---------- */
.tools {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tool {
  padding: 8px 14px; border: 1px solid var(--line); border-radius: 4px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em;
  background: var(--bg);
  color: var(--ink);
}

/* ---------- Misc ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
}
.kicker .line { width: 28px; height: 1px; background: var(--muted); }

.scroll-hint {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.scroll-hint .bar {
  width: 1px; height: 16px; background: var(--muted);
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(4px); opacity: 1; }
}
