/* ============================================================
   NANDA FARIAS — link in bio
   Direção: editorial / quiet luxury
   ============================================================ */

:root {
  --bone: #F0EBE3;
  --bone-2: #E7E1D6;
  --ink: #161513;
  --ink-soft: #2a2825;
  --warm-gray: #8A8178;
  --warm-gray-soft: #B8B0A3;
  --champagne: #C9A574;
  --champagne-soft: #d9bc92;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sig: 'Archivo Narrow', 'Arial Narrow', 'Helvetica Neue', sans-serif;

  --ease: cubic-bezier(0.22, 0.08, 0.18, 1);

  --edge: 1px solid rgba(138, 129, 120, 0.35);
  --edge-hover: 1px solid var(--champagne);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  padding: 0 24px 64px;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 300ms var(--ease);
}

/* ---------- filete dourado topo ---------- */
.gold-thread {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--champagne) 20%,
    var(--champagne-soft) 50%,
    var(--champagne) 80%,
    transparent 100%
  );
  opacity: 0.85;
  z-index: 50;
  pointer-events: none;
}

/* ---------- signature topo ---------- */
.signature {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  font-family: var(--font-sig);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  color: var(--ink);
  text-transform: uppercase;
  pointer-events: none;
}
.sig-divider {
  flex: 1;
  margin: 0 16px;
  height: 1px;
  background: var(--warm-gray-soft);
  opacity: 0.55;
}

/* ---------- página ---------- */
.page {
  max-width: 640px;
  margin: 0 auto;
  padding-top: 72px;
}

/* ---------- HERO ---------- */
.hero {
  text-align: center;
  padding: 28px 0 72px;
}

/* R-01: foto NUNCA é cortada. Hero usa aspect-ratio natural
   (avatar IG 150×150 — quadrado). Tamanho exato 150px de largura
   garante que a thumb renderize sem upscaling/pixelização. */
.hero-portrait {
  width: 150px;
  margin: 0 auto 32px;
  position: relative;
  padding: 6px;
  background: var(--bone);
  box-shadow: inset 0 0 0 1px var(--warm-gray-soft);
}
.hero-portrait img {
  width: 100%;
  height: auto;
  display: block;
  /* image-rendering otimizado pra não over-smooth thumb pequena */
  image-rendering: -webkit-optimize-contrast;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 10vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
}

.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--warm-gray);
  margin: 0 0 22px;
  letter-spacing: 0.005em;
}

.hero-meta {
  font-family: var(--font-sig);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  color: var(--warm-gray);
  text-transform: uppercase;
  margin: 0 0 24px;
}

.social-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-sig);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.social-row li[aria-hidden] {
  color: var(--warm-gray-soft);
}
.social-row a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 300ms var(--ease), color 300ms var(--ease);
}
.social-row a:hover {
  color: var(--champagne);
  border-bottom-color: var(--champagne);
}

/* ---------- BLOCOS GERAIS (moldura editorial) ---------- */
.block {
  margin: 0 0 32px;
  padding: 28px;
  border: var(--edge);
  background: var(--bone);
  position: relative;
  transition: border-color 400ms var(--ease), transform 400ms var(--ease);
}
.block::before {
  /* canto decorativo superior esquerdo */
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 16px;
  height: 16px;
  border-top: 1px solid var(--champagne);
  border-left: 1px solid var(--champagne);
  opacity: 0;
  transition: opacity 400ms var(--ease);
}
.block::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 16px;
  height: 16px;
  border-bottom: 1px solid var(--champagne);
  border-right: 1px solid var(--champagne);
  opacity: 0;
  transition: opacity 400ms var(--ease);
}
.block:hover::before,
.block:hover::after {
  opacity: 1;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sig);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 14px;
}

.block-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(30px, 4.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--ink);
}
.block-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

.block-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 22px;
}

/* ---------- CTA ---------- */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sig);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 12px 0 10px;
  border-bottom: 1px solid var(--ink);
  transition: color 300ms var(--ease), border-color 300ms var(--ease), gap 300ms var(--ease);
  cursor: pointer;
}
.cta:hover {
  color: var(--champagne);
  border-bottom-color: var(--champagne);
  gap: 18px;
}
.cta svg {
  transition: transform 300ms var(--ease);
}
.cta:hover svg {
  transform: translateX(2px);
}
.cta--ghost {
  border-bottom-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}
.cta--ghost:hover {
  color: var(--champagne);
  border-bottom-color: var(--champagne);
}

/* ---------- BLOCO ENSAIOS ---------- */
.block--ensaios {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 540px) {
  .block--ensaios {
    grid-template-columns: 1fr;
  }
}

/* R-01: mosaico vira coluna fluida (Pinterest-like). Cada foto
   mantém aspect-ratio natural — zero crop. As classes m-* viram
   apenas marcadores semânticos sem aspect-ratio fixo. */
.mosaic {
  column-count: 2;
  column-gap: 6px;
}
.mosaic-item {
  margin: 0 0 6px 0;
  break-inside: avoid;
  background: var(--bone-2);
  overflow: hidden;
  position: relative;
}
.mosaic-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 900ms var(--ease), filter 600ms var(--ease);
}
.mosaic-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.04);
}
/* classes m-tall / m-square / m-wide deixaram de definir aspect-ratio.
   A imagem dita o tamanho. Mantidas para compatibilidade do HTML. */
.m-tall, .m-square, .m-wide { aspect-ratio: auto; }

.block-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 0;
}

/* ---------- PROCESSO ---------- */
.process {
  text-align: center;
  margin: 0 0 32px;
  padding: 48px 28px;
  border: var(--edge);
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 16px;
  height: 16px;
  border-top: 1px solid var(--champagne);
  border-left: 1px solid var(--champagne);
  opacity: 0;
  transition: opacity 400ms var(--ease);
}
.process::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 16px;
  height: 16px;
  border-bottom: 1px solid var(--champagne);
  border-right: 1px solid var(--champagne);
  opacity: 0;
  transition: opacity 400ms var(--ease);
}
.process:hover::before,
.process:hover::after {
  opacity: 1;
}
.process-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.1;
  margin: 0 0 36px;
  color: var(--ink);
}
.process-heading em {
  font-style: italic;
  font-weight: 400;
}
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.process-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: var(--champagne);
  opacity: 0.6;
}
.step-number {
  font-family: var(--font-sig);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--champagne);
}
.step-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

/* ---------- BLOCO PORTFÓLIO ---------- */
.block--portfolio {
  padding: 0;
  border: var(--edge);
  overflow: hidden;
}

/* R-01: cover do portfólio usa aspect-ratio NATURAL da imagem
   (passado via inline style --ar no HTML). Sem crop. */
.portfolio-card {
  display: block;
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: var(--ar, 3 / 4);
}

.portfolio-cover {
  position: absolute;
  inset: 0;
  margin: 0;
}
.portfolio-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--ink);
  filter: brightness(0.92) saturate(0.95);
  transition: transform 1200ms var(--ease), filter 600ms var(--ease);
}
.portfolio-card:hover .portfolio-cover img {
  transform: scale(1.02);
  filter: brightness(0.88) saturate(0.98);
}
.portfolio-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 21, 19, 0) 35%, rgba(22, 21, 19, 0.78) 100%);
  pointer-events: none;
}

.portfolio-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
}
.portfolio-caption .eyebrow {
  color: var(--champagne-soft);
  margin-bottom: 10px;
}
.portfolio-caption .block-title {
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.25);
}

/* ---------- CONTATO ---------- */
.contact {
  text-align: center;
  margin: 56px 0 28px;
}
.ornament {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--champagne);
  margin-bottom: 14px;
  letter-spacing: 0.2em;
}
.contact-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  margin: 0 0 28px;
}
.contact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  text-align: left;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid var(--warm-gray-soft);
  border-bottom: 1px solid var(--warm-gray-soft);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.contact-list > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-list dt {
  font-family: var(--font-sig);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.contact-list dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.contact-list dd a {
  border-bottom: 1px solid transparent;
  transition: border-color 300ms var(--ease), color 300ms var(--ease);
}
.contact-list dd a:hover {
  color: var(--champagne);
  border-bottom-color: var(--champagne);
}

/* ---------- FOOTER ---------- */
.foot {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.foot-brand {
  font-family: var(--font-sig);
  font-size: 10.5px;
  letter-spacing: 0.4em;
  color: var(--ink);
}
.foot-sub {
  font-family: var(--font-sig);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  color: var(--warm-gray);
}

/* ---------- EASTER EGG TIPOGRÁFICO ---------- */
.sig-left {
  transition: font-family 600ms var(--ease), font-style 600ms var(--ease),
    letter-spacing 600ms var(--ease), font-weight 600ms var(--ease);
}
.sig-easter {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  letter-spacing: 0.06em !important;
  text-transform: none !important;
}

/* ---------- DARK MODE ---------- */
html.dark {
  --bone: #0A0A0A;
  --bone-2: #141414;
  --ink: #F0EBE3;
  --ink-soft: #d9d3c9;
  --warm-gray: #8A8178;
  --warm-gray-soft: #4a453e;
  --edge: 1px solid rgba(138, 129, 120, 0.2);
}
html.dark {
  background: #0A0A0A;
}
html.dark .hero-portrait {
  box-shadow: 0 0 0 6px #0A0A0A, 0 0 0 7px rgba(201, 165, 116, 0.2);
}
html.dark .portfolio-cover img {
  filter: brightness(0.7) saturate(0.9);
}
html.dark .gold-thread {
  opacity: 0.5;
}

.dark-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  width: 28px;
  height: 14px;
  border-radius: 7px;
  border: 1px solid var(--warm-gray-soft);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: border-color 300ms var(--ease);
  padding: 0;
}
.dark-toggle:hover {
  border-color: var(--champagne);
}
.dark-toggle-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm-gray);
  position: absolute;
  left: 2px;
  transition: left 300ms var(--ease), background 300ms var(--ease);
}
html.dark .dark-toggle-dot {
  left: 16px;
  background: var(--champagne);
}

/* ---------- SCROLL REVEAL ---------- */
.block,
.process,
.contact,
.foot {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease),
    border-color 400ms var(--ease);
}
.block.revealed,
.process.revealed,
.contact.revealed,
.foot.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- CUSTOM CURSOR ---------- */
.custom-cursor {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 300ms var(--ease), height 300ms var(--ease),
    background 300ms var(--ease), opacity 300ms var(--ease);
  mix-blend-mode: difference;
}
.cursor-expand {
  width: 32px;
  height: 32px;
  background: var(--champagne);
}
@media (pointer: coarse) {
  .custom-cursor { display: none; }
}

/* ---------- ACESSIBILIDADE ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--ink);
  color: var(--bone);
  padding: 8px 16px;
  font-family: var(--font-ui);
  font-size: 14px;
  z-index: 999;
  border-radius: 0 0 4px 4px;
  transition: top 200ms var(--ease);
}
.skip-link:focus {
  top: 0;
}

*:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 2px;
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 540px) {
  body { padding: 0 16px 48px; }
  .signature { padding: 0 18px; font-size: 9.5px; }
  .page { padding-top: 64px; }
  .block { padding: 20px; }
  .portfolio-caption { left: 20px; right: 20px; bottom: 18px; }
  .contact-list { grid-template-columns: 1fr; }
}

/* ---------- SCROLL HEADER (sólido aparece ao rolar) ---------- */
.scroll-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  background: rgba(245, 240, 235, 0.96);
  backdrop-filter: saturate(1.15) blur(10px);
  -webkit-backdrop-filter: saturate(1.15) blur(10px);
  border-bottom: 1px solid var(--warm-gray-soft, rgba(0,0,0,0.08));
  font-family: var(--font-sig, system-ui, sans-serif);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink, #1f1d1b);
  transform: translateY(-100%);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
  will-change: transform;
  pointer-events: none;
}
.scroll-header span {
  position: relative;
  padding: 0 20px;
}
.scroll-header span::before,
.scroll-header span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}
.scroll-header span::before { right: 100%; }
.scroll-header span::after { left: 100%; }
.scroll-header.visible {
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 540px) {
  .scroll-header { height: 48px; font-size: 11px; letter-spacing: 0.28em; }
  .scroll-header span::before,
  .scroll-header span::after { width: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-header { transition: none; }
}

/* ========================================================
   HERO PORTRAIT ROUND + SCROLL INDICATOR
   ======================================================== */
.hero-portrait {
  border-radius: 50%;
  overflow: hidden;
  width: 150px;
  height: 150px;
  padding: 4px;
  background: var(--bone);
  box-shadow:
    inset 0 0 0 1px var(--warm-gray-soft),
    0 8px 28px -10px rgba(31, 29, 27, 0.18);
}
.hero-portrait img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scroll-indicator {
  display: block;
  margin: 28px auto 0;
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--warm-gray, rgba(0,0,0,0.32));
  border-radius: 14px;
  position: relative;
  opacity: 0.55;
  transition: opacity 300ms ease;
}
.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  background: var(--warm-gray, currentColor);
  border-radius: 2px;
  animation: scroll-wheel 2.2s cubic-bezier(.4,.0,.2,1) infinite;
}
.scroll-indicator:hover { opacity: 1; }
@keyframes scroll-wheel {
  0%   { transform: translateY(0);   opacity: 0; }
  20%  { opacity: 1; }
  60%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(12px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-indicator::after { animation: none; }
}

/* ========================================================
   MOBILE — fotos alinhadas (1 col abaixo de 540px)
   ======================================================== */
@media (max-width: 540px) {
  .mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    column-count: auto;
  }
  .mosaic-item { margin: 0; }
  .mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4;
  }
}

/* ========================================================
   PORTFOLIO CARD — chamada off-white + champagne
   ======================================================== */
.portfolio-caption .block-title {
  color: #f5ece4 !important;
}
.portfolio-caption .block-title em {
  color: #d4a86a;
  font-style: italic;
}
.portfolio-caption .eyebrow {
  color: rgba(245, 236, 228, 0.78);
}

/* ========================================================
   WHATSAPP FLOAT
   ======================================================== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 29, 27, 0.94);
  color: #f5ece4;
  text-decoration: none;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.35), 0 2px 6px rgba(0,0,0,0.18);
  border: 1px solid rgba(212, 168, 106, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}
.wa-float svg { width: 22px; height: 22px; fill: currentColor; }
.wa-float:hover, .wa-float:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 40px -8px rgba(0,0,0,0.42), 0 4px 10px rgba(0,0,0,0.22);
  background: rgba(31, 29, 27, 1);
  color: #f5ece4;
}
.wa-float .wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 106, 0.45);
  opacity: 0;
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(0.92); opacity: 0.55; }
  80%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}
@media (max-width: 480px) {
  .wa-float { width: 48px; height: 48px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 20px; height: 20px; }
}

/* ========================================================
   PROCESSO — botao video
   ======================================================== */
.process-video-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 10px 18px;
  font-family: var(--font-sig);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--warm-gray-soft, rgba(0,0,0,0.18));
  text-decoration: none;
  cursor: pointer;
  transition: border-color 240ms ease, color 240ms ease, background 240ms ease;
}
.process-video-link:hover {
  border-color: #d4a86a;
  color: #2b2b2b;
  background: rgba(212, 168, 106, 0.06);
}
.process-video-link svg { width: 12px; height: 12px; fill: currentColor; }

/* ========================================================
   VIDEO MODAL
   ======================================================== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 280ms ease;
}
.video-modal.open { display: flex; opacity: 1; }
.video-modal video {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  background: #000;
}
.video-modal .video-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: #f5ece4;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  z-index: 1;
  transition: background 200ms ease;
}
.video-modal .video-close:hover { background: rgba(255,255,255,0.16); }
