/* ============================================================
   AKTIVUKM.MY — refined editorial study journal
   Warm paper · ink hairlines · burnt rust accent
   Fraunces (light, italic accents) / Archivo / Space Mono
   ============================================================ */

:root {
  --paper:   #F6F3EC;
  --surface: #FCFAF5;
  --ink:     #191713;
  --body:    #3E3A30;
  --muted:   #8B8271;
  --accent:  #C24914;
  --accent-soft: rgba(194, 73, 20, 0.07);
  --forest:  #2E4239;
  --gold:    #C9A25B;
  --line:    rgba(25, 23, 19, 0.16);
  --line-soft: rgba(25, 23, 19, 0.09);

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Bricolage Grotesque', 'Helvetica Neue', sans-serif;
  --mono:  'Spline Sans Mono', 'Courier New', monospace;
  --orange: var(--accent);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);

  --container: 1000px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 450;
  line-height: 1.65;
  overscroll-behavior: none;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--surface); }

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

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

.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ============================================================
   MASTHEAD
   ============================================================ */
.masthead {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.masthead__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 9px 32px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.masthead__meta .dot { color: var(--accent); }

.masthead__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  position: relative;
}

.wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: none;
}
.wordmark em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--body);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav a:hover { color: var(--ink); }

.nav .nav__cta {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 10px 22px;
  color: var(--ink);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s;
}
.nav .nav__cta::after { display: none; }
.nav .nav__cta:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.burger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  width: 44px; height: 44px;
  border-radius: 999px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.2s;
}
body.nav-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO — quiet editorial
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 32px 110px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background-image: url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* delicate radial wash + paper veil so text stays legible over the image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 82% 12%, rgba(201, 162, 91, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 45% at 6% 92%, rgba(46, 66, 57, 0.08), transparent 60%),
    linear-gradient(to right, rgba(246, 243, 236, 0.92) 0%, rgba(246, 243, 236, 0.78) 42%, rgba(246, 243, 236, 0.40) 100%);
  pointer-events: none;
}

.hero__inner { max-width: var(--container); margin: 0 auto; width: 100%; position: relative; z-index: 2; }

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.hero__kicker::after {
  content: '';
  width: 56px; height: 1px;
  background: var(--accent);
}
.hero__kicker .blink {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.2; } }

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(52px, 8.4vw, 118px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 15ch;
}
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(46px);
  animation: wordIn 1s var(--ease-out) forwards;
  animation-delay: calc(var(--i) * 80ms + 150ms);
}
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 .hl {
  position: relative;
  font-style: italic;
  font-weight: 500;
  z-index: 0;
}
.hero h1 .hl--accent { color: var(--accent); }
.hero h1 .hl::after {
  content: '';
  position: absolute;
  left: -0.08em; right: -0.08em;
  bottom: 0.08em;
  height: 0.6em;
  background: var(--accent);
  opacity: 0.28;
  border-radius: 2px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 0.85s var(--ease-out) forwards;
}
.hero h1 .hl--accent::after { animation-delay: 1.1s; }
.hero h1 .hl:not(.hl--accent)::after { animation-delay: 1.35s; }
@keyframes drawLine { to { transform: scaleX(1); } }

.hero__sub {
  margin-top: 40px;
  max-width: 44ch;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  color: var(--body);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.9s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__actions {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.15s forwards;
}

/* rotating circular seal */
@keyframes spin { to { transform: rotate(360deg); } }

.hero__scrollhint {
  position: absolute;
  bottom: 32px; left: 32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__scrollhint::after {
  content: '';
  width: 1px; height: 44px;
  background: linear-gradient(var(--muted), transparent);
  animation: drip 2.2s ease-in-out infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   MARQUEE — slim editorial ticker
   ============================================================ */
.marquee-band {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
}
.marquee-band--gold { background: var(--surface); border-top: 1px solid var(--line); }

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee--reverse { animation-direction: reverse; animation-duration: 46s; }
.marquee-band:hover .marquee { animation-play-state: paused; }

.marquee span {
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 22px);
  color: var(--body);
  white-space: nowrap;
  padding: 13px 0;
  display: flex;
  align-items: center;
}
.marquee span::after {
  content: '·';
  font-style: normal;
  margin: 0 30px;
  color: var(--accent);
}

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

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: 110px 32px; }
.section__head {
  max-width: var(--container);
  margin: 0 auto 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section__title .no {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.24em;
  color: var(--accent);
  vertical-align: super;
  letter-spacing: 0.14em;
  margin-right: 6px;
}
.section__link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--body);
  border-bottom: 1px solid var(--line);
  padding-bottom: 5px;
  transition: color 0.25s, border-color 0.25s;
}
.section__link:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   FEATURED ARTICLE
   ============================================================ */
.featured {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  border: 1px solid var(--line);
  background: var(--surface);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.35s ease;
}
.featured:hover { border-color: var(--ink); }

.featured__art {
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 60% at 50% 42%, rgba(201, 162, 91, 0.18), transparent 65%),
    var(--paper);
  overflow: hidden;
}
.featured__art svg { width: 62%; transition: transform 1s var(--ease-soft); }
.featured:hover .featured__art svg { transform: scale(1.04) rotate(-1.5deg); }
.featured__art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-soft); }
.featured:hover .featured__art img { transform: scale(1.04); }

.featured__body { padding: 56px 52px; display: flex; flex-direction: column; gap: 20px; }
.featured__tag {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
}
.featured__tag::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.featured h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.featured:hover h3 { color: var(--accent); transition: color 0.3s; }
.featured p { color: var(--body); font-size: 16.5px; font-weight: 500; }
.featured__meta {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  gap: 22px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   ARTICLE GRID — hairline editorial cards
   ============================================================ */
.article-grid {
  max-width: var(--container);
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 32px;
}

.card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-top: 1px solid var(--ink);
  padding-top: 22px;
  position: relative;
  background: transparent;
}

.card__art {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  margin-bottom: 22px;
}
.card__art svg { width: 46%; transition: transform 0.9s var(--ease-soft); }
.card:hover .card__art svg { transform: scale(1.06); }
.card__art img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s var(--ease-soft); }
.card:hover .card__art img { transform: scale(1.05); }

.card__body { display: flex; flex-direction: column; gap: 10px; flex: 1; padding: 0; }
.card__cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}
.card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.card:hover h3 { color: var(--accent); }
.card__excerpt {
  color: var(--body);
  font-weight: 450;
  font-size: 14.5px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card__meta {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.card__meta span:last-child { transition: transform 0.4s var(--ease-out); display: inline-block; }
.card:hover .card__meta span:last-child { transform: translate(4px, -4px); color: var(--accent); }

/* ============================================================
   KINETIC — quiet statement band
   ============================================================ */
.kinetic {
  background: var(--ink);
  color: var(--paper);
  padding: 130px 32px;
  overflow: hidden;
  text-align: center;
}
.kinetic__line {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(46px, 9vw, 120px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.kinetic__line .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: calc(var(--i) * 130ms);
}
.kinetic.in .kinetic__line .word { opacity: 1; transform: translateY(0); }
.kinetic__line--hollow {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 243, 236, 0.75);
}
.kinetic__line--hollow .word { color: transparent; }
.kinetic__note {
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.45);
}

/* ============================================================
   POMODORO TOOL
   ============================================================ */
.tool { background: var(--forest); color: var(--paper); border-bottom: 1px solid var(--line); }
.tool .section__title { color: var(--paper); }
.tool .section__title .no { color: var(--gold); }

.pomodoro {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.pomo__dial {
  position: relative;
  width: min(340px, 78vw);
  aspect-ratio: 1;
  margin: 0 auto;
}
.pomo__dial svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.pomo__track { stroke: rgba(246, 243, 236, 0.14); }
.pomo__bar {
  stroke: var(--gold);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.5s linear;
}
.pomo__time {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pomo__time .digits {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 6.5vw, 80px);
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}
.pomo__state { color: var(--gold); letter-spacing: 0.26em; }

.pomo__controls { display: flex; flex-direction: column; gap: 24px; }
.pomo__controls h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.pomo__controls h3 em { color: var(--gold); font-style: italic; font-weight: 500; }
.pomo__controls p { color: rgba(246, 243, 236, 0.62); max-width: 44ch; font-weight: 500; }

.pomo__modes { display: flex; gap: 10px; flex-wrap: wrap; }
.pomo__mode {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(246, 243, 236, 0.7);
  border: 1px solid rgba(246, 243, 236, 0.3);
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.pomo__mode.active, .pomo__mode:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.pomo__actions { display: flex; gap: 12px; }
.pomo__btn {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--paper);
  border-radius: 999px;
  padding: 15px 34px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  background: var(--paper);
  color: var(--ink);
}
.pomo__btn:hover { background: var(--gold); border-color: var(--gold); }
.pomo__btn--ghost { background: transparent; color: var(--paper); }
.pomo__btn--ghost:hover { background: rgba(246, 243, 236, 0.1); color: var(--paper); border-color: var(--paper); }

.pomo__rounds { display: flex; gap: 10px; align-items: center; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(246, 243, 236, 0.45); }
.pomo__rounds .pip { width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--gold); }
.pomo__rounds .pip.done { background: var(--gold); }

/* ============================================================
   CATEGORY INDEX ROWS
   ============================================================ */
.cat-list { max-width: var(--container); margin: 0 auto; border-top: 1px solid var(--line); }
.cat-row {
  display: grid;
  grid-template-columns: 70px 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 34px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  position: relative;
  transition: padding 0.4s var(--ease-out), background 0.4s ease;
}
.cat-row:hover { padding-left: 30px; background: var(--accent-soft); }
.cat-row__no { font-family: var(--mono); font-size: 12px; color: var(--muted); transition: color 0.3s; }
.cat-row:hover .cat-row__no { color: var(--accent); }
.cat-row__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 44px);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.cat-row__count { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.cat-row__arrow {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  color: var(--muted);
  transition: transform 0.45s var(--ease-out), color 0.3s;
}
.cat-row:hover .cat-row__arrow { transform: translateX(8px) rotate(-45deg); color: var(--accent); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter { background: var(--surface); border-top: 1px solid var(--line); }
.newsletter__inner { max-width: 700px; margin: 0 auto; text-align: center; }
.newsletter h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.newsletter h2 em { font-style: italic; font-weight: 500; color: var(--accent); }
.newsletter p { margin: 22px auto 42px; color: var(--body); font-weight: 500; max-width: 44ch; }

.news-form { display: flex; gap: 0; max-width: 520px; margin: 0 auto; border-bottom: 1px solid var(--ink); }
.news-form input {
  flex: 1;
  font-family: var(--mono);
  font-size: 13.5px;
  padding: 16px 4px;
  border: none;
  background: transparent;
  outline: none;
  color: var(--ink);
}
.news-form input::placeholder { color: var(--muted); }
.news-form button {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  border: none;
  padding: 16px 4px 16px 24px;
  cursor: pointer;
  transition: color 0.25s;
}
.news-form button:hover { color: var(--accent); }
.news-form__note { margin-top: 20px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--paper); }
.footer .marquee span {
  font-size: clamp(42px, 7vw, 92px);
  color: rgba(246, 243, 236, 0.9);
  padding: 30px 0;
  font-weight: 500;
}
.footer .marquee span::after { color: var(--accent); font-size: 0.5em; }
.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  border-top: 1px solid rgba(246, 243, 236, 0.14);
}
.footer__grid h4 { font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer__grid a {
  display: block;
  color: rgba(246, 243, 236, 0.6);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.25s, transform 0.35s var(--ease-out);
}
.footer__grid a:hover { color: var(--paper); transform: translateX(5px); }
.footer__brand p { color: rgba(246, 243, 236, 0.45); font-size: 14.5px; font-weight: 500; max-width: 32ch; margin-top: 14px; line-height: 1.7; }
.footer__bottom {
  border-top: 1px solid rgba(246, 243, 236, 0.14);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.35);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 34px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.35s var(--ease-out);
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--paper); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
  padding: 110px 32px 80px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background-image: url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 88% 8%, rgba(201, 162, 91, 0.12), transparent 60%),
    linear-gradient(to right, rgba(246, 243, 236, 0.92) 0%, rgba(246, 243, 236, 0.80) 45%, rgba(246, 243, 236, 0.52) 100%);
  pointer-events: none;
}
.page-hero__inner { max-width: var(--container); margin: 0 auto; position: relative; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(42px, 6.6vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
.page-hero h1 .word { display: inline-block; opacity: 0; transform: translateY(40px); animation: wordIn 0.9s var(--ease-out) forwards; animation-delay: calc(var(--i) * 70ms + 100ms); }
.page-hero h1 em { font-style: italic; font-weight: 500; color: var(--accent); }
.page-hero p { margin-top: 26px; max-width: 52ch; color: var(--body); font-weight: 500; font-size: 18px; }

/* filter pills */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 44px; }
.filter {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--body);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  z-index: 1000;
}

.article-hero { padding: 100px 32px 70px; border-bottom: 1px solid var(--line); }
.article-hero__inner { max-width: var(--container); margin: 0 auto; }
.article-figure { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.article-figure { margin-top: 48px; }
.article-figure img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line-soft);
}
.article-hero h1 { max-width: 20ch; }
.article-hero .tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.article-hero .tag::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.article-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.article-hero .byline {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.article-body { max-width: var(--container); margin: 0 auto; padding: 80px 32px 90px; }
.article-body > * { max-width: 720px; }
.article-body p { margin-bottom: 28px; font-size: 18.5px; font-weight: 500; color: var(--body); line-height: 1.75; }
.article-body p strong { font-weight: 600; color: var(--ink); }
.article-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 4.4em;
  float: left;
  line-height: 0.82;
  padding: 6px 14px 0 0;
  color: var(--accent);
}
.article-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  margin: 56px 0 22px;
  letter-spacing: -0.01em;
}
.article-body ul { margin: 0 0 28px 22px; font-size: 18.5px; font-weight: 500; color: var(--body); line-height: 1.7; }
.article-body li { margin-bottom: 10px; }
.article-body li::marker { color: var(--accent); }
.article-body blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 27px;
  line-height: 1.4;
  border-left: 1px solid var(--accent);
  padding: 8px 0 8px 32px;
  margin: 52px 0;
  color: var(--ink);
}
.tipbox {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 30px 4px;
  margin: 48px 0;
}
.tipbox .label { color: var(--accent); display: block; margin-bottom: 10px; }
.tipbox p { margin: 0; font-size: 16.5px; }

.article-nav { max-width: var(--container); margin: 0 auto; padding: 0 32px 110px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-grid h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.15; margin-bottom: 26px; letter-spacing: -0.015em; }
.about-grid p { color: var(--body); font-weight: 500; margin-bottom: 20px; font-size: 18px; line-height: 1.75; }
.stat-stack { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.stat {
  padding: 28px 4px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  transition: padding 0.4s var(--ease-out), background 0.4s;
}
.stat:hover { padding-left: 20px; background: var(--accent-soft); }
.stat .num { font-family: var(--serif); font-weight: 500; font-size: 46px; line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; }
.stat .cap { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); text-align: right; }

/* ============================================================
   METHOD BAND (replaces kinetic on home)
   ============================================================ */
.method {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 32px;
  overflow: hidden;
}
.method__inner { max-width: var(--container); margin: 0 auto; }
.method__head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.method__headtext { max-width: 62ch; }
.method__art {
  position: relative;
  border: 1px solid rgba(246, 243, 236, 0.16);
  background: rgba(246, 243, 236, 0.02);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.method__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.method__kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.method__kicker::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.method__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 26px 0 20px;
}
.method__title em { font-style: italic; color: var(--gold); }
.method__lead {
  color: rgba(246, 243, 236, 0.62);
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 52ch;
}

.method__steps {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(246, 243, 236, 0.16);
}
.mstep {
  padding: 40px 34px 44px;
  border-right: 1px solid rgba(246, 243, 236, 0.16);
  position: relative;
  transition: background 0.4s ease;
}
.mstep:last-child { border-right: none; }
.mstep:hover { background: rgba(246, 243, 236, 0.04); }
.mstep__top { display: flex; align-items: baseline; gap: 16px; margin-bottom: 22px; }
.mstep__no {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.mstep__word {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  color: rgba(246, 243, 236, 0.9);
}
.mstep h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.mstep p { color: rgba(246, 243, 236, 0.6); font-weight: 500; font-size: 16px; line-height: 1.7; }
.mstep p em { color: var(--gold); font-style: italic; }
.mstep__stat {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid rgba(246, 243, 236, 0.3);
  border-radius: 999px;
  padding: 7px 16px;
}

.method__proof {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(246, 243, 236, 0.16);
  border-top: none;
}
.mproof {
  padding: 34px 28px;
  border-right: 1px solid rgba(246, 243, 236, 0.16);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mproof:last-child { border-right: none; }
.mproof__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1;
  color: var(--gold);
}
.mproof__cap {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.5);
  line-height: 1.5;
}

/* ============================================================
   CONTACT CTA (replaces newsletter on home + blog)
   ============================================================ */
.contact-cta { background: var(--surface); border-top: 1px solid var(--line); }
.contact-cta__inner { max-width: 700px; margin: 0 auto; text-align: center; }
.contact-cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.contact-cta h2 em { font-style: italic; color: var(--accent); }
.contact-cta p { margin: 22px auto 40px; color: var(--body); font-weight: 500; max-width: 46ch; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-grid h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.contact-grid > div > p { color: var(--body); font-weight: 500; font-size: 18px; line-height: 1.75; margin-bottom: 24px; max-width: 46ch; }
.contact-mail {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 40px);
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  transition: border-color 0.3s ease;
}
.contact-mail:hover { border-color: var(--accent); }

.contact-cards { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ccard {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 26px 24px;
  transition: border-color 0.3s ease, transform 0.35s var(--ease-out);
}
.ccard:hover { border-color: var(--ink); transform: translateY(-3px); }
.ccard__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.ccard__val { font-family: var(--serif); font-size: 21px; color: var(--ink); }
.ccard__hint { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: auto; }

.contact-side { border-top: 1px solid var(--ink); }
.cside__row {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 20px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
}
.cside__k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }
.cside__v { font-size: 16px; color: var(--body); font-weight: 500; line-height: 1.6; }
.cside__social { display: flex; flex-direction: column; gap: 6px; }
.cside__social a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); width: fit-content; padding-bottom: 2px; transition: color 0.25s, border-color 0.25s; }
.cside__social a:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================================
   LEGAL / CONTENT PAGES — container width, distinct layouts
   ============================================================ */
.lwrap { max-width: var(--container); margin: 0 auto; padding: 64px 32px 96px; }

/* shared readable typography */
.lwrap p { font-size: 17px; font-weight: 450; color: var(--body); line-height: 1.78; margin-bottom: 20px; }
.lwrap p strong { font-weight: 600; color: var(--ink); }
.lwrap a.inline { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--line); }
.lwrap a.inline:hover { border-color: var(--accent); }

/* ---- ABOUT: editorial two-column with stat strip ---- */
.about2 .about2__intro { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.about2__intro h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 3vw, 34px); line-height: 1.14; letter-spacing: -0.015em; position: sticky; top: 100px; }
.about2__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 52px 0; border: 1px solid var(--line); }
.about2__stat { padding: 30px 26px; border-right: 1px solid var(--line); }
.about2__stat:last-child { border-right: none; }
.about2__stat b { display: block; font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); color: var(--accent); line-height: 1; margin-bottom: 8px; }
.about2__stat span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.about2 h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(22px, 2.6vw, 30px); margin: 44px 0 16px; color: var(--ink); letter-spacing: -0.01em; }
.about2__body { max-width: 720px; }

/* ---- CONTACT: centered, big mail, info tiles ---- */
.contact2 { text-align: center; }
.contact2__mailbig { display: inline-block; font-family: var(--serif); font-style: italic; font-size: clamp(30px, 5vw, 56px); color: var(--accent); text-decoration: none; margin: 8px 0 40px; }
.contact2__mailbig:hover { color: var(--ink); }
.contact2 > p { max-width: 60ch; margin-left: auto; margin-right: auto; }
.contact2__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 48px 0 8px; text-align: left; }
.contact2__tile { border: 1px solid var(--line); padding: 26px 24px; background: var(--surface); }
.contact2__tile h3 { font-family: var(--sans); font-weight: 700; font-size: 16px; margin-bottom: 10px; }
.contact2__tile p { font-size: 15px; margin-bottom: 0; }
.contact2__note { max-width: 60ch; margin: 40px auto 0; font-size: 15px; color: var(--muted); }

/* ---- PRIVACY: left-rail sticky index + numbered blocks ---- */
.legaldoc { display: grid; grid-template-columns: 210px 1fr; gap: 60px; align-items: start; }
.legaldoc__rail { position: sticky; top: 100px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; }
.legaldoc__rail .rail-title { text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); margin-bottom: 18px; font-size: 10px; }
.legaldoc__rail a { display: block; color: var(--body); text-decoration: none; padding: 7px 0; border-bottom: 1px solid var(--line-soft); transition: color 0.2s; }
.legaldoc__rail a:hover { color: var(--accent); }
.legaldoc__main { max-width: 680px; }
.legaldoc__main .intro { font-size: 19px; color: var(--ink); font-weight: 500; line-height: 1.6; margin-bottom: 20px; }
.legaldoc__sec { padding: 30px 0; border-top: 1px solid var(--line); }
.legaldoc__sec:first-of-type { border-top: none; }
.legaldoc__sec h2 { font-family: var(--serif); font-weight: 600; font-size: 24px; margin-bottom: 14px; color: var(--ink); display: flex; gap: 14px; align-items: baseline; letter-spacing: -0.01em; }
.legaldoc__sec h2 .n { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.legaldoc__sec ul { margin: 0 0 18px 20px; font-size: 16.5px; color: var(--body); line-height: 1.7; }
.legaldoc__sec li { margin-bottom: 8px; }
.legaldoc__sec li::marker { color: var(--accent); }

/* ---- TERMS: numbered card blocks ---- */
.terms2 .terms2__intro { max-width: 720px; font-size: 19px; color: var(--ink); font-weight: 500; line-height: 1.6; margin-bottom: 44px; }
.terms2__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); border: 1px solid var(--line); }
.terms2__card { background: var(--paper); padding: 30px 28px; }
.terms2__card .tnum { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--accent); }
.terms2__card h2 { font-family: var(--serif); font-weight: 600; font-size: 21px; margin: 10px 0 12px; color: var(--ink); letter-spacing: -0.01em; }
.terms2__card p { font-size: 15.5px; margin-bottom: 12px; line-height: 1.7; }
.terms2__card ul { margin: 0 0 8px 18px; font-size: 15px; color: var(--body); line-height: 1.65; }
.terms2__card li { margin-bottom: 6px; }
.terms2__card li::marker { color: var(--accent); }
.terms2__full { grid-column: 1 / -1; }
.legal-cta { margin-top: 44px; border-top: 1px solid var(--line); padding-top: 32px; display: flex; justify-content: space-between; align-items: baseline; gap: 20px; flex-wrap: wrap; }
.legal-cta a { font-family: var(--serif); font-style: italic; font-size: clamp(22px, 3vw, 30px); color: var(--accent); text-decoration: none; }
.legal-cta a:hover { color: var(--ink); }
.legal-cta span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: 0;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    z-index: 900;
    transform: translateY(-100%);
    transition: transform 0.55s var(--ease-out);
  }
  .nav a { font-size: 17px; }
  body.nav-open .nav { transform: translateY(0); }
  .burger { display: flex; position: relative; z-index: 901; }
  .featured { grid-template-columns: 1fr; }
  .featured__art { border-right: none; border-bottom: 1px solid var(--line); min-height: 260px; }
  .featured__body { padding: 40px 32px; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .pomodoro { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .method__steps { grid-template-columns: 1fr; }
  .method__head { grid-template-columns: 1fr; gap: 32px; }
  .method__art { max-width: 380px; }
  .mstep { border-right: none; border-bottom: 1px solid rgba(246, 243, 236, 0.16); }
  .method__proof { grid-template-columns: 1fr 1fr; }
  .mproof:nth-child(2) { border-right: none; }
  .mproof:nth-child(1), .mproof:nth-child(2) { border-bottom: 1px solid rgba(246, 243, 236, 0.16); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about2 .about2__intro { grid-template-columns: 1fr; gap: 24px; }
  .about2__intro h2 { position: static; }
  .about2__stats { grid-template-columns: 1fr; }
  .about2__stat { border-right: none; border-bottom: 1px solid var(--line); }
  .about2__stat:last-child { border-bottom: none; }
  .contact2__tiles { grid-template-columns: 1fr; }
  .legaldoc { grid-template-columns: 1fr; gap: 28px; }
  .legaldoc__rail { position: static; display: none; }
  .terms2__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .article-grid { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; gap: 4px; border-bottom: none; }
  .news-form input { border-bottom: 1px solid var(--ink); }
  .news-form button { border-bottom: 1px solid var(--ink); align-self: flex-start; padding-left: 4px; }
  .cat-row { grid-template-columns: 40px 1fr auto; padding: 26px 4px; }
  .cat-row__count { display: none; }
  .masthead__meta .hide-m { display: none; }
  .section { padding: 80px 24px; }
  .hero { padding: 80px 24px 110px; }
  .hero__scrollhint { left: 24px; }
  .method { padding: 80px 24px; }
  .method__proof { grid-template-columns: 1fr 1fr; }
  .mproof { padding: 26px 20px; }
  .contact-cards { grid-template-columns: 1fr; }
  .cside__row { grid-template-columns: 100px 1fr; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
