/* =========================================================
   Ceramic Stores — sleek editorial redesign
   Ink black / porcelain white / brand red
   ========================================================= */
:root {
  --ink: #0d0d0d;
  --ink-2: #161616;
  --paper: #f6f4f0;
  --white: #ffffff;
  --grey: #8a8a86;
  --grey-dark: #4a4a47;
  --red: #d92027;
  --red-dark: #b3171d;
  --whatsapp: #25d366;
  --whatsapp-dark: #1eb457;
  --line: rgba(13, 13, 13, 0.1);
  --line-light: rgba(255, 255, 255, 0.14);
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

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

html { scroll-padding-top: var(--header-h); }
html.smooth { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(1240px, 92%); margin-inline: auto; }

::selection { background: var(--red); color: #fff; }

/* =========================
   Page wipe (section transitions)
   ========================= */
.wipe {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transform: translateY(101%);
  pointer-events: none;
}
.wipe.animating { transition: transform 0.5s var(--ease-out); }
.wipe.cover { transform: translateY(0); }
.wipe.exit-up { transform: translateY(-101%); }
.wipe img { width: 74px; opacity: 0; transform: scale(0.8) rotate(-8deg); transition: opacity 0.3s, transform 0.4s var(--ease-out); }
.wipe.cover img { opacity: 1; transform: scale(1) rotate(0deg); }

/* =========================
   Header
   ========================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(13, 13, 13, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line-light);
}

.scroll-progress {
  position: absolute; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--red); z-index: 2;
}

.nav {
  width: min(1240px, 92%); margin-inline: auto;
  display: flex; align-items: center; gap: 28px;
}

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { width: 34px; height: 34px; transition: transform 0.5s var(--ease-out); }
.brand:hover .brand-mark { transform: rotate(90deg); }
.brand-word {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.02rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff;
}

.nav-links { display: flex; gap: 26px; }
.nav-link {
  position: relative;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--red);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  color: #fff; border: 1px solid var(--line-light);
  padding: 9px 18px; border-radius: 999px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.nav-cta:hover { background: var(--whatsapp); border-color: var(--whatsapp); transform: translateY(-2px); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px 0 10px 10px; }
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.nav-toggle span + span { margin-top: 7px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* =========================
   Reveal system
   ========================= */
[data-reveal] { opacity: 0; }
[data-reveal].in-view { opacity: 1; }

[data-reveal="up"] {
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
[data-reveal="up"].in-view { transform: translateY(0); }

/* Word-stagger headlines: JS wraps each word in .w > .wi */
[data-reveal="words"] { transition: opacity 0.01s; }
[data-reveal="words"] .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
[data-reveal="words"] .wi {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 0.85s var(--ease-out);
  transition-delay: var(--wd, 0s);
}
[data-reveal="words"].in-view .wi { transform: translateY(0); }

/* Curtain reveal for imagery.
   NOTE: not clip-path on the element itself — Chromium reports zero
   intersection for self-clipped elements, so the observer never fires. */
[data-reveal="clip"] {
  position: relative;
  opacity: 1;
  transition: none;
}
[data-reveal="clip"]::after {
  content: ""; position: absolute; inset: -1px; z-index: 5;
  background: var(--curtain, var(--paper));
  transform: scaleY(1); transform-origin: bottom;
  transition: transform 1.1s var(--ease-out);
  transition-delay: var(--d, 0s);
}
[data-reveal="clip"].in-view::after { transform: scaleY(0); }
[data-reveal="clip"] img { transform: scale(1.12); transition: transform 1.4s var(--ease-out); transition-delay: var(--d, 0s); }
[data-reveal="clip"].in-view img { transform: scale(1); }

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 16px 30px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; overflow: hidden; position: relative;
  transition: transform 0.35s var(--ease-out), background 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.99); }

.btn-arrow { font-style: normal; transition: transform 0.35s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--red); color: #fff; }

.btn-outline { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.btn-outline:hover { background: var(--whatsapp); border-color: var(--whatsapp); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 14px 40px rgba(37, 211, 102, 0.35); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.btn-xl { padding: 20px 40px; font-size: 1.15rem; }

/* =========================
   Hero
   ========================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 22s var(--ease-out) infinite alternate;
  transform-origin: 60% 40%;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.12) translateX(-1.5%); }
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.35) 45%, rgba(10, 10, 10, 0.25) 100%),
    linear-gradient(100deg, rgba(10, 10, 10, 0.55) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  width: min(1240px, 92%); margin-inline: auto;
  padding: 0 0 15vh;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 26px;
}
.hero-eyebrow::before {
  content: ""; width: 34px; height: 2px; background: var(--red); display: inline-block;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  font-weight: 700; line-height: 1.02; letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero-sub {
  max-width: 54ch; font-size: 1.08rem; color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-scroll {
  position: absolute; right: 4%; bottom: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll i {
  width: 1.5px; height: 64px; background: rgba(255, 255, 255, 0.25);
  position: relative; overflow: hidden;
}
.hero-scroll i::after {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%; background: var(--red);
  animation: scrollLine 2s var(--ease-out) infinite;
}
@keyframes scrollLine {
  0% { top: -50%; } 100% { top: 110%; }
}

/* =========================
   Marquee
   ========================= */
.marquee {
  background: var(--ink); color: #fff;
  overflow: hidden; padding: 22px 0;
  border-block: 1px solid var(--line-light);
}
.marquee-track {
  display: flex; align-items: center; gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: 48px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1rem; letter-spacing: 0.28em; text-transform: uppercase;
  white-space: nowrap; color: rgba(255, 255, 255, 0.85);
}
.marquee-item img { width: 18px; height: 18px; }

/* =========================
   Sections / headers
   ========================= */
.section { padding: 130px 0; }
.section-tint { background: #efece6; }

.section-head { max-width: 760px; margin-bottom: 64px; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 18px;
}
.kicker-dot { width: 8px; height: 8px; background: var(--red); transform: rotate(45deg); display: inline-block; }
.kicker-light { color: rgba(255, 255, 255, 0.75); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 700; line-height: 1.14; letter-spacing: -0.015em;
  text-wrap: balance;
}

/* =========================
   Collections
   ========================= */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.collection-card {
  position: relative; display: block;
  border-radius: 14px; overflow: hidden;
  grid-column: span 6;
  aspect-ratio: 16 / 10;
  cursor: pointer;
  isolation: isolate;
}
.collection-card:nth-child(3), .collection-card:nth-child(4) { grid-column: span 6; }
@media (min-width: 900px) {
  .collection-card:nth-child(1) { grid-column: span 7; }
  .collection-card:nth-child(2) { grid-column: span 5; }
  .collection-card:nth-child(3) { grid-column: span 5; }
  .collection-card:nth-child(4) { grid-column: span 7; }
}
.collection-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out), filter 0.6s;
  z-index: -1;
}
.collection-card:hover img { transform: scale(1.07); filter: brightness(0.85); }
.collection-card::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.75) 0%, transparent 55%);
  transition: opacity 0.5s;
}
.collection-info {
  position: absolute; left: 26px; right: 26px; bottom: 22px; color: #fff; z-index: 1;
}
.collection-info h3 {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em;
}
.collection-info p {
  font-size: 0.88rem; color: rgba(255, 255, 255, 0.75);
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out), opacity 0.5s, margin 0.5s;
}
.collection-card:hover .collection-info p { max-height: 60px; opacity: 1; margin-top: 6px; }
.collection-count {
  position: absolute; top: 20px; left: 24px; z-index: 1;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em;
  color: #fff; background: rgba(13, 13, 13, 0.5); backdrop-filter: blur(8px);
  padding: 7px 14px; border-radius: 999px;
}
.collection-arrow {
  position: absolute; top: 18px; right: 20px; z-index: 1;
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transform: translateY(-6px); opacity: 0;
  transition: transform 0.45s var(--ease-out), opacity 0.45s, background 0.3s, color 0.3s;
}
.collection-card:hover .collection-arrow { transform: translateY(0) rotate(45deg); opacity: 1; background: var(--red); color: #fff; }

/* =========================
   Catalog
   ========================= */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 4px 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 52px;
}
.filter-btn {
  position: relative;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--grey); padding: 14px 2px;
  transition: color 0.3s;
}
.filter-btn::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 100%; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.filter-btn:hover { color: var(--ink); }
.filter-btn.active { color: var(--ink); }
.filter-btn.active::after { transform: scaleX(1); transform-origin: left; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px 26px;
}

.product-card { position: relative; }
.product-card.filtered-out { display: none; }

.product-media {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 4 / 5; background: #e7e3db;
  margin-bottom: 18px;
}
.product-media .img-main,
.product-media .img-alt {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-out), opacity 0.55s ease;
}
.product-media .img-alt { opacity: 0; transform: scale(1.06); }
.product-card:hover .img-main { transform: scale(1.07); }
.product-card:hover .img-alt { opacity: 1; transform: scale(1.02); }
.product-card:hover .has-alt + * {}

.product-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--red); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px;
}

.order-btn {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: rgba(13, 13, 13, 0.85); color: #fff;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.04em;
  padding: 14px; border-radius: 10px;
  transform: translateY(12px); opacity: 0;
  transition: transform 0.45s var(--ease-out), opacity 0.45s, background 0.3s;
}
.order-btn svg { color: var(--whatsapp); transition: color 0.3s; }
.product-card:hover .order-btn { transform: translateY(0); opacity: 1; }
.order-btn:hover { background: var(--whatsapp); }
.order-btn:hover svg { color: #fff; }

.product-info { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.product-name {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em;
  line-height: 1.3;
}
.product-cat { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); margin-top: 4px; }
.product-price {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; white-space: nowrap;
}
.product-price small { font-weight: 500; font-size: 0.72rem; color: var(--grey); margin-left: 2px; }
.product-desc { font-size: 0.86rem; color: var(--grey-dark); margin-top: 8px; }

.catalog-empty { grid-column: 1 / -1; text-align: center; color: var(--grey); padding: 60px 0; }

/* Touch devices: order button always visible */
@media (hover: none) {
  .order-btn { transform: none; opacity: 1; }
  .collection-info p { max-height: none; opacity: 1; margin-top: 6px; }
}

/* =========================
   Stats
   ========================= */
.stats { background: var(--ink); color: #fff; padding: 90px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 12px;
}
.stat-num::after { content: ""; display: block; width: 36px; height: 3px; background: var(--red); margin: 18px auto 0; }
.stat-label { font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }

/* =========================
   About
   ========================= */
.about-grid {
  display: grid; grid-template-columns: 5fr 6fr; gap: 76px; align-items: center;
}
.about-media {
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 4 / 5.4;
}
.about-media img { width: 100%; height: 112%; object-fit: cover; will-change: transform; }
.about-text { color: var(--grey-dark); margin: 26px 0 34px; max-width: 56ch; }
.about-points li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-top: 1px solid var(--line);
  font-weight: 500;
}
.about-points li:last-child { border-bottom: 1px solid var(--line); }
.about-points i {
  flex: 0 0 auto; width: 10px; height: 10px; margin-top: 7px;
  background: var(--red); transform: rotate(45deg);
}

/* =========================
   Contact
   ========================= */
.contact {
  position: relative; color: #fff; text-align: center;
  padding: 160px 0; overflow: hidden;
  background: var(--ink);
}
.contact-bg { position: absolute; inset: -12% 0; z-index: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; will-change: transform; }
.contact::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(13,13,13,0.72) 100%);
}
.contact-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.2vw, 3.2rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
  max-width: 22ch; margin-bottom: 44px;
  text-wrap: balance;
}
.contact-meta { margin-top: 30px; font-size: 0.95rem; color: rgba(255, 255, 255, 0.65); }
.contact-meta a:hover { color: #fff; text-decoration: underline; }
.meta-sep { margin: 0 12px; }

/* =========================
   Footer
   ========================= */
.site-footer { background: #0a0a0a; color: rgba(255, 255, 255, 0.6); padding: 70px 0 46px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center; }
.footer-wordmark { width: min(340px, 70%); opacity: 0.9; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 30px; }
.footer-links a {
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--red); }
.copyright { font-size: 0.72rem; letter-spacing: 0.1em; opacity: 0.5; }

/* =========================
   Floating WhatsApp
   ========================= */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-out), background 0.3s;
  will-change: transform;
}
.whatsapp-float:hover { background: var(--whatsapp-dark); }
.whatsapp-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-media { max-width: 560px; aspect-ratio: 4 / 3.4; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 9px 12px; }
}

@media (max-width: 760px) {
  .section { padding: 90px 0; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; gap: 0;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    padding: 12px 6% 26px;
    border-bottom: 1px solid var(--line-light);
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.3s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-link { display: block; padding: 16px 0; font-size: 0.95rem; }
  .nav-link::after { display: none; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card, .collection-card:nth-child(n) { grid-column: 1 / -1; aspect-ratio: 16 / 11; }
  .stats-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-content { padding-bottom: 18vh; }
  .hero-scroll { display: none; }
  .btn-xl { padding: 17px 28px; font-size: 1rem; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html.smooth { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01s !important; }
  [data-reveal], [data-reveal="up"], [data-reveal="clip"] { opacity: 1; transform: none; clip-path: none; }
  [data-reveal="clip"]::after { display: none; }
  [data-reveal="words"] .wi { transform: none; }
  .wipe { display: none; }
}
