/* ==========================================================
   Gowda's Solution — Web Studio
   Editorial "working index" system
   Paper · Ink · Cobalt
   ========================================================== */

:root {
  --paper: #efedE5;
  --paper-2: #e8e5db;
  --ink: #17150e;
  --ink-2: #6a6759;
  --ink-3: #96937f;
  --rule: #d3cfc1;
  --rule-soft: #dcd8cc;
  --accent: #e0332b;
  --accent-ink: #efede5;

  --serif: "Newsreader", Georgia, serif;
  --grotesk: "Bricolage Grotesque", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --pad: clamp(1.15rem, 4.5vw, 4.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--accent-ink); }

.skip {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper); padding: .6rem 1rem; font-family: var(--mono); font-size: .8rem;
}
.skip:focus { left: 0; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Paper texture — extremely subtle, no gradients */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .028;
  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='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
main, .masthead, .foot { position: relative; z-index: 2; }

/* ==========================================================
   Background design layer — "the page as a design file"
   Faint markup + print marks behind everything. Static only,
   pointer-events:none, so it can never cover content.
   ========================================================== */
.canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* Crop / registration marks at the page corners */
.crop { position: absolute; width: 16px; height: 16px; }
.crop::before, .crop::after { content: ""; position: absolute; background: var(--ink); opacity: .28; }
.crop::before { width: 16px; height: 1px; }
.crop::after  { width: 1px; height: 16px; }
.crop--tl { top: 16px; left: 16px; }
.crop--tr { top: 16px; right: 16px; }
.crop--tr::before { right: 0; } .crop--tr::after { right: 0; }
.crop--bl { bottom: 16px; left: 16px; }
.crop--bl::before { bottom: 0; } .crop--bl::after { bottom: 0; }
.crop--br { bottom: 16px; right: 16px; }
.crop--br::before { right: 0; bottom: 0; } .crop--br::after { right: 0; bottom: 0; }

/* Vertical spine microtext down the margins */
.spine {
  position: absolute; top: 50%; font-family: var(--mono); font-size: .62rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink);
  opacity: .22; white-space: nowrap;
}
.spine--l { left: 12px; writing-mode: vertical-rl; transform: translateY(-50%) rotate(180deg); }
.spine--r { right: 12px; writing-mode: vertical-rl; transform: translateY(-50%); }
@media (max-width: 1180px) { .spine { display: none; } }

/* Watermark host sections */
.hero, .approach, .services, .studio, .contact { position: relative; isolation: isolate; overflow: clip; }

/* Giant HTML-tag watermark per section */
.deco {
  position: absolute; z-index: -1; pointer-events: none; user-select: none;
  font-family: var(--mono); font-weight: 400; line-height: 1; white-space: nowrap;
  font-size: clamp(3.5rem, 13vw, 11rem); letter-spacing: -.04em;
  color: color-mix(in srgb, var(--ink) 8%, transparent);
}
.deco--tr { top: clamp(1rem, 3vw, 2.5rem); right: var(--pad); }
.deco--br { bottom: clamp(1rem, 3vw, 2.5rem); right: var(--pad); }
.deco--bl { bottom: clamp(1rem, 3vw, 2.5rem); left: var(--pad); }
/* Centred vertically — sits behind the body rows, clear of the section heading */
.deco--mid { top: 50%; right: var(--pad); transform: translateY(-50%); }
/* Hero tag is smaller so it sits in the empty right column, clear of the headline */
.hero .deco { font-size: clamp(2.5rem, 7vw, 6.5rem); }
@media (max-width: 640px) { .deco { font-size: clamp(3rem, 22vw, 6rem); } }

/* Wireframe website-element watermarks (browser, cursor, button, input…) */
.wf {
  position: absolute; z-index: -1; pointer-events: none; user-select: none;
  color: color-mix(in srgb, var(--ink) 15%, transparent);
}
.wf svg { display: block; width: 100%; height: 100%; overflow: visible; }
.wf--accent { color: color-mix(in srgb, var(--accent) 26%, transparent); }
.wf--hero    { width: clamp(180px, 24vw, 300px); right: var(--pad); top: 22%; }
.wf--cursor  { width: clamp(46px, 6vw, 74px); }
.wf--services{ width: clamp(150px, 18vw, 230px); right: var(--pad); bottom: 12%; }
.wf--studio  { width: clamp(120px, 16vw, 190px); left: var(--pad); bottom: 12%; }
.wf--contact { width: clamp(200px, 26vw, 320px); right: var(--pad); bottom: 16%; }
.wf--approach{ width: clamp(120px, 15vw, 180px); right: calc(var(--pad) + 2vw); top: 30%; }
.wf--work    { width: clamp(56px, 7vw, 90px); right: 10vw; top: 8%; }
@media (max-width: 820px) {
  .wf--hero, .wf--services, .wf--approach, .wf--work { display: none; }
  .wf--contact { width: 180px; opacity: .8; }
}

/* ---------- Type roles ---------- */
.mono, .idx, .clock, .sec-head__no, .hero__eyebrow, .hero__index-label,
.hero__meta, .index__cols, .row__no, .row__year, .step__no, .spec__tag,
.foot__label, .foot__colophon, .form__field label {
  font-family: var(--mono);
}

/* ==========================================================
   Masthead
   ========================================================== */
.masthead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 1rem; padding: 1rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
}
.masthead.pinned {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--rule);
  padding-top: .75rem; padding-bottom: .75rem;
}
.wordmark { display: flex; align-items: baseline; gap: .55rem; }
.wordmark__name { font-family: var(--grotesk); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; }
.wordmark__tag { font-family: var(--mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-2); }
.masthead__nav { display: flex; justify-content: center; gap: 1.6rem; }
.masthead__nav a { font-family: var(--mono); font-size: .8rem; color: var(--ink-2); transition: color .25s; }
.masthead__nav a:hover { color: var(--ink); }
.masthead__nav .idx { color: var(--ink-3); margin-right: .25em; }
.masthead__end { display: flex; align-items: center; justify-content: flex-end; gap: 1.2rem; }
.clock { font-family: var(--mono); font-size: .78rem; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.enquire {
  font-family: var(--mono); font-size: .78rem; padding: .4rem .85rem;
  border: 1px solid var(--ink); border-radius: 2px; transition: background .25s, color .25s;
}
.enquire:hover { background: var(--ink); color: var(--paper); }

.menu-btn { display: none; flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; padding: 4px; }
.menu-btn span { width: 22px; height: 1.5px; background: var(--ink); transition: .3s var(--ease); }
.masthead.open .menu-btn span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.masthead.open .menu-btn span:nth-child(2) { opacity: 0; }
.masthead.open .menu-btn span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 45; background: var(--paper);
  display: flex; flex-direction: column; justify-content: center; gap: .4rem; padding: var(--pad);
}
/* The hidden attribute must win over the display above, or the full-screen
   menu overlays the whole page on desktop. */
.drawer[hidden] { display: none; }
.drawer a { font-family: var(--grotesk); font-weight: 600; font-size: clamp(2rem, 9vw, 3.2rem); display: flex; align-items: baseline; gap: 1rem; }
.drawer .idx { font-family: var(--mono); font-size: .9rem; color: var(--accent); }

@media (max-width: 860px) {
  .masthead { grid-template-columns: 1fr auto; }
  .masthead__nav, .masthead__end { display: none; }
  .menu-btn { display: flex; }
}

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  padding: clamp(7rem, 16vh, 11rem) var(--pad) clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid var(--rule);
}
.hero__eyebrow {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-2);
  padding-bottom: 1.4rem; margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
  border-bottom: 1px solid var(--rule-soft);
}
.hero__body { display: block; }
.hero__headline {
  font-family: var(--grotesk); font-weight: 600;
  font-size: clamp(2.6rem, 8.5vw, 8rem); line-height: 0.97; letter-spacing: -.035em;
}
.hero__headline em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.01em; color: var(--accent); }
.hero__headline .ln { display: block; overflow: hidden; }
.hero__headline .ln > span { display: block; }

.hero__index {
  border-top: 1px solid var(--ink); padding-top: .7rem;
  display: flex; flex-direction: column;
}
.hero__index-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); margin-bottom: .7rem; }
.hero__index a {
  display: grid; grid-template-columns: 2rem 1fr; grid-auto-rows: min-content;
  padding: .55rem 0; border-top: 1px solid var(--rule-soft);
  font-family: var(--serif); font-size: 1rem; transition: color .25s, padding-left .25s var(--ease);
}
.hero__index a i { font-family: var(--mono); font-style: normal; font-size: .75rem; color: var(--ink-3); }
.hero__index a span { grid-column: 2; font-family: var(--mono); font-size: .68rem; color: var(--ink-2); margin-top: .1rem; }
.hero__index a:hover { color: var(--accent); padding-left: .4rem; }
.hero__index a:hover i { color: var(--accent); }

.hero__sub {
  margin-top: clamp(2rem, 5vw, 3.2rem); max-width: 34ch;
  font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.4; color: var(--ink);
}
.hero__meta {
  margin-top: clamp(2rem, 5vw, 3rem); display: flex; flex-wrap: wrap; gap: 1.4rem;
  font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-2);
}
.hero__meta-avail { display: inline-flex; align-items: center; gap: .5rem; }
.hero__meta-avail b { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: blip 2.4s ease-in-out infinite; }
@keyframes blip { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

@media (max-width: 780px) {
  .hero__body { grid-template-columns: 1fr; }
  .hero__index { max-width: 20rem; }
}

/* ==========================================================
   Scrolling tape — sits between the hero and the work index
   ========================================================== */
.tape {
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  padding: clamp(.7rem, 1.6vw, 1.1rem) 0;
  background: var(--paper);
}
.tape__track { display: flex; width: max-content; animation: tape 22s linear infinite; }
.tape:hover .tape__track { animation-play-state: paused; }
/* Two identical groups; each carries its own trailing gap so the loop is seamless */
.tape__group {
  display: flex; align-items: center; flex: none;
  gap: clamp(1.1rem, 2.6vw, 2.4rem); padding-right: clamp(1.1rem, 2.6vw, 2.4rem);
}
.tape__item {
  font-family: var(--grotesk); font-weight: 600; text-transform: uppercase;
  font-size: clamp(.95rem, 2.1vw, 1.55rem); letter-spacing: -.01em; white-space: nowrap;
}
.tape__sep { color: var(--accent); font-size: clamp(.7rem, 1.3vw, 1rem); }
@keyframes tape { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .tape__track { animation: none; } }

/* ==========================================================
   Section head (shared)
   ========================================================== */
.sec-head {
  position: relative;
  display: grid; grid-template-columns: auto 1fr; align-items: end;
  column-gap: clamp(1.1rem, 3vw, 2.6rem);
  padding: clamp(4.5rem, 9vw, 7.5rem) var(--pad) clamp(1.6rem, 4vw, 2.6rem);
}
/* Oversized outlined chapter numeral */
.sec-head__no {
  font-family: var(--grotesk); font-weight: 700; line-height: .68;
  font-size: clamp(4rem, 13vw, 12rem); letter-spacing: -.05em;
  color: transparent; -webkit-text-stroke: 1.5px var(--ink-3);
  text-stroke: 1.5px var(--ink-3);
}
.sec-head__title {
  font-family: var(--grotesk); font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 6rem); letter-spacing: -.038em; line-height: .9;
  text-wrap: balance;
}
.sec-head__title em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--accent); letter-spacing: -.005em;
}
.sec-head__note {
  position: absolute; right: var(--pad); bottom: clamp(1.6rem, 4vw, 2.6rem);
  font-family: var(--mono); font-size: .74rem; line-height: 1.6; color: var(--ink-2); text-align: right;
}
@media (max-width: 720px) {
  .sec-head { grid-template-columns: 1fr; row-gap: .3rem; }
  .sec-head__no { font-size: clamp(3.5rem, 20vw, 6rem); }
  .sec-head__note { display: none; }
}

/* ==========================================================
   Work index
   ========================================================== */
.work { position: relative; }
.index { border-top: 1px solid var(--ink); }
.index__cols {
  display: grid; grid-template-columns: 4rem 1fr 1.4fr 5rem; gap: 1rem;
  padding: .6rem var(--pad); font-size: .66rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-3); border-bottom: 1px solid var(--rule);
}
.row {
  display: grid; grid-template-columns: 4rem 1fr 1.4fr 5rem; gap: 1rem; align-items: baseline;
  padding: clamp(1.1rem, 2.6vw, 1.9rem) var(--pad);
  border-bottom: 1px solid var(--rule-soft);
  transition: background .35s var(--ease), color .35s var(--ease);
}
.row:hover { background: var(--ink); color: var(--paper); }
.row__no { font-size: .8rem; color: var(--ink-3); }
.row:hover .row__no { color: var(--paper); }
.row__name { font-family: var(--grotesk); font-weight: 600; font-size: clamp(1.5rem, 4vw, 2.6rem); letter-spacing: -.02em; line-height: 1; }
.row__disc { font-size: 1rem; color: var(--ink-2); align-self: center; }
.row:hover .row__disc { color: var(--paper-2); }
.row__year { font-size: .8rem; color: var(--ink-2); text-align: right; }
.row:hover .row__year { color: var(--paper); }
@media (max-width: 640px) {
  .index__cols { display: none; }
  .row { grid-template-columns: 2.5rem 1fr auto; }
  .row__disc { grid-column: 2 / -1; align-self: auto; margin-top: .3rem; font-size: .9rem; }
  .row__year { grid-row: 1; }
}

/* Floating preview plate */
.plate {
  position: fixed; top: 0; left: 0; z-index: 40; width: 300px; pointer-events: none;
  opacity: 0; transform: translate(-50%, -50%) scale(.94); transition: opacity .3s var(--ease), transform .3s var(--ease);
  border: 1px solid var(--ink); background: var(--paper); box-shadow: 0 24px 60px -24px rgba(0,0,0,.45);
}
.plate.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.plate__bar { display: flex; gap: 5px; padding: 8px 10px; border-bottom: 1px solid var(--rule); background: var(--paper-2); }
.plate__bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--rule); }
.plate__screen {
  aspect-ratio: 16/10; display: grid; place-items: center;
  background: var(--tone, #4f6f8f); color: #fff;
  font-family: var(--grotesk); font-weight: 700; font-size: 2rem; letter-spacing: -.02em;
}
@media (max-width: 860px) { .plate { display: none; } }

/* ==========================================================
   Approach
   ========================================================== */
.steps { list-style: none; border-top: 1px solid var(--ink); }
.step {
  display: grid; grid-template-columns: 4rem 12rem 1fr; gap: 1rem 2rem; align-items: baseline;
  padding: clamp(1.8rem, 4vw, 2.8rem) var(--pad);
  border-bottom: 1px solid var(--rule-soft);
}
.step__no { font-size: .8rem; color: var(--accent); }
.step h3 { font-family: var(--grotesk); font-weight: 600; font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -.02em; }
.step p { font-size: 1.1rem; line-height: 1.5; color: var(--ink-2); max-width: 46ch; }
@media (max-width: 720px) {
  .step { grid-template-columns: 2.5rem 1fr; }
  .step h3 { grid-column: 2; }
  .step p { grid-column: 2; }
}

/* ==========================================================
   Services
   ========================================================== */
.spec { border-top: 1px solid var(--ink); }
.spec__row {
  display: grid; grid-template-columns: 12rem 1fr auto; gap: 1rem 2rem; align-items: baseline;
  padding: clamp(1.5rem, 3.5vw, 2.4rem) var(--pad);
  border-bottom: 1px solid var(--rule-soft);
  transition: padding-left .35s var(--ease);
}
.spec__row:hover { padding-left: calc(var(--pad) + .5rem); }
.spec dt { font-family: var(--grotesk); font-weight: 600; font-size: clamp(1.3rem, 2.6vw, 1.8rem); letter-spacing: -.02em; }
.spec dd { font-size: 1.1rem; line-height: 1.5; color: var(--ink-2); max-width: 44ch; }
.spec__tag { font-size: .72rem; color: var(--ink-3); text-align: right; letter-spacing: .04em; }
@media (max-width: 720px) {
  .spec__row { grid-template-columns: 1fr; gap: .5rem; }
  .spec__tag { text-align: left; }
}

/* ==========================================================
   Studio
   ========================================================== */
.studio__body {
  display: grid; grid-template-columns: 1fr 16rem; gap: 2rem 4rem;
  padding: 0 var(--pad) clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--rule);
}
.studio__lead {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.3; letter-spacing: -.01em;
  max-width: 22ch; text-wrap: balance;
}
.studio__lead::first-letter { }
.studio__notes { list-style: none; border-top: 1px solid var(--ink); }
.studio__notes li {
  display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 0;
  border-bottom: 1px solid var(--rule-soft); font-family: var(--mono); font-size: .82rem;
}
.studio__notes span { color: var(--ink-3); text-transform: uppercase; font-size: .68rem; letter-spacing: .06em; align-self: center; }
@media (max-width: 780px) { .studio__body { grid-template-columns: 1fr; } }

/* ==========================================================
   Contact
   ========================================================== */
.contact { padding: clamp(4rem, 9vw, 7rem) var(--pad) clamp(3rem, 6vw, 4rem); }
.contact__head { display: grid; grid-template-columns: auto 1fr; align-items: start; column-gap: clamp(1.1rem, 3vw, 2.6rem); }
.contact__title {
  font-family: var(--grotesk); font-weight: 600; font-size: clamp(2.6rem, 9vw, 7rem); line-height: .95; letter-spacing: -.035em;
}
.contact__sub { grid-column: 2; margin-top: 1.2rem; max-width: 40ch; font-size: 1.15rem; color: var(--ink-2); }
.form {
  grid-column: 2; margin: clamp(2.5rem, 5vw, 3.5rem) 0 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem 2.5rem; max-width: none;
  padding-left: 4.5rem;
}
.form__field { display: flex; flex-direction: column; gap: .5rem; }
.form__field--wide { grid-column: 1 / -1; }
.form__field label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); }
.form__field input, .form__field textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--ink);
  padding: .5rem 0; font-family: var(--serif); font-size: 1.2rem; color: var(--ink); resize: none;
}
.form__field input::placeholder, .form__field textarea::placeholder { color: var(--ink-3); }
.form__field input:focus, .form__field textarea:focus { outline: none; border-bottom-color: var(--accent); }
.form__foot { grid-column: 1 / -1; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.btn {
  font-family: var(--mono); font-size: .85rem; padding: .85rem 1.6rem;
  background: var(--ink); color: var(--paper); border: 1px solid var(--ink); cursor: pointer;
  transition: background .3s, color .3s; border-radius: 2px;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn span { transition: transform .3s var(--ease); display: inline-block; }
.btn:hover span { transform: translateX(4px); }
.form__status { font-family: var(--mono); font-size: .8rem; color: var(--accent); }
.contact__or { grid-column: 2; margin-top: 2.5rem; padding-left: 4.5rem; color: var(--ink-2); }
.contact__or a { border-bottom: 1px solid var(--accent); color: var(--accent); }
@media (max-width: 720px) {
  .contact__head { grid-template-columns: auto 1fr; }
  .form { padding-left: 0; grid-template-columns: 1fr; }
  .contact__or { padding-left: 0; }
}

/* ==========================================================
   Footer
   ========================================================== */
.foot { border-top: 1px solid var(--ink); padding: clamp(2.5rem, 5vw, 4rem) var(--pad) 1.5rem; }
.foot__mark {
  display: block; font-family: var(--grotesk); font-weight: 700;
  font-size: clamp(2.4rem, 11vw, 9rem); letter-spacing: -.04em; line-height: .9; margin-bottom: 2.5rem;
}
.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--rule); }
.foot__col { display: flex; flex-direction: column; gap: .4rem; }
.foot__label { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); margin-bottom: .5rem; }
.foot__col p, .foot__col a, .foot__col span { font-size: .92rem; color: var(--ink-2); }
.foot__col a { width: fit-content; transition: color .25s; }
.foot__col a:hover { color: var(--accent); }
.foot__base {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid var(--rule); font-family: var(--mono); font-size: .72rem; color: var(--ink-2);
}
.foot__top { font-family: var(--mono); font-size: .72rem; background: none; border: 0; color: var(--ink-2); cursor: pointer; transition: color .25s; }
.foot__top:hover { color: var(--accent); }
@media (max-width: 640px) { .foot__cols { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ==========================================================
   Motion policy
   ----------------------------------------------------------
   Content is always fully visible with static CSS — nothing is
   animated from a hidden state, so the page renders completely
   even if the render/animation timeline is throttled or paused.
   Motion lives only in hover states and native smooth scroll,
   neither of which can leave content stuck invisible.
   ========================================================== */
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition-duration: .01ms !important; }
}
