:root { --navy: #0a2463; --red: #c8102e; --bg: #ffffff; --muted: #f4f6fb; }
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, sans-serif; color: var(--navy); background: var(--bg); line-height: 1.5; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: .75rem 1rem; border-bottom: 1px solid rgba(10,36,99,.12); }
.site-logo img { display: block; height: 36px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-weight: 600; font-size: 15px; }
.site-nav a { text-decoration: none; }
.site-nav a:hover { text-decoration: underline; }
.site-nav__shop { background: var(--red); color: #fff !important; padding: .45rem .9rem; border-radius: 999px; }
.site-nav__shop:hover { text-decoration: none !important; filter: brightness(1.1); }
.site-footer { background: var(--muted); padding: 2rem 1rem; text-align: center; font-size: 14px; }
.site-footer p { margin: .35rem 0; }
@media (max-width: 480px) { .site-header { justify-content: center; } .site-logo img { height: 28px; } }

/* Landing */
.home { max-width: 1200px; margin: 0 auto; padding: 3rem 1rem 4rem; text-align: center; }
.home h1 { font-size: clamp(32px, 6vw, 56px); line-height: 1.05; margin: 0 0 .75rem; font-weight: 800; }
.home h1 span { color: var(--red); }
.home__sub { font-size: 18px; opacity: .8; max-width: 620px; margin: 0 auto 1.75rem; }
.home__cta { display: inline-block; background: var(--red); color: #fff; font-weight: 700; font-size: 18px; text-decoration: none; padding: .9rem 1.8rem; border-radius: 999px; }
.home__cta:hover { filter: brightness(1.1); }
.home__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 3rem; text-align: left; }
.home__card { display: block; padding: 1.5rem; border: 1px solid rgba(10,36,99,.15); border-radius: 16px; text-decoration: none; background: var(--muted); }
.home__card:hover { border-color: var(--red); }
.home__card h2 { margin: 0 0 .4rem; font-size: 20px; }
.home__card p { margin: 0; opacity: .8; font-size: 15px; }
.home__h2 { font-size: 26px; margin: 3rem 0 1rem; text-align: left; }
.home__more { font-weight: 700; color: var(--red); text-decoration: none; }
.home__cards { margin-top: 0; }
.home .grid { text-align: left; }

/* Storefront */
.shop { max-width: 1200px; margin: 0 auto; padding: 2rem 1rem 4rem; }
.shop__head { text-align: center; max-width: 680px; margin: 0 auto 1.5rem; }
.shop__head h1 { font-size: clamp(30px, 5vw, 46px); margin: 0 0 .5rem; font-weight: 800; }
.shop__head p { opacity: .8; margin: .25rem 0; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin: 0 0 2rem; }
.chips a { text-decoration: none; font-weight: 600; font-size: 14px; padding: .4rem .9rem; border: 1px solid rgba(10,36,99,.2); border-radius: 999px; }
.chips a:hover { border-color: var(--red); }
.chips a[aria-current="page"] { background: var(--navy); color: #fff; border-color: var(--navy); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
@media (max-width: 520px) { .grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; } }
.card { display: flex; flex-direction: column; text-decoration: none; border-radius: 14px; overflow: hidden; background: var(--muted); transition: transform .15s, box-shadow .15s; }
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,36,99,.12); }
.card__img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #fff; }
.card__type { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; opacity: .6; padding: .75rem .9rem 0; }
.card__title { font-weight: 700; font-size: 16px; padding: .15rem .9rem 0; }
.card__price { color: var(--red); font-weight: 700; padding: .25rem .9rem .9rem; }

/* Hero */
.hero { position: relative; background: #111; }
.hero__img { display: block; width: 100%; height: clamp(260px, 42vw, 560px); object-fit: cover; object-position: center 30%; }
.hero__overlay { position: absolute; inset: auto 0 0 0; padding: 2rem 1rem 2.25rem; text-align: center; background: linear-gradient(transparent, rgba(0,0,0,.65)); }
.hero__title { color: #fff; font-size: clamp(26px, 4.5vw, 48px); font-weight: 800; margin: 0 0 1rem; line-height: 1.1; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.hero__title span { display: block; font-size: .6em; font-weight: 600; opacity: .9; }
.home { padding-top: 2rem; }
.home__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin: 1rem 0; }
.home__row .home__h2 { margin: 0; }
.home__cta--sm { font-size: 15px; padding: .6rem 1.2rem; }
