/* =====================================================================
   acla studio — fotografia de arquitetura e interiores
   Paleta derivada da logo (blush quente + espresso). Tipografia Manrope light.
   Minimalista: a imagem lidera, a interface recua.
   ===================================================================== */

:root {
  /* Paleta da marca */
  --paper:    #ede7df;  /* fundo (cor da logo) */
  --plate:    #f4efe9;  /* painéis/placeholders mais claros */
  --ink:      #3d2b1f;  /* espresso (texto da logo) */
  --ink-soft: #6e5a49;  /* texto secundário */
  --stone:    #93826f;  /* labels/metadados */
  --line:     #dcd3c6;  /* fios finos */
  --line-soft:#e5ddd2;

  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --pad-x: clamp(1.25rem, 6vw, 6rem);
  --pad-y: clamp(4.5rem, 11vh, 9.5rem);
  --maxw: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------------------- reset -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* -------------------- utilitários -------------------- */
.label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}
.eyebrow {
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.statement {
  font-weight: 200;
  font-size: clamp(1.9rem, 1rem + 3.4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 20ch;
}
.statement--sm { font-size: clamp(1.6rem, 1rem + 2.2vw, 2.5rem); max-width: none; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper);
  padding: 0.75rem 1.25rem; font-size: 0.8rem;
}
.skip-link:focus { left: 0; }

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

/* =====================================================================
   NAV — logo aparece ao rolar (no topo, o hero já mostra a marca)
   ===================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(0.9rem, 2vw, 1.4rem) var(--pad-x);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--paper) 85%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line-soft);
}
.nav__brand { display: block; opacity: 0; transition: opacity 0.4s var(--ease); pointer-events: none; }
.nav.is-scrolled .nav__brand { opacity: 1; pointer-events: auto; }
.nav__brand img { height: 30px; width: auto; }

.nav__links { display: flex; gap: clamp(1.5rem, 3vw, 2.75rem); }
.nav__links a {
  font-weight: 500; font-size: 0.75rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-soft);
  position: relative; padding: 0.25rem 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%;
  height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__toggle { display: none; width: 34px; height: 34px; position: relative; z-index: 101; }
.nav__toggle span {
  position: absolute; left: 7px; width: 20px; height: 1.5px; background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.2s;
}
.nav__toggle span:nth-child(1) { top: 13px; }
.nav__toggle span:nth-child(2) { top: 20px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.menu-mobile {
  position: fixed; inset: 0; z-index: 90;
  background: var(--paper);
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.5rem; padding: var(--pad-x);
}
.menu-mobile[hidden] { display: none; }
.menu-mobile a {
  font-weight: 200; font-size: clamp(2rem, 12vw, 3rem); letter-spacing: -0.01em;
}

/* =====================================================================
   HERO — marca + 4 retratos
   ===================================================================== */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  padding: calc(clamp(0.9rem, 2vw, 1.4rem) + 3.5rem) var(--pad-x) clamp(1rem, 2.5vh, 2rem);
}
.hero__head {
  flex: 0 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  padding: clamp(1rem, 4vh, 3rem) 0 clamp(1.5rem, 4vh, 3rem);
}
.hero__logo {
  width: clamp(200px, 34vw, 430px); height: auto;
  opacity: 0; animation: rise 1s var(--ease) 0.05s forwards;
}
.hero__tagline {
  margin-top: 1.25rem; color: var(--ink-soft);
  font-weight: 400; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0; animation: rise 1s var(--ease) 0.2s forwards;
}
.hero__gallery {
  flex: 1 1 auto; min-height: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.5rem, 1vw, 0.9rem);
}
.shot {
  margin: 0; position: relative; overflow: hidden; min-height: 46vh;
  background: linear-gradient(165deg, var(--a, #e4ded4), var(--b, #c9c1b4));
  opacity: 0; transform: translateY(24px);
  animation: rise 1.1s var(--ease) forwards;
}
.shot:nth-child(1) { animation-delay: 0.32s; }
.shot:nth-child(2) { animation-delay: 0.42s; }
.shot:nth-child(3) { animation-delay: 0.52s; }
.shot:nth-child(4) { animation-delay: 0.62s; }
.shot img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.4) contrast(0.96) brightness(1.03);
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}
.shot img.is-empty { opacity: 0; }
.shot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: rgba(124, 114, 99, 0.24);
  transition: opacity 0.6s var(--ease);
}
.shot:hover img { transform: scale(1.03); filter: none; }
.shot:hover::after { opacity: 0; }
.shot__title {
  position: absolute; left: 0; right: 0; bottom: clamp(1rem, 2.2vw, 1.6rem);
  z-index: 2; text-align: center; pointer-events: none;
  color: #fff; font-weight: 300; text-transform: uppercase;
  font-size: clamp(0.62rem, 0.5rem + 0.4vw, 0.8rem);
  letter-spacing: 0.34em; text-indent: 0.34em;
  text-shadow: 0 1px 14px rgba(46, 34, 25, 0.5);
  transition: opacity 0.5s var(--ease);
}
.shot:hover .shot__title { opacity: 0; }

@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero__logo, .hero__tagline, .shot { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* =====================================================================
   SEÇÕES — moldura comum
   ===================================================================== */
.manifesto, .work, .approach, .contact {
  max-width: var(--maxw); margin: 0 auto;
  padding-left: var(--pad-x); padding-right: var(--pad-x);
}
.manifesto { padding-top: var(--pad-y); padding-bottom: var(--pad-y); }
.work { padding-top: clamp(2rem, 5vh, 4rem); padding-bottom: var(--pad-y); }
.approach { padding-top: var(--pad-y); padding-bottom: var(--pad-y); border-top: 1px solid var(--line); }

/* -------------------- SOBRE -------------------- */
.manifesto__grid {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 6vw, 6rem); align-items: start;
}
.manifesto__body { margin-top: 1.5rem; max-width: 46ch; color: var(--ink-soft); }
.manifesto__text .statement { margin-bottom: 0.5rem; }

.portrait { margin: 0; }
.portrait__plate {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: linear-gradient(165deg, #efeae2, #d8cec1 72%, #cbc0b1);
}
.portrait__plate img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.4) contrast(0.96) brightness(1.03);
  transition: filter 0.6s var(--ease), transform 0.9s var(--ease);
}
.portrait__plate img.is-empty { opacity: 0; }
.portrait:hover .portrait__plate img { filter: none; transform: scale(1.02); }
.portrait__label { display: flex; align-items: center; gap: 0.6em; margin-top: 1rem; }
.portrait__label span { opacity: 0.45; }

/* =====================================================================
   PORTFÓLIO — grade editorial de projetos
   ===================================================================== */
.work__head { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.work__head .eyebrow { margin-bottom: 1rem; }

.grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.75rem, 3.5vw, 3.25rem) clamp(1.25rem, 2.5vw, 2.5rem);
}
.proj { margin: 0; grid-column: span 6; }
.proj:nth-child(1) { grid-column: span 7; }
.proj:nth-child(2) { grid-column: span 5; align-self: end; }
.proj:nth-child(3) { grid-column: span 5; }
.proj:nth-child(4) { grid-column: span 7; align-self: end; }
.proj:nth-child(5) { grid-column: 4 / span 6; }        /* peça de fechamento, centralizada */
.proj:nth-child(5) .plate { aspect-ratio: 3/4; }

.proj__btn { display: block; width: 100%; }
.plate {
  position: relative; display: block; width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(158deg, var(--a, #e5dfd5), var(--b, #cbc2b4));
}
.proj:nth-child(3n) .plate { aspect-ratio: 3/4; }
.plate img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.4) contrast(0.96) brightness(1.03);
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}
.plate img.is-empty { opacity: 0; }
/* capa cinza, removida no hover */
.plate::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: rgba(124, 114, 99, 0.28);
  transition: opacity 0.6s var(--ease);
}
.proj__btn:hover .plate img,
.proj__btn:focus-visible .plate img { transform: scale(1.04); filter: none; }
.proj__btn:hover .plate::after,
.proj__btn:focus-visible .plate::after { opacity: 0; }

.proj__cap {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1em; margin-top: 0.9rem; padding-top: 0.8rem; border-top: 1px solid var(--line);
}
.proj__title { color: var(--ink); font-weight: 400; font-size: 1rem; }
.proj__meta { color: var(--stone); }

/* =====================================================================
   MODAL DO PROJETO — galeria completa em sobreposição
   ===================================================================== */
.modal {
  position: fixed; inset: 0; z-index: 110;
  display: flex; justify-content: center;
  padding: clamp(0.75rem, 3vw, 2.5rem);
  background: rgba(46, 34, 25, 0.32);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  overflow-y: auto; overscroll-behavior: contain;
}
.modal[hidden] { display: none; }
.modal.is-in .modal__panel { animation: rise 0.5s var(--ease); }

.modal__panel {
  position: relative;
  width: min(1120px, 100%);
  margin: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -30px rgba(46, 34, 25, 0.45);
  padding: clamp(1.25rem, 3.5vw, 2.75rem);
}
.modal__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; margin-bottom: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: clamp(1rem, 2vw, 1.4rem);
  border-bottom: 1px solid var(--line);
}
.modal__name {
  font-weight: 200; letter-spacing: -0.01em; line-height: 1.05;
  font-size: clamp(1.6rem, 1.1rem + 2.4vw, 2.75rem); color: var(--ink);
}
.modal__meta { margin-top: 0.55rem; color: var(--stone); }
.modal__close {
  flex: none; width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--plate); color: var(--ink); font-size: 1rem; cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.modal__close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.modal__close:active { transform: scale(0.94); }

.modal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, 1.4vw, 1.1rem);
}
.modal__cell {
  position: relative; overflow: hidden; aspect-ratio: 3/4; width: 100%;
  background: var(--plate); cursor: pointer; padding: 0; border: 0;
}
.modal__cell img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.4) contrast(0.96) brightness(1.03);
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}
.modal__cell::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: rgba(124, 114, 99, 0.26);
  transition: opacity 0.6s var(--ease);
}
.modal__cell:hover img, .modal__cell:focus-visible img { transform: scale(1.04); filter: none; }
.modal__cell:hover::after, .modal__cell:focus-visible::after { opacity: 0; }
@media (max-width: 640px) { .modal__grid { grid-template-columns: repeat(2, 1fr); } }

/* =====================================================================
   ABORDAGEM
   ===================================================================== */
.approach__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.approach__lead { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem); font-weight: 300; color: var(--ink); max-width: 20ch; }
.approach__note { max-width: 52ch; color: var(--ink-soft); }

/* =====================================================================
   CONTATO
   ===================================================================== */
.contact {
  text-align: center; display: flex; flex-direction: column; align-items: center;
  padding-top: clamp(5rem, 12vh, 10rem); padding-bottom: clamp(5rem, 12vh, 10rem);
  border-top: 1px solid var(--line);
}
.contact .eyebrow { margin-bottom: 1.5rem; }
.contact__title { max-width: none; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.contact .bio__links { width: 100%; max-width: 460px; }

.cta {
  display: inline-flex; align-items: center; gap: 0.9rem;
  background: var(--ink); color: var(--paper);
  padding: 1.05rem 2rem; border-radius: 999px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.cta__label { color: var(--paper); font-weight: 500; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; }
.cta__arrow { font-size: 1.05rem; transition: transform 0.4s var(--ease); }
.cta:hover { transform: translateY(-2px); background: #2c1f16; }
.cta:hover .cta__arrow { transform: translate(3px, -3px); }

.contact__links { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2rem; justify-content: center; }
.contact__links a { color: var(--ink-soft); position: relative; letter-spacing: 0.12em; }
.contact__links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px;
  background: var(--stone); transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease);
}
.contact__links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(2rem, 5vw, 3rem) var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.site-footer__brand img { height: 24px; width: auto; }
.site-footer__meta { flex: 1; text-align: center; }
.site-footer__copy { color: var(--stone); }

/* =====================================================================
   LIGHTBOX
   ===================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: color-mix(in srgb, var(--paper) 92%, #000 8%);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(0.6rem, 2vw, 1.5rem);
}
.lightbox[hidden] { display: none; }
.lightbox__stage {
  margin: 0; max-width: 96vw; width: auto;
  display: flex; flex-direction: column; align-items: center;
}
.lightbox__plate {
  position: relative; display: inline-block; line-height: 0; overflow: hidden;
  max-width: 100%;
  background: linear-gradient(158deg, #e5dfd5, #cbc2b4);
  box-shadow: 0 30px 80px -30px rgba(46, 34, 25, 0.5);
}
.lightbox__plate img {
  display: block; width: auto; height: auto;
  max-width: min(96vw, 1700px);
  max-height: 86vh;
  object-fit: contain;
}
.lightbox__plate img[src=""], .lightbox__plate img:not([src]) { opacity: 0; }
.lightbox__cap { display: flex; gap: 1em; justify-content: center; margin-top: 0.9rem; color: var(--ink-soft); line-height: 1.4; text-align: center; }
.lightbox__close {
  position: absolute; top: clamp(0.75rem, 3vw, 1.75rem); right: clamp(0.75rem, 3vw, 1.75rem);
  z-index: 2; color: var(--ink);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  padding: 0.5rem 0.85rem; border-radius: 999px;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px; font-size: 1.4rem; color: var(--ink);
  display: grid; place-items: center; border-radius: 50%;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: opacity 0.3s, background 0.3s;
}
.lightbox__nav:hover { opacity: 0.65; }
.lightbox__nav--prev { left: clamp(0.4rem, 2vw, 1.75rem); }
.lightbox__nav--next { right: clamp(0.4rem, 2vw, 1.75rem); }
.lightbox { animation: fadeIn 0.3s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* =====================================================================
   BIO / CONTATO — página "link na bio" (/contato)
   ===================================================================== */
.bio-page { min-height: 100svh; display: flex; }
.bio {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: clamp(2rem, 8vh, 5rem) var(--pad-x);
  background:
    radial-gradient(120% 80% at 50% -10%, var(--plate), transparent 60%),
    var(--paper);
}
.bio__card {
  width: 100%; max-width: 460px; margin: 0 auto; text-align: center;
}
.bio__brand { display: block; margin-bottom: 1.25rem; opacity: 0; animation: rise 0.9s var(--ease) 0.05s forwards; }
.bio__brand img { width: clamp(180px, 60vw, 260px); height: auto; margin: 0 auto; }
.bio__tagline { align-self: stretch; margin-bottom: clamp(2rem, 6vw, 2.75rem); opacity: 0; animation: rise 0.9s var(--ease) 0.15s forwards; }

.bio__links { width: 100%; display: flex; flex-direction: column; gap: 0.9rem; }
.bio-link {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "icon label arrow" "icon meta arrow";
  column-gap: 1rem; row-gap: 0.1rem; align-items: center;
  padding: 1rem 1.4rem; text-align: left;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--plate) 70%, transparent);
  border-radius: 16px;
  color: var(--ink);
  opacity: 0; transform: translateY(16px);
  animation: rise 0.8s var(--ease) forwards;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
              transform 0.35s var(--ease), color 0.35s var(--ease);
}
.bio-link:nth-child(1) { animation-delay: 0.25s; }
.bio-link:nth-child(2) { animation-delay: 0.33s; }
.bio-link:nth-child(3) { animation-delay: 0.41s; }
.bio-link:nth-child(4) { animation-delay: 0.49s; }
.bio-link__icon {
  grid-area: icon; display: grid; place-items: center;
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line);
  color: var(--ink); transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.bio-link__label { grid-area: label; min-width: 0; font-weight: 500; font-size: 0.95rem; letter-spacing: 0.01em; }
.bio-link__meta {
  grid-area: meta; min-width: 0; color: var(--stone); font-size: 0.76rem; letter-spacing: 0.02em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.35s var(--ease);
}
.bio-link__arrow { grid-area: arrow; display: flex; align-items: center; color: var(--stone); transition: transform 0.35s var(--ease), color 0.35s var(--ease); }
.bio-link__arrow svg { display: block; }

.bio-link:hover, .bio-link:focus-visible {
  background: var(--ink); color: var(--paper);
  border-color: var(--ink); transform: translateY(-2px);
}
.bio-link:hover .bio-link__meta, .bio-link:focus-visible .bio-link__meta,
.bio-link:hover .bio-link__arrow, .bio-link:focus-visible .bio-link__arrow { color: color-mix(in srgb, var(--paper) 70%, transparent); }
.bio-link:hover .bio-link__icon, .bio-link:focus-visible .bio-link__icon {
  background: transparent; border-color: color-mix(in srgb, var(--paper) 45%, transparent); color: var(--paper);
}
.bio-link:hover .bio-link__arrow, .bio-link:focus-visible .bio-link__arrow { transform: translate(3px, -3px); }

.bio__foot {
  align-self: stretch;
  margin-top: clamp(2rem, 6vw, 2.75rem); display: flex; flex-wrap: wrap;
  gap: 0.6em; justify-content: center; align-items: center; color: var(--stone);
  opacity: 0; animation: rise 0.9s var(--ease) 0.6s forwards;
}
.bio__foot span { opacity: 0.5; }
@media (prefers-reduced-motion: reduce) {
  .bio__brand, .bio__tagline, .bio-link, .bio__foot { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* =====================================================================
   REVEAL no scroll
   ===================================================================== */
[data-reveal], .proj { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].is-in, .proj.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], .proj { opacity: 1 !important; transform: none !important; }
}

/* =====================================================================
   RESPONSIVO
   ===================================================================== */
@media (max-width: 900px) {
  .hero__gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; }
  .shot { min-height: 38vh; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__brand { opacity: 1; pointer-events: auto; } /* logo sempre visível no mobile */
  .manifesto__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .portrait { max-width: 420px; }
  .grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .proj, .proj:nth-child(1), .proj:nth-child(2), .proj:nth-child(3),
  .proj:nth-child(4), .proj:nth-child(5), .proj:nth-child(6), .proj:nth-child(7) { grid-column: 1 / -1; align-self: auto; }
  .plate, .proj:nth-child(3n) .plate, .proj:nth-child(7) .plate { aspect-ratio: 4/3; }
  .approach__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .site-footer { justify-content: center; text-align: center; }
  .site-footer__meta { flex-basis: 100%; order: 3; }
}
@media (max-width: 480px) {
  .lightbox__nav { width: 40px; height: 40px; }
}
