/* Colin's — Stage-2 layout styles. Tokens from design-tokens.md. */

/* ============ layer: tokens ============ */
:root {
  --ink: #111820;
  --muted: #4A5663;
  --denim-900: #073B66;
  --denim-600: #2D6A9F;
  --sky-100: #DCEAF2;
  --paper: #F7F5F0;
  --yellow: #F7D34A;
  --red: #C8243A;
  --dark: #18232D;
  --hero-field: #071725;
  --collection-field: #102C3D;
  --promo-green: #DDE9C8;
  --promo-pale-red: #F2C5CB;
  --line: #C7CDD3;
  --focus-ring: #073B66;
  --gutter: 56px;
  --font-display: "Arial Black", Arial, sans-serif;
  --font-body: Arial, sans-serif;
  --radius-card: 2px;
  --radius-pill: 27px;
  --motion-hover: 160ms;
  --motion-panel: 220ms;
}

/* ============ layer: base ============ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: #FFFFFF;
}

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

a { color: inherit; }

h1, h2, h3 { margin: 0; }

p { margin: 0; }

ul { margin: 0; padding: 0; }

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--ink);
  color: #FFFFFF;
  padding: 12px 20px;
  text-decoration: none;
  transition: top var(--motion-hover) ease;
}

.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============ layer: announcement + header ============ */
.announcement {
  background: var(--ink);
  color: #FFFFFF;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 16px;
}

.announcement-desktop { display: inline; }
.announcement-compact { display: none; }

.hero-copy-desktop { display: inline; }
.hero-copy-tablet,
.hero-copy-mobile { display: none; }

.collections-title-desktop { display: inline; }
.collections-title-compact { display: none; }

.fit-title-desktop { display: inline; }
.fit-title-mobile { display: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid transparent;
  transition: border-color var(--motion-hover) ease, box-shadow var(--motion-hover) ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 12px rgba(17, 24, 32, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  min-height: 96px;
}

.menu-trigger {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.brand {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
}

.main-nav a {
  display: inline-block;
  padding: 12px 0;
  min-height: 44px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--ink);
  transition: color var(--motion-hover) ease;
}

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

.main-nav .nav-sale { color: var(--red); }
.main-nav .nav-green { color: #216E52; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search {
  display: flex;
  align-items: center;
  background: var(--paper);
  border-radius: var(--radius-pill);
  padding: 4px 6px 4px 16px;
  width: 240px;
}

.search input[type="search"] {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  color: var(--ink);
  padding: 10px 0;
}

.search input[type="search"]::placeholder { color: var(--muted); }

.search button[type="submit"] {
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  padding: 10px 12px;
  min-height: 44px;
}

.search button[type="submit"]:hover { color: var(--denim-600); }

.search-msg { display: none; }

.account {
  display: inline-block;
  padding: 12px 0;
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
}

.bag {
  position: relative;
  display: inline-block;
  padding: 12px 0;
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
}

.bag-count {
  display: inline-block;
  min-width: 22px;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  background: var(--red);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.bag-msg {
  display: none;
  margin: 8px var(--gutter) 12px;
  padding: 10px 16px;
  background: var(--sky-100);
  color: var(--ink);
  font-size: 14px;
  border-radius: var(--radius-card);
}

.bag-msg.show { display: block; }

/* mobile menu panel */
.mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding: 8px var(--gutter) 16px;
  background: #FFFFFF;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  display: block;
  padding: 14px 0;
  min-height: 44px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--paper);
}

.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .nav-sale { color: var(--red); }
.mobile-menu .nav-green { color: #216E52; }

/* ============ layer: hero ============ */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 720;
  overflow: hidden;
  background: var(--hero-field);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 620px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 44px 72px;
  background: linear-gradient(90deg, var(--hero-field) 0%, var(--hero-field) 62%, rgba(7, 23, 37, 0.55) 82%, rgba(7, 23, 37, 0) 100%);
}

.hero-eyebrow {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--yellow);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 68px;
  line-height: 76px;
  color: #FFFFFF;
}

.hero-copy {
  max-width: 420px;
  font-size: 18px;
  line-height: 1.6;
  color: #FFFFFF;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-scroll {
  position: absolute;
  right: 56px;
  bottom: 36px;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  padding: 12px 0;
}

.hero-scroll:hover { color: var(--yellow); }

/* ============ layer: buttons ============ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  transition: background-color var(--motion-hover) ease, color var(--motion-hover) ease, transform var(--motion-hover) ease;
}

.btn:active { transform: translateY(2px); }

.btn-light {
  background: #FFFFFF;
  color: var(--ink);
}

.btn-light:hover { background: rgba(255, 255, 255, 0.92); }

.btn-outline-light {
  background: transparent;
  color: #FFFFFF;
  box-shadow: inset 0 0 0 2px #FFFFFF;
}

.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); }

.btn-dark {
  background: var(--ink);
  color: #FFFFFF;
}

.btn-dark:hover { background: #26313D; }

.btn-red {
  background: var(--red);
  color: #FFFFFF;
}

.btn-red:hover { background: #A81E31; }

/* ============ layer: promos ============ */
.promos {
  max-width: 1440px;
  margin: 0 auto;
  padding: 44px var(--gutter);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.promo {
  border-radius: var(--radius-card);
  padding: 20px 24px;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform var(--motion-hover) ease, box-shadow var(--motion-hover) ease;
}

.promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(17, 24, 32, 0.12);
}

.promo-yellow { background: var(--yellow); color: var(--ink); }
.promo-green { background: var(--promo-green); color: var(--ink); }
.promo-sky { background: var(--sky-100); color: var(--ink); }
.promo-red { background: var(--promo-pale-red); color: var(--ink); }

.promo-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.promo-title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
}

.promo-copy {
  font-size: 14px;
  color: var(--ink);
}

.promo-link {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
}

.promo-link:hover { border-bottom-color: var(--denim-600); color: var(--denim-900); }

/* ============ layer: collections ============ */
.collections {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter) 56px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--denim-900);
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.15;
  margin-top: 8px;
}

.section-copy {
  margin-top: 8px;
  max-width: 560px;
  font-size: 16px;
  color: var(--muted);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.collection {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--denim-900);
  aspect-ratio: 644 / 560;
}

.collection img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.collection-field {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 28px;
  background: var(--collection-field);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.collection-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--yellow);
}

.collection-title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
  color: #FFFFFF;
}

.collection-items {
  font-size: 14px;
  color: #D7E3EC;
}

.collection-cta {
  margin-top: 10px;
  align-self: flex-start;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #FFFFFF;
  text-decoration: none;
  border-bottom: 2px solid #FFFFFF;
}

.collection-cta:hover { color: var(--yellow); border-bottom-color: var(--yellow); }

/* ============ layer: fit guide ============ */
.fitguide {
  background: var(--paper);
  padding: 56px var(--gutter);
}

.fitguide-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.fit-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.fit-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 260px;
  justify-content: flex-end;
}

.fit-silhouette {
  width: 44px;
  height: 150px;
  margin-top: auto;
}

.fit-card { justify-content: center; }

.fit-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.fit-cta { margin-top: 36px; }

/* ============ layer: products ============ */
.products {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px var(--gutter);
}

.products-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.section-link {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--denim-900);
  padding: 10px 0;
}

.section-link:hover { color: var(--denim-600); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--sky-100);
  aspect-ratio: 800 / 1145;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--motion-hover) ease;
}

@media (prefers-reduced-motion: no-preference) {
  .product-card:hover .product-media img { transform: scale(1.03); }
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--ink);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--radius-card);
}

.product-fit {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1px;
}

.product-name {
  font-size: 16px;
  font-weight: 700;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 2px;
}

.product-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--red);
}

.fav {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  transition: color var(--motion-hover) ease, border-color var(--motion-hover) ease;
}

.fav:hover { color: var(--red); border-color: var(--red); }

.fav[aria-pressed="true"] {
  color: var(--red);
  border-color: var(--red);
  background: var(--promo-pale-red);
}

/* ============ layer: membership ============ */
.membership {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter) 72px;
}

.membership-copy {
  background: var(--yellow);
  border-radius: var(--radius-card);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.membership-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 240px;
}

.membership-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--ink);
}

.membership-title {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.15;
  color: var(--ink);
  max-width: 720px;
}

/* ============ layer: footer ============ */
.site-footer {
  background: var(--dark);
  color: #FFFFFF;
  padding: 56px var(--gutter) 28px;
}

.footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 56px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
}

.footer-news-title {
  font-size: 20px;
  font-weight: 800;
  margin-top: 20px;
}

.newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.newsletter input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  min-height: 44px;
  border: 1px solid #3A4754;
  border-radius: var(--radius-card);
  background: #FFFFFF;
  color: var(--ink);
  font-size: 15px;
}

.newsletter-msg {
  margin-top: 10px;
  font-size: 14px;
  min-height: 1.2em;
  color: var(--yellow);
}

.newsletter-msg.error { color: #F2A9B3; }

.consent {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-basis: 100%;
  margin-top: 8px;
  font-size: 14px;
  color: #C9D4DD;
}

.consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--denim-600);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 48px;
  align-content: flex-start;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #C9D4DD;
  margin-bottom: 10px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  padding: 6px 0;
  font-size: 15px;
  text-decoration: none;
  color: #FFFFFF;
}

.footer-col a:hover { color: var(--yellow); text-decoration: underline; }

.footer-bottom {
  max-width: 1440px;
  margin: 44px auto 0;
  padding-top: 24px;
  border-top: 1px solid #3A4754;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.copyright { font-size: 13px; color: #C9D4DD; }

.social {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social a {
  display: inline-block;
  padding: 10px 12px;
  min-height: 44px;
  font-size: 13px;
  text-decoration: none;
  color: #FFFFFF;
}

.social a:hover { color: var(--yellow); }

/* ============ layer: responsive — tablet ============ */
@media (max-width: 1023px) {
  :root { --gutter: 28px; }

  /* compact header: menu trigger + button-only search (tablet master) */
  .menu-trigger { display: inline-flex; }

  .main-nav { display: none; }

  .header-actions { gap: 12px; margin-left: auto; }

  .search {
    width: auto;
    background: transparent;
    padding: 0;
    position: relative;
  }

  .search input[type="search"] { display: none; }

  .search.open input[type="search"] {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    z-index: 60;
    width: 100%;
    max-width: 320px;
    margin-left: calc(-1 * (100% - 44px) / 2);
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 4px 12px;
    box-shadow: 0 8px 20px rgba(17, 24, 32, 0.15);
  }

  .search-msg {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(100% + 4px);
    background: var(--sky-100);
    color: var(--ink);
    font-size: 13px;
    padding: 8px 12px;
    border-radius: var(--radius-card);
    z-index: 60;
  }

  .search-msg.show { display: block; }

  .announcement-desktop { display: none; }
  .announcement-compact { display: inline; }

  .hero-copy-desktop { display: none; }
  .hero-copy-tablet { display: inline; }

  .collections-title-desktop { display: none; }
  .collections-title-compact { display: inline; }

  .fit-title-desktop { display: inline; }

  .hero { aspect-ratio: 768 / 560; }

  .hero-content {
    width: 100%;
    background: linear-gradient(180deg, rgba(7, 23, 37, 0) 0%, rgba(7, 23, 37, 0) 45%, var(--hero-field) 100%);
    justify-content: flex-end;
    padding: 36px 28px;
  }

  .hero h1 { font-size: 48px; line-height: 54px; }

  .hero-scroll { right: 28px; bottom: 20px; }

  .promo-grid { grid-template-columns: repeat(2, 1fr); }

  .collection-grid { grid-template-columns: 1fr; }

  .collection { aspect-ratio: 768 / 620; }

  .fit-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }

  .fit-card { min-height: 220px; }

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

  .section-title { font-size: 34px; }

  .header-inner { gap: 12px; }
}

/* ============ layer: responsive — mobile ============ */
@media (max-width: 767px) {
  :root { --gutter: 16px; }

  body { font-size: 15px; }

  .announcement { font-size: 10px; letter-spacing: 1px; }

  .hero-copy-desktop,
  .hero-copy-tablet { display: none; }
  .hero-copy-mobile { display: inline; }

  .fit-title-desktop { display: none; }
  .fit-title-mobile { display: inline; }

  .header-inner {
    min-height: 72px;
    gap: 8px;
  }

  .menu-trigger { display: inline-flex; }

  .brand { font-size: 23px; }

  .main-nav { display: none; }

  .header-actions { gap: 8px; margin-left: auto; }

  .search {
    width: auto;
    background: transparent;
    padding: 0;
    position: relative;
  }

  .search input[type="search"] { display: none; }

  .search.open input[type="search"] {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    z-index: 60;
    width: 100%;
    max-width: 320px;
    margin-left: calc(-1 * (100% - 44px) / 2);
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 4px 12px;
    box-shadow: 0 8px 20px rgba(17, 24, 32, 0.15);
  }

  .search-msg {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(100% + 4px);
    background: var(--sky-100);
    color: var(--ink);
    font-size: 13px;
    padding: 8px 12px;
    border-radius: var(--radius-card);
    z-index: 60;
  }

  .search-msg.show { display: block; }

  .account { display: none; }

  .bag { font-size: 13px; padding-right: 4px; }

  .hero { aspect-ratio: 390 / 650; }

  .hero-content {
    width: 100%;
    justify-content: flex-end;
    padding: 28px 20px;
    background: linear-gradient(180deg, rgba(7, 23, 37, 0) 0%, rgba(7, 23, 37, 0) 40%, var(--hero-field) 100%);
  }

  .hero h1 { font-size: 38px; line-height: 44px; }

  .hero-copy { font-size: 16px; }

  .hero-actions { flex-direction: column; align-items: stretch; }

  .hero-scroll { display: none; }

  .promos { padding-top: 28px; padding-bottom: 36px; }

  .promo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .promo { min-height: 150px; padding: 16px; }

  .promo-title { font-size: 22px; }

  .collections { padding-bottom: 44px; }

  .section-title { font-size: 28px; }

  .collection-grid { gap: 16px; margin-top: 24px; }

  .collection { aspect-ratio: 390 / 480; }

  .collection-field { padding: 16px 20px; }

  .collection-title { font-size: 20px; }

  .fitguide { padding: 40px 16px; }

  .fit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .fit-card { min-height: 200px; padding: 16px 8px; }

  .fit-silhouette { height: 120px; width: 36px; }

  .fit-grid li:last-child { grid-column: 1 / -1; }

  .fit-cta { margin-top: 28px; }

  .products { padding: 40px 16px; }

  .product-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 24px; }

  .product-media { aspect-ratio: 800 / 1145; max-height: none; }

  .membership { padding-bottom: 52px; }

  .membership-copy { padding: 28px 24px; }

  .membership-title { font-size: 26px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-links { gap: 28px 40px; }
}
