/* ===================================================================
   Lovebirds Haul & Home Revival — styles
   Palette: teal #5EEAD4 · violet #7C3AED · lavender #DDD6FE
            near-black #0F0F1A · off-white #FAF7FF
=================================================================== */

:root {
  --teal: #5EEAD4;
  --teal-deep: #2dd4bf;
  --violet: #7C3AED;
  --violet-soft: #9d6bf0;
  --lavender: #DDD6FE;
  --ink: #0F0F1A;
  --ink-2: #15151f;
  --ink-3: #1d1d2b;
  --paper: #FAF7FF;
  --paper-dim: #ece8f6;
  --text: #e9e7f3;
  --text-dim: #b3b0c7;
  --line: rgba(221, 214, 254, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1140px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  --grad: linear-gradient(120deg, var(--teal), var(--violet-soft));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-text strong {
  font-family: "Poppins", system-ui, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container.narrow { max-width: 800px; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted { color: var(--text-dim); font-weight: 400; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--teal); color: var(--ink); padding: 10px 16px; border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 12px 22px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.block { width: 100%; }

.btn-primary {
  background: var(--grad); color: var(--ink);
  box-shadow: 0 12px 30px -10px rgba(124, 58, 237, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(94, 234, 212, 0.55); }

.btn-outline { border-color: var(--line); color: var(--text); background: rgba(255,255,255,0.02); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

.btn-ghost { color: var(--text-dim); }
.btn-ghost:hover { color: var(--teal); }

.btn-wa { background: #25D366; color: #053b1e; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(37, 211, 102, 0.6); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 15, 26, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.site-header.scrolled { background: rgba(15, 15, 26, 0.92); border-bottom-color: var(--line); }

.nav { display: flex; align-items: center; gap: 20px; height: 72px; }

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 11px; overflow: hidden;
  position: relative; flex: none; background: var(--ink);
}
/* The logo asset is a full square lockup; crop to just the truck/house/B emblem */
.brand-logo-img {
  position: absolute; width: 92px; height: 92px; max-width: none;
  left: -22px; top: -5px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-size: 1.18rem; letter-spacing: 0.06em; color: var(--paper); }
.brand-text small { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-top: 3px; }

.nav-links { display: flex; gap: 26px; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--text-dim); position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad); transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex; flex-direction: column; gap: 6px; padding: 14px 22px 22px;
  border-top: 1px solid var(--line); background: rgba(15,15,26,0.98);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 12px 6px; font-weight: 500; color: var(--text-dim); border-bottom: 1px solid var(--line); }
.mobile-menu a.btn { border-bottom: 0; color: inherit; margin-top: 8px; }
.mobile-menu a.btn-primary { color: var(--ink); }

/* ===== Hero ===== */
.hero { position: relative; padding: clamp(60px, 11vw, 130px) 0 clamp(50px, 8vw, 90px); overflow: hidden; }
.hero-glow {
  position: absolute; inset: -20% 0 auto 0; height: 600px; pointer-events: none; z-index: 0;
  background:
    radial-gradient(420px 320px at 22% 12%, rgba(94,234,212,0.18), transparent 70%),
    radial-gradient(460px 360px at 82% 0%, rgba(124,58,237,0.22), transparent 70%);
  filter: blur(8px);
}
.hero-inner { position: relative; z-index: 1; max-width: 1120px; }

.eyebrow {
  display: inline-block; font-family: "Poppins", sans-serif; font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.6vw, 4.9rem); font-weight: 800; color: var(--paper);
  line-height: 1.06; text-wrap: balance;
}
.hero-sub { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: var(--text-dim); max-width: 620px; margin: 22px 0 32px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 24px; list-style: none; margin-top: 38px; }
.hero-badges li { font-size: 0.92rem; color: var(--text-dim); display: flex; align-items: center; gap: 8px; }
.hero-badges li::before { content: "✓"; color: var(--teal); font-weight: 800; }
.hero-badges strong { color: var(--text); font-weight: 600; }

/* ===== Trust marquee ===== */
.trust-bar { border-block: 1px solid var(--line); background: var(--ink-2); overflow: hidden; }
.marquee { padding: 14px 0; }
.marquee-track {
  display: flex; gap: 26px; width: max-content; white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: "Poppins", sans-serif; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text-dim); font-size: 0.95rem;
}
.marquee-track span:nth-child(even) { color: var(--violet-soft); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Sections ===== */
.section { padding: clamp(44px, 6vw, 76px) 0; }
.section-alt { background: var(--ink-2); }

.section-head { max-width: 680px; margin: 0 auto clamp(28px, 4vw, 44px); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 800; color: var(--paper); margin-bottom: 14px; }
.lead { color: var(--text-dim); font-size: 1.08rem; }

/* ===== Cards / services ===== */
.cards {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
}
.card {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s;
  background: radial-gradient(300px 140px at 50% 0%, rgba(94,234,212,0.1), transparent 70%);
}
.card:hover { transform: translateY(-6px); border-color: rgba(94,234,212,0.4); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card h3 { font-size: 1.18rem; color: var(--paper); margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: 0.96rem; }

.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 18px; background: linear-gradient(135deg, rgba(94,234,212,0.16), rgba(124,58,237,0.16));
  border: 1px solid var(--line);
}
.card-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--teal); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.card-cta { background: linear-gradient(150deg, rgba(124,58,237,0.22), rgba(94,234,212,0.1)); border-color: rgba(157,107,240,0.4); display: flex; flex-direction: column; justify-content: center; }
.card-cta h3 { color: var(--paper); }
.card-cta .btn { margin-top: 16px; }

/* ===== Process steps ===== */
.steps {
  display: grid; gap: 22px; list-style: none;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  counter-reset: step;
}
.step {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px; position: relative; transition: transform 0.3s var(--ease), border-color 0.3s;
}
.step:hover { transform: translateY(-5px); border-color: rgba(157,107,240,0.4); }
.step-num {
  position: absolute; top: 22px; right: 24px; font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: 2.6rem; color: transparent; -webkit-text-stroke: 1.5px rgba(221,214,254,0.25); line-height: 1;
}
.step-ico { width: 56px; height: 56px; border-radius: 16px; background: var(--grad); display: grid; place-items: center; margin-bottom: 20px; }
.step-ico svg { width: 28px; height: 28px; fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { font-size: 1.4rem; color: var(--paper); margin-bottom: 10px; }
.step p { color: var(--text-dim); }

.process-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 44px; }

/* ===== Before / After ===== */
.ba { max-width: 980px; margin: 0 auto; }
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 1690 / 928; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); user-select: none;
}
.ba-after, .ba-before { position: absolute; inset: 0; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  display: block; pointer-events: none;
}
.ba-tag {
  position: absolute; top: 14px; font-family: "Poppins", sans-serif; font-weight: 800;
  letter-spacing: 0.16em; font-size: 0.78rem; color: var(--paper); z-index: 2;
  background: rgba(15, 15, 26, 0.6); padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}
.ba-tag-before { left: 14px; color: var(--lavender); }
.ba-tag-after { right: 14px; color: var(--teal); }
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 3;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--teal);
  transform: translateX(-1px); z-index: 2; pointer-events: none;
}
.ba-handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: var(--ink);
  display: grid; place-items: center; box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.ba-handle span::before { content: "⇆"; font-size: 1.1rem; font-weight: 700; }
.ba-note { text-align: center; color: var(--text-dim); margin-top: 22px; font-size: 0.95rem; }
.ba-note a { color: var(--teal); }

/* ===== Pricing ===== */
.tiers { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: stretch; }
.tier {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; transition: transform 0.3s var(--ease), border-color 0.3s;
}
.tier:hover { transform: translateY(-5px); }
.tier-featured {
  border-color: var(--teal); background: linear-gradient(180deg, rgba(94,234,212,0.08), var(--ink-3));
  box-shadow: var(--shadow); position: relative;
}
.tier-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: var(--ink); font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px;
}
.tier h3 { font-size: 1.5rem; color: var(--paper); }
.tier-tag { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 16px; }
.price { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--paper); margin-bottom: 20px; }
.price span { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 2px; }
.tier ul { list-style: none; margin-bottom: 26px; display: grid; gap: 11px; flex: 1; }
.tier li { position: relative; padding-left: 26px; color: var(--text-dim); font-size: 0.96rem; }
.tier li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 800; }
.tier-foot { text-align: center; color: var(--text-dim); font-size: 0.88rem; margin-top: 26px; }

/* ===== Instant estimate embed ===== */
.estimator-embed {
  max-width: 560px; margin: 0 auto; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--ink);
}
.estimator-embed iframe { width: 100%; height: 780px; border: 0; display: block; }
.estimate-note { text-align: center; color: var(--text-dim); margin-top: 22px; font-size: 0.95rem; }
.estimate-note a { color: var(--teal); }
@media (max-width: 560px) { .estimator-embed iframe { height: 700px; } }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 44px; align-items: center; }
.about-copy h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--paper); margin: 12px 0 20px; }
.about-copy p { color: var(--text-dim); margin-bottom: 16px; }
.about-copy strong { color: var(--teal); font-weight: 600; }
.about-points { list-style: none; display: grid; gap: 12px; margin-top: 24px; }
.about-points li { color: var(--text); font-size: 1rem; }

.about-card {
  background: linear-gradient(160deg, rgba(124,58,237,0.22), rgba(94,234,212,0.08));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
}
.about-card h3 { color: var(--paper); font-size: 1.3rem; margin-bottom: 14px; }
.quote { color: var(--text); font-size: 1.1rem; font-style: italic; line-height: 1.5; margin-bottom: 24px; }
.about-meta { display: flex; flex-direction: column; padding: 14px 0; border-top: 1px solid var(--line); }
.about-meta span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.about-meta strong { color: var(--paper); font-family: "Poppins", sans-serif; }
.about-meta a { color: var(--teal); }
.about-card .btn { margin-top: 18px; }

/* ===== Meet the team ===== */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.team-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.team-card {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.team-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; display: block; }
.team-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 14px;
  font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--paper);
  background: linear-gradient(to top, rgba(15,15,26,0.9), transparent);
}
.team-copy p { color: var(--text-dim); margin-bottom: 16px; font-size: 1.05rem; }
.team-copy strong { color: var(--teal); font-weight: 600; }
.team-area { color: var(--text) !important; font-weight: 500; }
.team-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ===== Area chips ===== */
.area-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; list-style: none; }
.area-chips li {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px; font-family: "Poppins", sans-serif; font-weight: 500; font-size: 0.92rem; color: var(--text);
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.area-chips li:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* ===== FAQ ===== */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 22px; transition: border-color 0.25s;
}
.faq details[open] { border-color: rgba(94,234,212,0.4); }
.faq summary {
  list-style: none; cursor: pointer; font-family: "Poppins", sans-serif; font-weight: 600;
  color: var(--paper); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--teal); transition: transform 0.25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--text-dim); padding: 0 0 20px; }

/* ===== CTA / quote ===== */
.cta-section { background: var(--ink-2); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.cta-copy h2 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); color: var(--paper); margin: 12px 0 16px; }
.cta-points { list-style: none; display: grid; gap: 10px; margin: 22px 0; }
.cta-points li { color: var(--text); }
.cta-direct { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.quote-form {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
}
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 14px; color: var(--text); font-family: inherit; font-size: 0.98rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(94,234,212,0.15);
}
.field textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.quote-form .btn { margin-top: 6px; }
.form-note { text-align: center; margin-top: 14px; font-weight: 600; min-height: 1.2em; }
.form-note.ok { color: var(--teal); }
.form-note.err { color: #ff8da3; }
.form-fineprint { text-align: center; font-size: 0.78rem; color: var(--text-dim); margin-top: 12px; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); border-top: 1px solid var(--line); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 48px; }
.footer-logo {
  width: 168px; height: auto; border-radius: 14px; display: block; margin-bottom: 16px;
  background: var(--ink);
}
.footer-area { color: var(--text-dim); font-size: 0.9rem; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 0.92rem; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-col a.footer-btn {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  margin-top: 12px; padding: 13px 22px; color: var(--ink) !important;
}
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  border-top: 1px solid var(--line); padding: 24px 22px; color: var(--text-dim); font-size: 0.85rem;
}

/* ===== Sticky mobile call bar ===== */
.mobile-call-bar {
  display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  background: var(--grad); color: var(--ink); text-align: center; font-family: "Poppins", sans-serif;
  font-weight: 700; padding: 15px; border-radius: 999px; box-shadow: 0 14px 34px -8px rgba(124,58,237,0.7);
}

/* ===== Scroll reveal ===== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-grid, .cta-grid, .team-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .hero-break { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 14px 22px; }
  .mobile-call-bar { display: block; }
  .quote-form { padding: 24px 20px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
