:root {
  --bg: #efe9df;
  --fg: #211f1d;
  --muted: #8b857c;
  --line: #ddd6c8;
  --accent: #2f3a5a;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scrollbar-gutter: stable; }

body {
  margin: 0;
  font: 14px/1.6 var(--font-sans);
  color: var(--fg);
  background: var(--bg);
}

.site-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 2rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg);
}

.site-header nav {
  display: flex;
  gap: 1.5rem;
}

.site-header nav a {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}

.site-header nav a:hover { color: var(--accent); }

main {
  width: 100%;
  padding-top: 2.25rem;
  padding-bottom: 4rem;
}

main > h1, .intro, .capsule, .page { padding-inline: 2rem; }

/* — Landing hero + tag strip — */

.hero {
  position: relative;
  height: 72vh;
  min-height: 480px;
  max-height: 820px;
  overflow: hidden;
  margin: -2.25rem 0 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .4rem;
  padding: 4rem 3rem;
  background: linear-gradient(transparent 45%, rgba(21, 26, 38, .6));
  color: #fff;
}

.hero-overlay h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
}

.hero-overlay .content {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .92);
  line-height: 1.7;
  max-width: 34rem;
}

.hero-overlay .content a { color: #fff; }

.tag-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--line);
}

.chip {
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .9rem;
  background: rgba(255, 255, 255, .5);
}

.chip:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.chip .count {
  font-size: .6rem;
  color: var(--muted);
  margin-left: .3rem;
}

@media (max-width: 720px) {
  .hero { height: 60vh; min-height: 380px; }
  .hero-overlay { padding: 2.5rem 1.5rem; }
}

.intro { margin-bottom: 2rem; }
.intro h1 {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 .75rem;
}
.intro p { max-width: 36rem; color: var(--muted); margin: 0; }
.intro a { color: var(--accent); }

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

.products { gap: 2rem 1.5rem; }

@media (max-width: 720px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}

.card {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--fg);
}

.card-media { display: block; }

.product .thumb {
  display: block;
  overflow: hidden;
  background: #fff;
}

.card img, .product img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .4s ease;
}

.card:hover img, .product:hover img { transform: scale(1.03); }

.product img { object-fit: contain; }

.card .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem 1rem 1.6rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, .7));
  color: #fff;
  pointer-events: none;
}

.card .caption h2 a {
  color: #fff;
  text-decoration: none;
  pointer-events: auto;
}

.product .caption { margin-top: .6rem; }

.card h2, .card h3, .product h3 {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0;
}

.card p, .product p {
  margin: .2rem 0 0;
  font-size: .72rem;
}

.card p { color: rgba(255, 255, 255, .85); }
.product p { color: var(--muted); }

.tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  padding: 0;
  margin: .45rem 0 0;
}

.tags li { margin: 0; }

.tags a {
  font-size: .65rem;
  letter-spacing: .06em;
  text-transform: lowercase;
  color: var(--muted);
  text-decoration: none;
}

.card .tags {
  position: absolute;
  left: 1rem;
  bottom: .4rem;
  margin: 0;
}
.card .tags a { color: rgba(255, 255, 255, .8); }
.card .tags a:hover { color: #fff; }

.tags a:hover { color: var(--accent); text-decoration: underline; }

h1 { font-size: .8rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }

.capsule { max-width: 920px; }
.capsule .cover {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  margin: 1rem 0;
}
.capsule .content { max-width: 36rem; }
.capsule .content h2, .page .content h2 { text-transform: none; font-size: 1rem; letter-spacing: 0; }
.capsule h2.section, .page h1 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.capsule h2.section { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; }

.products { margin-top: 1rem; }

.product .caption { text-align: left; }

.btn {
  display: inline-block;
  margin-top: .55rem;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg);
  border-bottom: 1px solid var(--fg);
  text-decoration: none;
  padding-bottom: 1px;
}
.btn:hover { color: var(--muted); border-color: var(--muted); }

.site-footer {
  width: 100%;
  padding: 1.5rem 2rem 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .06em;
}

/* — Capsule product page (editorial) — */

.capsule-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.5rem 2rem 4rem;
}

.capsule-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.hero-media { overflow: hidden; }

.gallery {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 0 0 64px;
}

.gallery-thumb {
  display: block;
  width: 64px;
  padding: 0;
  border: 1px solid var(--line);
  background: none;
  cursor: pointer;
  opacity: .7;
  transition: opacity .25s ease, border-color .25s ease;
}

.gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 0.905;
  object-fit: contain;
  background: #fff;
}

.gallery-thumb:hover { opacity: 1; }

.gallery-thumb.active {
  opacity: 1;
  border-color: var(--accent);
}

.gallery-stage { flex: 1 1 auto; min-width: 0; background: #fff; }

.gallery-main {
  display: block;
  width: 100%;
  aspect-ratio: 0.905;
  object-fit: contain;
}

@media (max-width: 720px) {
  .gallery { flex-direction: column-reverse; }
  .gallery-thumbs { flex-direction: row; flex-basis: auto; }
  .gallery-thumb { width: 56px; }
}

.hero-img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.25rem;
  padding: 0;
  margin: 0 0 1.75rem;
}

.hero-tags a {
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.hero-tags a:hover { color: var(--accent); border-color: var(--accent); }

.capsule-hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 1.5rem;
}

.capsule-hero .content {
  font-size: .95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  max-width: 30rem;
}

.capsule-hero .content p { margin: 0 0 1rem; }

.pieces { margin-top: .5rem; }

.section-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 2.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--accent);
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 1.75rem;
}

.product { display: block; color: var(--fg); text-decoration: none; }

.product .thumb {
  display: block;
  overflow: hidden;
  background: #fff;
}

.product img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  transition: transform .5s ease;
}

.product:hover img { transform: scale(1.04); }

.product .caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: .85rem;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  letter-spacing: 0;
  text-transform: none;
}

.product-shop {
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.product-shop .arrow {
  display: inline-block;
  transition: transform .3s ease;
}

.product:hover .product-shop { color: var(--accent); }
.product:hover .arrow { transform: translateX(4px); }

@media (max-width: 720px) {
  .capsule-hero { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
  .products { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .product .caption { flex-direction: column; align-items: flex-start; gap: .15rem; }
}