:root { --ink: #1b1919; --muted: #555; --line: #e6e6e6; --blue: #123f63; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: 'K2D', Arial, sans-serif; line-height: 1.65; }
.container { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.site-header { background: #1b1919; border-bottom: 1px solid #343232; }
.header-inner { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: block; width: 128px; height: 112px; }
.brand img, .footer-logo { width: 100%; height: 100%; object-fit: contain; }
.site-nav a { color: var(--ink); font-size: 15px; text-decoration: none; }
.site-nav a:hover { color: var(--blue); }
.hero { min-height: 430px; position: relative; display: grid; align-items: center; overflow: hidden; background: #1c2a34; }
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center bottom; }
.hero-overlay { background: linear-gradient(90deg, rgba(10,22,32,.78), rgba(10,22,32,.25)); }
.hero-content { position: relative; z-index: 1; color: #fff; max-width: 820px; padding: 76px 0; }
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 20px; font-size: clamp(34px, 5vw, 52px); line-height: 1.15; font-weight: 500; }
.hero p { max-width: 760px; margin-bottom: 0; font-size: 18px; line-height: 1.6; }
.products { padding: 30px 0 56px; }
.product { min-height: 330px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 58px; border-bottom: 1px solid var(--line); padding: 54px 0; }
.product-image { display: flex; align-items: center; justify-content: center; min-height: 245px; }
.product-image img { display: block; max-width: 100%; max-height: 290px; object-fit: contain; }
.product-copy h2 { margin-bottom: 16px; font-size: 24px; line-height: 1.3; font-weight: 600; }
.product-copy p { margin-bottom: 0; color: var(--muted); font-size: 16px; }
.site-footer { background: #1b1919; padding: 40px 0; }
.footer-inner { display: grid; grid-template-columns: 128px 1fr; align-items: center; gap: 16px 28px; }
.footer-logo { width: 128px; height: 112px; grid-row: span 2; }
.footer-inner p { margin: 0; color: #fff; }
.footer-inner small { color: #bdbdbd; }
@media (max-width: 720px) {
  .container { width: min(100% - 32px, 1120px); }
  .header-inner { min-height: 76px; }
  .brand { width: 96px; height: 84px; }
  .site-nav { display: none; }
  .hero { min-height: 480px; }
  .hero-content { padding: 60px 0; }
  .hero p { font-size: 16px; }
  .product, .product-image-right { grid-template-columns: 1fr; gap: 18px; padding: 40px 0; }
  .product-image-right .product-copy { order: 1; }
  .product-image-right .product-image { order: 2; }
  .product-copy h2 { font-size: 21px; }
  .footer-inner { grid-template-columns: 96px 1fr; gap: 10px 18px; }
  .footer-inner p, .footer-inner small { font-size: 13px; }
}
