/* ============================================================
   Miguel Dias · Portfólio
   Editorial escuro · Fraunces + Space Grotesk
   ============================================================ */

:root {
  --bg: #0c0c0e;
  --bg-2: #131316;
  --ink: #ece8e1;
  --muted: #98928a;
  --accent: #c9a36a;
  --hairline: rgba(255, 255, 255, .09);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, .8, .24, 1);
  --pad: clamp(20px, 5vw, 72px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #0c0c0e; }

img { max-width: 100%; display: block; }

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

em { font-style: italic; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-name {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 5vw, 48px);
  animation: loaderPulse 1.4s var(--ease) infinite alternate;
}
.loader-sub {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted);
}
@keyframes loaderPulse { from { opacity: .4; } to { opacity: 1; } }

/* ---------- Grain ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 120;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='128'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='128' height='128' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.1s steps(3) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-2%, 1%); }
  66% { transform: translate(1%, -2%); }
  100% { transform: translate(0, 0); }
}

/* ---------- Cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 150;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  transition: opacity .3s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(236, 232, 225, .4);
  display: flex; align-items: center; justify-content: center;
  transition: width .35s var(--ease), height .35s var(--ease),
              background .35s, border-color .35s, opacity .3s;
}
.cursor-ring span {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: #0c0c0e; opacity: 0; transition: opacity .25s;
}
.cursor-ring.is-hover {
  width: 74px; height: 74px;
  background: var(--accent);
  border-color: var(--accent);
}
.cursor-ring.is-hover span { opacity: 1; }
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 22px var(--pad);
  transition: background .4s, backdrop-filter .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 14px var(--pad);
  background: rgba(12, 12, 14, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
}
.nav-logo em { color: var(--accent); }
.nav-logo-dot { color: var(--accent); }
.nav-links { display: flex; gap: clamp(16px, 3vw, 40px); }
.nav-links a {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  font-size: 12px;
  letter-spacing: .08em;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 9px 18px;
  transition: border-color .3s, background .3s, color .3s;
  white-space: nowrap;
}
.nav-cta:hover { border-color: var(--accent); color: var(--accent); }
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
}
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease);
}
.nav-burger.is-open span:first-child { transform: translateY(4.2px) rotate(45deg); }
.nav-burger.is-open span:last-child { transform: translateY(-4.2px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(12, 12, 14, .97);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu-links { display: flex; flex-direction: column; gap: 10px; }
.menu-links a {
  font-family: var(--serif);
  font-size: clamp(36px, 9vw, 56px);
  font-weight: 400;
  display: flex; align-items: baseline; gap: 16px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
}
.menu.is-open .menu-links a { opacity: 1; transform: none; }
.menu.is-open .menu-links a:nth-child(2) { transition-delay: .06s; }
.menu.is-open .menu-links a:nth-child(3) { transition-delay: .12s; }
.menu.is-open .menu-links a:nth-child(4) { transition-delay: .18s; }
.menu-links a small {
  font-family: var(--sans);
  font-size: 12px; color: var(--accent);
}
.menu-links a:hover { color: var(--accent); }
.menu-insta {
  margin-top: 48px;
  font-size: 13px; letter-spacing: .12em;
  color: var(--muted);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 112%;
  object-fit: cover;
  transform-origin: center;
  animation: heroZoom 18s var(--ease) both;
  will-change: transform;
}
@keyframes heroZoom { from { transform: scale(1.14); } to { transform: scale(1.02); } }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,14,.55) 0%, rgba(12,12,14,.15) 35%, rgba(12,12,14,.25) 65%, rgba(12,12,14,.92) 100%),
    radial-gradient(120% 80% at 20% 80%, rgba(12,12,14,.5), transparent 60%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--pad);
  width: 100%;
  margin-top: 4vh;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(64px, 14.5vw, 190px);
  line-height: .92;
  letter-spacing: -.015em;
}
.hero-title em { color: var(--accent); font-weight: 300; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: riseUp 1.1s var(--ease) forwards;
}
.hero-title .line:nth-child(2) > span { animation-delay: .12s; }
@keyframes riseUp { to { transform: translateY(0); } }
.hero-sub {
  margin-top: 26px;
  max-width: 520px;
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(236, 232, 225, .85);
}
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-foot {
  position: absolute; z-index: 2;
  left: var(--pad); right: var(--pad); bottom: 26px;
  display: flex; align-items: flex-end; justify-content: space-between;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollHint 1.8s var(--ease) infinite;
}
@keyframes scrollHint {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: background .35s var(--ease), color .35s, border-color .35s, transform .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--ink); color: #0d0d0f; }
.btn-solid:hover { background: var(--accent); }
.btn-ghost { border-color: rgba(236, 232, 225, .35); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-big { padding: 20px 44px; font-size: 14px; }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--hairline);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.6vw, 28px);
  color: var(--muted);
  padding-right: 12px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections base ---------- */
section { padding: clamp(80px, 12vw, 150px) var(--pad); }
.section-head { margin-bottom: clamp(40px, 6vw, 72px); }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -.01em;
}
.section-title em { color: var(--accent); }

/* ---------- Séries ---------- */
.series { background: var(--bg); }
.series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}
.series-card { cursor: pointer; }
.series-img {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
}
.series-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 1s var(--ease), filter 1s var(--ease);
  filter: saturate(.92);
}
.series-card:hover .series-img img { transform: scale(1.07); filter: saturate(1.05); }
.series-meta { padding-top: 18px; position: relative; }
.series-num {
  position: absolute; right: 0; top: 14px;
  font-family: var(--serif); font-style: italic;
  color: var(--muted); font-size: 15px;
}
.series-meta h3 {
  font-family: var(--serif);
  font-weight: 450;
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 8px;
}
.series-meta p { color: var(--muted); font-size: 14px; max-width: 34ch; }
.series-count {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
}

/* ---------- Statement ---------- */
.statement {
  position: relative;
  padding: 0;
  height: clamp(480px, 86vh, 820px);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.statement-media { position: absolute; inset: 0; }
.statement-media img {
  width: 100%; height: 120%;
  object-fit: cover;
  will-change: transform;
}
.statement::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(90% 90% at 50% 50%, rgba(12,12,14,.25), rgba(12,12,14,.78));
}
.statement-copy { position: relative; z-index: 2; text-align: center; padding: 0 var(--pad); }
.statement-big {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(30px, 5.4vw, 64px);
  line-height: 1.12;
  text-shadow: 0 2px 30px rgba(0,0,0,.45);
}
.statement-big em { color: var(--accent); }
.statement-small {
  margin-top: 18px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(236,232,225,.75);
}

/* ---------- Galeria ---------- */
.gallery { background: var(--bg-2); }
.filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.filter {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 11px 22px;
  cursor: pointer;
  transition: color .3s, border-color .3s, background .3s;
}
.filter sup { color: var(--accent); margin-left: 4px; font-size: 10px; }
.filter:hover { color: var(--ink); border-color: rgba(255,255,255,.3); }
.filter.is-active {
  color: #0d0d0f; background: var(--ink); border-color: var(--ink);
}
.filter.is-active sup { color: #8a6a35; }
.masonry {
  columns: 3;
  column-gap: 18px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.masonry-item.is-in { opacity: 1; transform: none; }
.masonry-item img {
  width: 100%;
  height: auto;
  background: #1a1a1e;
  transition: transform .9s var(--ease);
}
.masonry-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,12,.72));
  opacity: 0;
  transition: opacity .45s;
}
.masonry-item .masonry-cap {
  position: absolute; left: 14px; right: 14px; bottom: 12px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink);
  opacity: 0; transform: translateY(8px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.masonry-item .masonry-cap small { color: var(--accent); }
.masonry-item:hover img { transform: scale(1.045); }
.masonry-item:hover::after { opacity: 1; }
.masonry-item:hover .masonry-cap { opacity: 1; transform: none; }

/* ---------- Sobre ---------- */
.about { background: var(--bg); border-top: 1px solid var(--hairline); }
.about-inner {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
  max-width: 1200px;
}
.about-portrait { position: relative; width: fit-content; }
.about-portrait img {
  width: clamp(150px, 18vw, 230px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(.95);
}
.about-portrait-ring {
  position: absolute; inset: -14px;
  border: 1px dashed rgba(201, 163, 106, .5);
  border-radius: 50%;
  animation: spinSlow 26s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.about-text {
  max-width: 56ch;
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(236, 232, 225, .88);
  margin-bottom: 16px;
}
.about-copy .section-title { margin-bottom: 22px; }
.about-chips {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 26px 0 44px;
}
.about-chips li {
  font-size: 12.5px;
  letter-spacing: .04em;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 9px 16px;
  color: var(--muted);
}
.about-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  border-top: 1px solid var(--hairline);
  padding-top: 36px;
}
.service span {
  font-family: var(--serif); font-style: italic;
  color: var(--accent); font-size: 14px;
}
.service h3 {
  font-family: var(--serif);
  font-weight: 450;
  font-size: 18px;
  margin: 10px 0 8px;
}
.service p { font-size: 13.5px; color: var(--muted); }

/* ---------- Contacto ---------- */
.contact {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(110px, 16vw, 200px);
}
.contact-bg { position: absolute; inset: 0; }
.contact-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .5;
}
.contact::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(12,12,14,.55) 30%, rgba(12,12,14,.55) 70%, var(--bg) 100%);
}
.contact-inner { position: relative; z-index: 2; }
.contact-title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(44px, 9vw, 110px);
  line-height: .98;
  margin-bottom: 22px;
}
.contact-title em { color: var(--accent); }
.contact-text {
  color: rgba(236,232,225,.8);
  max-width: 44ch;
  margin: 0 auto 38px;
}
.contact-handle {
  margin-top: 22px;
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.footer {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  padding: 26px var(--pad);
  border-top: 1px solid var(--hairline);
  font-size: 11.5px;
  letter-spacing: .1em;
  color: var(--muted);
}
.footer a { transition: color .3s; }
.footer a:hover { color: var(--accent); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 180;
  background: rgba(8, 8, 10, .96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lb-stage {
  max-width: min(92vw, 1200px);
  max-height: 84vh;
  display: flex; flex-direction: column;
}
.lb-stage img {
  max-width: 100%;
  max-height: calc(84vh - 50px);
  object-fit: contain;
  border-radius: 2px;
  animation: lbIn .45s var(--ease);
}
@keyframes lbIn { from { opacity: 0; transform: scale(.985); } to { opacity: 1; transform: none; } }
.lb-caption {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 14px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}
.lb-caption #lbCount { color: var(--accent); }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--ink);
  width: 52px; height: 52px;
  font-size: 18px;
  cursor: pointer;
  transition: border-color .3s, color .3s, background .3s;
  z-index: 2;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  border-color: var(--accent); color: var(--accent);
}
.lb-close { top: 22px; right: 22px; font-size: 24px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- Reveals ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .masonry { columns: 2; }
  .about-services { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .series-grid { grid-template-columns: 1fr; max-width: 480px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-portrait { margin-bottom: 6px; }
  .hero-coords { display: none; }
  .br-d { display: none; }
}

@media (max-width: 560px) {
  .masonry { columns: 1; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-prev, .lb-next { width: 44px; height: 44px; bottom: 18px; top: auto; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001s !important;
    transition-duration: .001s !important;
  }
}

/* ---------- Contacto: ações e detalhes ---------- */
.contact-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.contact-details {
  list-style: none;
  margin: 44px auto 0;
  max-width: 520px;
  display: flex; flex-direction: column; gap: 12px;
  text-align: left;
}
.contact-details li {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 14px 20px;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  background: rgba(12, 12, 14, .45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.contact-label {
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent);
  min-width: 74px;
}
.contact-value {
  flex: 1;
  font-size: 14px;
  color: var(--ink);
  word-break: break-all;
  transition: color .3s;
}
.contact-value:hover { color: var(--accent); }
.contact-copy {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 6px 13px;
  cursor: pointer;
  transition: color .3s, border-color .3s;
}
.contact-copy:hover { color: var(--ink); border-color: rgba(255,255,255,.3); }
.contact-copy.is-copied {
  color: var(--accent); border-color: var(--accent);
}
.contact-copy.is-copied::after { content: "!"; }
.contact-copy.is-copied { font-size: 0; }
.contact-copy.is-copied::before {
  content: "copiado";
  font-size: 10px; letter-spacing: .18em;
}

/* ---------- Menu mobile: rodapé ---------- */
.menu-foot {
  margin-top: 48px;
  display: flex; flex-direction: column; gap: 10px;
}
.menu-foot a {
  font-size: 13px; letter-spacing: .06em;
  color: var(--muted);
  transition: color .3s;
  word-break: break-all;
}
.menu-foot a:hover { color: var(--accent); }

@media (max-width: 560px) {
  .contact-details li { border-radius: 18px; }
  .contact-label { min-width: 0; }
}

/* ---------- Grelha de vídeo ---------- */
.videogrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}
.videogrid[hidden] { display: none; }
.video-item {
  cursor: pointer;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.video-item.is-in { opacity: 1; transform: none; }
.video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: #1a1a1e;
}
.video-thumb img {
  width: 100%;
  height: auto;
  transition: transform .9s var(--ease), filter .6s;
  filter: saturate(.95);
}
.video-item:hover .video-thumb img { transform: scale(1.04); filter: saturate(1.05); }
.video-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,.15) 0%, transparent 40%, rgba(10,10,12,.62) 100%);
}
.video-play {
  position: absolute; top: 50%; left: 50%;
  width: 74px; height: 74px;
  margin: -37px 0 0 -37px;
  border: 1px solid rgba(236,232,225,.55);
  border-radius: 50%;
  background: rgba(12,12,14,.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
  transition: background .35s, border-color .35s, transform .35s var(--ease);
}
.video-play::before {
  content: "";
  position: absolute; top: 50%; left: 54%;
  width: 0; height: 0;
  transform: translate(-50%, -50%);
  border-left: 17px solid var(--ink);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  transition: border-left-color .35s;
}
.video-item:hover .video-play {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.06);
}
.video-item:hover .video-play::before { border-left-color: #0d0d0f; }
.video-dur {
  position: absolute; right: 12px; bottom: 12px;
  z-index: 2;
  font-size: 11px; letter-spacing: .14em;
  color: var(--ink);
  background: rgba(12,12,14,.6);
  border-radius: 100px;
  padding: 4px 11px;
}
.video-meta { padding-top: 16px; }
.video-meta h3 {
  font-family: var(--serif);
  font-weight: 450;
  font-size: clamp(18px, 2vw, 23px);
  margin-bottom: 5px;
}
.video-meta span {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
}

/* ---------- Reprodutor de vídeo ---------- */
.vlightbox {
  position: fixed; inset: 0; z-index: 180;
  background: rgba(8, 8, 10, .97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.vlightbox.is-open { opacity: 1; visibility: visible; }
.vlb-stage {
  max-width: min(94vw, 1500px);
  max-height: 88vh;
  display: flex; flex-direction: column;
}
.vlb-stage video {
  max-width: 100%;
  max-height: calc(88vh - 50px);
  border-radius: 2px;
  background: #000;
  animation: lbIn .45s var(--ease);
}

@media (max-width: 820px) {
  .videogrid { grid-template-columns: 1fr; max-width: 480px; }
  .video-play { width: 60px; height: 60px; margin: -30px 0 0 -30px; }
}
