:root {
  --bg: #f5f3ed;
  --surface: #ffffff;
  --ink: #17191e;
  --muted: #666a72;
  --dark: #111318;
  --dark-2: #1a1d24;
  --gold: #d79a22;
  --gold-2: #f2bd48;
  --line: rgba(20, 22, 27, .12);
  --shadow: 0 24px 70px rgba(13, 15, 20, .13);
  --container: min(1180px, calc(100% - 40px));
  --radius: 22px;
  --header-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
svg { display: block; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 9999; background: var(--gold); color: #111; padding: 10px 16px; border-radius: 8px; font-weight: 800; }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); box-shadow: 0 8px 30px rgba(13,15,20,.07); backdrop-filter: blur(14px); }
.topline { background: var(--dark); color: #d9dbe0; font-size: 12px; }
.topline__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topline__links { display: flex; align-items: center; gap: 12px; }
.topline a:hover { color: var(--gold-2); }
.navbar { min-height: var(--header-height); display: flex; align-items: center; gap: 28px; overflow: visible; }
.brand {
  width: 220px;
  height: 72px;
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.brand img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: none !important;
}
.nav-menu { list-style: none; margin: 0 0 0 auto; padding: 0; display: flex; align-items: center; gap: 25px; }
.nav-link { position: relative; display: inline-flex; align-items: center; min-height: 48px; font-size: 12px; font-weight: 850; letter-spacing: .04em; color: #363941; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 6px; height: 2px; background: var(--gold); transition: right .25s ease; }
.nav-link:hover, .nav-link.active { color: #111318; }
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.header-call { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 9px; min-height: 46px; padding: 0 18px; border-radius: 999px; color: #121317; background: linear-gradient(135deg, var(--gold-2), var(--gold)); font-size: 12px; font-weight: 900; letter-spacing: .04em; box-shadow: 0 12px 24px rgba(215,154,34,.22); }
.header-call svg { width: 18px; height: 18px; fill: currentColor; }
.menu-toggle { display: none; width: 46px; height: 46px; margin-left: auto; padding: 11px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 4px; background: var(--dark); transition: .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: 680px; display: grid; align-items: center; isolation: isolate; overflow: hidden; background: #111; }
.hero__media, .hero__shade { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__shade { z-index: 1; background: linear-gradient(90deg, rgba(7,9,13,.94) 0%, rgba(7,9,13,.81) 46%, rgba(7,9,13,.42) 72%, rgba(7,9,13,.62) 100%), linear-gradient(0deg, rgba(8,10,14,.72), transparent 48%); }
.hero__content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .62fr); align-items: center; gap: 72px; padding-block: 82px; color: #fff; }
.hero__copy { max-width: 690px; }
.eyebrow, .section-kicker { margin: 0 0 16px; font-size: 12px; font-weight: 900; letter-spacing: .17em; color: var(--gold-2); }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 44px; height: 2px; background: var(--gold); }
.hero h1 { margin: 0; max-width: 750px; font-size: clamp(38px, 5vw, 64px); line-height: 1.03; letter-spacing: -.04em; font-weight: 720; }
.hero h1 strong { color: var(--gold-2); font-weight: 900; }
.hero__lead { max-width: 630px; margin: 24px 0 0; color: rgba(255,255,255,.78); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 24px; border-radius: 12px; font-size: 13px; font-weight: 900; letter-spacing: .035em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 19px; height: 19px; fill: currentColor; }
.btn--gold { color: #121317; background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: 0 16px 34px rgba(215,154,34,.24); }
.btn--gold:hover { box-shadow: 0 18px 42px rgba(215,154,34,.34); }
.btn--glass { color: #fff; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.btn--glass:hover { background: rgba(255,255,255,.14); }
.hero__trust { display: flex; flex-wrap: wrap; gap: 19px; margin-top: 30px; color: rgba(255,255,255,.8); font-size: 13px; }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust svg { width: 18px; height: 18px; padding: 4px; border-radius: 50%; background: rgba(215,154,34,.18); fill: var(--gold-2); }
.hero-card { padding: 30px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: linear-gradient(160deg, rgba(26,29,36,.94), rgba(14,16,21,.9)); box-shadow: 0 28px 80px rgba(0,0,0,.33); backdrop-filter: blur(14px); }
.hero-card__label { margin: 0 0 10px; color: var(--gold-2); font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.hero-card h2 { margin: 0 0 26px; font-size: 24px; line-height: 1.3; letter-spacing: -.02em; }
.hero-card__row { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: start; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.11); }
.icon-box { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(215,154,34,.14); color: var(--gold-2); }
.icon-box svg { width: 21px; height: 21px; fill: currentColor; }
.hero-card__row small, .contact__details small { display: block; margin-bottom: 4px; color: rgba(255,255,255,.52); font-size: 10px; letter-spacing: .14em; font-weight: 850; }
.hero-card__row strong { display: block; color: rgba(255,255,255,.9); font-size: 14px; line-height: 1.65; }
.hero-card__whatsapp { min-height: 50px; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 12px; background: #25d366; color: #07140b; font-size: 13px; font-weight: 900; }
.hero-card__whatsapp svg { width: 21px; height: 21px; fill: currentColor; }

.quick-strip { position: relative; z-index: 4; margin-top: -1px; background: var(--dark); color: #fff; border-top: 1px solid rgba(255,255,255,.08); }
.quick-strip__grid { min-height: 126px; display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-strip__grid > div { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 20px; border-right: 1px solid rgba(255,255,255,.09); }
.quick-strip__grid > div:first-child { border-left: 1px solid rgba(255,255,255,.09); }
.quick-strip span { color: var(--gold); font-size: 28px; font-weight: 300; line-height: 1; }
.quick-strip strong { font-size: 13px; line-height: 1.35; letter-spacing: .08em; }

.section { padding-block: 104px; }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading h2, .services__intro h2, .about__content h2, .faq__intro h2, .contact__panel h2 { margin: 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.12; letter-spacing: -.035em; }
.section-heading > p:last-child, .services__intro > p, .about__content > p, .faq__intro > p, .contact__panel > p { margin: 18px 0 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card { position: relative; min-height: 410px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); isolation: isolate; }
.product-card--wide { grid-column: span 2; }
.product-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .55s ease; }
.product-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(10,12,16,.94), rgba(10,12,16,.04) 68%); }
.product-card:hover img { transform: scale(1.045); }
.product-card__overlay { position: absolute; inset: auto 0 0; z-index: 2; padding: 28px; color: #fff; }
.product-card__overlay span { color: var(--gold-2); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.product-card__overlay h3 { margin: 7px 0 8px; font-size: 25px; line-height: 1.2; }
.product-card__overlay p { margin: 0; max-width: 520px; color: rgba(255,255,255,.72); font-size: 14px; }

.services { background: var(--surface); }
.services__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 92px; align-items: start; }
.services__intro { position: sticky; top: 126px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; color: var(--ink); font-weight: 850; }
.text-link span { color: var(--gold); font-size: 22px; }
.services-list { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 74px 1fr; gap: 26px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.service-number { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 15px; background: #f3ead6; color: #9e6811; font-size: 13px; font-weight: 900; }
.service-item h3 { margin: 0 0 6px; font-size: 21px; }
.service-item p { margin: 0; color: var(--muted); }

.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 78px; align-items: center; }
.about__image { position: relative; }
.about__image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.about__badge { position: absolute; right: -28px; bottom: 30px; min-width: 170px; padding: 20px 22px; border-radius: 16px; background: var(--gold); color: #111318; box-shadow: 0 18px 38px rgba(82,54,9,.22); }
.about__badge strong, .about__badge span { display: block; }
.about__badge strong { font-size: 15px; }
.about__badge span { margin-top: 2px; font-size: 12px; }
.check-list { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: center; color: #353840; font-weight: 650; }
.check-list span { width: 26px; height: 26px; display: grid; place-items: center; flex: 0 0 26px; border-radius: 50%; background: #f3ead6; color: #a36e12; font-weight: 900; }
.contact-names { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.contact-names a { display: block; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.contact-names a:hover { border-color: rgba(215,154,34,.65); box-shadow: 0 10px 24px rgba(30,30,30,.07); }
.contact-names small, .contact-names strong { display: block; }
.contact-names small { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.contact-names strong { margin-top: 4px; font-size: 16px; }

.gallery { background: var(--dark); color: #fff; }
.section-heading--light > p:last-child { color: rgba(255,255,255,.58); }
.gallery-grid { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, 270px); gap: 16px; }
.gallery-item { position: relative; padding: 0; border: 0; border-radius: 20px; overflow: hidden; background: #242730; color: #fff; text-align: left; }
.gallery-item--large { grid-row: span 2; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,8,11,.72), transparent 55%); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item span { position: absolute; left: 22px; bottom: 18px; z-index: 2; font-size: 14px; font-weight: 850; }

.faq__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; border: 0; background: none; color: var(--ink); text-align: left; font-weight: 780; }
.faq-item button b { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 34px; border-radius: 50%; background: #fff; color: var(--gold); font-size: 22px; font-weight: 400; box-shadow: 0 8px 20px rgba(0,0,0,.06); transition: transform .25s ease; }
.faq-item button[aria-expanded="true"] b { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > p { overflow: hidden; margin: 0; color: var(--muted); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding: 0 50px 24px 0; }

.contact { padding-block: 104px; background: linear-gradient(145deg, #171a20, #0f1115); color: #fff; }
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: stretch; }
.contact__panel > p { color: rgba(255,255,255,.62); }
.contact-persons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.contact-persons article { padding: 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.045); }
.contact-persons span, .contact-persons > article > a { display: block; }
.contact-persons span { color: var(--gold-2); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.contact-persons > article > a:not(.mini-wa) { margin: 6px 0 12px; font-size: 19px; font-weight: 850; }
.mini-wa { display: inline-flex !important; width: max-content; padding: 6px 10px; border-radius: 7px; background: #25d366; color: #07140b; font-size: 11px; font-weight: 900; }
.contact__details { display: grid; gap: 16px; margin-top: 26px; }
.contact__details > div { display: flex; align-items: flex-start; gap: 14px; color: rgba(255,255,255,.78); }
.contact__details svg { width: 22px; height: 22px; flex: 0 0 22px; margin-top: 4px; fill: var(--gold-2); }
.map-wrap { position: relative; min-height: 520px; border-radius: 24px; overflow: hidden; background: #23262d; box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 520px; border: 0; filter: grayscale(.1) contrast(1.05); }
.map-wrap > a { position: absolute; right: 18px; bottom: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px; border-radius: 10px; background: var(--gold); color: #111318; font-size: 12px; font-weight: 900; box-shadow: 0 12px 30px rgba(0,0,0,.24); }

.site-footer { background: #0c0e12; color: rgba(255,255,255,.65); }
.footer__top { min-height: 190px; display: grid; grid-template-columns: 250px 1fr auto; align-items: center; gap: 48px; }
.footer__brand { display: flex; align-items: center; width: 240px; min-height: 108px; overflow: hidden; }
.footer__brand img { width: 100%; height: 100%; max-height: 108px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); opacity: .9; }
.footer__top p { max-width: 440px; margin: 0; }
.footer__links { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 24px; }
.footer__links a:hover { color: var(--gold-2); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; }
.footer__bottom .container { min-height: 58px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer__bottom a { color: rgba(255,255,255,.76); }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 900; min-height: 54px; display: flex; align-items: center; gap: 10px; padding: 0 18px; border-radius: 999px; background: #25d366; color: #07140b; box-shadow: 0 18px 40px rgba(13,92,43,.28); font-size: 12px; font-weight: 900; }
.floating-whatsapp svg { width: 23px; height: 23px; fill: currentColor; }
.mobile-actions { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 2000; padding: 28px; place-items: center; background: rgba(0,0,0,.92); }
.lightbox:not([hidden]) { display: grid; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 88vh; border-radius: 12px; box-shadow: 0 30px 100px #000; }
.lightbox__close { position: fixed; top: 18px; right: 22px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; font-size: 30px; line-height: 1; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1120px) {
  :root { --container: min(100% - 32px, 1050px); }
  .brand { width: 196px; height: 66px; flex-basis: 196px; }
  .nav-menu { gap: 17px; }
  .nav-link { font-size: 11px; }
  .header-call { padding-inline: 14px; }
  .hero__content { gap: 40px; }
  .services__grid, .faq__grid { gap: 56px; }
}

@media (max-width: 960px) {
  :root { --header-height: 74px; }
  .topline { display: none; }
  .navbar { position: relative; }
  .brand { width: 184px; height: 60px; flex-basis: 184px; }
  .menu-toggle { display: block; }
  .header-call { margin-left: 0; }
  .nav-menu { position: fixed; left: 16px; right: 16px; top: 82px; display: grid; gap: 0; padding: 10px 18px 18px; border-radius: 18px; background: #fff; box-shadow: 0 24px 70px rgba(13,15,20,.2); transform: translateY(-16px); opacity: 0; visibility: hidden; transition: .25s ease; }
  .nav-menu.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav-link { width: 100%; min-height: 52px; border-bottom: 1px solid var(--line); }
  .nav-menu li:last-child .nav-link { border-bottom: 0; }
  .hero { min-height: auto; }
  .hero__content { grid-template-columns: 1fr; gap: 36px; padding-block: 72px; }
  .hero__copy { max-width: 780px; }
  .hero-card { max-width: 620px; }
  .quick-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .quick-strip__grid > div:nth-child(3) { border-left: 1px solid rgba(255,255,255,.09); border-top: 1px solid rgba(255,255,255,.09); }
  .quick-strip__grid > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.09); }
  .services__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .services__intro { position: static; }
  .about__grid { gap: 48px; }
  .map-wrap { min-height: 430px; }
  .map-wrap iframe { min-height: 430px; }
  .footer__top { grid-template-columns: 230px 1fr; }
  .footer__links { grid-column: 1 / -1; display: flex; flex-wrap: wrap; padding-bottom: 32px; }
}

@media (max-width: 720px) {
  :root { --container: calc(100% - 28px); --radius: 18px; }
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
  .brand { width: 170px; height: 56px; flex-basis: 170px; }
  .header-call { display: none; }
  .hero__shade { background: linear-gradient(90deg, rgba(7,9,13,.93), rgba(7,9,13,.7)), linear-gradient(0deg, rgba(8,10,14,.74), transparent 45%); }
  .hero__content { padding-block: 56px 64px; }
  .hero h1 { font-size: clamp(36px, 11vw, 47px); }
  .hero__lead { font-size: 16px; }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero__trust { gap: 10px 16px; }
  .hero-card { padding: 22px; }
  .quick-strip__grid > div { justify-content: flex-start; min-height: 92px; padding: 16px 18px; }
  .quick-strip span { font-size: 23px; }
  .quick-strip strong { font-size: 11px; }
  .section { padding-block: 72px; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2, .services__intro h2, .about__content h2, .faq__intro h2, .contact__panel h2 { font-size: clamp(30px, 9vw, 40px); }
  .product-grid { grid-template-columns: 1fr; }
  .product-card, .product-card--wide { grid-column: auto; min-height: 370px; }
  .services__grid { gap: 40px; }
  .service-item { grid-template-columns: 56px 1fr; gap: 16px; }
  .service-number { width: 46px; height: 46px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__badge { right: 14px; bottom: 14px; }
  .contact-names, .contact-persons { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 380px 270px 270px; }
  .gallery-item--large { grid-row: auto; }
  .faq__grid { gap: 36px; }
  .contact__grid { gap: 36px; }
  .map-wrap, .map-wrap iframe { min-height: 390px; }
  .footer__top { grid-template-columns: 1fr; gap: 22px; padding-block: 44px; }
  .footer__brand { width: 220px; min-height: 100px; }
  .footer__brand img { max-height: 100px; }
  .footer__links { grid-column: auto; padding: 0; }
  .footer__bottom .container { min-height: 76px; flex-direction: column; justify-content: center; gap: 4px; text-align: center; }
  .floating-whatsapp { display: none; }
  .mobile-actions { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200; min-height: calc(62px + env(safe-area-inset-bottom)); display: grid; grid-template-columns: 1fr 1.25fr; padding-bottom: env(safe-area-inset-bottom); background: #fff; border-top: 1px solid rgba(20,22,27,.12); box-shadow: 0 -12px 35px rgba(0,0,0,.11); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 9px; color: var(--dark); font-size: 12px; font-weight: 900; }
  .mobile-actions svg { width: 21px; height: 21px; fill: currentColor; }
  .mobile-actions__wa { background: #25d366; color: #07140b !important; }
}

@media (max-width: 430px) {
  :root { --container: calc(100% - 24px); }
  .navbar { gap: 12px; }
  .brand { width: 150px; height: 52px; flex-basis: 150px; }
  .menu-toggle { width: 43px; height: 43px; }
  .nav-menu { left: 12px; right: 12px; }
  .hero__content { padding-block: 48px 56px; }
  .hero h1 { font-size: 38px; }
  .hero__trust { display: grid; grid-template-columns: 1fr; }
  .hero-card h2 { font-size: 21px; }
  .quick-strip__grid > div { gap: 10px; padding: 14px; }
  .quick-strip span { font-size: 20px; }
  .quick-strip strong { font-size: 10px; }
  .product-card { min-height: 340px; }
  .product-card__overlay { padding: 22px; }
  .product-card__overlay h3 { font-size: 22px; }
  .gallery-grid { grid-template-rows: 320px 240px 240px; }
  .contact__panel { min-width: 0; }
  .contact-persons > article > a:not(.mini-wa) { font-size: 17px; }
}
