:root {
  --ink: #151515;
  --muted: #6f675f;
  --paper: #fbf7ef;
  --soft: #efe5d8;
  --line: rgba(21, 21, 21, 0.14);
  --rose: #b8797f;
  --sage: #8a9a84;
  --cream: #fffdf8;
  --shadow: 0 22px 70px rgba(48, 38, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.zoomable-image {
  cursor: zoom-in;
}

.zoomable-image:focus-visible {
  outline: 3px solid rgba(184, 121, 127, 0.55);
  outline-offset: 3px;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 239, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 2px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: #3e3832;
  font-size: 14px;
  font-weight: 600;
}

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

.hero-media {
  position: relative;
}

.hero-media > img {
  height: auto;
  max-height: min(72vh, 720px);
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.95;
}

h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(58px, 7.2vw, 102px);
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 6vw, 76px);
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.lead {
  max-width: 560px;
  color: #4f4740;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-cta {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(19px, 2.1vw, 25px);
  font-weight: 800;
  line-height: 1.25;
}

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

.button,
button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--ink);
  padding: 0 24px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
button {
  background: var(--ink);
  color: var(--cream);
}

.button.ghost {
  background: transparent;
}

.intro {
  padding: 56px clamp(18px, 5vw, 76px);
  background: var(--ink);
  color: var(--cream);
}

.intro p {
  max-width: 1120px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.06;
}

.collection,
.lookbook,
.atelier,
.order,
.author {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

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

.product-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 12px 12px 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-card.wide {
  grid-column: span 2;
}

.product-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  background: #f3eee7;
}

.product-card div {
  padding: 0 8px;
}

.product-kicker {
  margin-bottom: 8px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card p:not(.product-kicker),
.atelier > div > p,
.quality-table p,
.order p {
  color: var(--muted);
  line-height: 1.58;
}

.collector-note {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 30px;
  align-items: center;
  margin-top: 24px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--ink);
  color: var(--cream);
  border-radius: 8px;
}

.collector-note p {
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 18px;
  line-height: 1.55;
}

.collector-note .collector-title {
  margin-bottom: 14px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1;
}

.collector-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.collector-tags span {
  min-height: 56px;
  display: grid;
  align-content: center;
  gap: 3px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 8px;
  padding: 10px 12px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.collector-tags b {
  display: block;
  color: var(--cream);
  font-size: 16px;
  text-transform: none;
}

.lookbook {
  background: #f3eadf;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.85fr;
  grid-auto-rows: 285px;
  gap: 16px;
}

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

.lookbook-grid img:first-child {
  grid-row: span 2;
}

.lookbook-grid img:last-child {
  grid-column: span 2;
}

.atelier {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: var(--cream);
}

.atelier > div:first-child {
  max-width: 620px;
}

.atelier > div:first-child p {
  margin-top: 24px;
  font-size: 18px;
}

.quality-table {
  display: grid;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quality-table > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  align-items: start;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
}

.quality-table > div:first-child {
  border-top: 0;
}

.quality-table span {
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quality-table p {
  margin: 0;
}

.order {
  display: grid;
  grid-template-columns: 0.9fr minmax(320px, 520px);
  gap: clamp(28px, 7vw, 96px);
  background: var(--cream);
}

.order h2 {
  max-width: 720px;
}

.max-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(22px, 4vw, 36px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.max-card h3 {
  margin-bottom: 8px;
}

.max-card p {
  margin-bottom: 0;
}

.max-button {
  width: fit-content;
  margin-top: 6px;
}

.author {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--paper);
}

.author-photo img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.author-copy {
  max-width: 680px;
}

.author-copy h2 {
  margin-bottom: 24px;
}

.author-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(10, 10, 10, 0.86);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  min-height: 46px;
  padding: 0;
  border-color: rgba(255, 253, 248, 0.42);
  background: rgba(255, 253, 248, 0.12);
  color: var(--cream);
  font-size: 30px;
  line-height: 1;
}

body.lightbox-open {
  overflow: hidden;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 76px);
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .hero,
  .atelier,
  .order,
  .author {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-media > img {
    max-height: none;
  }

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

@media (max-width: 700px) {
  .topbar {
    align-items: flex-start;
    padding: 14px 16px;
  }

  nav {
    gap: 12px;
    font-size: 12px;
  }

  .brand span {
    font-size: 13px;
  }

  .brand small {
    font-size: 9px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 58px;
  }

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

  .collector-note {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .collector-tags {
    justify-content: flex-start;
  }

  .product-card.wide,
  .lookbook-grid img:first-child,
  .lookbook-grid img:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .lookbook-grid {
    grid-auto-rows: auto;
  }

  .lookbook-grid img {
    aspect-ratio: 4 / 5;
  }

  .quality-table > div {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }

  footer {
    display: grid;
  }
}
