@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --linen: #f4eee4;
  --paper: #fbf7f0;
  --fog: #ebe4d6;
  --ink: #1f1a14;
  --ink-soft: #4a4338;
  --sage: #6a7a52;
  --sage-deep: #3f4c32;
  --clay: #c9a07a;
  --blush: #e6d3c0;
  --rule: rgba(31, 26, 20, 0.12);
  --shadow: 0 30px 70px rgba(31, 26, 20, 0.18);
  --serif: "Cormorant Garamond", "Palatino Linotype", Palatino, serif;
  --sans: "Outfit", "Avenir Next", system-ui, sans-serif;
  --max: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --header-h: 92px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }

.wrap {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

.kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}

p { margin: 0 0 1rem; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.45;
  color: var(--ink);
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--rule);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

body.has-hero .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

body.has-hero .site-header.is-scrolled {
  background: rgba(251, 247, 240, 0.94);
  border-bottom-color: var(--rule);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(31, 26, 20, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 92px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.cart-btn {
  position: relative;
  background: transparent;
  border: 1px solid var(--rule);
  padding: 0.7rem 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.cart-btn:hover { border-color: var(--ink); }
.cart-btn [data-cart-count] {
  display: inline-flex;
  min-width: 1.2rem;
  margin-left: 0.35rem;
  justify-content: center;
  color: var(--sage-deep);
  font-variant-numeric: tabular-nums;
}
.cart-btn [data-cart-count][hidden] { display: none; }

.logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo__mark {
  height: 64px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.logo__mark--light {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex: 1;
}
.nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}
.nav a:hover,
.nav a.is-active { color: var(--ink); }
.nav a.is-active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

/* Light header over full-bleed heroes */
body.has-hero:not(.header-solid) .site-header:not(.is-scrolled) .nav a {
  color: rgba(251, 247, 240, 0.82);
}
body.has-hero:not(.header-solid) .site-header:not(.is-scrolled) .nav a:hover,
body.has-hero:not(.header-solid) .site-header:not(.is-scrolled) .nav a.is-active {
  color: var(--paper);
}
body.has-hero:not(.header-solid) .site-header:not(.is-scrolled) .logo__mark--dark {
  opacity: 0;
}
body.has-hero:not(.header-solid) .site-header:not(.is-scrolled) .logo__mark--light {
  opacity: 1;
}
/* Keep dark mark when the mobile drawer is open over paper */
body.has-hero:not(.header-solid) .site-header:not(.is-scrolled):has(.nav.is-open) .logo__mark--dark {
  opacity: 1;
}
body.has-hero:not(.header-solid) .site-header:not(.is-scrolled):has(.nav.is-open) .logo__mark--light {
  opacity: 0;
}
body.has-hero:not(.header-solid) .site-header:not(.is-scrolled) .cart-btn {
  border-color: rgba(251, 247, 240, 0.35);
  color: var(--paper);
}
body.has-hero:not(.header-solid) .site-header:not(.is-scrolled) .cart-btn:hover {
  border-color: var(--paper);
  background: rgba(251, 247, 240, 0.1);
}
body.has-hero:not(.header-solid) .site-header:not(.is-scrolled) .cart-btn [data-cart-count] {
  color: var(--blush);
}
body.has-hero:not(.header-solid) .site-header:not(.is-scrolled) .nav-toggle span {
  background: var(--paper);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: background 0.2s ease;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.35rem;
  background: var(--sage-deep);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
}
.btn:hover { background: var(--ink); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn--light {
  background: var(--paper);
  color: var(--ink);
}
.hero .btn--ghost {
  border-color: var(--paper);
  color: var(--paper);
}
.hero .btn--ghost:hover {
  background: var(--paper);
  color: var(--ink);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: grid;
  place-items: end stretch;
  color: var(--paper);
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__img {
    transform: scale(1.08);
    animation: hero-settle 1.8s cubic-bezier(0.16, 0.84, 0.28, 1) forwards;
  }
}
@keyframes hero-settle {
  to { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 16, 12, 0.42) 0%, rgba(20, 16, 12, 0.12) 38%, rgba(20, 16, 12, 0.55) 72%, rgba(20, 16, 12, 0.78) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 8vh, 5.5rem) 0 clamp(3.5rem, 9vh, 6rem);
  max-width: 42rem;
}
.hero__brand {
  display: block;
  height: clamp(56px, 9vw, 88px);
  width: auto;
  margin-bottom: 1.4rem;
  opacity: 0.98;
}
.shop-hero .hero__img {
  object-position: center 42%;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__content .kicker,
  .hero__content h1,
  .hero__content .lede,
  .hero__actions {
    opacity: 0;
    transform: translateY(1.1rem);
    animation: hero-copy 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
  }
  .hero__content .kicker { animation-delay: 0.12s; }
  .hero__content h1 { animation-delay: 0.22s; }
  .hero__content .lede { animation-delay: 0.36s; }
  .hero__actions { animation-delay: 0.48s; }
}
@keyframes hero-copy {
  to { opacity: 1; transform: none; }
}
.hero h1 {
  font-size: clamp(3.4rem, 8.5vw, 7.4rem);
  max-width: 11ch;
  color: var(--paper);
  margin: 0.2rem 0 1.1rem;
  text-shadow: 0 12px 40px rgba(12, 10, 8, 0.28);
}
.hero .lede {
  color: #f3eadc;
  max-width: 30rem;
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  margin-bottom: 0;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.85rem;
}
.hero .kicker {
  color: var(--blush);
  margin-bottom: 0.15rem;
}
.hero .btn--light:hover {
  background: var(--blush);
}
.shop-hero {
  min-height: min(88svh, 820px);
  padding: 0;
}
.shop-hero.hero { place-items: center stretch; }
.shop-hero--collection { min-height: min(62vh, 560px); }
.shop-hero--collection.hero { place-items: end stretch; }
.shop-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 9rem;
  z-index: 1;
  background: linear-gradient(180deg, transparent, var(--linen));
  pointer-events: none;
}
.shop-hero .hero__content {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  transform: translateY(-4vh);
}
.shop-hero--collection .hero__content {
  padding-top: 5rem;
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
  transform: none;
}
.shop-hero h1 {
  font-size: clamp(3.1rem, 7.5vw, 6.2rem);
  max-width: 12ch;
  margin-top: 0;
}
.shop-hero .kicker a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* ——— Split story ——— */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 640px;
}
.split__photo { position: relative; min-height: 420px; }
.split__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.split__copy {
  background: var(--fog);
  padding: clamp(2rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split__copy h2 { font-size: clamp(2.4rem, 5vw, 4.1rem); margin: 0.4rem 0 1.1rem; }

/* ——— Shop strip ——— */
.shop-strip {
  padding: 5rem 0;
}
.shop-strip__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.shop-strip__head h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: var(--paper);
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.tile:hover img { transform: scale(1.06); }
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(20,16,12,.72));
}
.tile__label {
  position: absolute;
  z-index: 1;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
}
.tile__label h3 { font-size: 2rem; }

/* ——— Journal ——— */
.journal { padding: 4.5rem 0 5.5rem; background: var(--linen); }
.journal h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin: 0.3rem 0 1.8rem; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card {
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.card img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.card__body { padding: 1.3rem 1.3rem 1.5rem; }
.card__body h3 { font-size: 1.7rem; margin: 0.35rem 0 0.6rem; }
.card time { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); }

/* ——— Quote band ——— */
.quote {
  padding: 5rem var(--pad);
  text-align: center;
  background: var(--sage-deep);
  color: var(--linen);
}
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.4;
  color: var(--linen);
  max-width: 38rem;
  margin: 0 auto 1rem;
}
.quote cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
}

/* ——— Newsletter ——— */
.signup {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.signup__copy, .signup__form {
  padding: clamp(2rem, 6vw, 4.5rem);
}
.signup__copy { background: var(--blush); }
.signup__form { background: var(--paper); }
.signup h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0.4rem 0 1rem; }
.form {
  display: grid;
  gap: 0.85rem;
}
.form label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 0.65rem 0;
  outline: none;
}
.form textarea { min-height: 8rem; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.95rem; color: var(--sage-deep); display: none; }
.form.is-sent .form-fields { display: none; }
.form.is-sent .form-note { display: block; }

/* ——— Page hero ——— */
.page-hero {
  padding: 4.5rem 0 2.5rem;
}
.page-hero h1 { font-size: clamp(3rem, 7vw, 5.6rem); max-width: 16ch; }
.page-hero .lede { max-width: 36rem; margin-top: 1rem; }

.prose {
  width: min(42rem, calc(100% - var(--pad) * 2));
  margin: 0 auto 4rem;
}
.prose p { font-size: 1.08rem; margin-bottom: 1.15rem; }
.prose h2 { font-size: 2.1rem; margin: 2.2rem 0 0.8rem; }
blockquote.verse {
  margin: 2rem 0;
  padding: 1.5rem 0 1.5rem 1.4rem;
  border-left: 2px solid var(--sage);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 2rem 0 2.5rem;
}
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.article-hero {
  margin-bottom: 2.5rem;
}
.article-hero img {
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  margin-bottom: 0;
}
.about-grid img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}
.about-grid__copy {
  padding: clamp(2rem, 6vw, 4.5rem);
  background: var(--fog);
}

.related {
  padding: 3rem 0 5rem;
  background: var(--linen);
}
.related h2 { margin-bottom: 1.4rem; font-size: 2.2rem; }

/* ——— Footer ——— */
.site-footer {
  background: var(--ink);
  color: var(--linen);
  padding: 3.5rem 0 2rem;
}
.site-footer a { color: var(--blush); }
.site-footer a:hover { color: var(--paper); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(251, 247, 240, 0.12);
}
.site-footer .kicker { color: var(--clay); margin-bottom: 0.7rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0.35rem 0; }
.site-footer .wordmark { height: 72px; width: auto; }
.legal {
  padding-top: 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(244, 238, 228, 0.55);
}

/* ——— Contact ——— */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  margin-bottom: 0;
}
.contact-layout__aside {
  background: var(--sage-deep);
  color: var(--linen);
  padding: clamp(2rem, 5vw, 4rem);
}
.contact-layout__aside p { color: var(--blush); }
.contact-layout__form {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--paper);
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem var(--pad) 1.6rem;
    border-bottom: 1px solid var(--rule);
    gap: 1rem;
    z-index: 41;
  }
  .nav.is-open { display: flex; }
  body.has-hero .nav.is-open {
    background: rgba(251, 247, 240, 0.97);
  }
  body.has-hero:not(.header-solid) .site-header:not(.is-scrolled) .nav.is-open a {
    color: var(--ink-soft);
  }
  body.has-hero:not(.header-solid) .site-header:not(.is-scrolled) .nav.is-open a:hover,
  body.has-hero:not(.header-solid) .site-header:not(.is-scrolled) .nav.is-open a.is-active {
    color: var(--ink);
  }
  .split,
  .signup,
  .about-grid,
  .contact-layout,
  .tiles,
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-strip__head { flex-direction: column; align-items: start; }
  .hero { min-height: min(100svh, 760px); }
  .shop-hero { min-height: min(88svh, 680px); }
  .tile { min-height: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .shop-chips { top: var(--header-h); }
  body.has-hero .shop-chips { top: 0; }
}

@media (max-width: 560px) {
  :root { --header-h: 78px; }
  .footer-grid { grid-template-columns: 1fr; }
  .logo__mark { height: 52px; }
  .site-header__inner { min-height: 78px; }
  .hero__brand { height: 48px; margin-bottom: 1.1rem; }
  .shop-hero .hero__content {
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    transform: translateY(-2vh);
  }
  .shop-hero--collection .hero__content {
    padding-top: 4.5rem;
    transform: none;
  }
}

body.cart-open { overflow: hidden; }

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

/* ——— Shop ——— */
.trust-strip {
  background: var(--linen);
  border-bottom: 1px solid var(--rule);
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding: 0.95rem 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.trust-strip a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.shop-chips {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 0.75rem var(--pad);
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
  -webkit-overflow-scrolling: touch;
}
body.has-hero .shop-chips {
  top: 0;
}
.shop-chips a {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--rule);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.shop-chips a:hover,
.shop-chips a:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  outline: none;
}

.band { padding: 4rem 0 4.5rem; }
.band--paper { background: var(--paper); }
.band--linen { background: var(--linen); }
.band--fog { background: var(--fog); }
.section-head { margin-bottom: 1.8rem; }
.section-head h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  margin: 0.35rem 0 0.6rem;
  max-width: 16ch;
}
.section-head .lede { max-width: 34rem; margin: 0; }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 0.85rem;
}
.collection-card {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--fog);
}
.collection-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.collection-card:hover img { transform: scale(1.05); }
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(20, 16, 12, 0.58));
  transition: background 0.4s ease;
}
.collection-card:hover::after {
  background: linear-gradient(180deg, transparent 22%, rgba(20, 16, 12, 0.72));
}
.collection-card__label {
  position: absolute;
  z-index: 1;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.collection-card:hover .collection-card__label { transform: translateY(-4px); }
.collection-card__label .kicker {
  color: var(--blush);
  margin-bottom: 0.35rem;
  text-shadow: 0 1px 12px rgba(20, 16, 12, 0.45);
}
.collection-card__label h2 {
  font-size: 1.75rem;
  color: var(--paper);
  text-shadow: 0 1px 14px rgba(20, 16, 12, 0.4);
}
.collection-card:first-child .collection-card__label h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.1rem);
}
.collection-card__label p {
  color: var(--blush);
  margin: 0.3rem 0 0;
  font-size: 0.92rem;
}

.editorial-band {
  position: relative;
  min-height: min(58vh, 520px);
  display: grid;
  place-items: end stretch;
  color: var(--paper);
  overflow: hidden;
}
.editorial-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 16, 12, 0.62) 0%, rgba(20, 16, 12, 0.28) 55%, rgba(20, 16, 12, 0.12) 100%);
}
.editorial-band__copy {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 7vh, 4.5rem) 0;
  max-width: 34rem;
}
.editorial-band .kicker { color: var(--blush); }
.editorial-band h2 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  color: var(--paper);
  margin: 0.35rem 0 0.9rem;
}
.editorial-band .lede { color: #f3eadc; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(15rem, 44%), 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.6rem) clamp(0.75rem, 2vw, 1.15rem);
}
.product-grid--row {
  grid-template-columns: repeat(4, 1fr);
}
.product-card {
  display: flex;
  flex-direction: column;
  color: inherit;
}
.product-card:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
}
.product-card h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.2;
  margin: 0.75rem 0 0.3rem;
}
.product-card__img {
  position: relative;
  background: var(--fog);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(31, 26, 20, 0.06);
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.product-card__img img + img {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-card:hover .product-card__img img:first-child { transform: scale(1.03); }
.product-card:hover .product-card__img img + img {
  opacity: 1;
  transform: scale(1.03);
}
.product-card__price {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
  margin-top: auto;
}

.grid-break {
  position: relative;
  grid-column: span 2;
  min-height: 100%;
  overflow: hidden;
  color: var(--paper);
  aspect-ratio: auto;
}
.grid-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.grid-break:hover img { transform: scale(1.04); }
.grid-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(20, 16, 12, 0.7));
}
.grid-break__copy {
  position: absolute;
  z-index: 1;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.3rem;
}
.grid-break .kicker { color: var(--blush); }
.grid-break h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--paper);
  margin: 0.3rem 0 0;
}

.pdp {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: 3rem 0 4.5rem;
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}
.pdp__gallery img[data-pdp-main] {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--fog);
  box-shadow: inset 0 0 0 1px rgba(31, 26, 20, 0.06);
}
.pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.45rem;
  margin-top: 0.55rem;
}
.pdp__thumbs button {
  border: 1px solid transparent;
  padding: 0;
  background: var(--fog);
  cursor: pointer;
}
.pdp__thumbs button.is-active,
.pdp__thumbs button:hover { border-color: var(--ink); }
.pdp__thumbs img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.pdp__buy h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin: 0.35rem 0 0.8rem; }
.pdp__price {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}
.pdp .form { max-width: 28rem; }
.pdp .form-fields { display: grid; gap: 0.9rem; }
.pdp select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 0.65rem 0;
}
.qty-row { display: flex; align-items: end; gap: 1rem; }
.qty-row input { width: 4.5rem; }
.product-status { color: #8a3b2b; font-size: 0.95rem; }
.personalize {
  padding: 1rem 1.05rem 1.1rem;
  background: var(--linen);
  border: 1px solid var(--rule);
}
.personalize.is-required {
  border-color: rgba(90, 108, 90, 0.45);
  box-shadow: inset 3px 0 0 var(--sage-deep);
}
.personalize.is-optional {
  opacity: 0.92;
}
.personalize__kicker {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.personalize label {
  display: block;
  margin-bottom: 0.45rem;
}
.personalize label span {
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink-soft);
  font-size: 0.85em;
}
.personalize textarea {
  width: 100%;
  min-height: 6.5rem;
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 0.7rem 0.8rem;
  line-height: 1.45;
}
.personalize textarea:focus {
  outline: 2px solid rgba(90, 108, 90, 0.35);
  outline-offset: 1px;
}
.personalize__help {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.pdp__body {
  margin-top: 1.8rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.pdp__body p { margin-bottom: 0.8rem; }
.made-note {
  margin-top: 1.2rem;
  font-size: 0.92rem;
  color: var(--sage-deep);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ——— Cart drawer ——— */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 12, 0.45);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.cart-backdrop.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 51;
  width: min(26rem, 100%);
  height: 100%;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.3rem;
  border-bottom: 1px solid var(--rule);
}
.cart-drawer__head h2 { font-size: 1.8rem; }
.cart-drawer__close {
  background: none;
  border: 0;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.cart-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.3rem 1.5rem;
}
.cart-empty { color: var(--ink-soft); }
.cart-lines { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.cart-line {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.85rem;
}
.cart-line img { width: 5rem; height: 5rem; object-fit: cover; background: var(--fog); }
.cart-line__title { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); margin: 0 0 0.2rem; }
.cart-line__opts,
.cart-line__note {
  font-size: 0.85rem;
  margin: 0.15rem 0 0.4rem;
  color: var(--ink-soft);
  white-space: normal;
}
.cart-line__note span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 0.15rem;
}
.cart-line__row { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.cart-line__row input { width: 3.4rem; border: 0; border-bottom: 1px solid var(--ink); background: transparent; padding: 0.3rem 0; }
.cart-line__remove {
  background: none;
  border: 0;
  padding: 0;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  cursor: pointer;
}
.cart-drawer__footer {
  padding: 1.1rem 1.3rem 1.4rem;
  border-top: 1px solid var(--rule);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.9rem;
  font-family: var(--serif);
  font-size: 1.25rem;
}
.cart-drawer__footer .btn { width: 100%; justify-content: center; }
.cart-fine { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.7rem; }

@media (max-width: 900px) {
  .collection-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .collection-card:first-child { grid-column: 1 / -1; grid-row: span 1; min-height: 260px; }
  .product-grid--row { grid-template-columns: repeat(2, 1fr); }
  .pdp { grid-template-columns: 1fr; }
  .pdp__thumbs { grid-template-columns: repeat(4, 1fr); }
  .editorial-band::after {
    background: linear-gradient(180deg, transparent 20%, rgba(20, 16, 12, 0.7));
  }
  .shop-chips { top: var(--header-h); }
  body.has-hero .shop-chips { top: 0; }
}

@media (max-width: 700px) {
  .grid-break {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .shop-hero { min-height: min(100svh, 680px); }
  .product-card h3 { font-size: 1.05rem; }
}
