/* =========================================================
   LabArteTech — folha de estilo principal
   Paleta: terracota / argila / creme / preto cerâmico
   Tipografia: Fraunces (display), Inter Tight (texto), JetBrains Mono (mono)
   ========================================================= */

:root {
  --clay-50:  #f5ecdf;
  --clay-100: #ead9c0;
  --clay-200: #d9b894;
  --clay-300: #c89570;
  --clay-400: #b87553;
  --clay-500: #9a5238;
  --clay-600: #75361f;
  --clay-700: #51230f;
  --clay-800: #2e1206;
  --ink:      #1a0e07;
  --paper:    #faf3e7;
  --paper-2:  #efe4d0;
  --accent:   #3a7a5e; /* verde-musgo, evoca esmalte */
  --accent-2: #d4886a;

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Inter Tight", -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.4 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/* Mono utility */
.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =====================  NAV  ===================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 243, 231, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58, 18, 6, 0.08);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--clay-700);
  text-decoration: none;
}
.brand__mark { display: inline-flex; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  margin-top: 3px;
  opacity: 0.7;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__links {
  display: flex; gap: 26px; align-items: center;
}
.nav__links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1.5px; background: var(--clay-600);
  transition: right 0.35s cubic-bezier(.65,0,.35,1);
}
.nav__links a:hover::after { right: 0; }
.nav__cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 9px 18px !important;
  border-radius: 999px;
  font-size: 13px !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--clay-700); }

@media (max-width: 760px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* =====================  HERO  ===================== */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 8vh, 90px) var(--pad) clamp(60px, 10vh, 120px);
  overflow: hidden;
}
.hero__grid {
  max-width: 760px;
  position: relative;
  z-index: 2;
}
.hero__meta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--clay-500);
  box-shadow: 0 0 0 0 var(--clay-500);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(154, 82, 56, 0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(154, 82, 56, 0); }
  100% { box-shadow: 0 0 0 0 rgba(154, 82, 56, 0); }
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(54px, 10vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 36px;
}
.hero__title .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.85s forwards;
}
.hero__title .line:nth-child(1) { animation-delay: 0.20s; }
.hero__title .line:nth-child(2) { animation-delay: 0.35s; }
.hero__title .line:nth-child(3) { animation-delay: 0.50s; }
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--clay-600);
}
.hero__title .outline {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
  font-weight: 700;
}
.hero__lede {
  max-width: 580px;
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(26, 14, 7, 0.78);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s 0.65s forwards;
}
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s forwards;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--clay-700);
  transform: translateY(-2px);
}
.btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 14, 7, 0.15);
  opacity: 0;
  animation: fadeUp 0.7s 0.95s forwards;
}
.hero__stats > div { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--clay-700);
  line-height: 1;
}
.hero__stats span {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.7;
}

@media (max-width: 720px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* arte hero (vaso lateral) */
.hero__art {
  position: absolute;
  top: 50%;
  right: var(--pad);
  transform: translateY(-50%);
  width: 320px;
  pointer-events: none;
  opacity: 0;
  animation: artFade 1.4s 0.4s forwards;
}
@keyframes artFade {
  to { opacity: 1; }
}
.hero__art svg { width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(46, 18, 6, 0.18)); }
.hero__art-label {
  position: absolute;
  bottom: -50px;
  right: 0;
  text-align: right;
  font-size: 10px;
  line-height: 1.6;
  color: var(--clay-700);
  opacity: 0.85;
}
@media (max-width: 1100px) {
  .hero__art { display: none; }
}

/* =====================  SECTION HEAD  ===================== */
.section__head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  margin-bottom: 56px;
}
.section__num {
  display: inline-block;
  color: var(--clay-600);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  max-width: 900px;
}
.section__sub {
  margin-top: 20px;
  font-size: 18px;
  max-width: 620px;
  color: rgba(26, 14, 7, 0.7);
}

/* =====================  MANIFESTO  ===================== */
.manifesto {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 12vw, 160px) var(--pad);
  position: relative;
  overflow: hidden;
}
.manifesto .section__head { padding: 0; }
.manifesto .section__title { color: var(--paper); }
.manifesto .section__num { color: var(--clay-300); }
.manifesto__body {
  max-width: var(--max);
  margin: 0 auto;
}
.manifesto__p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
  margin-bottom: 32px;
  max-width: 1000px;
  font-weight: 300;
}
.manifesto__p--accent {
  font-style: italic;
  color: var(--clay-200);
  font-weight: 400;
  border-left: 3px solid var(--clay-500);
  padding-left: 28px;
  margin: 48px 0;
}

/* =====================  PROCESSO  ===================== */
.processo {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--paper-2);
}
.processo__flow {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}
.step {
  background: var(--paper);
  padding: 28px 24px;
  border-radius: 4px;
  border: 1px solid rgba(26, 14, 7, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(46, 18, 6, 0.08);
}
.step__num {
  color: var(--clay-500);
  margin-bottom: 16px;
}
.step__icon {
  color: var(--clay-700);
  margin-bottom: 18px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(26, 14, 7, 0.72);
}
.step__arrow {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--clay-500);
  opacity: 0.6;
}
@media (max-width: 980px) {
  .processo__flow { grid-template-columns: 1fr; }
  .step__arrow { display: none; }
}

/* =====================  LAB INTERATIVO  ===================== */
.lab {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--paper);
}
.lab__wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .lab__wrap { grid-template-columns: 1fr; gap: 40px; }
}
.lab__visual {
  background: linear-gradient(135deg, var(--clay-50) 0%, var(--paper-2) 100%);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 14, 7, 0.08);
}
.lab__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 14, 7, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 14, 7, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}
#paramVase {
  width: 100%;
  height: 480px;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(46, 18, 6, 0.15));
}
.lab__readout {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  font-size: 9px;
  z-index: 3;
}
.lab__readout > div {
  background: rgba(26, 14, 7, 0.85);
  color: var(--paper);
  padding: 6px 8px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lab__readout span:first-child { opacity: 0.6; }
.lab__readout span:last-child { font-size: 11px; color: var(--clay-200); }

.lab__controls .ctrl {
  margin-bottom: 24px;
}
.lab__controls label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.lab__controls label .mono {
  color: var(--clay-600);
  font-size: 12px;
}
.lab__controls input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--clay-100);
  border-radius: 2px;
  outline: none;
}
.lab__controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  background: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.lab__controls input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: var(--clay-700);
}
.lab__controls input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  background: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.lab__note {
  margin-top: 24px;
  padding: 18px;
  background: var(--paper-2);
  border-left: 3px solid var(--clay-500);
  font-size: 11px;
  line-height: 1.7;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(26, 14, 7, 0.75);
}

/* =====================  DIFERENCIAL CARDS  ===================== */
.diferencial {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--paper-2);
}
.cards {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cards { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  padding: 32px 28px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 14, 7, 0.06);
  transition: all 0.35s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--clay-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(46, 18, 6, 0.1);
}
.card:hover::before { transform: scaleX(1); }
.card__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  color: var(--clay-300);
  line-height: 1;
  margin-bottom: 14px;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.card p {
  font-size: 14px;
  color: rgba(26, 14, 7, 0.7);
  line-height: 1.6;
}

/* =====================  COLEÇÕES  ===================== */
.colecoes {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--paper);
}
.colecoes__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .colecoes__grid { grid-template-columns: 1fr; } }

.colecao {
  display: flex;
  flex-direction: column;
}
.colecao__img {
  background: linear-gradient(160deg, var(--paper-2) 0%, var(--clay-100) 100%);
  border-radius: 4px;
  padding: 30px;
  margin-bottom: 20px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.65,0,.35,1);
  position: relative;
}
.colecao__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 50%);
  pointer-events: none;
}
.colecao:hover .colecao__img { transform: scale(1.02); }
.colecao__img svg {
  width: 70%;
  height: auto;
  filter: drop-shadow(0 20px 25px rgba(46, 18, 6, 0.2));
}
.colecao__meta {
  color: var(--clay-600);
  margin-bottom: 6px;
}
.colecao h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.colecao p {
  font-size: 15px;
  color: rgba(26, 14, 7, 0.72);
  line-height: 1.6;
}

/* =====================  TECH GRID  ===================== */
.tech {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--ink);
  color: var(--paper);
}
.tech .section__title { color: var(--paper); }
.tech .section__num { color: var(--clay-300); }
.tech__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 236, 223, 0.15);
}
@media (max-width: 800px) { .tech__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .tech__grid { grid-template-columns: 1fr; } }

.tech__item {
  padding: 32px 28px;
  border-right: 1px solid rgba(245, 236, 223, 0.12);
  border-bottom: 1px solid rgba(245, 236, 223, 0.12);
  transition: background 0.3s ease;
}
.tech__item:hover { background: rgba(245, 236, 223, 0.04); }
.tech__item .mono {
  color: var(--clay-300);
  font-size: 10px;
  margin-bottom: 14px;
  display: block;
}
.tech__item h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.tech__item p {
  font-size: 13.5px;
  opacity: 0.7;
  line-height: 1.55;
}

/* =====================  METAS  ===================== */
.metas {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--paper-2);
}
.metas__list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  list-style: none;
  counter-reset: meta;
}
.metas__list li {
  display: grid;
  grid-template-columns: 80px 50px 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(26, 14, 7, 0.1);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: padding-left 0.3s ease;
}
.metas__list li:hover {
  padding-left: 16px;
}
.metas__list li .meta__bar {
  height: 1.5px;
  background: var(--clay-500);
  width: 100%;
  display: block;
  transition: background 0.3s ease;
}
.metas__list li:hover .meta__bar { background: var(--ink); }
.metas__list li .mono {
  color: var(--clay-600);
  font-size: 12px;
}

/* =====================  IMPACTO  ===================== */
.impacto {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--paper);
}
.impacto__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 800px) { .impacto__grid { grid-template-columns: 1fr; } }
.impacto__col {
  padding: 32px 28px;
  background: var(--paper-2);
  border-radius: 4px;
  border-top: 4px solid var(--clay-500);
}
.impacto__col:nth-child(2) { border-color: var(--accent); }
.impacto__col:nth-child(3) { border-color: var(--clay-700); }
.impacto__col h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.impacto__col ul {
  list-style: none;
}
.impacto__col li {
  padding: 12px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(26, 14, 7, 0.08);
  position: relative;
  padding-left: 22px;
  color: rgba(26, 14, 7, 0.8);
}
.impacto__col li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--clay-600);
}
.impacto__col li:last-child { border-bottom: none; }

/* =====================  CTA  ===================== */
.cta {
  background: linear-gradient(135deg, var(--clay-600) 0%, var(--clay-800) 100%);
  color: var(--paper);
  padding: clamp(80px, 14vw, 160px) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 230, 200, 0.15), transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 180, 130, 0.1), transparent 50%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.cta .section__num { color: var(--clay-200); display: block; margin-bottom: 16px; }
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  font-style: italic;
}
.cta__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  opacity: 0.88;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta__row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta .btn--primary { background: var(--paper); color: var(--ink); }
.cta .btn--primary:hover { background: var(--clay-100); }
.cta .btn--ghost { border-color: var(--paper); color: var(--paper); }
.cta .btn--ghost:hover { background: var(--paper); color: var(--ink); }

/* =====================  FOOTER  ===================== */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 60px var(--pad) 30px;
}
.foot__inner { max-width: var(--max); margin: 0 auto; }
.foot__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(245, 236, 223, 0.15);
}
.foot__brand strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.foot__brand .mono {
  font-size: 11px;
  opacity: 0.6;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 700px) { .foot__cols { grid-template-columns: 1fr; } }
.foot__label {
  color: var(--clay-300);
  font-size: 10px;
  display: block;
  margin-bottom: 8px;
}
.foot__cols p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.55;
}
.foot__copy {
  font-size: 10px;
  opacity: 0.5;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 236, 223, 0.1);
}

/* =====================  ANIMATIONS  ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Reveal on scroll utility */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Selection */
::selection {
  background: var(--clay-700);
  color: var(--paper);
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb {
  background: var(--clay-400);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: var(--clay-600); }
