:root {
  --navy: #061c4c;
  --navy-deep: #031338;
  --royal: #064db9;
  --red: #ef2b24;
  --yellow: #ffd629;
  --lime: #91dc00;
  --white: #fffdf8;
  --ink: #071b44;
  --muted: #58709a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy-deep);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(17, 90, 208, .3), transparent 30rem),
    var(--navy-deep);
}

.site-header {
  position: relative;
  z-index: 20;
  height: 112px;
  padding: 10px clamp(22px, 4.5vw, 76px);
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(90deg, rgba(2, 16, 49, .98), rgba(5, 37, 93, .92));
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.brand { display: grid; place-items: center; width: 188px; height: 92px; flex: 0 0 auto; }
.brand img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
.header-rule { height: 1px; flex: 1; background: linear-gradient(90deg, rgba(255,255,255,.56), transparent); }

.main-site-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 3px;
  color: white;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.main-site-link:hover,
.main-site-link:focus-visible { background: white; color: var(--navy); transform: translateY(-2px); outline: none; }

.hero {
  position: relative;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  background:
    linear-gradient(135deg, rgba(14, 75, 170, .24) 0 1px, transparent 1px 100%),
    linear-gradient(145deg, var(--navy) 0%, #06265e 49%, #074aa8 100%);
  background-size: 28px 28px, auto;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--red);
  z-index: 8;
}

.hero-copy {
  position: relative;
  z-index: 10;
  align-self: center;
  padding: 62px 4vw 62px clamp(24px, 5vw, 84px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow span { width: 26px; height: 4px; background: var(--red); }

h1 {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 .16em;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(5.4rem, 9.1vw, 9.5rem);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.035em;
  text-transform: uppercase;
  text-shadow: 0 12px 35px rgba(0,0,0,.28);
}

h1 .play { color: white; }
h1 .smart { color: var(--red); }

.hero-copy h2 {
  margin: 30px 0 18px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 3vw, 3.65rem);
  line-height: .98;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.62;
}

.coming-soon {
  display: inline-flex;
  margin-top: 31px;
  padding: 12px 38px 13px 28px;
  color: var(--navy-deep);
  background: var(--yellow);
  clip-path: polygon(0 8%, 96% 0, 100% 88%, 4% 100%);
  transform: rotate(-1deg);
  box-shadow: 0 14px 36px rgba(0,0,0,.24);
}

.coming-soon span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.75rem, 2.5vw, 2.8rem);
  letter-spacing: .075em;
  text-transform: uppercase;
}

.hero-visual { position: relative; min-width: 0; min-height: 610px; }

.visual-frame {
  position: absolute;
  inset: 0 0 0 8%;
  overflow: hidden;
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
  background-color: var(--royal);
  background-image: url("../images/apparel-mood-women.png");
  background-repeat: no-repeat;
  background-size: 190% auto;
  background-position: 98% 11%;
}

.mood-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 27, 74, .5), transparent 38%),
    linear-gradient(180deg, rgba(7, 35, 90, .08) 55%, rgba(3, 18, 50, .55));
  pointer-events: none;
}

.kp-mark {
  position: absolute;
  top: 35%;
  left: 10%;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255,255,255,.92);
  border-radius: 50%;
  background: rgba(3, 25, 67, .92);
  box-shadow: 0 15px 35px rgba(0,0,0,.3);
  color: white;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.3rem;
  font-style: italic;
  letter-spacing: -.04em;
  transform: rotate(-8deg);
}

.visual-slash { position: absolute; z-index: 7; top: 2%; bottom: 4%; width: 9px; background: var(--red); transform: rotate(27deg); }
.visual-slash-one { left: 9%; }
.visual-slash-two { left: 13%; width: 2px; background: rgba(255,255,255,.72); }

.image-note {
  position: absolute;
  z-index: 9;
  right: 22px;
  bottom: 19px;
  max-width: 390px;
  margin: 0;
  padding: 9px 12px;
  background: rgba(2, 18, 52, .82);
  color: rgba(255,255,255,.72);
  font-size: .64rem;
  line-height: 1.4;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.category-strip {
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  color: var(--ink);
}

.category {
  min-height: 132px;
  padding: 24px clamp(20px, 3vw, 52px);
  display: flex;
  align-items: center;
  gap: 17px;
  border-right: 1px solid #d7deea;
}

.category:last-child { border-right: 0; }
.category-number { color: var(--red); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 1.4rem; letter-spacing: .04em; }
.category-divider { width: 2px; height: 49px; background: var(--yellow); transform: rotate(12deg); }
.category strong { display: block; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(1.45rem, 2vw, 2.1rem); letter-spacing: .035em; text-transform: uppercase; }
.category small { display: block; margin-top: 4px; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
  align-items: center;
  gap: 48px;
  padding: 48px clamp(24px, 5vw, 84px);
  background: linear-gradient(110deg, #031338, #082b6b);
  border-top: 1px solid rgba(255,255,255,.12);
}

.contact-copy h2 { margin: 0 0 10px; font-size: clamp(1.65rem, 2.7vw, 3rem); line-height: 1.05; text-transform: uppercase; }
.contact-copy > p:last-child { margin: 0; color: rgba(255,255,255,.72); line-height: 1.55; }
.eyebrow-light { margin-bottom: 11px; }

.contact-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.contact-links a {
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.contact-links a:hover,
.contact-links a:focus-visible { background: rgba(255,255,255,.12); border-color: var(--yellow); transform: translateY(-2px); outline: none; }
.contact-links span { display: block; margin-bottom: 6px; color: var(--yellow); font-size: .66rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.contact-links strong { display: block; overflow-wrap: anywhere; color: white; font-size: clamp(.9rem, 1.1vw, 1.05rem); }
.contact-loading { color: rgba(255,255,255,.65); }

footer {
  min-height: 58px;
  padding: 15px clamp(24px, 5vw, 84px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: #020d28;
  color: rgba(255,255,255,.52);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: 52% 48%; }
  .hero-copy { padding-left: 34px; }
  .contact-strip { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 780px) {
  .site-header { height: 88px; padding: 8px 18px; gap: 14px; }
  .brand { width: 132px; height: 72px; }
  .main-site-link { padding: 10px 12px; font-size: .65rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 54px 22px 38px; }
  h1 { font-size: clamp(4.3rem, 22vw, 7rem); }
  .hero-copy h2 { margin-top: 26px; }
  .hero-visual { min-height: 500px; }
  .visual-frame { inset: 0; clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%); }
  .visual-frame { background-size: 195% auto; background-position: 98% 8%; }
  .visual-slash { top: -4%; left: 10%; }
  .visual-slash-two { left: 14%; }
  .kp-mark { top: 31%; left: 7%; width: 68px; height: 68px; font-size: 1.85rem; }
  .image-note { left: 18px; right: 18px; bottom: 16px; }
  .category-strip { grid-template-columns: 1fr; }
  .category { min-height: 104px; border-right: 0; border-bottom: 1px solid #d7deea; }
  .category:last-child { border-bottom: 0; }
  .contact-strip { padding: 42px 22px; }
  .contact-links { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
}

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