/* ============ Tokens ============ */
:root {
  --cream: #fbf6f3;
  --cream-deep: #f3e9e2;
  --cream-shadow: #ebe0d8;
  --ink: #2a1f1c;
  --ink-soft: #4a3d38;
  --muted: #8a7a72;
  --rule: #e2d5cb;
  --wine: #7a4a4a;
  --wine-deep: #5e3838;
  --nude: #e6c9b8;
  --nude-soft: #f0dccb;

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============ Type ============ */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--wine);
  display: inline-block;
}
.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--wine);
}
h1.display { font-size: clamp(44px, 6.4vw, 92px); }
h2.display { font-size: clamp(36px, 4.8vw, 68px); }
h3.display { font-size: clamp(24px, 2.4vw, 32px); font-weight: 400; }
.body-lead {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}
.body { color: var(--ink-soft); }
.caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============ Layout ============ */
.shell { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }
.divider { height: 1px; background: var(--rule); margin: 0; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 500;
  border-radius: 999px;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--wine);
  transform: translateY(-1px);
}
.btn-primary .arrow {
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 14px 24px;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(251, 246, 243, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--rule); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .brand .crm { display: none; }
}
.brand .mark {
  font-family: var(--serif);
  font-style: italic;
  color: var(--wine);
  font-weight: 400;
}
.brand .crm {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-left: 4px;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
.nav-links a:hover { color: var(--wine); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-size: 13px;
  padding: 10px 20px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .25s;
}
.nav-cta:hover { background: var(--wine); }
@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ============ Hero ============ */
.hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 9vw, 120px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 28px; }
.hero-copy h1 { margin-bottom: 32px; }
.hero-copy .body-lead { margin-bottom: 40px; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.hero-meta .stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-meta .stat-num em { font-style: italic; color: var(--wine); }
.hero-meta .stat-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
}
.hero-image-wrap { position: relative; }
.hero-image {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.92) contrast(1.02);
}
.hero-image .corner {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-transform: uppercase;
  background: rgba(42,31,28,0.55);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-image .corner.tl { top: 16px; left: 16px; }
.hero-image .corner.br { bottom: 16px; right: 16px; }
.hero-tag {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 280px;
}
.hero-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--wine);
  flex: none;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.hero-tag .text {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero-meta .stat-num { font-size: 28px; }
  .hero-tag { position: static; margin-top: 24px; max-width: none; }
}

/* ============ Placeholder image ============ */
.ph {
  background:
    repeating-linear-gradient(
      135deg,
      var(--nude-soft) 0px,
      var(--nude-soft) 8px,
      var(--cream-deep) 8px,
      var(--cream-deep) 16px
    );
  position: relative;
  overflow: hidden;
}
.ph-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine-deep);
  text-align: center;
  padding: 16px;
}
.ph-label span {
  background: var(--cream);
  padding: 8px 14px;
  border: 1px solid var(--rule);
}

/* ============ Section header ============ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 5vw, 64px);
  align-items: end;
}
.section-head .lead { padding-bottom: 6px; }
.section-head h2 { margin-bottom: 0; }
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ============ Differentials ============ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  margin-bottom: 96px;
}
.diff-card {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 40px 32px 36px;
  position: relative;
  background: var(--cream);
  transition: background .4s;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.diff-card:hover { background: var(--cream-deep); }
.diff-card.span-2 { grid-column: span 2; }
.diff-card.span-3 { grid-column: span 3; }
.diff-card .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.diff-card .check {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--wine);
  margin-bottom: 20px;
  line-height: 1;
}
.diff-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.diff-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 1000px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-card.span-2, .diff-card.span-3 { grid-column: span 2; }
}
@media (max-width: 600px) {
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card.span-2, .diff-card.span-3 { grid-column: span 1; }
}

/* ============ About ============ */
.about {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream-deep);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about-img {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--cream-shadow);
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.92) contrast(1.02);
}
.about-img-corner {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-transform: uppercase;
  background: rgba(42,31,28,0.55);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.about-cred {
  margin-top: 24px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.about-cred .item {
  font-size: 12px;
  color: var(--ink-soft);
}
.about-cred .item .label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
  display: block;
}
.about-text .eyebrow { margin-bottom: 28px; }
.about-text h2 { margin-bottom: 36px; }
.about-text p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -0.005em;
}
.about-text p.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--wine);
  margin-top: 32px;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ============ Tech ============ */
.tech {
  padding-bottom: clamp(80px, 10vw, 120px);
}
.tech-list {
  border-top: 1px solid var(--rule);
}
.tech-row {
  display: grid;
  grid-template-columns: 80px 1.1fr 2fr 100px;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  cursor: pointer;
  transition: padding-left .4s cubic-bezier(.2,.7,.2,1);
}
.tech-row:hover { padding-left: 16px; }
.tech-row .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  padding-top: 6px;
}
.tech-row .name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.tech-row .desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  padding-top: 8px;
}
.tech-row .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  text-align: right;
  padding-top: 10px;
}
@media (max-width: 760px) {
  .tech-row { grid-template-columns: 40px 1fr; }
  .tech-row .desc { grid-column: 2; }
  .tech-row .tag { display: none; }
}

/* ============ Before/After ============ */
.results {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink);
  color: var(--cream);
}
.results .eyebrow { color: var(--nude); }
.results .eyebrow::before { background: var(--nude); }
.results h2 { color: var(--cream); }
.results h2 em { color: var(--nude); }
.results .body-lead { color: rgba(251, 246, 243, 0.7); }
.ba-wrap {
  margin-top: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: start;
  max-width: 980px;
}
.ba-stage {
  position: relative;
  aspect-ratio: 16/10;
  max-height: 520px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  background: #1a1310;
}
.ba-side {
  position: absolute;
  inset: 0;
  background: #1a1310;
}
.ba-side img, .ba-side video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.ba-side.after {
  background: #1a1310;
  clip-path: inset(0 0 0 var(--pos, 50%));
}
.ba-side .label {
  position: absolute;
  top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 6px 12px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(251,246,243,0.2);
}
.ba-side.before .label { left: 24px; }
.ba-side.after .label { right: 24px; }
.ba-side .ph-label { color: rgba(251,246,243,0.6); }
.ba-side .ph-label span {
  background: rgba(0,0,0,0.4);
  border-color: rgba(251,246,243,0.2);
  color: rgba(251,246,243,0.8);
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--cream);
  left: var(--pos, 50%);
  transform: translateX(-1px);
  pointer-events: none;
}
.ba-handle .knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.05em;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.ba-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ba-thumb {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 12px;
  border: 1px solid rgba(251,246,243,0.12);
  cursor: pointer;
  transition: all .25s;
  text-align: left;
  align-items: center;
}
.ba-thumb:hover { border-color: var(--nude); }
.ba-thumb.active { border-color: var(--nude); background: rgba(230,201,184,0.06); }
.ba-thumb .mini {
  aspect-ratio: 1;
  background: #1a1310;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-thumb .mini-play {
  font-size: 14px;
  color: var(--nude);
  opacity: 0.7;
}
.ba-thumb .info { font-size: 12px; }
.ba-thumb .info .case {
  font-family: var(--mono);
  color: var(--nude);
  letter-spacing: 0.12em;
  font-size: 10px;
  margin-bottom: 4px;
}
.ba-thumb .info .desc {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--cream);
  line-height: 1.2;
}
.ba-disclaimer {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(251,246,243,0.45);
  text-transform: uppercase;
  max-width: 70ch;
}
@media (max-width: 880px) {
  .ba-wrap { grid-template-columns: 1fr; }
  .ba-thumbs { flex-direction: row; overflow-x: auto; }
  .ba-thumb { flex: 0 0 240px; }
}

/* ============ Testimonials ============ */
.testimonials {
  padding-bottom: clamp(80px, 10vw, 140px);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.test-card {
  background: var(--cream);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: background .35s;
}
.test-card:hover { background: var(--cream-deep); }
.test-card .quote-mark {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 0.6;
  color: var(--wine);
  margin-bottom: 20px;
  font-style: italic;
}
.test-card .quote {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  flex: 1;
  letter-spacing: -0.005em;
}
.test-card .meta {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.test-card .who {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.test-card .who small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 11px;
  margin-top: 2px;
}
.test-card .source {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .25s;
}
.test-card a.source:hover { color: var(--wine); }
@media (max-width: 880px) {
  .test-grid { grid-template-columns: 1fr; }
}

/* ============ FAQ ============ */
.faq {
  padding-bottom: clamp(80px, 10vw, 140px);
}
.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 24px;
  padding: 32px 0;
  text-align: left;
  align-items: start;
  transition: padding .35s;
}
.faq-q:hover { padding-left: 12px; }
.faq-q .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding-top: 8px;
}
.faq-q .question {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.faq-q .toggle {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--wine);
  text-align: right;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  line-height: 1;
  padding-top: 8px;
}
.faq-item.open .toggle { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.2,.7,.2,1);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a .answer {
  grid-column: 2;
  padding-bottom: 32px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 65ch;
}
@media (max-width: 760px) {
  .faq-q, .faq-a { grid-template-columns: 32px 1fr 32px; gap: 16px; }
  .faq-q .num { font-size: 10px; }
}

/* ============ Final CTA ============ */
.final-cta {
  background: var(--cream-deep);
  padding: clamp(80px, 12vw, 160px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(122,74,74,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(230,201,184,0.4) 0%, transparent 50%);
  pointer-events: none;
}
.final-cta-inner { position: relative; max-width: 820px; margin: 0 auto; }
.final-cta .eyebrow {
  justify-content: center;
  margin-bottom: 32px;
}
.final-cta .eyebrow::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--wine);
  display: inline-block;
  margin-left: 12px;
}
.final-cta .eyebrow::before { margin-right: 0; }
.final-cta h2 { margin-bottom: 32px; }
.final-cta .body-lead { margin: 0 auto 48px; }
.final-cta .actions {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============ Footer ============ */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(251,246,243,0.12);
}
.footer-brand { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.footer-brand .mark { color: var(--nude); font-style: italic; }
.footer-brand .crm {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(251,246,243,0.5);
  letter-spacing: 0.1em;
  margin-top: 12px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(251,246,243,0.75); transition: color .25s; }
.footer-col a:hover { color: var(--nude); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(251,246,243,0.45);
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ============ Reveal animation ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ============ WhatsApp float ============ */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 32px rgba(42,31,28,0.25);
  transition: all .3s;
}
.wa-float:hover { background: var(--wine); transform: translateY(-2px); }
.wa-float .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}
@media (max-width: 600px) {
  .wa-float { right: 16px; bottom: 16px; padding: 12px 16px; font-size: 12px; }
}
