:root {
  --bg: #f3f2ef;
  --surface: #ffffff;
  --ink: #1a1814;
  --muted: #6e6a63;
  --line: rgba(26, 24, 20, 0.12);
  --forest: #2c4034;
  --sand: #e8e2d6;
  --radius: 4px;
  --pad: clamp(25px, 2.4vw, 40px);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--ink {
  background: var(--ink);
  color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
}

.btn--ghost-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn--sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.78rem;
}

.btn--lg {
  padding: 1rem 1.5rem;
}

.btn--block {
  width: 100%;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}

.section-head {
  padding: 0 var(--pad);
  margin-bottom: 1.75rem;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-head p {
  margin-top: 0.55rem;
  max-width: 48ch;
  color: var(--muted);
}

.section-head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.link {
  font-weight: 650;
  white-space: nowrap;
  border-bottom: 1px solid currentColor;
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem var(--pad);
  color: #fff;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.is-solid,
.nav--solid {
  background: rgba(243, 242, 239, 0.92);
  backdrop-filter: blur(14px);
  color: var(--ink);
  border-bottom-color: var(--line);
}

.nav__brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.92;
}

.nav__links a.is-active,
.nav__links a:hover {
  opacity: 1;
}

.nav__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav__lang {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 700;
}

.nav__cart {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 0.85rem;
  font-weight: 650;
}

.nav__cart em {
  font-style: normal;
  min-width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 0.7rem;
  display: grid;
  place-items: center;
}

.nav--solid .nav__cart em,
.nav.is-solid .nav__cart em {
  background: var(--ink);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.nav__burger span {
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

.mobile {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-content: center;
  gap: 1.2rem;
  background: rgba(243, 242, 239, 0.98);
  font-family: var(--display);
  font-size: 2rem;
}

.mobile[hidden] {
  display: none;
}

/* Cart */
.cart {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(380px, 100%);
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(105%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  color: var(--ink);
}

.cart.is-open {
  transform: translateX(0);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(0, 0, 0, 0.4);
}

.cart-backdrop[hidden] {
  display: none;
}

.cart__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart__head h2 {
  font-family: var(--display);
  font-size: 1.6rem;
}

.cart__head button {
  font-size: 1.6rem;
}

.cart__body {
  flex: 1;
  overflow: auto;
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.cart__empty {
  color: var(--muted);
  padding: 2rem 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid var(--line);
}

.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.cart-item h4 {
  font-size: 0.9rem;
}

.cart-item p {
  font-size: 0.8rem;
  color: var(--muted);
}

.cart__foot {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.cart__total {
  display: flex;
  justify-content: space-between;
  font-weight: 650;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 24, 20, 0.2), rgba(26, 24, 20, 0.62));
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad) 5rem;
  max-width: 700px;
}

.hero__kicker {
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.hero__title .word {
  display: inline-block;
  margin-right: 0.28em;
}

.hero__sub {
  margin: 1.1rem 0 1.6rem;
  max-width: 40ch;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Featured */
.featured,
.catalog-preview,
.cats,
.related {
  padding: 4.5rem 0 3rem;
}

.featured__grid {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.feat {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.feat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.feat:hover img {
  transform: scale(1.05);
}

.feat > div {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(26, 24, 20, 0.75));
}

.feat span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.feat h3 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  margin: 0.15rem 0 0.35rem;
}

.feat em {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Concept */
.concept {
  margin: 1rem var(--pad) 2rem;
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  min-height: 480px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.concept__copy {
  padding: clamp(1.75rem, 3vw, 3rem);
  display: grid;
  align-content: center;
  gap: 0.9rem;
}

.concept__copy h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
}

.concept__copy p {
  color: var(--muted);
  max-width: 40ch;
}

.concept__media {
  overflow: hidden;
}

.concept__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}

.values {
  padding: 1rem 0 3rem;
}

.values__grid {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.values__grid article {
  padding: 1.75rem 1.4rem;
  min-height: 220px;
  background: var(--forest);
  color: #fff;
}

.values__grid h3 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.values__grid p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

/* Products */
.product-grid {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
}

.card.is-hidden {
  display: none;
}

.card__media {
  display: block;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background: #e6e3dc;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.card__body {
  padding: 1rem 1.1rem 1.2rem;
}

.card__body > p,
.card__meta {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card__body h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0.2rem 0 0.75rem;
}

.card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

/* Craft */
.craft {
  margin: 2rem var(--pad);
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.craft__media {
  overflow: hidden;
}

.craft__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 460px;
}

.craft__copy {
  padding: clamp(1.5rem, 3vw, 2.75rem);
  display: grid;
  align-content: center;
  gap: 0.85rem;
}

.craft__copy h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 600;
  line-height: 1.1;
}

.craft__copy p {
  color: var(--muted);
}

.craft__copy ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
}

.craft__copy li::before {
  content: "— ";
  color: var(--forest);
}

/* Story */
.story {
  padding: 3rem var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.story__copy h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  margin: 0.35rem 0 0.75rem;
}

.story__copy > p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 42ch;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.story__media {
  overflow: hidden;
  border: 1px solid var(--line);
}

.story__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.cats__grid {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.cat {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.cat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.cat:hover img {
  transform: scale(1.05);
}

.cat span {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.25rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  background: linear-gradient(transparent, rgba(26, 24, 20, 0.7));
}

.cta-band {
  margin: 2rem var(--pad) 3.5rem;
  padding: 2.5rem;
  background: var(--ink);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
}

.cta-band p {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 40ch;
}

.cta-band__actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.footer {
  padding: 2.5rem var(--pad) 2rem;
  border-top: 1px solid var(--line);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer__top p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.footer__cols {
  display: flex;
  gap: 3rem;
}

.footer__cols h4 {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.footer__cols a {
  display: block;
  margin-bottom: 0.35rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Pages */
.page {
  padding: 6.5rem 0 3rem;
}

.page-head {
  padding: 0 var(--pad) 1.5rem;
}

.page-head h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600;
}

.page-head p {
  margin-top: 0.5rem;
  color: var(--muted);
  max-width: 48ch;
}

.filters {
  padding: 0 var(--pad) 1.25rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.filter {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.filter.is-on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.crumb {
  padding: 0 var(--pad) 1.25rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
}

.pdp__grid {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.pdp__main {
  overflow: hidden;
  background: #e6e3dc;
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1.05;
}

.pdp__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp__thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.pdp__thumbs button {
  width: 72px;
  height: 72px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.7;
}

.pdp__thumbs button.is-on {
  border-color: var(--ink);
  opacity: 1;
}

.pdp__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp__info h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  margin: 0.15rem 0 0.65rem;
}

.pdp__price {
  margin-bottom: 1rem;
}

.pdp__price strong {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 600;
}

.pdp__desc {
  color: var(--muted);
  margin-bottom: 1.4rem;
  max-width: 42ch;
}

.pdp__swatches {
  margin-bottom: 1.25rem;
}

.pdp__swatches > span {
  display: block;
  font-size: 0.8rem;
  font-weight: 650;
  margin-bottom: 0.5rem;
}

.pdp__swatches > div {
  display: flex;
  gap: 0.45rem;
}

.swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
}

.swatch.is-on {
  box-shadow: 0 0 0 2px var(--ink);
}

.pdp__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.2rem 0;
}

.pdp__perks {
  list-style: none;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.pdp__perks li::before {
  content: "— ";
  color: var(--forest);
}

.pdp-band {
  position: relative;
  margin: 3.5rem 0 2rem;
  min-height: 420px;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.pdp-band__media {
  position: absolute;
  inset: 0;
}

.pdp-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(26, 24, 20, 0.75));
}

.pdp-band__copy {
  position: relative;
  z-index: 1;
  padding: 2.5rem var(--pad);
  max-width: 560px;
}

.pdp-band__copy h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.pdp-band__copy p {
  color: rgba(255, 255, 255, 0.82);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
}

@media (max-width: 1000px) {
  .featured__grid,
  .product-grid,
  .product-grid--3,
  .values__grid,
  .cats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .concept,
  .craft,
  .story,
  .pdp__grid {
    grid-template-columns: 1fr;
  }

  .concept__media img,
  .craft__media img {
    min-height: 280px;
  }
}

@media (max-width: 700px) {
  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .featured__grid,
  .product-grid,
  .product-grid--3,
  .values__grid,
  .cats__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
