/* ============================================================
   SIFER - design system
   Aesthetic (not an off-the-shelf system): deadpan-corporate
   satire + hand-drawn warmth. Native CSS. Light mode locked.
   Single accent: hi-vis orange. Yellow is a highlighter texture
   only (never an interactive accent). Shapes: sharp corners,
   hard offset shadows on interactive/raised elements.
   ============================================================ */

:root {
  --paper:    #ECE5D4;  /* main manila background */
  --paper-2:  #F5F0E3;  /* lifted panel / card */
  --paper-3:  #E1D8C1;  /* darker manila, alt sections */
  --ink:      #1C1813;  /* warm near-black, text + lines */
  --ink-soft: #5A5142;  /* secondary text */
  --orange:   #FF4D17;  /* THE accent */
  --orange-d: #D83A0C;  /* pressed / deep orange */
  --hl:       #FFD400;  /* highlighter texture ONLY */

  --line: 2px solid var(--ink);
  --shadow: 5px 5px 0 var(--ink);
  --shadow-orange: 5px 5px 0 var(--orange);

  --maxw: 1240px;
  --gap: clamp(1rem, 4vw, 2.25rem);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
  --font-hand: "Caveat", cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* faint paper grain via repeating dots */
  background-image: radial-gradient(var(--ink) 0.6px, transparent 0.6px);
  background-size: 22px 22px;
  background-position: -11px -11px;
  background-blend-mode: soft-light;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.02; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
b { font-weight: 700; }
i { font-style: italic; }

::selection { background: var(--orange); color: var(--paper-2); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
}

/* highlighter swipe behind a word */
.mark-hl {
  background: linear-gradient(120deg, var(--hl) 0%, var(--hl) 100%);
  background-repeat: no-repeat;
  background-size: 100% 42%;
  background-position: 0 78%;
  padding: 0 0.08em;
}

/* handwritten scribble label */
.scribble {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1.05;
}


/* ----------------------------------------------------------- BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 0.85em 1.5em;
  border: var(--line);
  background: var(--paper-2);
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.12s cubic-bezier(0.16,1,0.3,1), box-shadow 0.12s ease, background 0.15s ease;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper-2);
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover { background: #000; transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--orange); }
.btn--primary:active { transform: translate(3px,3px); box-shadow: 2px 2px 0 var(--orange); }

.btn--ghost { background: transparent; box-shadow: var(--shadow); }
.btn--ghost:hover { background: var(--paper-2); transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
.btn--ghost:active { transform: translate(3px,3px); box-shadow: 2px 2px 0 var(--ink); }

.btn--lg { font-size: 1.05rem; padding: 1.05em 2em; }

@media (prefers-reduced-motion: reduce) {
  .btn, .btn:hover, .btn:active { transform: none; }
}


/* ----------------------------------------------------------- NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 70px;
  padding: 0 var(--gap);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: var(--line);
}
.nav__brand { display: flex; align-items: baseline; gap: 0.6rem; }
.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}
.nav__cipher {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav__brand:hover .nav__cipher { color: var(--orange); }
.nav__links {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.nav__links a { position: relative; padding: 0.2em 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { padding: 0.6em 1.1em; }
.nav__burger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2.5px; background: var(--ink); }


/* ----------------------------------------------------------- HERO */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5.5rem) var(--gap) clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 2rem;
  min-height: min(82vh, 760px);
}
.hero__title {
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  line-height: 0.98;
  margin: 0 0 1.4rem;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 30ch;
  margin: 0 0 2rem;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__art { position: relative; display: flex; justify-content: center; }
.hero__mascot { position: relative; cursor: pointer; outline: none; }
.mascot { display: block; width: 100%; height: auto; }
.mascot--lg { width: clamp(220px, 30vw, 340px); }
.mascot--sm { width: 96px; }
.hero__mascot:hover .mascot--lg,
.hero__mascot:focus-visible .mascot--lg { animation: bob 1.4s ease-in-out infinite; }

@keyframes bob { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(1deg); } }
@media (prefers-reduced-motion: reduce) {
  .hero__mascot:hover .mascot--lg, .hero__mascot:focus-visible .mascot--lg { animation: none; }
}

.speech {
  position: absolute;
  top: -8px; left: 50%;
  transform: translate(-30%, -100%);
  background: var(--paper-2);
  border: var(--line);
  box-shadow: var(--shadow);
  padding: 0.6em 0.9em;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  max-width: 220px;
  z-index: 5;
}
.speech::after {
  content: ""; position: absolute; left: 32%; bottom: -11px;
  width: 16px; height: 16px; background: var(--paper-2);
  border-right: var(--line); border-bottom: var(--line);
  transform: rotate(45deg);
}

.hero__doodle {
  position: absolute;
  bottom: 1%; left: -2%;
  display: flex; align-items: flex-end; gap: 0.05rem;
  transform: rotate(-3deg);
  max-width: 250px;
}
.hero__doodle .scribble { max-width: 155px; line-height: 1.0; }
.hero__doodle .doodle { width: 80px; flex: none; margin-bottom: 4px; }


/* ----------------------------------------------------------- MARQUEE */
.marquee {
  border-top: var(--line);
  border-bottom: var(--line);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 0.55rem 0;
}
.marquee__track {
  display: flex; align-items: center; gap: 1.6rem;
  width: max-content;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  animation: scroll-x 26s linear infinite;
}
.marquee__track .dot { color: var(--orange); }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }


/* ----------------------------------------------------------- shared section rhythm */
section { scroll-margin-top: 90px; }
.thesis, .playbook, .portfolio, .scoreboard, .manifesto, .careers, .pitch {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.75rem, 6.5vw, 5.25rem) var(--gap);
}


/* ----------------------------------------------------------- THESIS */
.thesis__head { font-size: clamp(1.9rem, 4.2vw, 3.4rem); max-width: 18ch; margin-bottom: 2.5rem; }
.thesis__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
.thesis__lead { font-size: 1.18rem; color: var(--ink-soft); }
.thesis__truths { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; }
.thesis__truths li {
  border-top: var(--line);
  padding-top: 1rem;
  font-size: 1.05rem;
}
.thesis__truths b { display: block; margin-bottom: 0.15rem; }


/* ----------------------------------------------------------- PLAYBOOK / DECODER */
.playbook__head { margin-bottom: 2.5rem; max-width: 40ch; }
.playbook__head h2 { font-size: clamp(1.9rem, 4.2vw, 3.4rem); margin-bottom: 0.8rem; }
.playbook__head p { color: var(--ink-soft); font-family: var(--font-mono); font-size: 0.95rem; }

.decoder {
  border: var(--line);
  box-shadow: var(--shadow);
  background: #14110D;
  margin-bottom: 3rem;
  overflow: hidden;
}
.decoder__bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: #221C15;
  border-bottom: 2px solid #000;
}
.decoder__dot { width: 11px; height: 11px; border-radius: 50%; background: #4a4034; }
.decoder__dot:first-child { background: var(--orange); }
.decoder__title {
  margin-left: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #b9ad99;
}
.decoder__screen {
  margin: 0;
  padding: 1.4rem 1.4rem 1.7rem;
  font-family: var(--font-mono);
  font-size: clamp(0.78rem, 1.4vw, 0.95rem);
  line-height: 1.7;
  color: #FF7A4A;
  white-space: pre-wrap;
  min-height: 17.5em;
}
.decoder__screen .ok { color: #58c98a; }
.decoder__screen .hot { color: var(--hl); }
.decoder__cursor { background: #FF7A4A; color: #FF7A4A; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .decoder__cursor { animation: none; } }

.moves { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: var(--line); }
.move {
  padding: 1.8rem;
  border-right: var(--line);
  border-bottom: var(--line);
  background: var(--paper-2);
}
.move:nth-child(2n) { border-right: none; }
.move:nth-child(n+3) { border-bottom: none; }
.move__no { font-family: var(--font-mono); color: var(--orange); font-weight: 700; font-size: 0.95rem; }
.move h3 { font-size: 1.4rem; margin: 0.5rem 0 0.6rem; }
.move p { color: var(--ink-soft); font-size: 1rem; }


/* ----------------------------------------------------------- PORTFOLIO */
.portfolio__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.portfolio__head h2 { font-size: clamp(1.9rem, 4.2vw, 3.4rem); }
.portfolio__note { font-family: var(--font-mono); font-size: 0.82rem; color: var(--ink-soft); max-width: 34ch; }
.portfolio__note i { color: var(--ink-soft); }

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.card {
  border: var(--line);
  background: var(--paper-2);
  padding: 1.4rem;
  display: flex; flex-direction: column;
  transition: transform 0.14s cubic-bezier(0.16,1,0.3,1), box-shadow 0.14s ease;
}
.card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-orange); }
.card--feature { grid-column: span 2; grid-row: span 1; }
.card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.6rem; }
.monogram {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: var(--line);
  font-family: var(--font-mono); font-weight: 700; font-size: 0.85rem;
  background: var(--paper);
}
.boring {
  font-family: var(--font-mono); font-weight: 700; font-size: 1.05rem;
  padding: 0.15em 0.55em; border: var(--line); background: var(--paper);
}
.boring::before { content: "★ "; color: var(--orange); }
.boring--max { background: var(--orange); color: var(--paper-2); }
.boring--max::before { color: var(--paper-2); }
.card h3 { font-size: 1.35rem; margin-bottom: 0.2rem; }
.card--feature h3 { font-size: 1.7rem; }
.card__cat { font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange-d); margin-bottom: 0.7rem; }
.card__line { color: var(--ink-soft); font-size: 0.98rem; margin-top: auto; }


/* ----------------------------------------------------------- SCOREBOARD */
.scoreboard {
  background: var(--ink);
  color: var(--paper);
  max-width: none;
  border-top: var(--line); border-bottom: var(--line);
  text-align: center;
}
.scoreboard__head { font-size: clamp(1.9rem, 4.2vw, 3.2rem); margin-bottom: 0.6rem; }
.scoreboard__sub { font-family: var(--font-mono); font-size: 0.92rem; color: #b9ad99; max-width: 46ch; margin: 0 auto 3rem; }
.score__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: var(--maxw); margin: 0 auto; }
.score__num {
  display: block;
  font-family: var(--font-mono); font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--orange);
  line-height: 1;
}
.score__label { display: block; margin-top: 0.7rem; font-size: 0.92rem; color: var(--paper); opacity: 0.82; }


/* ----------------------------------------------------------- MANIFESTO */
.manifesto { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
.manifesto__copy h2 { font-size: clamp(1.9rem, 4.2vw, 3.4rem); margin-bottom: 1.4rem; }
.manifesto__lead { font-size: 1.25rem; margin-bottom: 1.2rem; }
.manifesto__copy p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.factoid {
  border: var(--line);
  background: var(--paper-2);
  box-shadow: var(--shadow);
  padding: 1.4rem;
  margin-top: 2rem;
}
.factoid__tag {
  display: inline-block;
  font-family: var(--font-hand); font-size: 1.3rem;
  color: var(--orange-d);
  transform: rotate(-2deg);
  margin-bottom: 0.4rem;
}
.factoid p { color: var(--ink); font-size: 1rem; margin: 0; }

.beliefs {
  border: var(--line);
  background: var(--paper-3);
  padding: 1.6rem;
}
.beliefs h3 { font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 1.2rem; }
.beliefs ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.95rem; }
.beliefs li { padding-left: 1.6rem; position: relative; font-size: 1.02rem; }
.beliefs li::before { content: "0"; position: absolute; left: 0; font-family: var(--font-mono); font-weight: 700; color: var(--orange); }

.manifesto__side { display: flex; flex-direction: column; gap: 1.4rem; }
.sidecar { display: flex; align-items: center; gap: 0.8rem; padding-left: 0.3rem; }
.sidecar__mascot { width: 82px; flex: none; }
.sidecar__cap { font-family: var(--font-hand); font-size: 1.4rem; line-height: 1.08; color: var(--ink-soft); }


/* ----------------------------------------------------------- CAREERS */
.careers__head { margin-bottom: 2.5rem; max-width: 44ch; }
.careers__head h2 { font-size: clamp(1.9rem, 4.2vw, 3.4rem); margin-bottom: 0.8rem; }
.careers__head p { color: var(--ink-soft); }
.roles { list-style: none; margin: 0 0 2rem; padding: 0; border: var(--line); }
.role {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 1.8rem;
  border-bottom: var(--line);
  background: var(--paper-2);
  transition: background 0.15s ease, padding-left 0.18s ease;
}
.role:last-child { border-bottom: none; }
.role:hover { background: var(--paper); padding-left: 2.4rem; }
.role h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.role p { color: var(--ink-soft); font-size: 0.98rem; max-width: 60ch; }
.role__tag { font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; border: var(--line); padding: 0.3em 0.7em; background: var(--paper); white-space: nowrap; }
@media (prefers-reduced-motion: reduce) { .role:hover { padding-left: 1.8rem; } }


/* ----------------------------------------------------------- PITCH */
.pitch { text-align: center; }
.pitch__inner {
  border: var(--line);
  background: var(--orange);
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: clamp(2.5rem, 7vw, 4.5rem) clamp(1.5rem, 5vw, 3rem);
}
.pitch__inner h2 { font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 1rem; }
.pitch__inner > p { font-size: 1.15rem; max-width: 48ch; margin: 0 auto 2rem; }
.pitch .btn--primary { box-shadow: 5px 5px 0 var(--ink); }
.pitch .btn--primary:hover { box-shadow: 7px 7px 0 var(--ink); }
.pitch .btn--primary:active { box-shadow: 2px 2px 0 var(--ink); }
.pitch__fine { font-family: var(--font-mono); font-size: 0.8rem; margin-top: 1.5rem; opacity: 0.85; }


/* ----------------------------------------------------------- FOOTER */
.footer { border-top: var(--line); background: var(--paper-3); }
.footer__main {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--gap) 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2rem;
}
.footer__logo { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; letter-spacing: -0.03em; }
.footer__tag { color: var(--ink-soft); font-size: 0.95rem; margin: 0.5rem 0 1rem; max-width: 24ch; }
.footer__mascot { opacity: 0.9; }
.footer__col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col h4 { font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-soft); margin-bottom: 0.4rem; }
.footer__col a { font-size: 0.98rem; width: fit-content; }
.footer__col a:hover { color: var(--orange-d); text-decoration: underline; text-underline-offset: 3px; }

.footer__stamp { display: flex; align-items: flex-start; justify-content: flex-end; }
.stamp {
  border: 3px solid var(--orange);
  color: var(--orange-d);
  padding: 0.7rem 1rem;
  text-align: center;
  transform: rotate(-9deg);
  font-family: var(--font-mono);
  line-height: 1.15;
}
.stamp span { display: block; font-size: 0.6rem; letter-spacing: 0.18em; }
.stamp b { display: block; font-size: 1.5rem; letter-spacing: 0.04em; margin: 0.1rem 0; }

.footer__legal {
  max-width: var(--maxw); margin: 0 auto;
  padding: 1.5rem var(--gap) 2.5rem;
  border-top: var(--line);
  display: flex; flex-direction: column; gap: 0.8rem;
}
.footer__legal p { font-family: var(--font-mono); font-size: 0.76rem; color: var(--ink-soft); }
.footer__disclaimer { max-width: 90ch; line-height: 1.6; }


/* ----------------------------------------------------------- REVEAL (IntersectionObserver) */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* doodle draw-in */
.doodle .draw { stroke-dasharray: 1; stroke-dashoffset: 1; pathLength: 1; }
.doodle.in .draw { animation: draw 0.9s ease forwards; }
.doodle.in .draw:nth-child(2) { animation-delay: 0.5s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .doodle .draw { stroke-dashoffset: 0; } }


/* konami easter egg: "boredom mode" drains all the fun out */
.boredom { filter: grayscale(1) contrast(0.92); transition: filter 0.6s ease; }
.boredom::after {
  content: "BOREDOM MODE ENGAGED";
  position: fixed; bottom: 14px; left: 50%; transform: translateX(-50%);
  z-index: 99; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em;
  background: var(--ink); color: var(--paper); padding: 0.5em 1em; border: 2px solid var(--paper);
}


/* ----------------------------------------------------------- RESPONSIVE */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .card--feature { grid-column: span 2; }
  .score__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; gap: 0.4rem;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--paper); border-bottom: var(--line);
    padding: 1rem var(--gap) 1.4rem;
  }
  .nav.open .nav__cta { display: inline-flex; position: absolute; top: 100%; }

  .hero { grid-template-columns: 1fr; min-height: 0; text-align: left; gap: 1rem; padding-top: clamp(2rem,8vw,3rem); }
  .hero__art { order: -1; }
  .mascot--lg { width: clamp(170px, 48vw, 240px); }
  .hero__doodle { position: static; transform: rotate(-3deg); margin-top: 0.5rem; }

  .thesis__grid, .manifesto { grid-template-columns: 1fr; }
  .moves { grid-template-columns: 1fr; }
  .move { border-right: none; }
  .move:nth-child(3) { border-bottom: var(--line); }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid { grid-template-columns: 1fr; }
  .card--feature { grid-column: span 1; }
  .score__grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .footer__stamp { justify-content: flex-start; margin-top: 1rem; }
  .role { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .portfolio__head { flex-direction: column; align-items: flex-start; }
}
