:root {
  --ink: #161616;
  --muted: #66645e;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #dedbd3;
  --accent: #b12f2f;
  --accent-dark: #7e2020;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.93);
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  letter-spacing: 0;
}

.brand img {
  width: 54px;
  height: auto;
}

.brand strong {
  display: block;
  font-family: Cormorant, Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #2d2c29;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
  white-space: nowrap;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--accent);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(34px, 6vw, 76px) clamp(18px, 5vw, 72px);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.8rem, 6.8vw, 6.8rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5.5rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.lead {
  margin: 24px 0 0;
  max-width: 590px;
  color: #3d3b37;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.lead + .statement {
  margin-top: 34px;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-size: 0.79rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.hero-media {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 14px;
  align-items: end;
}

.hero-media img,
.feature-image,
.collection-card img,
.lookbook-card img,
.split img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #e8e4db;
}

.hero-media img:first-child {
  aspect-ratio: auto;
}

.hero-media img:last-child {
  margin-bottom: 56px;
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section.alt {
  background: #efede7;
}

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

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.collection-grid,
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.collection-card,
.lookbook-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.collection-card img {
  aspect-ratio: auto;
}

.collection-card div,
.lookbook-card div {
  padding: 18px;
}

.collection-card p,
.lookbook-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.lookbook-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lookbook-card img {
  aspect-ratio: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.split img {
  aspect-ratio: auto;
}

.statement {
  max-width: 780px;
}

.statement p {
  color: #363430;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.page-hero {
  padding-top: clamp(72px, 11vw, 132px);
  padding-bottom: clamp(34px, 6vw, 72px);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4d4a44;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  background: #171714;
  color: #f4f1e9;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.search-wrap {
  min-height: 54vh;
  padding: clamp(96px, 12vw, 150px) clamp(18px, 5vw, 72px) 64px;
}

.local-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  width: min(760px, 100%);
  margin-top: 30px;
}

.local-search input {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

.local-search input:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(177, 47, 47, 0.14);
}

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

.search-meta {
  min-height: 28px;
  margin: 22px 0 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.search-results {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.search-result {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.search-result:hover {
  border-color: rgba(177, 47, 47, 0.5);
}

.search-result h3 {
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.search-result p {
  margin: 8px 0 0;
  color: var(--muted);
}

.search-result mark {
  background: rgba(177, 47, 47, 0.16);
  color: inherit;
  padding: 0 2px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px 14px;
    overflow: visible;
    padding-bottom: 0;
    line-height: 1.2;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-media img:last-child {
    margin-bottom: 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .collection-grid,
  .lookbook-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 46px;
  }

  .nav {
    gap: 8px 12px;
    font-size: 0.72rem;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

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

  .local-search {
    grid-template-columns: 1fr;
  }
}
