:root {
  --navy: #001e54;
  --navy-2: #102f64;
  --red: #ed1b2f;
  --ink: #3f3f3f;
  --muted: #707070;
  --line: #e8e8e8;
  --paper: #ffffff;
  --soft: #f6f7f9;
  --shadow: 0 10px 30px rgba(0, 30, 84, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1170px, calc(100% - 40px)); margin-inline: auto; }

.site-header { background: #fff; border-bottom: 1px solid var(--line); position: relative; z-index: 20; }
.brand-row { min-height: 116px; display: flex; align-items: center; justify-content: center; }
.brand-row img { width: 191px; height: auto; }
.nav-wrap { background: var(--navy); }
.nav-bar { min-height: 58px; display: flex; align-items: center; justify-content: center; position: relative; }
.nav-list { display: flex; align-items: center; justify-content: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-list > li { position: relative; }
.nav-list a { color: #fff; display: block; padding: 17px 18px; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.nav-list a:hover, .nav-list a[aria-current="page"] { background: rgba(255,255,255,.11); }
.submenu { display: none; position: absolute; top: 100%; left: 0; min-width: 270px; margin: 0; padding: 8px 0; list-style: none; background: #fff; box-shadow: var(--shadow); border-top: 3px solid var(--red); }
.submenu a { color: var(--ink); padding: 10px 18px; text-transform: none; letter-spacing: 0; font-weight: 400; }
.submenu a:hover { color: var(--navy); background: var(--soft); }
.has-submenu:hover .submenu, .has-submenu:focus-within .submenu { display: block; }
.menu-toggle { display: none; border: 0; background: transparent; color: #fff; font: inherit; font-size: 25px; cursor: pointer; padding: 10px; }

.hero { position: relative; overflow: hidden; background: #ddd; }
.slides { position: relative; aspect-ratio: 2200 / 972; min-height: 360px; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-controls { position: absolute; inset: 50% 0 auto; transform: translateY(-50%); display: flex; justify-content: space-between; padding: 0 24px; pointer-events: none; }
.slide-controls button { pointer-events: auto; width: 44px; height: 44px; border: 0; border-radius: 50%; color: #fff; background: rgba(0,30,84,.62); font-size: 22px; cursor: pointer; }
.slide-dots { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.slide-dot { width: 9px; height: 9px; padding: 0; border: 1px solid #fff; border-radius: 50%; background: transparent; cursor: pointer; }
.slide-dot.active { background: #fff; }

.section { padding: 76px 0; }
.section.soft { background: var(--soft); }
.section.navy { background: var(--navy); color: #fff; }
.eyebrow { margin: 0 0 8px; color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.section-title { margin: 0 0 24px; color: var(--navy); font-size: clamp(27px, 3vw, 40px); line-height: 1.25; font-weight: 500; }
.section-title.light { color: #fff; }
.lead { font-size: 17px; color: #606060; }
.center { text-align: center; }
.intro { max-width: 980px; margin: auto; text-align: center; }
.intro p { margin: 0 0 16px; }
.button { display: inline-block; margin-top: 18px; padding: 10px 25px; border-radius: 22px; background: var(--navy); color: #fff; font-size: 13px; font-weight: 600; }
.button:hover { background: var(--red); }

.feature-grid, .category-grid, .stats-grid, .store-grid { display: grid; gap: 28px; }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card, .category-card { overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.feature-card img { width: 100%; aspect-ratio: 740 / 550; object-fit: cover; }
.feature-card-body { padding: 24px; }
.feature-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 21px; font-weight: 500; }
.feature-card p { margin: 0; color: var(--muted); }

.stats-grid { grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat { padding: 26px 18px; border-right: 1px solid rgba(255,255,255,.18); }
.stat:last-child { border-right: 0; }
.stat-number { display: block; color: #fff; font-size: 52px; line-height: 1; font-weight: 300; }
.stat p { margin: 14px 0 0; color: rgba(255,255,255,.8); line-height: 1.5; }

.page-hero { min-height: 300px; display: grid; place-items: center; text-align: center; color: #fff; background-size: cover; background-position: center; position: relative; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: rgba(0,30,84,.56); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin: 0; font-size: clamp(34px, 5vw, 58px); font-weight: 400; letter-spacing: .06em; text-transform: uppercase; }
.page-hero .crumbs { margin-top: 10px; font-size: 13px; color: rgba(255,255,255,.82); }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 52px; }
.split img { width: 100%; object-fit: cover; box-shadow: var(--shadow); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.info-card { padding: 34px; border-top: 4px solid var(--red); background: #fff; box-shadow: var(--shadow); }
.info-card h2, .info-card h3 { margin-top: 0; color: var(--navy); font-weight: 500; }

.category-grid { grid-template-columns: repeat(3, 1fr); }
.category-card { position: relative; }
.category-card img { width: 100%; aspect-ratio: 680 / 427; object-fit: cover; transition: transform .5s ease; }
.category-card:hover img { transform: scale(1.035); }
.category-card span { position: absolute; left: 20px; right: 20px; bottom: 20px; padding: 12px 16px; color: var(--navy); background: rgba(255,255,255,.9); font-weight: 600; text-align: center; }

.product-layout { display: grid; grid-template-columns: 1.08fr .92fr; gap: 52px; align-items: start; }
.product-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.product-gallery img { width: 100%; aspect-ratio: 680 / 427; object-fit: cover; }
.product-gallery.gallery-seven { grid-template-columns: repeat(3, 1fr); }
.product-gallery.gallery-seven img { aspect-ratio: 1; }
.product-copy h2 { margin: 0 0 22px; color: var(--navy); font-size: 36px; font-weight: 500; }
.details { margin: 28px 0 0; padding: 0; list-style: none; }
.details li { padding: 15px 0; border-top: 1px solid var(--line); }
.details strong { display: block; color: var(--navy); }

.store-grid { grid-template-columns: repeat(3, 1fr); }
.store-card { padding: 28px; background: #fff; box-shadow: var(--shadow); border-top: 4px solid var(--red); }
.store-card h3 { margin: 0 0 12px; color: var(--navy); font-size: 20px; font-weight: 500; }
.store-card p { margin: 6px 0; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-form { display: grid; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
label { color: var(--navy); font-size: 13px; font-weight: 600; }
input, textarea { width: 100%; padding: 12px 14px; border: 1px solid #d9d9d9; border-radius: 2px; font: inherit; }
textarea { min-height: 150px; resize: vertical; }
.submit { justify-self: start; border: 0; cursor: pointer; }

.site-footer { padding: 55px 0 26px; color: rgba(255,255,255,.82); background: #061b3c; }
.footer-grid { display: grid; grid-template-columns: 220px 1fr auto; gap: 40px; align-items: center; }
.footer-logo { width: 180px; }
.footer-contact p { margin: 5px 0; }
.footer-social img { width: 85px; }
.footer-bottom { margin-top: 35px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; text-align: center; }

@media (max-width: 900px) {
  .menu-toggle { display: block; margin-left: auto; }
  .nav-bar { justify-content: flex-end; }
  .nav-list { display: none; position: absolute; top: 58px; left: -20px; right: -20px; padding: 8px 20px 20px; background: var(--navy); align-items: stretch; }
  .nav-list.open { display: block; }
  .nav-list a { padding: 11px 12px; }
  .submenu { display: block; position: static; min-width: 0; box-shadow: none; border: 0; padding: 0 0 5px 18px; background: transparent; }
  .submenu a { color: rgba(255,255,255,.78); }
  .feature-grid, .category-grid, .store-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .split, .product-layout, .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo, .footer-social img { margin: auto; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1170px); }
  .brand-row { min-height: 92px; }
  .brand-row img { width: 155px; }
  .slides { min-height: 260px; }
  .section { padding: 54px 0; }
  .feature-grid, .category-grid, .stats-grid, .store-grid, .mission-grid, .form-row { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .product-gallery.gallery-seven { grid-template-columns: repeat(2, 1fr); }
  .page-hero { min-height: 230px; }
}
