:root {
  --bg: #EFEAE1;
  --ink: #1A1A1A;
  --muted: #8B8579;
  --ghost: rgba(26,26,26,0.10);
  --line: rgba(26,26,26,0.18);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--ink); color: var(--bg); }

/* ---------- NAV ---------- */
nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  background: transparent;
}
@media (max-width: 720px) { nav { padding: 18px 22px; } }
.menu-btn {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: transparent; border: 0; padding: 6px;
}
.menu-btn span { width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s ease, opacity .2s ease; }
.menu-btn.open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }
.brand {
  font-weight: 600; font-size: 18px;
  letter-spacing: 0.01em;
}
.brand sup { font-size: 9px; vertical-align: super; margin-left: 2px; font-weight: 500; }

/* ---------- MENU OVERLAY ---------- */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 60px 60px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .4s cubic-bezier(.16,.84,.32,1), transform .4s cubic-bezier(.16,.84,.32,1);
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (max-width: 720px) { .menu-overlay { padding: 100px 28px 40px; } }

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.menu-list li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s cubic-bezier(.16,.84,.32,1), transform .5s cubic-bezier(.16,.84,.32,1);
}
.menu-overlay.open .menu-list li { opacity: 1; transform: translateY(0); }
.menu-overlay.open .menu-list li:nth-child(1) { transition-delay: .1s; }
.menu-overlay.open .menu-list li:nth-child(2) { transition-delay: .16s; }
.menu-overlay.open .menu-list li:nth-child(3) { transition-delay: .22s; }
.menu-overlay.open .menu-list li:nth-child(4) { transition-delay: .28s; }

.menu-list a {
  display: inline-block;
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 4px 0;
  position: relative;
  transition: opacity .2s ease, transform .2s ease;
}
.menu-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--ink);
  transition: width .35s cubic-bezier(.16,.84,.32,1);
}
.menu-list a:hover::after { width: 100%; }

.menu-foot {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  opacity: 0;
  transition: opacity .4s ease .35s;
}
.menu-overlay.open .menu-foot { opacity: 1; }
.menu-foot a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }

body.menu-open { overflow: hidden; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 40px 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 110px 22px 40px; gap: 36px; }
}
.hero-text {
  position: relative;
  padding: 180px 0 0 0;
}
@media (max-width: 880px) { .hero-text { padding: 60px 0 0 0; } }

.greet {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.005em;
  max-width: 600px;
}
.greet u {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

.scroll-cue {
  margin-top: 90px;
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 8px;
}
.scroll-cue .arrow-svg {
  color: var(--ink);
  display: block;
}

.hero-image {
  align-self: end;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---------- ABOUT (Sobre nosotros) ---------- */
.about {
  padding: 140px 40px 80px;
}
@media (max-width: 880px) { .about { padding: 80px 22px 60px; } }
@media (max-width: 560px) { .about { padding: 60px 14px 40px; } }

.about-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "head image"
    "body image";
  column-gap: 80px;
  row-gap: 0;
  align-items: start;
}
.about-head { grid-area: head; }
.about-body { grid-area: body; }
.about-image { grid-area: image; }
@media (max-width: 880px) {
  .about-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "image"
      "body";
    row-gap: 32px;
    column-gap: 0;
  }
}

.about-tag {
  font-size: 12px; font-weight: 500;
  color: var(--muted);
  margin-bottom: 24px;
}
.about h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}
.about h2 em {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}
.about p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 540px;
}
.about p b { font-weight: 700; }
.about p.about-lead { margin-bottom: 22px; }
.about p.about-pivot {
  font-weight: 700;
  margin-top: 22px;
  margin-bottom: 22px;
}
.about-sign {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px; font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.about-sign::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px; background: var(--ink);
}

.about-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---------- GALLERY (masonry tipo Instagram) ---------- */
.gallery {
  padding: 60px 40px 100px;
}
@media (max-width: 880px) { .gallery { padding: 40px 22px 60px; } }
@media (max-width: 560px) { .gallery { padding: 30px 14px 50px; } }

.gallery-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.gallery-head h1,
.gallery-head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
}
.gallery-head .count {
  font-size: 12px; font-weight: 500;
  color: var(--muted);
}

/* CSS columns = masonry natural — SIEMPRE 3 columnas */
.masonry {
  column-count: 3;
  column-gap: 18px;
}
@media (max-width: 720px) { .masonry { column-gap: 8px; } }

.masonry .item {
  break-inside: avoid;
  margin: 0 0 18px;
  overflow: hidden;
  background: rgba(26,26,26,0.05);
  cursor: zoom-in;
  /* fade-in en cascada al hacer scroll */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(.16,.84,.32,1), transform 1s cubic-bezier(.16,.84,.32,1);
}
.masonry .item.in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 720px) { .masonry .item { margin-bottom: 8px; } }
.masonry .item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s cubic-bezier(.16,.84,.32,1), filter .4s ease;
}
.masonry .item:hover img { transform: scale(1.025); }

/* "ver todas" link bajo masonry del home */
.gallery-more {
  margin-top: 48px;
  display: flex; justify-content: flex-end;
}
.gallery-more a {
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 14px;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 4px;
  transition: gap .25s ease;
}
.gallery-more a:hover { gap: 22px; }
.gallery-more svg { transition: transform .25s ease; }
.gallery-more a:hover svg { transform: translateX(4px); }

/* Back link en galeria.html */
.back-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  margin-bottom: 32px;
  transition: gap .25s ease, color .25s ease;
}
.back-link:hover { gap: 18px; color: var(--ink); }
.back-link svg { transition: transform .25s ease; }

/* Página de galería completa */
.full-gallery {
  padding: 130px 40px 100px;
}
@media (max-width: 880px) { .full-gallery { padding: 100px 22px 60px; } }
@media (max-width: 560px) { .full-gallery { padding: 90px 14px 50px; } }

/* ---------- CARRUSEL (galeria.html) ---------- */
.carousel {
  position: relative;
  margin-top: 8px;
}
.carousel .row {
  overflow: hidden;
  width: 100%;
  margin-bottom: 16px;
  touch-action: pan-y;
  cursor: grab;
}
.carousel .row:last-of-type { margin-bottom: 0; }
.carousel .row.dragging { cursor: grabbing; }
.carousel .track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
  user-select: none;
}
.carousel .card {
  flex: 0 0 auto;
  width: 22vw;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgba(26,26,26,0.05);
}
@media (max-width: 880px) { .carousel .card { width: 32vw; } }
@media (max-width: 560px) { .carousel .card { width: 42vw; } }
.carousel .card img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

.car-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 36px;
}
.car-arrow {
  background: transparent; border: 1px solid var(--ink);
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background .25s ease, color .25s ease;
}
.car-arrow:hover { background: var(--ink); color: var(--bg); }
.car-prev { border-right: 0; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(26,26,26,0.92);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInOnly { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.lb-close {
  position: absolute; top: 22px; right: 28px;
  background: transparent; border: 0; padding: 8px;
  color: var(--bg);
  font-size: 24px;
  line-height: 1;
}
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: transparent; border: 1px solid rgba(239,234,225,0.45);
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--bg);
  transition: background .25s ease, border-color .25s ease;
}
.lb-nav:hover { background: rgba(239,234,225,0.12); border-color: var(--bg); }
.lb-prev { left: 28px; }
.lb-next { right: 28px; }
.lb-counter {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: var(--bg);
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .lightbox { padding: 20px; }
  .lb-nav { width: 40px; height: 40px; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
  .lb-close { top: 14px; right: 18px; }
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 140px 40px 80px;
}
@media (max-width: 880px) { .contact { padding: 80px 22px 60px; } }

.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .contact-inner { grid-template-columns: 1fr; gap: 40px; } }

.contact-tag {
  font-size: 12px; font-weight: 500; color: var(--muted);
  margin-bottom: 22px;
}
.contact h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.contact h2 u {
  text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px;
}
.contact-lead {
  margin-top: 32px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  max-width: 440px;
  line-height: 1.6;
}
.contact-bits {
  margin-top: 56px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--ink);
}
.contact-bits a { text-decoration: underline; text-underline-offset: 4px; }
.contact-bits .k {
  color: var(--muted); margin-right: 16px;
  font-weight: 500; display: inline-block; min-width: 70px;
}

/* form */
form { display: flex; flex-direction: column; gap: 18px; padding-top: 8px; }

.form-card {
  background: rgba(26,26,26,0.04);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 2px;
}
@media (max-width: 560px) { .form-card { padding: 22px; } }

.field {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 12px 16px 10px;
  transition: border-color .25s ease, background .25s ease;
}
.field:focus-within {
  border-color: var(--ink);
  background: var(--bg);
}
.field label {
  display: block;
  font-size: 11px; font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  transition: color .25s ease;
}
.field:focus-within label { color: var(--ink); }
.field label .opt {
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0;
  color: var(--muted);
  opacity: 0.7;
  margin-left: 4px;
}
.field input,
.field textarea {
  width: 100%;
  border: 0; background: transparent;
  padding: 2px 0;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  resize: none;
}
.field textarea { min-height: 96px; padding-top: 4px; }
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: 0.5;
  font-weight: 500;
}

.submit {
  margin-top: 6px;
  width: 100%;
  background: var(--ink);
  border: 0;
  padding: 18px 24px;
  font-family: inherit;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  transition: gap .25s ease, transform .25s ease;
  cursor: pointer;
}
.submit:hover { gap: 22px; transform: translateY(-1px); }
.submit svg { transition: transform .25s ease; }
.submit:hover svg { transform: translateX(4px); }

.ok {
  display: none;
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink);
}
.ok.show { display: block; }

/* ---------- FOOTER ---------- */
footer {
  padding: 60px 40px 40px;
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 32px;
  border-top: 1px solid var(--line);
  margin: 0 40px;
}
@media (max-width: 880px) { footer { padding: 40px 22px 30px; margin: 0 22px; } }
.footer-mark {
  font-size: clamp(60px, 14vw, 200px);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.04em;
}
.footer-mark sup { font-size: 0.18em; vertical-align: super; font-weight: 500; }
.footer-meta {
  text-align: right;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--muted);
}
.footer-meta a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Reveal ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.reveal { animation: fadeUp 0.9s cubic-bezier(.16,.84,.32,1) both; }

/* ---------- FORM SENDING OVERLAY ---------- */
.send-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s cubic-bezier(.16,.84,.32,1);
}
.send-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.send-overlay .so-mark {
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  display: inline-flex;
}
.send-overlay .so-mark span {
  opacity: 0;
  transform: translateY(14px);
  animation: thanksLetterIn .55s cubic-bezier(.16,.84,.32,1) forwards;
}
.send-overlay.show .so-mark span:nth-child(1) { animation-delay: .08s; }
.send-overlay.show .so-mark span:nth-child(2) { animation-delay: .16s; }
.send-overlay.show .so-mark span:nth-child(3) { animation-delay: .24s; }
.send-overlay.show .so-mark span:nth-child(4) { animation-delay: .32s; }

.send-overlay .so-dots {
  display: inline-flex;
  gap: 8px;
  opacity: 0;
  animation: fadeIn .4s ease forwards .55s;
}
.send-overlay .so-dots span {
  width: 6px; height: 6px;
  background: var(--ink);
  border-radius: 50%;
  animation: dotPulse 1.1s ease-in-out infinite;
}
.send-overlay .so-dots span:nth-child(2) { animation-delay: .15s; }
.send-overlay .so-dots span:nth-child(3) { animation-delay: .3s; }
@keyframes dotPulse {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}
.send-overlay .so-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeIn .4s ease forwards .7s;
}

/* ---------- THANKS PAGE ---------- */
@keyframes thanksLetterIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes thanksItemIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.brand-thanks { font-weight: 600; }

.thanks {
  min-height: 100vh;
  padding: 140px 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
@media (max-width: 720px) { .thanks { padding: 100px 22px 60px; } }

.thanks-inner {
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thanks-mark {
  font-size: clamp(60px, 12vw, 140px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  display: inline-flex;
  margin-bottom: 36px;
}
.thanks-mark span {
  opacity: 0;
  transform: translateY(28px);
  animation: thanksLetterIn .65s cubic-bezier(.16,.84,.32,1) forwards;
}
.thanks-mark span:nth-child(1) { animation-delay: .15s; }
.thanks-mark span:nth-child(2) { animation-delay: .26s; }
.thanks-mark span:nth-child(3) { animation-delay: .37s; }
.thanks-mark span:nth-child(4) { animation-delay: .48s; }

.thanks-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 28px;
  opacity: 0;
  animation: thanksItemIn .8s cubic-bezier(.16,.84,.32,1) forwards;
  animation-delay: .85s;
}

.thanks-lead {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.005em;
  max-width: 560px;
  margin-bottom: 24px;
  opacity: 0;
  animation: thanksItemIn .8s cubic-bezier(.16,.84,.32,1) forwards;
  animation-delay: 1.05s;
}
.thanks-lead u {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1.5px;
}

.thanks-body {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: thanksItemIn .8s cubic-bezier(.16,.84,.32,1) forwards;
  animation-delay: 1.2s;
}
.thanks-body b { font-weight: 700; }

.thanks-phrase {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 48px;
  opacity: 0;
  animation: thanksItemIn .8s cubic-bezier(.16,.84,.32,1) forwards;
  animation-delay: 1.4s;
}
.thanks-phrase .wink {
  font-weight: 600;
  color: var(--ink);
  margin-left: 4px;
}

.thanks-back {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  transition: gap .25s ease, background .25s ease, color .25s ease;
  opacity: 0;
  animation: thanksItemIn .8s cubic-bezier(.16,.84,.32,1) forwards;
  animation-delay: 1.6s;
}
.thanks-back svg { transition: transform .25s ease; }
.thanks-back:hover {
  background: var(--ink);
  color: var(--bg);
  gap: 18px;
}
.thanks-back:hover svg { transform: translateX(-4px); }

.thanks-sig {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: thanksItemIn .8s cubic-bezier(.16,.84,.32,1) forwards;
  animation-delay: 1.8s;
}
.thanks-sig span { color: var(--ink); }
