/* Servent.IA — site editorial cartorial
   Direção: papel manilha + carimbo + serifa display + mono cartorial
   Cores: marinho ink, dourado oxidado, papel, vermelho carimbo */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Spectral:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --ink: #0a1628;
  --ink-2: #142845;
  --ink-3: #1f3a5f;
  --gold: #b8945a;
  --gold-deep: #8c6f3e;
  --paper: #f3ecdb;
  --paper-2: #eae0c5;
  --paper-3: #ddd1ad;
  --rubber: #8c2a2a;
  --rubber-faded: rgba(140, 42, 42, 0.85);
  --hair: rgba(10, 22, 40, 0.14);
  --hair-strong: rgba(10, 22, 40, 0.32);
  --shadow-soft: 0 1px 0 rgba(10,22,40,0.04), 0 2px 24px -8px rgba(10,22,40,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Spectral', Georgia, serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(184,148,90,0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(10,22,40,0.04) 0%, transparent 50%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.03 0 0 0 0 0.02 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/></svg>");
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* — Typography — */
.display { font-family: 'Cormorant Garamond', 'Times New Roman', serif; font-weight: 500; line-height: 0.92; letter-spacing: -0.015em; }
.mono { font-family: 'JetBrains Mono', 'Courier New', monospace; }
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--ink);
  opacity: 0.4;
}
.eyebrow.solo::after { display: none; }

/* — Layout shell — */
.shell { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 768px) { .shell { padding: 0 24px; } }

/* — Top bar — */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(243, 236, 219, 0.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--hair);
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.brand .dot { color: var(--gold); font-style: italic; }
.brand-mark {
  width: 28px; height: 28px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 14px;
  font-style: italic;
}
.nav { display: flex; gap: 36px; align-items: center; }
.nav a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  width: 0;
  background: var(--ink);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav a:hover::after { width: 100%; }
.nav .cta {
  border: 1px solid var(--ink);
  padding: 9px 18px;
  background: var(--ink);
  color: var(--paper);
  transition: all 0.25s;
}
.nav .cta:hover { background: var(--paper); color: var(--ink); }
.nav .cta::after { display: none; }

@media (max-width: 768px) {
  .topbar-inner { padding: 14px 24px; }
  .nav { display: none; }
  .nav .cta { display: inline-block; }
}

/* — Hero — */
.hero {
  position: relative;
  padding: 200px 0 140px;
  border-bottom: 1px solid var(--hair-strong);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 130px; left: 50%;
  width: 1px; height: 60px;
  background: var(--gold);
  transform: translateX(-50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}
.hero-eyebrow-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 64px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-eyebrow-row .left { color: var(--ink); opacity: 0.6; }
.hero-eyebrow-row .right { color: var(--rubber); font-weight: 500; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(72px, 13vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 0;
}
.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.hero h1 .small {
  display: block;
  font-size: 0.32em;
  letter-spacing: 0.04em;
  font-style: italic;
  color: var(--ink-2);
  margin-top: 28px;
  font-weight: 400;
}
.hero-rule {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 80px;
  justify-content: center;
}
.hero-rule .line { flex: 1; max-width: 200px; height: 1px; background: var(--hair-strong); }
.hero-rule .ornament {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--gold);
  font-style: italic;
}
.hero-tagline {
  text-align: center;
  margin-top: 40px;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-2);
}
.hero-tagline strong { font-style: normal; font-weight: 500; color: var(--ink); }

.hero-meta {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair-strong);
  border-bottom: 1px solid var(--hair-strong);
}
.hero-meta .cell {
  padding: 28px 24px;
  border-right: 1px solid var(--hair);
  text-align: left;
}
.hero-meta .cell:last-child { border-right: none; }
.hero-meta .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
  margin-bottom: 8px;
}
.hero-meta .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hero-meta .value em { font-style: italic; color: var(--gold); }

@media (max-width: 768px) {
  .hero { padding: 140px 0 80px; }
  .hero-eyebrow-row { margin-bottom: 40px; flex-direction: column; gap: 8px; align-items: flex-start; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); margin-top: 56px; }
  .hero-meta .cell { border-right: none; border-bottom: 1px solid var(--hair); }
  .hero-meta .cell:nth-child(2n) { border-right: none; }
  .hero-tagline { font-size: 18px; }
}

/* — Ornament rule — */
.section-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 48px 0;
}
.section-rule .line { flex: 1; height: 1px; background: var(--hair-strong); }
.section-rule .glyph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.5em;
}

/* — Manifesto — */
.manifesto {
  background: var(--ink);
  color: var(--paper);
  padding: 140px 0;
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 39px, rgba(184,148,90,0.04) 39px, rgba(184,148,90,0.04) 40px);
  pointer-events: none;
}
.manifesto .shell { position: relative; }
.manifesto .eyebrow { color: var(--gold); }
.manifesto .eyebrow::before, .manifesto .eyebrow::after { background: var(--gold); }
.manifesto h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 32px 0 56px;
  max-width: 18ch;
}
.manifesto h2 em { color: var(--gold); font-style: italic; }
.manifesto p {
  font-size: 21px;
  line-height: 1.6;
  font-weight: 300;
  max-width: 680px;
  color: rgba(243, 236, 219, 0.82);
}
.manifesto p + p { margin-top: 24px; }
.manifesto-mark {
  position: absolute;
  right: 56px;
  bottom: 80px;
  width: 180px;
  height: 180px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: 0.4;
  transform: rotate(-8deg);
}
.manifesto-mark .inner {
  width: 140px; height: 140px;
  border: 1px dashed rgba(184,148,90,0.5);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--gold);
  text-align: center;
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media (max-width: 900px) { .manifesto-mark { display: none; } }

/* — Atos (serviços) — */
.atos { padding: 140px 0 60px; }
.atos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--hair-strong);
  padding-bottom: 32px;
}
.atos-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.atos-header .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: right;
  opacity: 0.6;
}

.ato {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 56px;
  padding: 80px 0;
  border-bottom: 1px solid var(--hair);
  align-items: start;
}
.ato:last-of-type { border-bottom: none; }
.ato .roman {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.ato .body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.ato .body .sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 28px;
}
.ato .body p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 46ch;
}
.ato .body p + p { margin-top: 16px; }

.ato .panel {
  background: var(--paper-2);
  border: 1px solid var(--hair-strong);
  padding: 32px;
  position: relative;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.7;
}
.ato .panel-head {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--hair);
}
.field {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dotted var(--hair);
}
.field:last-child { border-bottom: none; }
.field .k { color: var(--ink); opacity: 0.65; font-size: 11px; letter-spacing: 0.08em; }
.field .v { color: var(--ink); font-weight: 500; }
.field .v.gold { color: var(--gold-deep); }

/* Chat panel — Ato II */
.chat {
  background: var(--paper-2);
  border: 1px solid var(--hair-strong);
  padding: 24px;
  font-family: 'Spectral', serif;
  font-size: 14.5px;
}
.chat-head {
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--hair);
}
.bubble {
  padding: 10px 14px;
  border-radius: 14px;
  margin-bottom: 8px;
  max-width: 85%;
  line-height: 1.5;
}
.bubble.in { background: var(--paper-3); border-bottom-left-radius: 2px; }
.bubble.out { background: var(--ink); color: var(--paper); margin-left: auto; border-bottom-right-radius: 2px; }
.bubble .ts { display: block; font-family: 'JetBrains Mono', monospace; font-size: 9px; opacity: 0.5; margin-top: 4px; letter-spacing: 0.1em; }

/* Kanban — Ato III */
.kanban {
  background: var(--paper-2);
  border: 1px solid var(--hair-strong);
  padding: 24px;
}
.kanban-head {
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.55;
  padding-bottom: 14px; margin-bottom: 18px;
  border-bottom: 1px solid var(--hair);
}
.kanban-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.kanban-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  opacity: 0.7;
}
.kanban-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  padding: 10px;
  margin-bottom: 6px;
  font-size: 12px;
  font-family: 'Spectral', serif;
  border-left: 3px solid var(--gold);
}
.kanban-card.urgent { border-left-color: var(--rubber); }
.kanban-card.done { border-left-color: var(--ink-3); opacity: 0.6; }
.kanban-card .meta {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  opacity: 0.55;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .ato { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .ato .roman { font-size: 40px; }
  .ato .body h3 { font-size: 38px; }
  .atos-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* — Metodologia — */
.method {
  background: var(--paper-2);
  border-top: 1px solid var(--hair-strong);
  border-bottom: 1px solid var(--hair-strong);
  padding: 120px 0;
}
.method-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 64px; }
.method-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.fases {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
.fase {
  padding: 32px 24px 40px;
  border-right: 1px solid var(--hair);
  position: relative;
}
.fase:last-child { border-right: none; }
.fase .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}
.fase h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.fase p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}

@media (max-width: 900px) {
  .fases { grid-template-columns: 1fr; border-top: none; }
  .fase { border-right: none; border-bottom: 1px solid var(--hair); }
  .method-header { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* — Igor — */
.author {
  padding: 140px 0;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 96px;
  align-items: center;
}
.author-portrait {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-soft);
}
.author-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  filter: contrast(1.05) saturate(0.95);
}
.author-portrait::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(184,148,90,0.35);
  border-radius: 50%;
  pointer-events: none;
}
.author-frame {
  position: absolute;
  bottom: -18px; right: -18px;
  width: 80px; height: 80px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}

.author .body .eyebrow { margin-bottom: 24px; }
.author .body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.author .body h2 em { font-style: italic; color: var(--gold); }
.author .body .lede {
  font-size: 22px;
  line-height: 1.55;
  font-weight: 300;
  color: var(--ink-2);
  margin-bottom: 28px;
  max-width: 50ch;
}
.author .body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 56ch;
}
.author .credits {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--hair-strong);
}
.author .credit-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  line-height: 1;
  font-weight: 500;
  color: var(--ink);
}
.author .credit-num em { color: var(--gold); font-style: italic; }
.author .credit-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .author { grid-template-columns: 1fr; gap: 48px; padding: 80px 0; }
  .author-portrait { max-width: 280px; }
}

/* — CTA — */
.cta-section {
  background: var(--ink);
  color: var(--paper);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(184,148,90,0.08), transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(140,42,42,0.06), transparent 50%);
  pointer-events: none;
}
.cta-section .shell { position: relative; text-align: center; }
.cta-section .eyebrow { color: var(--gold); }
.cta-section .eyebrow::before, .cta-section .eyebrow::after { background: var(--gold); }
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 32px 0 20px;
}
.cta-section h2 em { font-style: italic; color: var(--gold); }
.cta-section .sub {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 300;
  font-style: italic;
  color: rgba(243,236,219,0.7);
  max-width: 580px;
  margin: 0 auto 56px;
}
.cta-actions {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--paper);
  color: var(--paper);
  transition: all 0.25s;
  background: transparent;
}
.btn:hover { background: var(--paper); color: var(--ink); }
.btn.primary { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn.primary:hover { background: var(--paper); border-color: var(--paper); }
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(3px); }

/* Stamp — selo carimbado */
.stamp {
  position: absolute;
  width: 220px; height: 220px;
  border: 3px solid var(--rubber-faded);
  border-radius: 50%;
  display: grid; place-items: center;
  transform: rotate(-12deg);
  opacity: 0.85;
  pointer-events: none;
  font-family: 'Cormorant Garamond', serif;
  color: var(--rubber-faded);
}
.stamp::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--rubber-faded);
  border-radius: 50%;
}
.stamp .stamp-text {
  text-align: center;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.stamp .stamp-big {
  display: block;
  font-size: 28px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.02em;
  margin: 4px 0;
}
.cta-section .stamp { right: 8%; top: 18%; }

@media (max-width: 900px) { .cta-section .stamp { display: none; } }

/* — Footer — */
.footer {
  padding: 64px 0 48px;
  border-top: 1px solid var(--hair);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
}
.footer-inner a { color: var(--ink); text-decoration: none; }
.footer-inner a:hover { color: var(--rubber); }
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-transform: none;
  opacity: 1;
}
.footer-brand .dot { color: var(--gold); }

/* — Reveal animation — */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.2, 0.6, 0.2, 1), transform 1s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }
.reveal.delay-5 { transition-delay: 0.4s; }

@keyframes slowSpin { to { transform: rotate(360deg); } }
.spin-slow { animation: slowSpin 80s linear infinite; }
