:root {
  --navy: #06254a;
  --navy-deep: #03172f;
  --red: #c91523;
  --gold: #f4dc55;
  --ink: #111318;
  --muted: #68707c;
  --line: #e6e8ec;
  --paper: #ffffff;
  --soft: #f4f6f8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.promo-bar {
  display: block;
  min-height: 36px;
  padding: 10px 16px;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 14px;
  text-decoration: underline;
}

.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 16px clamp(16px, 4vw, 56px);
  border-bottom: 5px solid var(--red);
}

.brand {
  display: inline-flex;
  grid-column: 2;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: clamp(120px, 18vw, 190px);
  height: auto;
  border-radius: 0;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.header-actions a,
.header-actions button {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header-actions svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
}

.badge-link span {
  position: absolute;
  top: -8px;
  right: -9px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
}

.header-cart {
  font: inherit;
}

.mobile-only {
  display: none;
}

.main-nav {
  display: flex;
  min-height: 39px;
  justify-content: center;
  gap: clamp(18px, 4vw, 48px);
  overflow-x: auto;
  background: var(--navy);
  color: #fff;
  white-space: nowrap;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 11px 0 10px;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  min-height: clamp(460px, 64vw, 690px);
}

.hero-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--soft);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.ribbon {
  position: absolute;
  top: 78px;
  left: -76px;
  width: 310px;
  padding: 12px;
  transform: rotate(-45deg);
  background: var(--red);
  color: var(--gold);
  text-align: center;
  font-size: clamp(18px, 2.8vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-offer {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: clamp(32px, 5vw, 72px);
  background: var(--red);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.hero-offer p {
  margin: 0;
  font-size: clamp(17px, 2.4vw, 32px);
  font-weight: 800;
}

.hero-offer h1 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(58px, 9.4vw, 132px);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-offer strong {
  font-size: clamp(36px, 5.4vw, 74px);
  line-height: 1;
}

.hero-offer span {
  color: var(--gold);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
}

.text-cta {
  margin-top: 28px;
  color: #fff;
  font-size: clamp(20px, 2.6vw, 32px);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.category-tile {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--navy-deep);
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.category-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(3, 23, 47, 0.78), rgba(3, 23, 47, 0.1));
}

.category-tile span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
}

.category-tile:hover img {
  transform: scale(1.04);
}

.model-view-section {
  padding: 48px clamp(16px, 4vw, 56px);
  background: #f8fbff;
  text-align: center;
}

.model-view-section p {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.model-view-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.model-link {
  display: inline-flex;
  margin-top: 24px;
  padding: 14px 28px;
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
}

.model-link:hover {
  background: var(--navy);
}

.section-head {
  padding: 56px 20px 22px;
  text-align: center;
}

.section-head p,
.editorial-band p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-head h2,
.editorial-band h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px clamp(16px, 4vw, 42px) 70px;
}

.product-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  align-content: start;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--soft);
}

.product-card .product-info {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 2px solid var(--navy);
  padding-top: 13px;
}

.product-card p,
.product-card span {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.product-card span {
  color: var(--red);
  white-space: nowrap;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 0;
}

.product-meta div {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  padding: 10px;
}

.product-meta dt,
.size-select span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.size-select {
  display: grid;
  gap: 7px;
}

.size-select select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 0 10px;
}

.cart-button,
.checkout-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-button:hover,
.checkout-button:hover {
  background: var(--navy);
}

.editorial-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  background: var(--soft);
}

.editorial-band div {
  padding: clamp(38px, 6vw, 84px);
}

.solid-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 28px;
  padding: 0 24px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.editorial-band img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 30px clamp(16px, 4vw, 56px);
  background: var(--navy-deep);
  color: #fff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-copy {
  display: grid;
  gap: 4px;
}

.footer-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
}

.footer-logo {
  width: 150px;
}

.site-footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-overlay.is-open {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 21;
  display: grid;
  width: min(430px, 100vw);
  height: 100vh;
  grid-template-rows: auto 1fr auto auto;
  gap: 18px;
  padding: 24px;
  background: #fff;
  box-shadow: -12px 0 35px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.cart-drawer-head p {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-drawer-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}

.cart-drawer-head button,
.cart-line button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  line-height: 1;
}

.cart-list {
  display: grid;
  align-content: start;
  gap: 14px;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  list-style: none;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.cart-line img {
  width: 72px;
  aspect-ratio: 1;
  object-fit: cover;
}

.cart-line div {
  display: grid;
  gap: 4px;
}

.cart-line strong,
.cart-line em {
  font-style: normal;
  font-weight: 800;
}

.cart-line span {
  color: var(--muted);
  font-size: 13px;
}

.empty-cart {
  color: var(--muted);
  padding: 20px 0;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .masthead {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    grid-column: auto;
    justify-self: center;
  }

  .brand-logo {
    width: 132px;
  }

  .mobile-only {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    background: transparent;
  }

  .icon-button span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
  }

  .header-actions a:not(.badge-link) {
    display: none;
  }

  .main-nav {
    justify-content: flex-start;
    padding: 0 16px;
  }

  .mega {
    position: static;
    display: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
    color: inherit;
  }

  .nav-item.has-mega.is-open .mega {
    display: block;
  }

  .hero,
  .editorial-band {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 340px;
  }

  .category-strip,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .promo-bar {
    font-size: 12px;
  }

  .masthead {
    min-height: 78px;
    padding: 12px;
  }

  .brand-logo {
    width: 118px;
  }

  .header-actions {
    gap: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-offer {
    min-height: 370px;
  }

  .hero-offer h1 {
    font-size: 52px;
  }

  .category-strip,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-tile {
    min-height: 250px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-drawer {
    padding: 18px;
  }
}
