:root {
  --bg: #f7f5f0;
  --paper: #fffdfa;
  --ink: #111111;
  --muted: #69655f;
  --line: rgba(17, 17, 17, 0.13);
  --soft: #ded8ce;
  --accent: #8e7d68;
  --radius: 8px;
  --header: rgba(255, 253, 250, 0.88);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
main > section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}
.hero { content-visibility: visible; contain-intrinsic-size: auto; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  padding: clamp(12px, 1.5vw, 18px) clamp(16px, 4vw, 54px);
  color: white;
  transition: background 220ms ease, color 220ms ease, border 220ms ease, backdrop-filter 220ms ease;
}
.site-header.scrolled {
  color: var(--ink);
  background: var(--header);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand, .header-actions, .desktop-nav, .site-footer > div { display: flex; align-items: center; }
.brand, .header-actions { min-width: 0; }
.brand { gap: 12px; font-weight: 650; text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; }
.brand-logo-wrap {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: clamp(124px, 10vw, 150px);
  aspect-ratio: 154 / 82;
  height: auto;
  padding: 0;
  border-radius: 6px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.38);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.brand-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255,255,255,0.55), rgba(255,255,255,0) 42%);
  pointer-events: none;
}
.brand-logo {
  width: 90%;
  height: 90%;
  object-fit: contain;
  object-position: center;
}
.desktop-nav { justify-content: center; gap: 26px; font-size: 15.5px; }
.desktop-nav a { opacity: 0.9; }
.desktop-nav a:hover { opacity: 1; }
.header-actions { gap: 12px; justify-content: end; }
.language-select {
  min-width: 66px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 15.5px;
}
.site-header.scrolled .language-select { background: white; color: var(--ink); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border 180ms ease;
  font-weight: 650;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: 15px; }
.btn-dark { background: var(--ink); color: white; }
.btn-light { background: white; color: var(--ink); }
.btn-outline-light { border-color: rgba(255,255,255,0.7); color: white; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  place-items: center;
}
.menu-toggle span { width: 18px; height: 1px; background: currentColor; display: block; margin: 3px 0; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  padding: 104px 28px 28px;
  background: var(--paper);
  transform: translateY(-100%);
  transition: transform 280ms ease;
  display: grid;
  align-content: start;
  gap: 20px;
  font-size: 24px;
}
body.menu-open .mobile-menu { transform: translateY(0); }

.section-page { padding: clamp(70px, 8vw, 112px) clamp(18px, 5vw, 72px); }
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-bottom: clamp(72px, 11vw, 126px);
  color: white;
}
.hero-slider, .hero-slider img, .hero-overlay { position: absolute; inset: 0; }
.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  animation-name: heroCycle;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  will-change: opacity, transform;
}
.hero-slider img:first-child {
  opacity: 1;
  transform: scale(1.03);
}
.hero-slider img:nth-child(2) { animation-delay: 3s; }
.hero-slider img:nth-child(3) { animation-delay: 6s; }
.hero-slider img:nth-child(4) { animation-delay: 9s; }
.hero-slider img:nth-child(5) { animation-delay: 12s; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.72) 32%, rgba(0,0,0,0.40) 62%, rgba(0,0,0,0.20) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.48));
}
.hero-content {
  position: relative;
  z-index: 4;
  width: min(860px, 100%);
  isolation: isolate;
  text-shadow: 0 3px 18px rgba(0,0,0,0.68);
}
.hero-content.reveal {
  opacity: 1;
  transform: none;
}
.hero-content::before { content: none; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
}
.hero .eyebrow { color: #e8ded1; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(44px, 7.4vw, 92px);
  line-height: 0.95;
  max-width: 980px;
  margin-bottom: 24px;
  letter-spacing: 0;
}
h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.03;
  margin-bottom: 22px;
  letter-spacing: 0;
}
h3 { font-size: 20px; margin-bottom: 10px; }
p { color: var(--muted); line-height: 1.7; }
.hero p { color: rgba(255,255,255,0.82); max-width: 660px; font-size: 18px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin-top: 34px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}
.hero-proof span {
  display: grid;
  gap: 5px;
  min-height: 88px;
  padding: 18px 20px;
  background: rgba(0,0,0,0.18);
}
.hero-proof strong {
  color: white;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}
.hero-proof small {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.35;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}
.section-image, .quality-layout img {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: clamp(320px, 56vh, 620px);
  object-fit: cover;
  border-radius: var(--radius);
}
.intro-text {
  max-width: 760px;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 17px;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}
.check-grid span, .quality-list span {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: #2d2a26;
}
.text-link { border-bottom: 1px solid currentColor; font-weight: 700; }
.band { background: var(--paper); }
.section-intro {
  width: min(900px, 100%);
  margin-bottom: 42px;
}
.why {
  background:
    linear-gradient(180deg, rgba(255,253,250,0.58), rgba(242,238,231,0.78)),
    var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.why-card {
  position: relative;
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.why-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 22px 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.why-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
}
.why-card h3 { font-size: clamp(22px, 2.2vw, 30px); }
.why-card p { margin: 0; }
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17,17,17,0.24);
  box-shadow: 0 20px 58px rgba(17,17,17,0.08);
}
.stat-grid, .feature-grid, .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.stat, .feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255,255,255,0.54);
}
.stat {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(242,238,231,0.8)),
    var(--paper);
  box-shadow: 0 20px 70px rgba(17, 17, 17, 0.05);
}
.stat::before {
  content: none;
  position: absolute;
  inset: 18px 18px auto auto;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(142, 125, 104, 0.28);
  border-radius: 50%;
}
.stat::after {
  content: "";
  position: absolute;
  inset: auto 22px 18px auto;
  width: 54px;
  height: 1px;
  background: var(--accent);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 800ms ease 220ms;
}
.stat.visible::after { transform: scaleX(1); }
.stat strong { display: block; font-size: clamp(54px, 7vw, 92px); line-height: 0.92; letter-spacing: 0; }
.stat span { display: block; margin: 12px 0 8px; font-weight: 700; }
.stat small { color: var(--muted); }
.stat-kicker {
  position: absolute;
  top: 24px;
  left: 24px;
  margin: 0 !important;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.16em;
}
.stat i {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ink), var(--accent));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 900ms cubic-bezier(.2,.8,.2,1) 260ms;
}
.stat.visible i { transform: scaleX(1); }
.stat-primary {
  background:
    linear-gradient(135deg, rgba(17,17,17,0.96), rgba(55,50,43,0.92)),
    var(--ink);
  color: white;
}
.stat-primary small,
.stat-primary .stat-kicker { color: rgba(255,255,255,0.68); }
.stat-primary i { background: linear-gradient(90deg, white, #d7c3a5); }
.capacity-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(320px, 1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: start;
  margin-top: 22px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17,17,17,0.04), rgba(142,125,104,0.08)),
    #fffdfa;
}
.capacity-note strong {
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.1;
}
.capacity-note p { margin: 0; }

.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.filters button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  min-height: 38px;
  padding: 0 16px;
  cursor: pointer;
}
.filters button.active { background: var(--ink); color: white; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 18px;
}
.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: clamp(240px, 34vh, 430px);
  object-fit: cover;
  transition: transform 400ms ease;
}
.product-card:hover img { transform: scale(1.04); }
.product-card div { padding: 22px; }
.product-card.hidden { display: none; }

.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  counter-reset: step;
}
.process-timeline li {
  position: relative;
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdfa, #f2eee7);
  font-weight: 700;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}
.process-timeline li:hover { transform: translateY(-3px); border-color: rgba(17, 17, 17, 0.28); }
.process-timeline li span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: grid;
  place-items: center;
  font-size: 12px;
  margin-bottom: 26px;
}
.process-timeline li strong {
  display: block;
  font-size: 20px;
  margin-bottom: 12px;
}
.process-timeline li small {
  display: block;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 500;
}
.process-assurance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
.process-assurance span {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  background: var(--paper);
  color: #2d2a26;
  font-weight: 750;
}
.quality-system {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
}
.quality-visual {
  position: relative;
  min-height: 100%;
}
.quality-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: 680px;
  object-fit: cover;
  border-radius: var(--radius);
}
.quality-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.18);
}
.quality-badge strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 14px;
}
.quality-badge span { color: var(--muted); font-weight: 700; font-size: 13px; }
.quality-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(280px, auto);
  gap: 14px;
  align-items: stretch;
}
.quality-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 2vw, 28px);
  background: var(--paper);
  min-height: 280px;
  height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.quality-card:hover {
  transform: translateY(-3px);
  border-color: rgba(17,17,17,0.25);
  box-shadow: 0 18px 46px rgba(0,0,0,0.08);
}
.quality-card.featured {
  grid-column: auto;
  min-height: 280px;
  color: var(--ink);
  background: var(--paper);
}
.quality-card span {
  display: inline-flex;
  margin-bottom: auto;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.quality-card.featured span { color: var(--accent); }
.quality-card h3 {
  margin: 34px 0 12px;
  font-size: clamp(24px, 1.65vw, 30px);
  line-height: 1.14;
}
.quality-card p {
  margin: 0;
  color: var(--muted);
}
.quality-card.featured p { color: var(--muted); max-width: none; }
.quality-panel .quality-card:nth-child(5) {
  grid-column: 1 / -1;
  width: calc((100% - 14px) / 2);
  justify-self: center;
}
.quality-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.quality-metrics article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdfa, #f2eee7);
}
.quality-metrics strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
}
.quality-metrics p { margin: 0; font-size: 15px; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 14px;
}
.logo-card {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 17, 17, 0.24);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}
.logo-grid img {
  width: 100%;
  max-width: 210px;
  height: 72px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1);
  transition: filter 200ms ease, transform 200ms ease;
}
.logo-card:hover img { filter: grayscale(0); transform: scale(1.02); }
.logo-zara img,
.logo-zara-kids img {
  filter: grayscale(1) contrast(1.18) brightness(0.78);
  mix-blend-mode: multiply;
}
.logo-zara:hover img,
.logo-zara-kids:hover img {
  filter: grayscale(1) contrast(1.28) brightness(0.7);
}
.logo-zara img { height: 72px; max-width: 194px; }
.logo-zara-kids img { height: 72px; max-width: 200px; }
.reference-note {
  width: min(880px, 100%);
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.history-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.history-line article { border-left: 1px solid var(--ink); padding-left: 22px; }
.history-line strong { color: var(--accent); }
.cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 84px);
  background: #171614;
  color: white;
}
.cta p { color: rgba(255,255,255,0.72); }
.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
label { display: grid; gap: 8px; color: rgba(255,255,255,0.84); font-size: 14px; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: white;
  border-radius: var(--radius);
  padding: 13px 14px;
  min-height: 48px;
}
select option { color: var(--ink); }
textarea { resize: vertical; }
.wide { grid-column: 1 / -1; }
.consent { display: flex; align-items: start; gap: 10px; }
.consent input { width: 18px; min-height: 18px; margin-top: 3px; }
.form-status { margin: 0; color: #d9c8ae; }
.map {
  margin-top: 22px;
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}
.map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 38px rgba(0,0,0,0.2);
}
.whatsapp img { width: 34px; height: 34px; }
.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 54px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: white;
}
.site-footer > div { align-items: flex-start; flex-direction: column; gap: 10px; }
.footer-brand .brand-logo-wrap {
  width: 184px;
  height: 98px;
  border-radius: var(--radius);
}
.site-footer p, .site-footer a { color: rgba(255,255,255,0.68); }
.site-footer h3 { font-size: 15px; }
.developer-credit {
  grid-column: 1 / -1;
  width: 100%;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.42) !important;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.developer-credit strong {
  color: rgba(255,255,255,0.62);
  font-weight: 600;
}
.cookie {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 60;
  width: min(420px, calc(100% - 36px));
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(0,0,0,0.16);
}
.cookie p { margin: 0; font-size: 14px; }
.cookie.hide { display: none; }
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--bg);
}
.thanks-shell {
  width: min(720px, calc(100% - 36px));
  text-align: center;
  padding: clamp(36px, 7vw, 72px);
}
.thanks-shell img {
  width: 148px;
  margin: 0 auto 28px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}
.thanks-shell h1 { font-size: clamp(38px, 7vw, 76px); }
.thanks-shell p:not(.eyebrow) { margin: 0 auto 28px; max-width: 520px; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 820ms cubic-bezier(.2,.8,.2,1), transform 820ms cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.product-card.reveal.visible, .feature.reveal.visible, .stat.reveal.visible, .why-card.reveal.visible, .process-timeline.reveal.visible li, .logo-grid.reveal.visible .logo-card {
  animation: liftIn 760ms cubic-bezier(.2,.8,.2,1) both;
}
.process-timeline.reveal.visible li:nth-child(2), .logo-grid.reveal.visible .logo-card:nth-child(2) { animation-delay: 80ms; }
.process-timeline.reveal.visible li:nth-child(3), .logo-grid.reveal.visible .logo-card:nth-child(3) { animation-delay: 160ms; }
.process-timeline.reveal.visible li:nth-child(4), .logo-grid.reveal.visible .logo-card:nth-child(4) { animation-delay: 240ms; }
.process-timeline.reveal.visible li:nth-child(5), .logo-grid.reveal.visible .logo-card:nth-child(5) { animation-delay: 320ms; }
.process-timeline.reveal.visible li:nth-child(6) { animation-delay: 400ms; }

@keyframes heroCycle {
  0%, 16% { opacity: 1; transform: scale(1.03); }
  22%, 100% { opacity: 0; transform: scale(1.01); }
}
@keyframes liftIn {
  from { opacity: 0; transform: translateY(22px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

[dir="rtl"] body { font-family: Tahoma, Arial, sans-serif; }
[dir="rtl"] .hero-overlay { background: linear-gradient(270deg, rgba(0,0,0,0.66), rgba(0,0,0,0.28), rgba(0,0,0,0.10)); }
[dir="rtl"] .history-line article { border-left: 0; border-right: 1px solid var(--ink); padding-left: 0; padding-right: 22px; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .site-header { grid-template-columns: minmax(0, auto) auto; justify-content: space-between; }
  .header-actions { gap: 10px; }
  .split, .quality-system, .cta { grid-template-columns: 1fr; }
  .stat-grid, .product-grid, .feature-grid, .contact-grid, .history-line, .site-footer, .why-grid, .quality-metrics { grid-template-columns: 1fr 1fr; }
  .process-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-assurance { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capacity-note { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header {
    padding: 9px 12px;
    gap: 8px;
  }
  .brand-logo-wrap {
    width: clamp(84px, 25vw, 102px);
    aspect-ratio: 154 / 82;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  .brand-logo { width: 88%; height: 88%; }
  .language-select {
    min-width: 58px;
    padding: 8px 9px;
    font-size: 14px;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .header-actions .btn { display: none; }
  .hero {
    min-height: 100svh;
    align-items: center;
    padding-top: 92px;
    padding-bottom: 28px;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.62), rgba(0,0,0,0.78)),
      linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.48));
  }
  .hero-slider img { display: block; }
  .hero-content {
    width: 100%;
    padding-top: 0;
  }
  .hero-content { text-shadow: 0 3px 16px rgba(0,0,0,0.76); }
  .hero .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .hero h1 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 0.98;
    margin-bottom: 16px;
    max-width: 100%;
  }
  .hero p { font-size: 16px; line-height: 1.55; }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 20px;
  }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof {
    margin-top: 20px;
  }
  .hero-proof span {
    min-height: 58px;
    padding: 12px 14px;
  }
  .hero-proof strong {
    font-size: 24px;
  }
  .hero-proof small {
    font-size: 12px;
  }
  .stat-grid, .product-grid, .feature-grid, .contact-grid, .history-line, .site-footer, .logo-grid, .quote-form, .check-grid, .process-timeline, .why-grid, .quality-metrics, .process-assurance { grid-template-columns: 1fr; }
  .logo-card { min-height: 126px; padding: 24px; }
  .logo-grid img { height: 62px; }
  .logo-zara img, .logo-zara-kids img { height: 66px; }
  .product-card img { max-height: 320px; }
  .section-image { aspect-ratio: 4 / 3; max-height: 360px; }
  .quality-visual img { min-height: 320px; max-height: 380px; }
  .quality-panel { grid-template-columns: 1fr; }
  .quality-panel .quality-card:nth-child(5) { grid-column: auto; width: 100%; }
  .quality-card, .quality-card.featured { min-height: auto; }
  .intro-text { font-size: 15px; }
  .map { min-height: 320px; }
  .map iframe { height: 340px; }
  .cookie { flex-direction: column; align-items: stretch; }
  .site-header.scrolled { backdrop-filter: none; }
  .hero-proof { backdrop-filter: none; }
  .product-card:hover img,
  .logo-card:hover img,
  .why-card:hover,
  .quality-card:hover,
  .process-timeline li:hover,
  .btn:hover,
  .logo-card:hover {
    transform: none;
    box-shadow: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 380px) {
  .site-header { padding-inline: 9px; }
  .brand-logo-wrap { width: clamp(76px, 24vw, 88px); }
  .header-actions { gap: 6px; }
  .language-select {
    min-width: 52px;
    padding-inline: 7px;
  }
  .menu-toggle {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
