/* =========================================================
   STEPHANY · PORTFÓLIO EDITORIAL
   Sistema de 3 direções controladas por [data-direction]
   a = Revista · b = Grotesco · c = Nômade
   ========================================================= */

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

:root {
  /* ---- tokens base (sobrescritos por direção) ---- */
  --paper: #f6e9dc;
  --ink: #1b1a17;
  --muted: #8a857b;
  --line: #e3ddd1;
  --accent: #bd4b2c;
  --accent2: #bd4b2c;

  --font-display: "Instrument Serif", serif;
  --font-body: "Newsreader", serif;
  --font-label: "Newsreader", serif;

  --display-weight: 400;
  --display-tracking: -0.01em;
  --display-leading: 0.98;
  --display-italic: italic;

  --label-transform: uppercase;
  --label-spacing: 0.22em;
  --label-weight: 500;
  --label-size: 12px;

  --maxw: 1180px;
  --pad-x: 56px;
  --section-y: 132px;
  --radius: 4px;
}

/* ============ DIREÇÃO B · GROTESCO (Swiss) ============ */
:root[data-direction="b"] {
  --paper: #fbf6ef;
  --ink: #0b0b0c;
  --muted: #8e8e93;
  --line: #e6e6e6;
  --accent: #e63b19;
  --accent2: #0b0b0c;

  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --font-label: "Space Grotesk", sans-serif;

  --display-weight: 600;
  --display-tracking: -0.035em;
  --display-leading: 0.94;
  --display-italic: normal;

  --label-transform: uppercase;
  --label-spacing: 0.16em;
  --label-weight: 600;
  --label-size: 11px;

  --radius: 0px;
}

/* ============ DIREÇÃO C · NÔMADE (zine quente) ============ */
:root[data-direction="c"] {
  --paper: #f1e9da;
  --ink: #2b2620;
  --muted: #9a8e78;
  --line: #ddd1bd;
  --accent: #a8714b;
  --accent2: #3e6b6b;

  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-label: "DM Sans", sans-serif;

  --display-weight: 800;
  --display-tracking: -0.02em;
  --display-leading: 0.96;
  --display-italic: normal;

  --label-transform: uppercase;
  --label-spacing: 0.18em;
  --label-weight: 700;
  --label-size: 12px;

  --radius: 10px;
}

/* ---- densidade ---- */
:root[data-density="compact"] { --section-y: 92px; }

/* ============ BASE ============ */
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .4s ease, color .4s ease;
}

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

/* placeholders de imagem mais visíveis como alvo de drop */
image-slot::part(frame) {
  background: color-mix(in srgb, var(--ink) 5%, var(--paper));
}
image-slot::part(empty) {
  color: color-mix(in srgb, var(--ink) 45%, var(--paper));
}

em { font-style: italic; color: var(--accent); font-weight: inherit; }
:root[data-direction="b"] em,
:root[data-direction="c"] em { font-style: normal; }

strong { font-weight: 500; }
:root[data-direction="b"] strong { font-weight: 700; }
:root[data-direction="c"] strong { font-weight: 700; }

a { color: inherit; text-decoration: none; }

.label {
  display: inline-block;
  font-family: var(--font-label);
  text-transform: var(--label-transform);
  letter-spacing: var(--label-spacing);
  font-weight: var(--label-weight);
  font-size: var(--label-size);
  color: var(--accent);
  font-style: normal;
}

.eyebrow {
  font-family: var(--font-label);
  text-transform: var(--label-transform);
  letter-spacing: var(--label-spacing);
  font-weight: var(--label-weight);
  font-size: var(--label-size);
  color: var(--muted);
  font-style: normal;
  margin-bottom: 28px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad-x);
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: var(--display-weight);
  letter-spacing: -0.01em;
}
.nav__brand-dot { color: var(--accent); }
.nav__links {
  display: flex;
  gap: 38px;
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: 0.01em;
}
:root[data-direction="b"] .nav__links {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}
.nav__links a { color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  font-family: var(--font-label);
  font-size: 14px;
  padding: 9px 18px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
:root[data-direction="b"] .nav__cta {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}
.nav__cta:hover { background: var(--ink); color: var(--paper); }

/* ============ LAYOUT HELPERS ============ */
main { display: block; }
section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 52px;
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: var(--display-tracking);
  margin-top: 16px;
}
.section-head__note { color: var(--muted); font-size: 17px; max-width: 36ch; }
.section-head__note p { margin: 0 0 20px; }
.sub-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  transition: gap .2s ease, color .2s ease;
}
.sub-link:hover { gap: 13px; color: var(--accent); }
:root[data-direction="b"] .sub-link { text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; }

/* ============ HERO ============ */
.hero { padding-top: 86px; padding-bottom: var(--section-y); }
.hero__topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 60px;
  font-family: var(--font-label);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.tag--dot { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); }
.tag--dot::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}
:root[data-direction="b"] .hero__topline { text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; }
.hero__loc { text-align: right; }

.hero__title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(52px, 7vw, 100px);
  line-height: 1.04;
  letter-spacing: var(--display-tracking);
  margin-bottom: 56px;
  max-width: 15ch;
}
.hero__title em { font-style: var(--display-italic); }
.hero__title-alt { color: var(--accent); font-style: var(--display-italic); }
:root[data-direction="b"] .hero__title-alt { font-style: normal; }
:root[data-direction="c"] .hero__title-alt { color: var(--accent2); }

.hero__sub {
  font-size: clamp(19px, 1.6vw, 23px);
  max-width: 48ch;
  color: color-mix(in srgb, var(--ink) 82%, var(--paper));
  margin-bottom: 44px;
  line-height: 1.45;
}
.hero__meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  list-style: none;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.hero__meta li {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--muted);
}
:root[data-direction="b"] .hero__meta li {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
}
:root[data-direction="c"] .hero__meta li {
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border-color: transparent;
  color: var(--ink);
}

/* ============ MÉTRICAS ============ */
.metrics { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.metrics__head {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin-bottom: 56px;
}
.metrics__note { color: var(--muted); font-size: 17px; }
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.metric {
  padding: 8px 32px 8px 0;
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.metric:first-child { border-left: none; padding-left: 0; }
.metric__num {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(54px, 6.6vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.metric__sup { color: var(--accent); }
.metric__label {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.35;
  display: block;
  max-width: 18ch;
}

/* ---- audiência ---- */
.metrics__audience {
  margin-top: 84px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: start;
}
.geo-head h3 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.04;
  letter-spacing: var(--display-tracking);
  margin: 16px 0 32px;
}
.geo { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.geo li {
  display: grid;
  grid-template-columns: 132px 1fr 52px;
  align-items: center;
  gap: 20px;
}
.geo__name { font-size: 16px; }
.geo__bar {
  height: 3px;
  background: var(--line);
  border-radius: 3px;
  position: relative;
}
.geo__bar i {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--accent);
  border-radius: 3px;
  min-width: 3px;
  width: 0;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.geo__pct {
  font-family: var(--font-label);
  font-size: 14px;
  color: var(--muted);
  text-align: right;
  letter-spacing: 0.01em;
}
:root[data-direction="b"] .geo__pct { letter-spacing: 0.06em; }
.facts { list-style: none; display: flex; flex-direction: column; }
.facts li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--muted);
  line-height: 1.3;
}
.facts li:first-child { padding-top: 0; }
.facts__num {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(30px, 3vw, 46px);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  flex: none;
  min-width: 158px;
}
.facts__num small { color: var(--accent); font-size: 0.7em; }

/* ============ SOBRE ============ */
.about {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 72px;
  align-items: start;
}
.about__media { position: sticky; top: 120px; }
.about__portrait {
  display: block;
  width: 100%;
  height: 540px;
  border-radius: var(--radius);
}
.about__caption {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
:root[data-direction="b"] .about__caption { font-style: normal; text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; }
.about__title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.0;
  letter-spacing: var(--display-tracking);
  margin: 18px 0 36px;
}
.about__lead {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.4;
  margin-bottom: 28px;
}
.about__text { color: color-mix(in srgb, var(--ink) 80%, var(--paper)); margin-bottom: 40px; max-width: 52ch; }
.about__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about__skills li {
  font-family: var(--font-label);
  font-size: 13px;
  padding: 8px 16px;
  border: 1px solid var(--ink);
  border-radius: 100px;
}
:root[data-direction="b"] .about__skills li {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 11px;
}
:root[data-direction="c"] .about__skills li {
  border-color: transparent;
  background: color-mix(in srgb, var(--accent2) 12%, transparent);
}

/* ============ TRABALHOS ============ */
.work { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 36px;
}
.vid { position: relative; display: flex; flex-direction: column; }
.vid__index {
  font-family: var(--font-label);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  display: none;
}
:root[data-direction="b"] .vid__index { display: block; margin-bottom: 12px; }
.vid__frame {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--radius);
}
.vid__thumb {
  display: block;
  width: 100%;
  height: 440px;
  border-radius: var(--radius);
}
.vid__embed {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
  border-radius: 18px;
  overflow: hidden;
  background: #0b0b0c;
}
.vid__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vid__badge {
  position: static;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 10px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--paper);
  color: var(--ink);
  font-weight: var(--label-weight);
}
:root[data-direction="b"] .vid__badge { border-radius: 0; background: var(--accent); color: #fff; }
:root[data-direction="c"] .vid__badge { background: var(--accent); color: var(--paper); }
.vid__title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
:root[data-direction="b"] .vid__title,
:root[data-direction="c"] .vid__title { font-size: 22px; line-height: 1.15; }
.vid__meta { font-size: 15px; color: var(--muted); }
.vid__views { color: var(--accent); font-weight: 500; }
:root[data-direction="c"] .vid__views { color: var(--accent2); }

/* ============ ESCRITOS ============ */
.writing { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.posts { list-style: none; }
.post__row { display: contents; }
.post {
  display: grid;
  grid-template-columns: 120px 1fr 80px;
  gap: 40px;
  align-items: baseline;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  transition: padding-left .25s ease;
}
.posts .post:last-child { border-bottom: 1px solid var(--line); }
.post:hover { padding-left: 14px; }
.post__date {
  font-family: var(--font-label);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
:root[data-direction="b"] .post__date { text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; }
.post__title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: var(--display-tracking);
  margin-bottom: 10px;
  transition: color .2s;
}
.post:hover .post__title { color: var(--accent); }
.post__excerpt { color: var(--muted); font-size: 16px; max-width: 60ch; }
.post__read {
  font-family: var(--font-label);
  font-size: 13px;
  color: var(--muted);
  text-align: right;
}

/* ============ CONTATO ============ */
.contact {
  background: var(--ink);
  color: var(--paper);
  max-width: none;
  margin-top: var(--section-y);
  padding-top: 120px;
  padding-bottom: 120px;
  text-align: center;
}
.contact > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.label--light { color: color-mix(in srgb, var(--accent) 75%, var(--paper)); }
.contact__title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(52px, 8vw, 116px);
  line-height: 0.98;
  letter-spacing: var(--display-tracking);
  margin: 24px 0 48px;
}
.contact__title em { color: color-mix(in srgb, var(--accent) 80%, white); font-style: var(--display-italic); }
:root[data-direction="b"] .contact__title em { font-style: normal; }
.contact__mail {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  border-bottom: 2px solid color-mix(in srgb, var(--paper) 40%, transparent);
  padding-bottom: 6px;
  transition: border-color .2s;
}
.contact__mail:hover { border-color: var(--accent); }
.contact__socials {
  display: flex;
  justify-content: center;
  gap: 36px;
  list-style: none;
  margin-top: 60px;
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: 0.04em;
}
:root[data-direction="b"] .contact__socials { text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; }
.contact__socials a { color: color-mix(in srgb, var(--paper) 70%, transparent); transition: color .2s; display: inline-flex; align-items: center; gap: 9px; }
.contact__socials a:hover { color: var(--paper); }
.social-ic { width: 1.35em; height: 1.35em; flex-shrink: 0; display: block; }

/* ============ FOOTER ============ */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px var(--pad-x);
  font-family: var(--font-label);
  font-size: 13px;
  color: var(--muted);
}
:root[data-direction="b"] .footer { text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; }
.footer a:hover { color: var(--ink); }

/* ============ RESPONSIVO ============ */
@media (max-width: 900px) {
  :root { --pad-x: 28px; --section-y: 84px; }
  .nav__links { display: none; }
  .section-head,
  .about { grid-template-columns: 1fr; gap: 32px; }
  .about__media { position: static; max-width: 320px; }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .metric { border-left: none; padding-left: 0; }
  .metrics__audience { grid-template-columns: 1fr; gap: 44px; }
  .facts__num { min-width: 120px; }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .vid__thumb { height: 380px; }
  .about__portrait { height: 460px; max-width: 320px; }
  .hero__topline { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero__loc { text-align: left; }
  .post { grid-template-columns: 1fr; gap: 6px; }
  .post__read { text-align: left; }
}
@media (max-width: 560px) {
  .work__grid { grid-template-columns: 1fr; }
  .work__grid--4 { grid-template-columns: 1fr; }
  .metrics__grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   PÁGINA · SCROLL CONTÍNUO
   ========================================================= */

main { display: block; }

.page-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--section-y) var(--pad-x);
  scroll-margin-top: 80px;
}

.page-section--hero {
  padding-top: clamp(48px, 8vw, 100px);
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

/* ---- CAPA ---- */
.capa {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  width: 100%;
}

.capa__eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-weight: var(--label-weight);
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 26px;
}

.capa__title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(42px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: var(--display-tracking);
  margin-bottom: 40px;
  max-width: 14ch;
}

.capa__title-muted { color: #3b3232; }
.capa__title-accent {
  font-style: var(--display-italic);
  color: var(--accent);
  font-family: Poppins, var(--font-display);
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.95;
}
:root[data-direction="b"] .capa__title-accent { font-style: normal; }

.capa__diffs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 44ch;
}
.capa__diffs li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.32;
  color: color-mix(in srgb, var(--ink) 80%, var(--paper));
}
.capa__diffs li::before {
  content: "";
  width: 9px; height: 9px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--accent);
}
:root[data-direction="b"] .capa__diffs li::before { border-radius: 0; }
.capa__diffs strong { color: var(--ink); font-weight: 600; }

.capa__photos {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
  max-height: min(72vh, 640px);
  width: 100%;
}
.capa__photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
}

/* ---- NÚMEROS ---- */
.nums__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 8px;
}
.nums__head h2 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.25;
}
.nums__grid { margin-top: 48px; }

/* ---- AUDIÊNCIA ---- */
.aud__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}
.geo-head h3 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: var(--display-tracking);
  margin: 16px 0 32px;
  color: #3b3232;
}
.geo__name { color: #3b3232; }

/* ---- TRABALHOS ---- */
.work { padding-top: 0; padding-bottom: 0; }
.work .section-head {
  grid-template-columns: 1fr;
  margin-bottom: 44px;
}
.work .section-head__title { color: #3b3232; }
.work__grid--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.work__grid--4 .vid__embed { border-radius: 18px; max-width: 280px; margin: 0 auto; width: 100%; }
.work__grid--4 .vid { align-items: center; }
.work__grid--4 .vid__frame { width: 100%; margin-bottom: 12px; }
.work__grid--4 .vid__badge { margin-bottom: 8px; }
.work__grid--4 .vid__meta { text-align: center; }

/* ---- SOBRE ---- */
.about__body { min-width: 0; }
.about__colon { color: var(--accent); }
.about__portrait {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 40px;
}
.about__title { color: #111; }

/* ---- CONTATO (full bleed) ---- */
#contato { scroll-margin-top: 0; }

/* ---- SCROLL ANIMATIONS ---- */
.animate-on-scroll .metric,
.animate-on-scroll .geo__row,
.animate-on-scroll .facts__row {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: calc(var(--i, 0) * 90ms);
}
.animate-on-scroll.is-visible .metric,
.animate-on-scroll.is-visible .geo__row,
.animate-on-scroll.is-visible .facts__row {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll .metric,
  .animate-on-scroll .geo__row,
  .animate-on-scroll .facts__row {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .geo__bar i { width: auto !important; transition: none; }
}

/* ---- RESPONSIVO · PÁGINA ---- */
@media (max-width: 900px) {
  .nav__cta { display: none; }
  .capa { grid-template-columns: 1fr; }
  .capa__photos {
    max-height: none;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    aspect-ratio: 3 / 1.2;
  }
  .work__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .aud__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .capa__photos { grid-template-columns: 1fr; aspect-ratio: auto; }
  .capa__photo { min-height: 200px; }
}

