*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --red: #ec2429;
  --ink: #17151d;
  --coal: #17151d;
  --paper: #fff7ef;
  --white: #ffffff;
  --muted: rgba(23, 21, 29, 0.62);
  --line: rgba(23, 21, 29, 0.1);
  --yellow: #f7ff4d;
  --shadow: 0 18px 38px rgba(23, 21, 29, 0.07);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }

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

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

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

.label {
  margin: 0 0 0.9rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── BUTTONS ── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.9rem 2.35rem;
  cursor: pointer;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 0 rgba(23, 21, 29, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 0 rgba(23, 21, 29, 0.09); }
.button--red { background: var(--red); border-color: var(--red); color: var(--white); }
.button--outline { border-color: rgba(255,255,255,0.44); color: var(--white); background: rgba(255,255,255,0.08); }
.button--full { width: 100%; }

/* ── NAV ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 2.2rem;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.nav.is-scrolled, .nav.is-open {
  background: rgba(255,255,255,0.97);
  color: var(--ink);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(23,21,29,0.08);
}
.nav__logo img { width: 118px; height: auto; filter: brightness(0) invert(1); }
.nav.is-scrolled .nav__logo img, .nav.is-open .nav__logo img { filter: none; }

.nav__links { display: flex; justify-content: center; gap: 1.45rem; }
.nav__links a {
  font-size: 0.76rem; font-weight: 900;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.85; transition: opacity 140ms;
}
.nav__links a:hover { opacity: 1; }
.nav__right { display: flex; align-items: center; gap: 0.6rem; }
.nav__cta {
  font-size: 0.76rem; font-weight: 900;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px; border: 2px solid currentColor;
  padding: 0.74rem 1.25rem;
  transition: background 140ms, color 140ms;
}
.nav.is-scrolled .nav__cta:hover, .nav.is-open .nav__cta:hover {
  background: var(--red); border-color: var(--red); color: var(--white);
}
.nav__lang {
  font-size: 0.72rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase;
  background: transparent; border: 2px solid rgba(255,255,255,0.35);
  color: inherit; padding: 0.55rem 0.85rem; border-radius: 999px; cursor: pointer;
  transition: border-color 140ms;
}
.nav__lang:hover { border-color: currentColor; }
.nav.is-scrolled .nav__lang, .nav.is-open .nav__lang { border-color: rgba(23,21,29,0.2); }
.nav__menu {
  display: none; width: 42px; height: 42px;
  border: 1px solid currentColor; background: transparent; color: inherit;
  align-items: center; justify-content: center; flex-direction: column; gap: 6px; cursor: pointer;
}
.nav__menu span { display: block; width: 20px; height: 2px; background: currentColor; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 7rem 2rem 2rem;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(23,21,29,0.98) 0%, rgba(23,21,29,0.90) 44%, rgba(23,21,29,0.76) 100%),
    var(--coal);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.032) 0 1px, transparent 1px 16px),
    linear-gradient(90deg, rgba(236,36,41,0.22), transparent 42%),
    linear-gradient(0deg, rgba(49,93,255,0.12), transparent 46%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; right: -10vw; bottom: -18vh;
  width: 48vw; height: 48vh; background: var(--yellow);
  opacity: 0.1; transform: rotate(-8deg); pointer-events: none;
}

.hero__layout {
  position: relative; z-index: 1;
  width: min(100%, 1440px); min-height: calc(100svh - 9rem); margin: 0 auto;
  display: grid; grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: 2.25rem; align-items: center;
}
.hero__copy { max-width: 700px; padding: 2rem 0 2.8rem; }
.hero__tag {
  margin: 0 0 1.4rem; color: var(--red);
  font-size: 0.72rem; font-weight: 900; letter-spacing: 0.22em; text-transform: uppercase;
}
.hero h1 {
  margin: 0; font-size: clamp(2rem, 4.4vw, 5.6rem); line-height: 0.91;
  font-weight: 950; letter-spacing: 0; text-transform: uppercase;
  text-shadow: 0 22px 70px rgba(0,0,0,0.24);
  overflow-wrap: anywhere;
}
.hero h1 span { display: block; }
.hero__cycle {
  color: var(--red); display: block;
  transition: opacity 260ms ease, transform 260ms ease;
}
.hero__cycle.out { opacity: 0; transform: translateY(20px); }
.hero p:not(.hero__tag) {
  max-width: 520px; margin: 1.45rem 0 0;
  color: rgba(255,255,255,0.72); font-size: 1.1rem; line-height: 1.72;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }

.hero__media {
  height: min(680px, calc(100svh - 10rem)); min-height: 520px;
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(8, minmax(0, 1fr)); gap: 0.85rem;
}
.hero__photo {
  position: relative; margin: 0; min-height: 0; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 1.15rem;
  background: rgba(255,255,255,0.06); box-shadow: 0 28px 70px rgba(0,0,0,0.28);
}
.hero__photo--main  { grid-column: 1 / 8;  grid-row: 1 / 6; }
.hero__photo--wide  { z-index: 2; grid-column: 6 / 13; grid-row: 5 / 9; }
.hero__photo--small { grid-column: 8 / 13; grid-row: 2 / 5; }
.hero__photo--tall  { grid-column: 1 / 5;  grid-row: 6 / 9; }
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.1) contrast(1.04); transition: transform 360ms ease;
}
.hero__photo:hover img { transform: scale(1.035); }
.hero__photo figcaption {
  position: absolute; inset: auto 0 0; padding: 0.85rem 0.95rem;
  background: linear-gradient(180deg, rgba(23,21,29,0), rgba(23,21,29,0.9));
  color: var(--white); font-size: 0.74rem; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ── TICKER ── */
.ticker { overflow: hidden; background: var(--yellow); }
.ticker__track { display: flex; width: max-content; animation: moveTicker 28s linear infinite; }
.ticker span {
  display: inline-flex; align-items: center; padding: 1rem 1.4rem;
  color: rgba(23,21,29,0.72); font-size: 0.76rem; font-weight: 950;
  text-transform: uppercase; white-space: nowrap;
}
.ticker span::after { content: ""; width: 8px; height: 8px; margin-left: 1.4rem; background: var(--red); }
@keyframes moveTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ABOUT ── */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; background: var(--paper); }
.about__copy {
  padding: 7rem 4rem; display: flex; flex-direction: column; justify-content: center;
}
.about__copy h2 {
  margin: 0 0 1.4rem; font-size: 4rem; line-height: 1;
  font-weight: 950; letter-spacing: 0; text-transform: uppercase;
}
.about__copy h2 span { color: var(--red); }
.about__copy p:not(.label) {
  max-width: 520px; margin: 0 0 1rem; color: var(--muted); line-height: 1.75; font-size: 1rem;
}
.about__stats {
  display: flex; gap: 2.8rem; margin-top: 2.4rem; padding-top: 2.4rem; border-top: 1px solid var(--line);
}
.about__stats div strong { display: block; font-size: 1.8rem; font-weight: 950; letter-spacing: -0.02em; }
.about__stats div span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.about__image {
  position: relative; margin: 2rem; min-height: 560px;
  overflow: hidden; border-radius: 1.6rem; box-shadow: 0 22px 45px rgba(23,21,29,0.12);
}
.about__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }

/* ── SECTION HEAD ── */
.section-head {
  max-width: 1180px; margin: 0 auto 3rem;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: end;
}
.section-head .label { grid-column: 1 / -1; margin-bottom: -2rem; }
.section-head h2 { margin: 0; font-size: 4rem; line-height: 1; font-weight: 950; letter-spacing: 0; text-transform: uppercase; }
.section-head p:not(.label) { margin: 0; color: var(--muted); line-height: 1.72; font-size: 1rem; }

/* ── PRODUCTS ── */
.products { padding: 7rem 2rem; background: var(--paper); }
.products__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: start;
}
.products__secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.product-card {
  position: relative; display: block; overflow: hidden;
  border-radius: 1.15rem; background: var(--white); box-shadow: var(--shadow); cursor: pointer;
}
.product-card--main { min-height: 580px; }
.products__secondary .product-card { min-height: 260px; }
.product-card__img { position: absolute; inset: 0; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__label {
  position: absolute; inset: auto 0 0; padding: 1.6rem;
  background: linear-gradient(180deg, rgba(23,21,29,0), rgba(23,21,29,0.92));
  color: var(--white);
}
.product-card--main .product-card__label { padding: 2.2rem; }
.product-card__label .label { color: var(--yellow); margin-bottom: 0.5rem; }
.product-card__label h3 { margin: 0 0 0.3rem; font-size: 0.9rem; font-weight: 950; letter-spacing: 0.06em; text-transform: uppercase; }
.product-card--main .product-card__label h3 { font-size: 1.45rem; }
.product-card__label p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* ── STATEMENT ── */
.statement { padding: 7rem 2rem; display: flex; justify-content: center; align-items: center; background: var(--coal); }
.statement__text {
  max-width: 1050px; margin: 0; color: var(--white);
  font-size: 5rem; line-height: 1.08; font-weight: 950;
  letter-spacing: 0; text-align: center; text-transform: uppercase;
}
.statement__text span {
  display: inline-block; margin: 0 0.08em;
  color: rgba(255,255,255,0.12); transition: color 400ms ease, text-shadow 400ms ease;
}
.statement__text span.lit { color: var(--white); }
.statement__red.lit {
  color: var(--red) !important;
  text-shadow: 0 0 30px rgba(236,36,41,0.5), 0 0 60px rgba(236,36,41,0.2);
}

/* ── BRANDS ── */
.brands { display: grid; grid-template-columns: 1fr 1fr; background: var(--paper); }
.brands__copy { padding: 6rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.brands__copy h2 { margin: 0 0 1.2rem; font-size: 4rem; line-height: 1; font-weight: 950; letter-spacing: 0; text-transform: uppercase; }
.brands__copy h2 span { color: var(--red); }
.brands__copy p:not(.label) { max-width: 480px; color: var(--muted); line-height: 1.72; font-size: 1rem; }
.brand-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; padding: 2rem 2rem 2rem 0; }
.brand-grid img {
  width: 100%; height: 120px; object-fit: contain; padding: 1.4rem;
  background: var(--white); border-radius: 1rem; box-shadow: var(--shadow);
  filter: grayscale(1) contrast(1.1); transition: filter 220ms ease;
}
.brand-grid img:hover { filter: none; }

/* ── PROCESS ── */
.process { padding: 7rem 2rem; background: var(--paper); }
.steps { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.step {
  min-height: 280px; padding: 1.55rem; background: var(--white);
  border-radius: 1.15rem; box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 28px 50px rgba(23,21,29,0.1); }
.step span { display: block; margin-bottom: 3rem; color: var(--red); font-size: 3.2rem; line-height: 1; font-weight: 950; }
.step h3 { margin: 0 0 0.7rem; font-size: 1rem; font-weight: 950; text-transform: uppercase; }
.step p { margin: 0; color: var(--muted); line-height: 1.55; }

/* ── EXPRESS ── */
.express { display: grid; grid-template-columns: 1fr 1fr; background: var(--coal); color: var(--white); }
.express__image { min-height: 620px; overflow: hidden; margin: 2rem; border-radius: 1.6rem; box-shadow: 0 22px 45px rgba(0,0,0,0.3); }
.express__image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1); }
.express__copy { padding: 6rem 4rem 6rem 2rem; display: flex; flex-direction: column; justify-content: center; gap: 1.4rem; }
.express .label { color: var(--yellow); }
.express__copy h2 { margin: 0; font-size: 4.2rem; line-height: 1; font-weight: 950; letter-spacing: 0; text-transform: uppercase; }
.express__copy > p { max-width: 480px; color: rgba(255,255,255,0.7); line-height: 1.72; font-size: 1rem; }
.express__steps { display: flex; flex-direction: column; gap: 1.2rem; padding: 1.4rem 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.express__step { display: flex; align-items: flex-start; gap: 1rem; }
.express__step strong { flex-shrink: 0; font-size: 1.5rem; font-weight: 950; color: var(--red); line-height: 1; }
.express__step p { margin: 0; color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.5; }

/* ── CONTACT ── */
.contact { display: grid; grid-template-columns: 1fr 1fr; background: var(--paper); }
.contact__left { padding: 6rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.contact__left h2 { margin: 0 0 1rem; font-size: 5rem; font-weight: 950; letter-spacing: -0.02em; text-transform: uppercase; line-height: 1; }
.contact__left > p { color: var(--muted); line-height: 1.7; font-size: 1rem; max-width: 400px; margin: 0 0 2.4rem; }
.contact__data { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-bottom: 2rem; }
.contact__data div strong, .contact__address strong, .contact__hours strong {
  display: block; font-size: 0.68rem; font-weight: 900; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.25rem;
}
.contact__data div a { font-size: 0.88rem; color: var(--ink); transition: color 140ms; }
.contact__data div a:hover { color: var(--red); }
.contact__address, .contact__hours { margin-bottom: 1.2rem; }
.contact__address p, .contact__hours p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.contact__social { display: flex; gap: 1.5rem; margin-top: 0.8rem; }
.contact__social a { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); transition: color 140ms; }
.contact__social a:hover { color: var(--red); }
.contact__form {
  padding: 5rem 4rem; display: flex; flex-direction: column;
  justify-content: center; gap: 0; background: var(--white);
  border-left: 1px solid var(--line); position: relative;
}
.contact__form input, .contact__form select, .contact__form textarea {
  width: 100%; padding: 1.2rem 0; background: transparent;
  border: none; border-bottom: 1px solid var(--line); color: var(--ink);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; outline: none; transition: border-color 160ms; appearance: none;
}
.contact__form input::placeholder, .contact__form textarea::placeholder { color: rgba(23,21,29,0.28); }
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus { border-color: var(--red); }
.contact__form select { cursor: pointer; color: rgba(23,21,29,0.28); }
.contact__form select:valid { color: var(--ink); }
.contact__form select option { background: var(--white); color: var(--ink); }
.contact__form textarea { resize: none; font-family: var(--font); margin-bottom: 1.6rem; }

/* ── FOOTER ── */
.footer {
  display: flex; justify-content: center; align-items: center; gap: 1rem;
  padding: 1.2rem 2rem; background: var(--paper); border-top: 1px solid var(--line); color: var(--muted);
}
.footer img { width: 80px; height: auto; opacity: 0.7; }
.footer p { margin: 0; font-size: 0.78rem; }

/* ── WHATSAPP ── */
.wa {
  position: fixed; bottom: 2rem; right: 2rem; width: 56px; height: 56px;
  background: #25d366; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; z-index: 99; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s;
}
.wa:hover { transform: scale(1.1); }
.wa svg { width: 28px; height: 28px; fill: var(--white); }

/* ── REVEAL ── */
.motion-ready .reveal { opacity: 0; transform: translate3d(0, 34px, 0); }
.motion-ready .reveal.is-visible { opacity: 1; transform: none; }
.reveal { opacity: 1; transform: none; transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1); }

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

/* ── 1180px ── */
@media (max-width: 1180px) {
  .hero__layout { grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr); gap: 1.4rem; }
  .hero__media { height: min(600px, calc(100svh - 10rem)); min-height: 460px; }
  .about__copy h2, .brands__copy h2, .section-head h2 { font-size: 3.2rem; }
  .express__copy h2 { font-size: 3.4rem; }
  .statement__text { font-size: 3.8rem; }
  .contact__left h2 { font-size: 4rem; }
}

/* ── 940px ── */
@media (max-width: 940px) {
  .nav { padding: 0.9rem 1rem; }
  .nav__cta, .nav__lang { display: none; }
  .nav__menu { display: flex; }
  .nav__links {
    position: fixed; inset: 68px 1rem auto; display: none; flex-direction: column; gap: 0;
    background: var(--white); color: var(--ink); border: 1px solid var(--line);
    box-shadow: var(--shadow); padding: 1rem; border-radius: 1rem;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 1rem 0.3rem; border-bottom: 1px solid var(--line); }
  .nav__links a:last-child { border-bottom: 0; }

  .hero { min-height: auto; padding: 6.5rem 1rem 1rem; }
  .hero__layout { min-height: auto; grid-template-columns: 1fr; gap: 1.5rem; }
  .hero__copy { max-width: 100%; padding: 2rem 0 0; }
  .hero__media { height: 520px; min-height: 0; }
  .hero h1 { font-size: 3.6rem; }

  .about, .brands, .express, .contact { grid-template-columns: 1fr; }
  .about__copy, .brands__copy { padding: 4rem 2rem; }
  .about__image, .express__image { margin: 1rem; min-height: 0; aspect-ratio: 16/9; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); padding: 0 1rem 3rem; }
  .express__copy { padding: 4rem 2rem; }
  .contact__left, .contact__form { padding: 4rem 2rem; }
  .contact__form { border-left: none; border-top: 1px solid var(--line); }
  .contact__data { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; }
  .product-card--main { min-height: 400px; }
  .section-head { grid-template-columns: 1fr; gap: 1.4rem; }
  .section-head .label { margin-bottom: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

/* ── 620px ── */
@media (max-width: 620px) {
  .hero { padding: 6rem 1rem 1rem; }
  .hero h1 { font-size: 2.5rem; line-height: 0.96; }
  .hero__media { height: 480px; grid-template-rows: repeat(8, minmax(0, 1fr)); }
  .hero__photo--main  { grid-column: 1 / 13; grid-row: 1 / 4; }
  .hero__photo--wide  { grid-column: 1 / 13; grid-row: 6 / 9; }
  .hero__photo--small { grid-column: 1 / 7;  grid-row: 4 / 6; }
  .hero__photo--tall  { grid-column: 7 / 13; grid-row: 4 / 6; }
  .hero__actions { flex-direction: column; }
  .hero__actions .button { width: min(100%, 300px); }
  .about__copy h2, .brands__copy h2, .section-head h2, .contact__left h2 { font-size: 2.5rem; }
  .statement__text { font-size: 2.5rem; }
  .express__copy h2 { font-size: 2.8rem; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .products__secondary { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .products__secondary .product-card { min-height: 180px; }
  .steps { grid-template-columns: 1fr; gap: 1rem; }
  .step { min-height: auto; }
  .footer { flex-direction: column; text-align: center; }
  .about__copy { padding: 3.5rem 1.2rem; }
  .about__image { aspect-ratio: 4/3; }
}
