:root {
  --ink: #1b1715;
  --muted: #6f625d;
  --paper: #fffaf6;
  --surface: #ffffff;
  --blush: #d84f65;
  --blush-dark: #aa3147;
  --olive: #4d5a3a;
  --gold: #c18c45;
  --line: #eadfd7;
  --shadow: 0 20px 55px rgba(48, 34, 27, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 246, 0.92);
  border-bottom: 1px solid rgba(234, 223, 215, 0.78);
  backdrop-filter: blur(18px);
}

.top-note {
  background: var(--ink);
  color: white;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  padding: 8px 20px;
  text-align: center;
}

.nav {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 72px;
  padding: 0 22px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: center;
}

.nav-links a,
.text-link,
.footer-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--blush-dark);
}

.nav-cta,
.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button.primary {
  background: var(--blush);
  box-shadow: 0 12px 26px rgba(216, 79, 101, 0.24);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: white;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button.primary:hover,
.nav-cta:hover {
  background: var(--blush-dark);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  display: none;
  font: inherit;
  font-size: 0;
  font-weight: 700;
  flex-direction: column;
  gap: 4px;
  justify-self: end;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  width: 12px;
}

.hero {
  align-items: end;
  display: grid;
  min-height: calc(100vh - 104px);
  overflow: hidden;
  position: relative;
}

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

.hero-media img {
  filter: saturate(0.98) contrast(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(19, 14, 12, 0.78) 0%, rgba(19, 14, 12, 0.42) 42%, rgba(19, 14, 12, 0.04) 100%),
    linear-gradient(0deg, rgba(19, 14, 12, 0.5), rgba(19, 14, 12, 0.02) 46%);
}

.hero-content {
  color: white;
  max-width: 690px;
  padding: 0 22px 12vh;
  position: relative;
  width: min(100%, calc(var(--max) + 44px));
  margin: 0 auto;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.collection-copy h2,
.fit-copy h2,
.newsletter h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3.6rem, 8vw, 7.2rem);
  overflow-wrap: anywhere;
}

.hero p:not(.eyebrow) {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 630px;
}

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

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip div {
  border-right: 1px solid var(--line);
  padding: 22px;
  text-align: center;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 4px;
}

.section,
.collection-band,
.fit-section,
.newsletter,
.footer {
  margin: 0 auto;
  max-width: var(--max);
  padding: 82px 22px;
}

.intro {
  align-items: end;
  display: grid;
  gap: 48px;
  grid-template-columns: 1.15fr 0.85fr;
}

.section h2,
.collection-copy h2,
.fit-copy h2,
.newsletter h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.intro > p,
.collection-copy p,
.section-heading > p,
.fit-copy li,
.newsletter p,
.policy-grid p,
.footer p {
  color: var(--muted);
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-heading > p {
  margin: 0;
  max-width: 360px;
}

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

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(48, 34, 27, 0.08);
  overflow: hidden;
}

.product-card img {
  aspect-ratio: 3 / 4;
  height: auto;
}

.product-info {
  padding: 16px;
}

.product-info span {
  color: var(--olive);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-info h3,
.policy-grid h3 {
  font-size: 1.08rem;
  margin: 6px 0;
}

.product-info p {
  color: var(--blush-dark);
  font-weight: 800;
  margin: 0;
}

.collection-band {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: 0.8fr 1.2fr;
}

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

.collection-card {
  aspect-ratio: 1 / 1.18;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.collection-card::after {
  background: linear-gradient(0deg, rgba(22, 17, 14, 0.7), rgba(22, 17, 14, 0.04) 54%);
  content: "";
  inset: 0;
  position: absolute;
}

.collection-card span {
  bottom: 18px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  left: 18px;
  position: absolute;
  right: 18px;
  z-index: 1;
}

.masonry {
  display: grid;
  gap: 14px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
}

.masonry img {
  aspect-ratio: 1 / 1.12;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(48, 34, 27, 0.08);
}

.masonry .tall {
  aspect-ratio: auto;
  grid-row: span 2;
}

.masonry .wide {
  aspect-ratio: auto;
  grid-column: span 2;
}

.fit-section {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: 1.05fr 0.95fr;
}

.fit-image {
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: min(680px, 70vw);
  min-height: 420px;
  overflow: hidden;
}

.fit-copy ul {
  margin: 24px 0;
  padding-left: 20px;
}

.fit-copy li + li {
  margin-top: 10px;
}

.reviews {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 28px;
}

.review-card,
.policy-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.review-card p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  margin: 0 0 18px;
}

.review-card span {
  color: var(--olive);
  font-weight: 800;
}

.newsletter {
  align-items: center;
  background: var(--ink);
  color: white;
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 1fr;
  max-width: none;
  padding-left: max(22px, calc((100vw - var(--max)) / 2 + 22px));
  padding-right: max(22px, calc((100vw - var(--max)) / 2 + 22px));
}

.newsletter p,
.signup-form small {
  color: rgba(255, 255, 255, 0.74);
}

.signup-form label {
  display: block;
  font-weight: 800;
  margin-bottom: 10px;
}

.signup-form div {
  display: flex;
  gap: 10px;
}

.signup-form input {
  background: white;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  flex: 1;
  font: inherit;
  min-height: 48px;
  min-width: 0;
  padding: 0 18px;
}

.signup-form small {
  display: block;
  margin-top: 10px;
}

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

.policy-grid p {
  font-size: 0.94rem;
  margin: 8px 0 0;
}

.footer {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  padding-bottom: 42px;
  padding-top: 42px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.disclaimer {
  grid-column: 1 / -1;
  margin: 0;
}

.cookie-consent {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto;
  left: 50%;
  max-width: min(940px, calc(100vw - 36px));
  padding: 18px;
  position: fixed;
  transform: translateX(-50%);
  width: 100%;
  z-index: 30;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent h2 {
  font-size: 1.05rem;
  margin: 0 0 4px;
}

.cookie-consent p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 42px;
  white-space: nowrap;
}

.cookie-decline {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}

@media (max-width: 760px) {
  .nav {
    grid-template-columns: auto auto;
  }

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

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.is-open {
    background: var(--paper);
    border-top: 1px solid var(--line);
    display: grid;
    gap: 0;
    grid-column: 1 / -1;
    justify-content: stretch;
    padding-bottom: 12px;
  }

  .nav-links.is-open a {
    padding: 12px 0;
  }

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

  .intro,
  .collection-band,
  .fit-section,
  .newsletter {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .top-note {
    font-size: 0.76rem;
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav {
    min-height: 64px;
    padding: 0 16px;
  }

  .brand {
    font-size: 1.36rem;
  }

  .hero {
    min-height: 740px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(19, 14, 12, 0.82) 0%, rgba(19, 14, 12, 0.38) 60%, rgba(19, 14, 12, 0.12) 100%);
  }

  .hero-content {
    padding: 0 18px 54px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .trust-strip,
  .product-grid,
  .collection-grid,
  .reviews,
  .policy-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .collection-band,
  .fit-section,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-heading,
  .signup-form div {
    align-items: stretch;
    flex-direction: column;
  }

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

  .masonry .wide {
    grid-column: auto;
  }

  .fit-image {
    height: 520px;
    min-height: 0;
  }

  .newsletter {
    padding: 64px 18px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cookie-consent {
    align-items: stretch;
    bottom: 12px;
    grid-template-columns: 1fr;
    max-width: calc(100vw - 24px);
    padding: 16px;
  }

  .cookie-actions {
    flex-direction: column-reverse;
  }
}
