/* ============================================================================
   Minalŏka — public website  ·  "Fresh Aquatic Premium"
   Sky blue #0099FE + warm amber #F49E4B on deep ocean navy.
   Display: Bricolage Grotesque · Body: Plus Jakarta Sans.
   ========================================================================== */

:root {
  --blue: #0099fe;
  --blue-600: #0b7fd4;
  --blue-700: #0a66ab;
  --blue-ink: #073b66;
  --sky-50: #ecf7ff;
  --sky-100: #d6edff;
  --amber: #f49e4b;
  --amber-600: #e07e26;
  --amber-50: #fef3e7;
  --wa: #25d366;
  --wa-600: #1eb457;

  --ink: #0b1b33;          /* deep ocean navy — primary text */
  --ink-2: #44597a;        /* muted slate-blue */
  --ink-3: #7c8aa3;
  --line: #e4ecf5;
  --paper: #ffffff;
  --paper-2: #f4f9ff;      /* faint aqua wash */
  --mist: #eff5fb;

  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 12px;
  --shadow-1: 0 2px 8px -4px rgba(11, 27, 51, .18);
  --shadow-2: 0 18px 44px -22px rgba(11, 27, 51, .35);
  --shadow-blue: 0 22px 50px -24px rgba(0, 153, 254, .55);
  --maxw: 1200px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  /* rounded + warm — echoes the chunky badge wordmark in the logo */
  --font-display: "Baloo 2", "Nunito", sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, Segoe UI, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* faint paper grain over the whole page for depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 2; }

h1, h2, h3, h4, .brand__name, .display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.005em;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

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

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue);
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------- Buttons */
.btn {
  --bg: var(--blue); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 13px 24px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  background: var(--bg); color: var(--fg);
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn--wa { --bg: var(--wa); box-shadow: 0 14px 30px -14px rgba(37, 211, 102, .8); }
.btn--wa:hover { background: var(--wa-600); }
.btn--primary { box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--blue-600); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue-700); background: var(--sky-50); }

/* ---------------------------------------------------------------- Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.is-stuck { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(11, 27, 51, .4); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__logo { height: 38px; width: auto; display: block; filter: drop-shadow(0 4px 10px rgba(0, 153, 254, .28)); }
.brand__name { font-size: 22px; font-weight: 800; }
.nav__links { display: flex; gap: 28px; font-weight: 600; font-size: 15px; color: var(--ink-2); }
.nav__links a { position: relative; padding: 4px 0; transition: color .2s; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; border-radius: 2px;
  background: var(--amber); transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 10px 20px; font-size: 14px; }

/* ---------------------------------------------------------------- Hero */
.hero { position: relative; overflow: hidden; padding: 84px 0 96px; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='124' height='30'%3E%3Cpath d='M0 20 Q15.5 8 31 20 T62 20 T93 20 T124 20' fill='none' stroke='%230099fe' stroke-opacity='0.07' stroke-width='2'/%3E%3C/svg%3E") 0 0 / 124px 30px repeat,
    radial-gradient(60% 55% at 82% 8%, rgba(0, 153, 254, .20), transparent 60%),
    radial-gradient(48% 50% at 12% 28%, rgba(244, 158, 75, .16), transparent 60%),
    radial-gradient(70% 60% at 50% 120%, rgba(0, 153, 254, .12), transparent 60%),
    linear-gradient(180deg, #fbfdff, var(--paper-2));
}
.hero__bg::after {        /* faint concentric ripple rings, top-right */
  content: ""; position: absolute; top: -180px; right: -160px; width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 38%, rgba(0, 153, 254, .07) 39%, transparent 41%) ,
              radial-gradient(circle, transparent 54%, rgba(0, 153, 254, .06) 55%, transparent 57%),
              radial-gradient(circle, transparent 70%, rgba(244, 158, 75, .06) 71%, transparent 73%);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.hero__text { max-width: 620px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  color: var(--blue-700); background: #fff; border: 1px solid var(--sky-100);
  padding: 7px 15px 7px 11px; border-radius: 999px; margin-bottom: 22px;
  box-shadow: var(--shadow-1);
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 4px rgba(37, 211, 102, .18); }
.hero h1 { font-size: clamp(34px, 5.6vw, 60px); }
.hero h1 .hl { color: var(--blue); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .06em; height: .26em; z-index: -1;
  background: linear-gradient(90deg, var(--amber), #ffce9b); border-radius: 6px; opacity: .55;
}
.hero__sub { font-size: clamp(16.5px, 1.4vw, 19px); color: var(--ink-2); margin: 22px 0 30px; max-width: 50ch; }
.hero__cta { display: flex; gap: 13px; flex-wrap: wrap; }
.hero__pills { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 30px; }
.hero__pill { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.hero__pill svg { width: 19px; height: 19px; color: var(--blue); flex: none; }

/* hero media — floating logo medallion on aqua glass with orbiting blobs */
.hero__media { position: relative; display: grid; place-items: center; min-height: 320px; }
.hero__media img.hero__photo { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-2); display: block; }
.hero__logo {
  position: relative; display: grid; place-items: center;
  width: min(96%, 460px); aspect-ratio: 1.12 / 1;
  background: radial-gradient(56% 56% at 50% 46%, var(--sky-50), transparent 72%);
  animation: floaty 6s var(--ease) infinite;
}
.hero__logo img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 24px 36px rgba(0, 153, 254, .3)); }
.hero__logo::before, .hero__logo::after { content: ""; position: absolute; border-radius: 50%; z-index: -1; filter: blur(2px); }
.hero__logo::before { width: 86px; height: 86px; top: 2%; right: 0; background: radial-gradient(circle at 30% 30%, #ffd29c, var(--amber)); opacity: .8; animation: floaty 5s var(--ease) infinite reverse; }
.hero__logo::after { width: 64px; height: 64px; bottom: 4%; left: 2%; background: radial-gradient(circle at 30% 30%, #7fccff, var(--blue)); opacity: .75; animation: floaty 7s var(--ease) infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }

/* ---------------------------------------------------------------- Trust strip */
.trust { margin-top: -34px; position: relative; z-index: 3; }
.trust__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow-2);
}
.trust__item { display: flex; gap: 15px; align-items: flex-start; }
.trust__ic {
  flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--sky-50), #fff); border: 1px solid var(--sky-100); color: var(--blue);
}
.trust__ic svg { width: 24px; height: 24px; }
.trust__item:nth-child(2) .trust__ic { background: linear-gradient(150deg, var(--amber-50), #fff); border-color: #fbe2c6; color: var(--amber-600); }
.trust__t { font-family: var(--font-display); font-weight: 800; font-size: 17px; margin: 1px 0 3px; }
.trust__d { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

/* ---------------------------------------------------------------- Sections */
.section { padding: 86px 0; position: relative; }
.section--alt { background: var(--paper-2); }
.section__head { max-width: 660px; margin-bottom: 40px; }
.section__title { font-size: clamp(28px, 4vw, 42px); margin-top: 12px; }
/* amber underline hugging the heading — the logo's wordmark motif */
.section__title::after { content: ""; display: block; width: 76px; height: 7px; border-radius: 7px; background: var(--amber); margin-top: 18px; }
.section__intro { color: var(--ink-2); font-size: 17.5px; margin: 16px 0 0; max-width: 60ch; }
.price-note {
  display: flex; gap: 13px; align-items: flex-start;
  background: var(--amber-50); border: 1px solid #fbe2c6; border-radius: var(--r-md);
  padding: 16px 20px; margin: 26px 0 6px; max-width: 720px;
  font-size: 15px; color: var(--ink-2); line-height: 1.55;
}
.price-note svg { flex: none; width: 22px; height: 22px; color: var(--amber-600); margin-top: 1px; }
.price-note strong { color: var(--ink); font-weight: 700; }
.prose { color: var(--ink-2); font-size: 17.5px; max-width: 720px; }
.prose p { margin: 0 0 16px; }
.prose p:last-child { margin-bottom: 0; }

/* wave divider — paper-2 crest poured up into the white section above */
.section--alt > .wave { position: absolute; top: 0; left: 0; width: 100%; height: 56px; transform: translateY(-99%); color: var(--paper-2); pointer-events: none; }

/* ---------------------------------------------------------------- About */
.about { display: grid; grid-template-columns: 1.2fr .8fr; gap: 52px; align-items: center; }
.about__media {
  position: relative; border-radius: var(--r-lg); aspect-ratio: 1 / 1; padding: 11%;
  background: radial-gradient(58% 58% at 50% 46%, var(--sky-50), #fff 76%);
  border: 1px solid var(--line); box-shadow: var(--shadow-2);
  display: grid; place-items: center;
}
.about__media img { width: 100%; height: auto; object-fit: contain; }
.about__media .about__logo { width: 100%; filter: drop-shadow(0 18px 30px rgba(0,153,254,.24)); }

/* ---------------------------------------------------------------- Products */
.cat-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.cat-nav a {
  font-size: 14px; font-weight: 700; color: var(--ink-2);
  padding: 9px 17px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  transition: all .2s var(--ease);
}
.cat-nav a:hover { color: var(--blue-700); border-color: var(--blue); background: var(--sky-50); transform: translateY(-1px); }

.cat-group { margin-top: 52px; scroll-margin-top: 96px; }
.cat-group:first-of-type { margin-top: 0; }
.cat-group__title { display: flex; align-items: center; gap: 12px; font-size: 22px; margin: 0 0 22px; }
.cat-group__title::before { content: ""; width: 12px; height: 24px; border-radius: 4px; background: linear-gradient(var(--blue), var(--amber)); }
.cat-group__count { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--ink-3); }

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

.card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-1);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: var(--sky-100); }
.card__media { aspect-ratio: 1/1; background: linear-gradient(160deg, var(--mist), #fff); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__placeholder { display: grid; place-items: center; height: 100%; font-size: 46px; opacity: .35; }
.card__body { padding: 15px 16px 18px; }
.card__title { font-family: var(--font-display); font-size: 15.5px; font-weight: 700; line-height: 1.28; margin: 0 0 8px; }
.card__price { display: inline-flex; align-items: baseline; gap: 3px; font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--ink); margin: 0; }
.card__price .cur { font-size: 12px; font-weight: 700; color: var(--amber-600); }

/* Sold-out — desaturated cover, corner tag, no hover lift / zoom */
.card__media { position: relative; }
.card--sold-out { cursor: default; }
.card--sold-out:hover { transform: none; box-shadow: var(--shadow-1); border-color: var(--line); }
.card--sold-out .card__media img { filter: grayscale(.9) opacity(.55); }
.card--sold-out:hover .card__media img { transform: none; }
.card--sold-out .card__price { color: var(--ink-3); }
.card__soldout-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--ink); color: #fff; font-family: var(--font-display);
  font-weight: 700; font-size: 11.5px; letter-spacing: .03em;
  padding: 5px 10px; border-radius: var(--r-sm); box-shadow: var(--shadow-1);
}
.card__soldout-note { margin: 7px 0 0; font-size: 12.5px; line-height: 1.4; color: var(--ink-3); }

/* Best seller — amber corner ribbon on the most-popular SKU per category */
.card__bestseller-tag {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  display: inline-flex; align-items: center; gap: 3px;
  background: linear-gradient(135deg, var(--amber), var(--amber-600)); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 11.5px;
  letter-spacing: .03em; padding: 5px 10px; border-radius: var(--r-sm);
  box-shadow: 0 4px 12px rgba(224, 126, 38, .35);
}

/* ---------------------------------------------------------------- Pricelist download */
.pricelist-bar { display: flex; align-items: center; gap: 14px 18px; flex-wrap: wrap; margin: 2px 0 26px; }
.pricelist-bar .cat-nav { margin: 0; }
.btn--download { margin-left: auto; background: linear-gradient(135deg, var(--amber), var(--amber-600)); color: #fff; border: none; box-shadow: 0 12px 24px -10px rgba(224, 126, 38, .6); }
.btn--download:hover { background: var(--amber-600); color: #fff; }
.btn--download svg { width: 18px; height: 18px; }

/* ---------------------------------------------------------------- FAQ accordion */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-1); overflow: hidden; }
.faq__q { list-style: none; cursor: pointer; padding: 16px 20px; font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; font-size: 24px; font-weight: 400; line-height: 1; color: var(--amber-600); flex: none; }
.faq__item[open] .faq__q { color: var(--amber-600); }
.faq__item[open] .faq__q::after { content: "−"; }
.faq__a { padding: 0 20px 18px; }
.faq__a p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.65; }

/* ---------------------------------------------------------------- Gallery sliders */
.gallery-folder { margin-top: 46px; }
.gallery-folder:first-of-type { margin-top: 0; }
.slider-wrap { position: relative; }
.slider {
  display: grid; grid-auto-flow: column; grid-template-rows: repeat(2, 1fr);
  grid-auto-columns: minmax(300px, 1fr); gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding: 4px 2px 18px; scrollbar-width: thin; scrollbar-color: var(--sky-100) transparent;
}
.slider::-webkit-scrollbar { height: 8px; }
.slider::-webkit-scrollbar-thumb { background: var(--sky-100); border-radius: 8px; }
.slide { scroll-snap-align: start; height: 234px; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-1); cursor: zoom-in; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s var(--ease); }
.slide:hover img { transform: scale(1.07); }
.slider-nav {
  position: absolute; top: calc(50% - 9px); transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(255,255,255,.95); color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer;
  box-shadow: var(--shadow-2); z-index: 5; display: grid; place-items: center; transition: all .2s var(--ease);
}
.slider-nav:hover { color: #fff; background: var(--blue); border-color: var(--blue); }
.slider-nav--prev { left: -14px; }
.slider-nav--next { right: -14px; }

.zoomable { cursor: zoom-in; }

/* ---------------------------------------------------------------- Contact */
.contact { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: stretch; }
.contact--with-map { grid-template-columns: 1fr 1fr; }
.contact__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; box-shadow: var(--shadow-1);
}
.contact__row { display: flex; gap: 14px; margin: 0 0 22px; }
.contact__row:last-of-type { margin-bottom: 0; }
.contact__row .ic { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--sky-50); color: var(--blue); }
.contact__row .ic svg { width: 21px; height: 21px; }
.contact__row .lbl { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.contact__row .val { font-weight: 600; color: var(--ink); line-height: 1.45; }
.contact__cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 0; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); transition: all .2s;
}
.socials a:hover { color: var(--blue-700); border-color: var(--blue); background: var(--sky-50); }
.map-embed { position: relative; width: 100%; min-height: 320px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-1); }
.map-embed iframe, .map-embed :is(iframe) { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------------------------------------------------------------- Footer */
.footer { position: relative; background: var(--ink); color: #cdd9ec; padding: 64px 0 30px; overflow: hidden; }
.footer::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 220px; background: radial-gradient(60% 100% at 80% 0, rgba(0, 153, 254, .22), transparent 70%); pointer-events: none; }
.footer__top { position: relative; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand__name { color: #fff; }
.footer__note { color: #9fb2cd; margin: 16px 0 0; max-width: 38ch; }
.footer__col h5 { font-family: var(--font-display); font-size: 14px; color: #fff; margin: 0 0 14px; letter-spacing: .04em; text-transform: uppercase; }
.footer__col a, .footer__col p { display: block; color: #9fb2cd; font-size: 14.5px; margin: 0 0 10px; transition: color .2s; }
.footer__col a:hover { color: var(--amber); }
.footer__bottom { position: relative; padding-top: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer__copy { color: #6f86a6; font-size: 13px; margin: 0; }

/* ---------------------------------------------------------------- WA float */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa); color: #fff; font-weight: 700; font-size: 14.5px;
  padding: 13px 20px 13px 15px; border-radius: 999px;
  box-shadow: 0 18px 40px -14px rgba(37, 211, 102, .85);
  transition: transform .18s var(--ease), box-shadow .25s;
}
.wa-float:hover { transform: translateY(-2px) scale(1.03); }
.wa-float svg { width: 22px; height: 22px; }
.wa-float .wa-ring { position: absolute; inset: 0; border-radius: 999px; box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); animation: waPulse 2.4s ease-out infinite; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5) } 70%, 100% { box-shadow: 0 0 0 16px rgba(37,211,102,0) } }

/* ---------------------------------------------------------------- Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(7, 18, 36, .94); display: none; align-items: center; justify-content: center; z-index: 100; padding: 24px; cursor: zoom-out; backdrop-filter: blur(4px); }
.lightbox.open { display: flex; animation: lbIn .2s var(--ease); }
@keyframes lbIn { from { opacity: 0 } to { opacity: 1 } }
.lightbox img { max-width: 95vw; max-height: 90vh; border-radius: 14px; box-shadow: 0 30px 90px rgba(0,0,0,.6); cursor: pointer; }
.lightbox__close { position: absolute; top: 18px; right: 22px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; border: none; font-size: 28px; line-height: 1; cursor: pointer; transition: background .2s; z-index: 2; }
.lightbox__close:hover { background: rgba(255,255,255,.3); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; border: none; font-size: 30px; line-height: 1; cursor: pointer; transition: background .2s; z-index: 2; }
.lightbox__nav:hover { background: rgba(255,255,255,.3); }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
.lightbox__count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.9); font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .04em; background: rgba(255,255,255,.12); padding: 5px 13px; border-radius: 999px; z-index: 2; }
@media (max-width: 600px) {
  .lightbox__nav { width: 44px; height: 44px; font-size: 26px; }
  .lightbox__nav--prev { left: 8px; } .lightbox__nav--next { right: 8px; }
}

/* ---------------------------------------------------------------- Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__logo, .hero__logo::before, .hero__logo::after, .wa-float .wa-ring { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------------- Responsive */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__media { order: -1; min-height: 0; }
  .hero__logo { width: min(64%, 280px); }
  .about { grid-template-columns: 1fr; gap: 30px; }
  .about__media { order: -1; aspect-ratio: 16/10; }
  .trust__grid { grid-template-columns: 1fr; gap: 22px; }
  .contact--with-map { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .nav__cta { display: none; }
  .grid--products { grid-template-columns: repeat(2, 1fr); }
  .slider { grid-auto-columns: 78%; }
  .slide { height: 184px; }
  .slider-nav { display: none; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .wa-float span.lbl { display: none; }
  .wa-float { padding: 14px; }
}
