/* =========================================================
   ILSI — Industria Láctea San Isidro
   Paleta derivada del logo (anillo azul / cinta roja) y de
   las fotografías de producto (fondos azules, dorado del
   queso, crema de las tomas de yogurt).
   ========================================================= */

:root {
  --ink: #0b1f33;
  --ink-soft: #4a5d72;
  --ink-faint: #8597a8;

  --blue: #1957c2;
  --blue-deep: #0a2f66;
  --blue-darker: #071f47;
  --blue-soft: #e8f0fc;
  --blue-mid: #2f6fdb;

  --red: #d62839;
  --red-deep: #a81e2b;
  --red-soft: #fdeaea;

  --gold: #e3a23d;
  --gold-soft: #fbecd4;

  --green: #2e7d32;

  --cream: #fbf7ee;
  --white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --shadow-card: 0 16px 40px -16px rgba(11, 31, 51, 0.18);
  --shadow-lift: 0 24px 60px -20px rgba(10, 47, 102, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2 { font-family: var(--font-display); margin: 0; }
em { font-style: italic; }

/* ---------- custom cursor ---------- */
.cursor {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(227, 162, 61, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.18s, height 0.18s, border-color 0.18s, background 0.18s;
  mix-blend-mode: difference;
}
.cursor.grow {
  width: 48px;
  height: 48px;
  background: rgba(227, 162, 61, 0.18);
}
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ---------- whatsapp floating button ---------- */
.wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.55);
  z-index: 900;
  transition: transform 0.2s ease;
}
.wa:hover { transform: scale(1.08) rotate(-4deg); }

/* ---------- nav ---------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
nav.scrolled {
  background: rgba(10, 31, 64, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 6vw;
  box-shadow: 0 10px 30px -14px rgba(7, 22, 47, 0.6);
}
.brand {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.brand em { color: var(--gold); font-style: italic; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links li a:hover { color: var(--gold); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  box-shadow: 0 10px 24px -8px rgba(214, 40, 57, 0.55);
}
.nav-cta:hover { background: var(--red-deep); color: var(--white) !important; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 18%, rgba(227, 162, 61, 0.16), transparent 55%),
              linear-gradient(160deg, var(--blue-darker) 0%, var(--blue-deep) 48%, var(--blue) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 80%, rgba(255, 255, 255, 0.06), transparent 40%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.08), transparent 35%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 20px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
}
.logo-ring {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: 5px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08), 0 20px 50px -12px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--white);
}
.logo-ring video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ilsi {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 108px);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 24px);
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 0 22px;
}
.hero-line {
  width: 70px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  margin-bottom: 36px;
}
/* ---------- hero carousel ---------- */
.hero-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}
.hc-track {
  position: relative;
  width: 230px;
  height: 150px;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.18);
}
.hc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hc-slide.active { opacity: 1; }
.hc-slide img { width: 100%; height: 100%; object-fit: cover; }
.hc-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 8px 10px 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(0deg, rgba(7, 22, 47, 0.88), transparent);
}
.hc-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.hc-arrow:hover { background: var(--gold); color: var(--blue-darker); transform: scale(1.08); }
.hc-dots {
  position: absolute;
  bottom: -22px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.hero-carousel { position: relative; }
.hc-dots .hc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hc-dots .hc-dot.on { background: var(--gold); transform: scale(1.3); }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 32px -10px rgba(214, 40, 57, 0.6);
}
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 90px; display: block; }

/* ---------- strip ---------- */
.strip {
  background: var(--cream);
  padding: 18px 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(11, 31, 51, 0.06);
}
.strip-item {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue-deep);
  text-transform: uppercase;
}
.strip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

/* ---------- shared section bits ---------- */
section { padding: 110px 6vw; }
.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.label.green { color: var(--green); }
.label.red { color: var(--red); }
h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  color: var(--ink);
  font-weight: 600;
}
h2 em { color: var(--blue); font-style: italic; }
.sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 18px;
  max-width: 480px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.show { opacity: 1; transform: translateY(0); }
.reveal-d1.show { transition-delay: 0.12s; }
.reveal-d2.show { transition-delay: 0.24s; }
.reveal-d3.show { transition-delay: 0.36s; }

/* ---------- about ---------- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.about-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.anum-val {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--blue);
}
.anum-val span { color: var(--red); }
.anum-lbl {
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.about-visual {
  border-radius: var(--radius-l);
  background: linear-gradient(150deg, var(--blue) 0%, var(--blue-deep) 70%, var(--blue-darker) 100%);
  padding: 64px 40px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(227, 162, 61, 0.18);
  top: -90px;
  right: -90px;
}
.about-visual-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.about-big {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}
.about-tagline {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  margin-top: 8px;
  letter-spacing: 0.03em;
}
.about-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
}
.pill {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
}

/* ---------- products ---------- */
.products { background: var(--cream); }
.prod-head { max-width: 620px; margin: 0 auto 50px; text-align: center; }
.prod-head .sub { margin-left: auto; margin-right: auto; }
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  background: var(--white);
  color: var(--blue-deep);
  border: 1px solid rgba(25, 87, 194, 0.18);
  transition: all 0.2s;
}
.tab:hover { border-color: var(--blue); }
.tab.on {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 12px 24px -10px rgba(25, 87, 194, 0.5);
}
.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  max-width: 1300px;
  margin: 0 auto;
}
.pcard {
  background: var(--white);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -18px rgba(11,31,51,0.26); }
.pcard.hide { display: none; }
.pcard-vis {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pcard-vis img { width: 100%; height: 100%; object-fit: cover; }
.pcard-vis.y { background: linear-gradient(150deg, #fde3ea, #fbeec0); }
.pcard-vis.q { background: linear-gradient(150deg, #2a2422, #4a3a28); }
.pcard-vis.j { background: linear-gradient(150deg, var(--blue-mid), var(--blue-deep)); }
.pcard-vis.l { background: linear-gradient(150deg, #bfe0fb, var(--blue)); }
.pcard-vis svg { width: 56%; height: 86%; }
.pbadge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  color: var(--white);
  z-index: 2;
}
.pbadge.pop { background: var(--red); }
.pbadge.new { background: var(--gold); color: var(--blue-darker); }
.pbadge.best { background: var(--blue); }
.pcard-body { padding: 22px 22px 6px; flex: 1; }
.pcat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.pcat.green { color: var(--green); }
.pname {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.pdesc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.pcard-foot {
  padding: 18px 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(11, 31, 51, 0.07);
  margin-top: 16px;
}
.ptags { display: flex; gap: 6px; flex-wrap: wrap; }
.ptag {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 5px 10px;
  border-radius: 100px;
}
.pact {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  transition: color 0.2s;
}
.pact:hover { color: var(--red); }

/* ---------- shop / comprar ---------- */
.shop { background: var(--white); }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1300px;
  margin: 0 auto;
}
.shop-card {
  background: var(--cream);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shop-card:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -18px rgba(11,31,51,0.26); }
.shop-card img { width: 100%; height: 160px; object-fit: cover; }
.shop-body { padding: 18px 18px 22px; }
.shop-name {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.shop-unit { font-size: 12px; color: var(--ink-faint); margin-bottom: 12px; }
.shop-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
}
.shop-price span { font-size: 12px; font-weight: 500; color: var(--ink-faint); }
.buy-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: 100px;
  background: #25d366;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 26px -10px rgba(37, 211, 102, 0.55);
  transition: background 0.2s, transform 0.2s;
}
.buy-btn:hover { background: #1ebd5a; transform: translateY(-2px); }
.shop-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-faint);
  max-width: 640px;
  margin: 36px auto 0;
  line-height: 1.6;
}

/* ---------- quality ---------- */
.quality {
  background: linear-gradient(165deg, var(--blue-darker), var(--blue-deep) 60%, var(--blue) 130%);
  color: var(--white);
}
.quality-inner { max-width: 1180px; margin: 0 auto; }
.quality-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.quality-head h2 { color: var(--white); }
.quality-head h2 em { color: var(--gold); }
.quality-head .sub { color: rgba(255,255,255,0.72); margin-left: auto; margin-right: auto; }
.qgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.qitem {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-m);
  padding: 30px 24px;
  position: relative;
  backdrop-filter: blur(6px);
}
.qnum {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.16);
  margin-bottom: 4px;
}
.qico { font-size: 30px; display: block; margin-bottom: 14px; }
.qttl { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.qtxt { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,0.7); }

/* ---------- contact ---------- */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  max-width: 1180px;
  margin: 0 auto;
}
.cinfo { display: flex; flex-direction: column; gap: 6px; }
.citem {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-m);
  transition: background 0.2s;
}
.citem:hover { background: var(--blue-soft); }
.cico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.clbl { font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.cval { font-size: 15.5px; font-weight: 600; color: var(--ink); margin-top: 3px; }
.csub { font-size: 12.5px; color: var(--ink-faint); margin-top: 2px; }

.cform {
  background: var(--cream);
  border-radius: var(--radius-l);
  padding: 6px;
}
.cform-inner {
  background: var(--white);
  border-radius: calc(var(--radius-l) - 6px);
  padding: 40px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.cform-inner::before {
  content: "";
  position: absolute;
  top: 0; left: 40px; right: 40px;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}
.cform-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); }
.cform-sub { font-size: 13.5px; color: var(--ink-soft); margin: 6px 0 28px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 18px; }
.fg label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(11, 31, 51, 0.14);
  border-radius: var(--radius-s);
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fg textarea { min-height: 100px; resize: vertical; }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(25, 87, 194, 0.14);
}
.fsend {
  width: 100%;
  padding: 15px;
  border-radius: var(--radius-s);
  background: linear-gradient(120deg, var(--red), var(--red-deep));
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 30px -12px rgba(214, 40, 57, 0.55);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fsend:hover { transform: translateY(-2px); }
.fsuccess {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.fsuccess .sico {
  font-size: 40px;
  display: block;
  margin-bottom: 14px;
}
.fsuccess strong { display: block; font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.fsuccess p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.6; }

/* ---------- footer ---------- */
footer {
  background: var(--blue-darker);
  color: rgba(255, 255, 255, 0.82);
  padding: 80px 6vw 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.fbrand {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
}
.ftag { font-size: 12.5px; color: var(--gold); letter-spacing: 0.04em; margin-top: 4px; }
.fabout { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.6); margin: 18px 0 22px; max-width: 320px; }
.fsoc { display: flex; gap: 10px; }
.soc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.soc:hover { background: var(--red); transform: translateY(-3px); }
.fctitle {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.fctitle::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 26px;
  height: 2px;
  background: var(--gold);
}
.flinks { display: flex; flex-direction: column; gap: 12px; }
.flinks a { font-size: 13.5px; color: rgba(255,255,255,0.62); transition: color 0.2s; }
.flinks a:hover { color: var(--white); }
.fbot {
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .qgrid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-numbers { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  section { padding: 80px 6vw; }
}
@media (max-width: 560px) {
  .pgrid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .qgrid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ilsi { letter-spacing: 0.02em; }
  .hc-track { width: 190px; height: 124px; }
}
