:root {
  color-scheme: light;
  --ink: #19151b;
  --muted: #6d6470;
  --line: #e6dfe5;
  --paper: #fbf8fa;
  --white: #ffffff;
  --rose: #b51646;
  --rose-dark: #7f1234;
  --gold: #c78a2d;
  --plum: #332233;
  --mint: #d9efe6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(25, 21, 27, 0.72), rgba(25, 21, 27, 0));
}

.solid-header {
  position: sticky;
  background: var(--plum);
  box-shadow: 0 10px 34px rgba(31, 18, 31, 0.16);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

nav {
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--rose);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(20px, 4vw, 64px) 70px;
  color: var(--white);
}

.page-main {
  background: var(--paper);
}

.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.compact-hero {
  min-height: 58vh;
  padding: 90px clamp(20px, 4vw, 64px) 70px;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 12, 18, 0.92) 0%, rgba(44, 24, 37, 0.72) 42%, rgba(44, 24, 37, 0.14) 100%),
    linear-gradient(0deg, rgba(21, 12, 18, 0.5), rgba(21, 12, 18, 0.05));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(740px, 100%);
}

.sale-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: #ffd28a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
span {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11.5ch;
  margin: 0;
  font-size: clamp(44px, 8vw, 90px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
}

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

.primary-button,
.secondary-button,
.stock-panel a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 800;
}

.primary-button {
  background: var(--rose);
  color: var(--white);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.ticker-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.ticker-band span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: var(--white);
  color: var(--rose-dark);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.collection-band,
.lookbook-band,
.brand-band,
.cod-band {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 4vw, 64px);
}

.section-heading,
.lookbook-band,
.cod-band {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 6px;
}

.section-heading .eyebrow,
.lookbook-copy .eyebrow,
.cod-panel .eyebrow {
  color: var(--rose);
}

h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.product-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px auto 0;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(70, 35, 54, 0.08);
}

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

.product-info {
  padding: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--mint);
  color: #155642;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

h3 {
  margin: 16px 0 8px;
  font-size: 22px;
  letter-spacing: 0;
}

.product-info p,
.lookbook-copy p,
.cod-panel p,
.stock-panel p,
footer p {
  color: var(--muted);
  line-height: 1.66;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 18px;
}

.price-row strong {
  color: var(--rose-dark);
  font-size: 27px;
}

.price-row span {
  color: var(--muted);
  text-decoration: line-through;
}

.lookbook-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.lookbook-copy p {
  max-width: 570px;
  margin: 20px 0 0;
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--rose-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.lookbook-images {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
}

.lookbook-images img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.lookbook-images img:first-child {
  margin-top: 58px;
  height: 430px;
}

.brand-band {
  background: var(--plum);
  color: var(--white);
}

.home-brands {
  padding-top: clamp(54px, 8vw, 88px);
}

.brand-band .section-heading .eyebrow {
  color: #ffd28a;
}

.brand-band h2 {
  max-width: 860px;
}

.brand-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px auto 0;
}

.brand-grid span {
  min-height: 74px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.brand-grid-large {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.brand-note {
  width: min(1180px, 100%);
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  font-size: 14px;
}

.page-brand-band {
  padding-top: clamp(54px, 8vw, 96px);
}

.cod-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.page-cod-band {
  border-bottom: 1px solid var(--line);
}

.cod-panel p {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: 17px;
}

.stock-panel {
  min-height: 270px;
  display: grid;
  align-content: center;
  gap: 14px;
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(70, 35, 54, 0.08);
}

.stock-panel span {
  color: var(--rose);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.stock-panel strong {
  color: var(--plum);
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.08;
}

.stock-panel p {
  margin: 0;
}

.stock-panel a {
  width: fit-content;
  background: var(--rose);
  color: var(--white);
}

.product-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px auto 0;
}

.feature-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(70, 35, 54, 0.07);
}

.feature-grid h3 {
  margin-top: 0;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.66;
}

.contact-band {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 4vw, 64px);
}

.contact-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.66;
}

.contact-copy .eyebrow {
  color: var(--rose);
}

.contact-panel {
  min-height: 250px;
  display: grid;
  align-content: center;
  gap: 16px;
  border-radius: 8px;
  padding: 28px;
  background: var(--plum);
  color: var(--white);
}

.contact-panel span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-panel strong {
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.18;
}

.contact-panel a {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 18px;
  background: var(--rose);
  color: var(--white);
  font-weight: 800;
}

footer {
  padding: 26px clamp(20px, 4vw, 64px) 36px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

footer p {
  width: min(1180px, 100%);
  margin: 0 auto;
  font-size: 13px;
}

@media (max-width: 880px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .solid-header {
    position: sticky;
    background: var(--plum);
  }

  nav {
    gap: 10px;
    font-size: 13px;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  h1 {
    max-width: 10.5ch;
  }

  .ticker-band,
  .product-grid,
  .brand-grid,
  .brand-grid-large,
  .lookbook-band,
  .cod-band,
  .feature-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .ticker-band span {
    min-height: 52px;
  }

  .lookbook-images img,
  .lookbook-images img:first-child {
    height: auto;
    aspect-ratio: 4 / 5;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 14px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 9px 11px;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-proof span {
    width: 100%;
  }

  .lookbook-images {
    grid-template-columns: 1fr;
  }
}
