/** Shopify CDN: Minification failed

Line 846:0 Unexpected "}"

**/
/* ================================================================
   DESIGN TOKENS
================================================================ */
:root {
  /* ── White palette ── */
  --cream:       #ffffff;
  --linen:       #f6f6f6;
  --sand:        #e8e8e8;
  --sand-dark:   #c0bdb8;
  --indigo:      #1f3a5f;
  --indigo-deep: #1A2644;
  --indigo-mid:  #3D5280;
  --indigo-pale: #8896B8;
  --charcoal:    #1C1A17;
  --charcoal-2:  #4B4642;
  --grey:        #7B7671;
  --grey-light:  #B5B0AA;
  --silver:      #D0CCC6;

  /* ── Aliases used by Collection Interactive ── */
  --ivory:   #ffffff;
  --ivory-2: #f6f6f6;
  --ivory-3: #e8e8e8;
  --ink:     #1C1A17;
  --ink-2:   #4B4642;
  --ink-3:   #7B7671;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', -apple-system, sans-serif;
}

/* ================================================================
   RESET & BASE
================================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: #fff;
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ================================================================
   SCROLL ANIMATIONS
================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  transition-delay: var(--d, 0s);
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
  transition-delay: var(--d, 0s);
}
.fade-in.in { opacity: 1; }

/* ================================================================
   NAVIGATION
================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  background: #fff;
  transition: background .4s, color .4s, transform .8s ease;
}
.nav.scrolled { border-color: transparent; }
.nav.nav--hidden { transform: translateY(-100%); }
.nav.scrolled .nav-links a { color: var(--charcoal-2) !important; }
.nav.scrolled .nav-cart-link { color: var(--charcoal-2) !important; }
.nav.scrolled .nav-brand { color: var(--charcoal-2) !important; }

.nav-links a { color: var(--charcoal-2) !important; }
.nav-cart-link { color: var(--charcoal-2) !important; }
.nav-brand { color: var(--charcoal-2) !important; }


/* 首页透明导航 */
.nav--transparent:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
.nav--transparent:not(.scrolled) .nav-brand,
.nav--transparent:not(.scrolled) .nav-links a,
.nav--transparent:not(.scrolled) .nav-cart-link { color: rgba(255,255,255,.88); }
.nav--transparent:not(.scrolled) .nav-links a::after { background: rgba(255,255,255,.88); }
.nav--transparent:not(.scrolled) .nav-links a:hover { color: #fff; }
.nav--transparent:not(.scrolled) .nav-burger span { background: #fff; }
.nav-brand {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.nav-brand em { font-style: normal; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: .625rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--indigo);
  transition: width .3s;
}
.nav-links a:hover { color: var(--indigo); }
.nav-links a:hover::after { width: 100%; }
.nav-cart-link {
  font-size: .625rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color .2s;
}
.nav-cart-link:hover { color: var(--indigo); }
.nav-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  background: var(--indigo);
  color: var(--cream);
  border-radius: 50%;
  font-size: .55rem;
  margin-left: 5px;
}
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  background: none; border: none; cursor: pointer;
}
.nav-burger span { display: block; width: 100%; height: 1px; background: var(--charcoal); transition: all .3s; }
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--charcoal);
  transition: color .3s;
}
.nav-overlay a:hover { color: var(--indigo); }
.nav-close {
  position: absolute;
  top: 26px; right: 52px;
  background: none; border: none;
  font-size: 1.4rem; cursor: pointer;
  color: var(--charcoal);
}

/* ================================================================
   HERO
================================================================ */
.hero {
  min-height: 100vh;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--indigo-deep);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,16,30,.25) 0%,
    rgba(10,16,30,.10) 55%,
    rgba(10,16,30,.02) 100%
  );
  pointer-events: none;
}
.hero-text {
  position: relative;
  z-index: 1;
  padding: 120px 40px;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}
.hero-visual { display: none; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;
  margin-top: 0rem;
}
.hero-bar { width: 28px; height: 1px; background: rgba(255,255,255,.55); flex-shrink: 0; }
.eyebrow {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero .eyebrow { color: rgba(255,255,255,.6); }
.hero-title {
  font-family: var(--sans);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0px;
}
.hero-title em {
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(4rem, 9vw, 8rem);
  color: rgba(255,255,255,.92);
  display: block;
  line-height: 1;
}
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,.75);
  max-width: 640px;
  margin: 0 auto 52px;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.hero-caption {
  position: absolute;
  bottom: 40px;
  right: 48px;
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  z-index: 1;
}
.hero .btn--fill {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.hero .btn--fill:hover {
  background: rgba(255,255,255,.26);
  border-color: rgba(255,255,255,.8);
}
.link-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--indigo);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: border-color .3s;
  cursor: pointer;
}
.link-text:hover { border-color: var(--indigo); }
.hero .link-text { color: rgba(255,255,255,.82); }
.hero .link-text:hover { border-color: rgba(255,255,255,.82); }
.link-text .arr { transition: transform .3s; }
.link-text:hover .arr { transform: translateX(4px); }

.hero-title-svg {
  display: block;
  height: clamp(15rem, 30vw, 25rem);
  width: auto;
  max-width: 70%;
  margin: -6rem auto -6rem;
  filter: invert(1);
}
/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .6875rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--indigo); color: var(--indigo); background: transparent;
  cursor: pointer; font-family: var(--sans);
  transition: background .35s, color .35s, border-color .35s;
}
.btn:hover { background: var(--indigo); color: var(--ivory); }
.btn--fill { background: var(--indigo); color: var(--ivory); }
.btn--fill:hover { background: var(--ink); border-color: var(--ink); }
.btn--light { border-color: rgba(246,243,238,.45); color: var(--ivory); background: transparent; }
.btn--light:hover { background: var(--ivory); color: var(--indigo); border-color: var(--ivory); }
.btn-solid {
  color: var(--cream); background: var(--indigo);
  padding: 16px 38px; border: 1px solid var(--indigo);
  position: relative; overflow: hidden;
}
.btn-solid::before {
  content: ''; position: absolute; inset: 0;
  background: var(--indigo-deep); transform: translateX(-101%); transition: transform .4s ease;
}
.btn-solid:hover::before { transform: translateX(0); }
.btn-solid span { position: relative; z-index: 1; }
.btn-ghost {
  color: var(--indigo); background: transparent;
  padding: 14px 34px; border: 1px solid rgba(31,58,95,.35);
}
.btn-ghost:hover { background: var(--indigo); color: var(--cream); border-color: var(--indigo); }

/* ================================================================
   SHARED SECTION STYLES
================================================================ */
.section { padding: 130px 0; }
.section-linen { background: transparent; }
.section-dark  { background: var(--indigo-deep); color: var(--cream); }
.label { font-size: .62rem; font-weight: 400; letter-spacing: .32em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.label-pale { color: var(--indigo-pale); }
.heading { font-family: var(--sans); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 300; letter-spacing: .02em; line-height: 1.14; color: var(--charcoal); }
.heading-accent { color: var(--indigo); }
.heading em { font-style: italic; color: var(--indigo-mid); }
.heading-light { color: var(--cream); }
.heading-light em { color: var(--indigo-pale); }
.sub { font-family: var(--serif); font-size: 1.1rem; font-weight: 300; font-style: italic; color: var(--grey); line-height: 1.7; }
.divider-h { width: 48px; height: 1px; background: var(--indigo-pale); margin: 22px 0; }

/* ================================================================
   CULTURE
================================================================ */
.culture-v2 { background: var(--indigo); padding: 120px 0; }
.culture-v2-inner { display: flex; flex-direction: column; gap: 60px; }
.culture-v2-eyebrow { color: rgba(246,243,238,.45); margin-bottom: 20px; }
.culture-v2-heading {
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2; color: var(--ivory); margin-bottom: 24px;
}
.culture-v2-body { font-size: .9375rem; line-height: 1.9; color: rgba(246,243,238,.68); margin-bottom: 40px; white-space: pre-line; }
.culture-v2-stats { display: flex; flex-direction: row; }
.culture-v2-stat-item { flex: 1; padding: 40px 24px; border-right: 1px solid rgba(246,243,238,.1); display: flex; flex-direction: column; align-items: center; text-align: center; }
.culture-v2-stat-item:first-child { padding-left: 0; }
.culture-v2-stat-item:last-child { border-right: none; }
.culture-v2-stat-num { font-family: var(--sans); font-weight: 300; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; color: var(--ivory); margin-bottom: 8px; }
.culture-v2-stat-logo { height: clamp(2.5rem, 5vw, 4rem); width: auto; object-fit: contain; margin-bottom: 8px; filter: brightness(0) invert(1); }
.culture-v2-stat-lbl { font-size: .8125rem; color: rgba(246,243,238,.5); letter-spacing: .04em; }

/* ================================================================
   BRAND INTRO (manifesto)
================================================================ */
.manifesto { padding: 100px 0; background: transparent; }
.brand-intro-grid { display: grid; grid-template-columns: 200px 1fr; gap: 80px; align-items: start; border-top: 1px solid var(--sand); padding-top: 72px; }
.brand-intro-left { padding-top: 4px; }
.brand-intro-rule { width: 1px; height: 56px; background: var(--indigo-pale); margin-top: 22px; }
.brand-intro-quote { font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 300; font-style: italic; line-height: 1.44; color: var(--charcoal); letter-spacing: .02em; margin-bottom: 30px; }
.brand-intro-body { font-size: .9rem; color: var(--charcoal-2); line-height: 1.9; max-width: 560px; margin-bottom: 16px; }
.brand-intro-attr { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--grey); }

/* ================================================================
   CRAFT (Accordion)
================================================================ */
.craft-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 64px; }
.craft-header-title { font-family: var(--sans); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 300; letter-spacing: .02em; line-height: 1.08; color: var(--charcoal); margin-top: 8px; }
.craft-header-subtitle { display: block; font-size: clamp(1rem, 1.8vw, 1.4rem); font-weight: 300; letter-spacing: .04em; color: var(--indigo); margin-top: 10px; }

.craft-rule { border: none; border-top: 1px solid var(--sand); margin: 0; }

.craft-step { border-bottom: 1px solid var(--sand); }
.craft-step:first-child { border-top: 1px solid var(--sand); }
.craft-step-header {
  display: grid; grid-template-columns: 64px 1fr 44px; align-items: center;
  width: 100%; padding: 28px 0; background: transparent; border: none;
  text-align: left; cursor: pointer; font-family: var(--sans);
  transition: opacity .2s;
}
.craft-step-header:hover { opacity: .7; }
.craft-step-num { font-family: var(--serif); font-size: .75rem; letter-spacing: .08em; color: var(--indigo); }
.craft-step-name { font-family: var(--sans); font-size: .9375rem; font-weight: 400; color: var(--charcoal); line-height: 1.3; }
.craft-step-toggle { font-size: 1.375rem; font-weight: 300; color: var(--indigo); text-align: right; line-height: 1; user-select: none; }

.craft-step-body { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.craft-step.open .craft-step-body { max-height: 900px; }
.craft-step-body-inner { padding: 0 44px 44px 64px; }
.craft-step-desc { font-size: .9375rem; color: var(--charcoal-2); line-height: 1.9; max-width: 640px; margin-bottom: 32px; }
  .craft-step-img-wrap { max-width: 480px; aspect-ratio: 1/1; overflow: hidden; }
  .craft-step-img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .craft-step-img-placeholder {
    width: 100%; max-width: 480px; aspect-ratio: 1/1;
  background: var(--linen); display: flex; align-items: center; justify-content: center;
  border: 1px dashed var(--sand-dark); opacity: .45;
}

/* ================================================================
   SYMBOLS
================================================================ */
.symbols-section { background: transparent; }
.symbols-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--ivory-2); margin-top: 72px; }
.sym-card { background: var(--ivory); padding: 44px 36px; position: relative; overflow: hidden; transition: background .3s; }
.sym-card::before { content: none; }
.sym-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--indigo);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}
.sym-card:hover { background: var(--ivory-2); }
.sym-card:hover::after { transform: scaleX(1); }
.sym-icon {
  width: 52px;
  height: 52px;
  color: var(--indigo);
  margin-bottom: 28px;
}
.sym-icon--phoenix {
  transform: scale(1.38);
  transform-origin: center;
}
.sym-icon--dragon {
  transform: scale(1.58);
  transform-origin: center;
}
.sym-icon:not(.sym-icon--phoenix):not(.sym-icon--dragon) [stroke] {
  stroke-width: 0.9;
}
.sym-zh { font-size: .6875rem; letter-spacing: .08em; color: var(--indigo); margin-bottom: 8px; font-weight: 400; }
.sym-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--ink); margin-bottom: 16px; }
.sym-desc { font-size: .875rem; color: var(--ink-3); line-height: 1.85; }

/* ================================================================
   COLLECTION SHOWCASE (homepage)
================================================================ */
.collection-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; gap: 40px; }
.collection-header-right { max-width: 360px; }
.collection-header-right .sub { margin-top: 8px; margin-bottom: 24px; }
.series { margin-bottom: 84px; }
.series-bar { display: flex; align-items: baseline; gap: 18px; padding-bottom: 20px; margin-bottom: 36px; border-bottom: 1px solid var(--sand); }
.series-n { font-family: var(--serif); font-size: 3.6rem; font-weight: 300; color: var(--sand-dark); line-height: 1; }
.series-name { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; color: var(--charcoal); }
.series-tag { margin-left: auto; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); }

/* Product grid (shared) */
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.product-card { cursor: pointer; }
.product-img-wrap { aspect-ratio: 3/4; overflow: hidden; margin-bottom: 18px; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease, filter .4s ease; }
.product-img-bg { width: 100%; height: 100%; transition: transform .65s ease, filter .4s ease; }
.product-card:hover .product-img-wrap img,
.product-card:hover .product-img-bg { transform: scale(1.04); filter: brightness(1.06); }
.product-img-placeholder { width: 100%; height: 100%; }
.product-mat { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); margin-bottom: 6px; }
.product-name { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--charcoal); margin-bottom: 4px; }
.product-price-tag { font-size: .9rem; color: var(--charcoal-2); }

/* Placeholder gradients */
.p1 { background: radial-gradient(ellipse at 38% 35%,rgba(224,219,210,.9) 0%,transparent 54%), linear-gradient(150deg,#C8C4BA 0%,#B8B4A8 44%,#A8A49C 100%); }
.p2 { background: radial-gradient(ellipse at 58% 40%,rgba(218,213,204,.9) 0%,transparent 54%), linear-gradient(158deg,#D0CBC0 0%,#C0BBB0 44%,#B0ABA4 100%); }
.p3 { background: radial-gradient(ellipse at 34% 54%,rgba(229,224,215,.9) 0%,transparent 50%), linear-gradient(145deg,#C4C0B5 0%,#B4B0A5 44%,#A4A09C 100%); }

/* ================================================================
   ABOUT
================================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-accent { position: absolute; top: -36px; right: -36px; width: 42%; aspect-ratio: 1; background: var(--indigo); opacity: .07; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5;
  background: radial-gradient(ellipse at 38% 34%,rgba(210,205,196,.85) 0%,transparent 54%), linear-gradient(154deg,#C0BDB6 0%,#B0ADA6 44%,#A0A09A 100%);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-quote-box { position: absolute; bottom: -26px; left: 28px; right: 28px; background: var(--cream); padding: 26px 30px; border-left: 2px solid var(--indigo); }
.about-quote-box p { font-family: var(--serif); font-size: .98rem; font-style: italic; color: var(--indigo); line-height: 1.68; }
.about-body { font-size: .975rem; color: var(--charcoal-2); line-height: 1.92; margin-top: 28px; }
.about-body p + p { margin-top: 22px; }
.about-values { margin-top: 48px; display: flex; flex-direction: column; gap: 22px; }
.about-val { display: flex; gap: 18px; align-items: flex-start; }
.about-val-icon { width: 30px; height: 30px; flex-shrink: 0; color: var(--indigo); margin-top: 2px; }
.about-val-title { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--charcoal); margin-bottom: 4px; }
.about-val-desc { font-size: .84rem; color: var(--grey); line-height: 1.72; }

/* ================================================================
   NEWSLETTER
================================================================ */
.newsletter { padding: 100px 0; border-top: 1px solid var(--ivory-3); background: transparent; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.nl-heading { font-family: var(--serif); font-weight: 300; font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.25; color: var(--ink); margin-bottom: 12px; }
.nl-sub { font-size: .9rem; color: var(--ink-3); }
.nl-form { display: flex; }
.nl-input {
  flex: 1; font-family: var(--sans); font-size: .875rem; font-weight: 300;
  padding: 15px 20px;
  border: 1px solid var(--ivory-3); border-right: none;
  background: transparent; color: var(--ink); outline: none;
  transition: border-color .2s;
}
.nl-input::placeholder { color: var(--ink-3); }
.nl-input:focus { border-color: var(--indigo); }
.nl-btn {
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 15px 26px;
  background: var(--indigo); color: var(--ivory);
  border: 1px solid var(--indigo); cursor: pointer; font-family: var(--sans);
  transition: background .25s; white-space: nowrap;
}
.nl-btn:hover { background: var(--ink); border-color: var(--ink); }
.nl-note { margin-top: 14px; font-size: .75rem; color: var(--ink-3); }

/* ================================================================
   JOURNAL
================================================================ */
.journal-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.journal-header .heading { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.journal-controls { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.journal-arrow { background: none; border: 1px solid var(--sand); padding: 8px 12px; cursor: pointer; color: var(--charcoal); display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s; }
.journal-arrow:hover { border-color: var(--charcoal); }
.journal-counter { font-family: var(--sans); font-size: .72rem; letter-spacing: .12em; color: var(--grey); min-width: 36px; text-align: center; }
.journal-carousel-wrap { margin-top: 48px; }
.journal-grid { display: flex; gap: 24px; align-items: flex-start; }
.journal-card { display: flex; flex-direction: column; cursor: pointer; flex-shrink: 0; overflow: hidden; }
.journal-card:first-child { width: calc(50% - 24px); }
.journal-card:not(:first-child) { width: calc(25% - 12px); }
.journal-img { overflow: hidden; margin-bottom: 22px; }
.journal-card:first-child .journal-img { aspect-ratio: 16/10; }
.journal-card:not(:first-child) .journal-img { aspect-ratio: 4/3; }
.journal-img img { transition: aspect-ratio 0.55s cubic-bezier(0.4,0,0.2,1), transform .65s ease; }
.journal-img img,
.journal-img-bg { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease, filter .4s; }
.journal-card:hover .journal-img img,
.journal-card:hover .journal-img-bg { transform: scale(1.04); filter: brightness(.93); }
.j1 { background: radial-gradient(ellipse at 28% 48%,rgba(31,58,95,.28) 0%,transparent 58%), linear-gradient(152deg,#3A4E7A 0%,#2C3E6B 44%,#1E3060 100%); }
.j2 { background: radial-gradient(ellipse at 58% 35%,rgba(210,205,196,.85) 0%,transparent 54%), linear-gradient(158deg,#C4C0B8 0%,#B4B0A6 44%,#A4A09C 100%); }
.j3 { background: radial-gradient(ellipse at 42% 48%,rgba(31,58,95,.14) 0%,transparent 54%), linear-gradient(146deg,#D4D0C6 0%,#C4C0B4 44%,#B4B0A4 100%); }
.journal-cat { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--indigo); margin-bottom: 9px; }
.journal-title { font-family: var(--serif); font-weight: 400; color: var(--charcoal); margin-bottom: 12px; transition: color .3s; }
.journal-card:first-child .journal-title { font-size: 1.52rem; }
.journal-card:not(:first-child) .journal-title { font-size: 1.1rem; }
.journal-card:hover .journal-title { color: var(--indigo); }
.journal-excerpt { font-size: .84rem; color: var(--grey); line-height: 1.82; flex: 1; }
.journal-meta { margin-top: 18px; font-size: .68rem; letter-spacing: .1em; color: var(--grey-light); text-transform: uppercase; }

/* ================================================================
   FOOTER
================================================================ */
.footer { background: #fff; }
.footer-box { background: var(--indigo); color: var(--cream); margin: 0 40px; padding: 72px 64px; }
.footer-box-inner { display: flex; gap: 80px; align-items: flex-start; max-width: 1360px; margin: 0 auto; }
.footer-nl { flex: 0 0 340px; }
.footer-nl-title { font-family: var(--sans); font-size: 1.5rem; font-weight: 300; letter-spacing: .01em; color: var(--cream); margin-bottom: 16px; }
.footer-nl-sub { font-family: var(--sans); font-size: .8125rem; color: rgba(246,243,238,.7); line-height: 1.75; margin-bottom: 28px; }
.footer-nl-form { display: flex; flex-direction: column; }
.footer-nl-row { display: flex; align-items: center; border-bottom: 1px solid rgba(246,243,238,.3); margin-bottom: 16px; }
.footer-nl-input { flex: 1; background: none; border: none; outline: none; font-family: var(--sans); font-size: .8125rem; color: var(--cream); padding: 10px 0; letter-spacing: .02em; }
.footer-nl-input::placeholder { color: rgba(246,243,238,.35); }
.footer-nl-btn { background: none; border: none; cursor: pointer; color: var(--cream); padding: 10px 0 10px 16px; display: flex; align-items: center; transition: opacity .2s; }
.footer-nl-btn:hover { opacity: .55; }
.footer-nl-privacy { font-family: var(--sans); font-size: .6875rem; color: rgba(246,243,238,.35); line-height: 1.65; }
.footer-cols { flex: 1; display: flex; gap: 52px; justify-content: flex-end; }
.footer-col { min-width: 90px; }
.footer-col-title { font-family: var(--sans); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(246,243,238,.6); margin-bottom: 20px; font-weight: 400; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-links a { font-family: var(--sans); font-size: .8125rem; color: rgba(246,243,238,.65); transition: color .2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bar { background: #fff; padding: 24px 40px; }
.footer-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1440px; margin: 0 auto; }
.footer-locale { display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: .75rem; color: rgba(0,0,0,.45); letter-spacing: .03em; cursor: pointer; transition: color .2s; }
.footer-locale:hover { color: var(--charcoal); }
.footer-bar-center { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.footer-bar-brand { font-family: var(--sans); font-size: .9rem; font-weight: 400; letter-spacing: .08em; color: var(--charcoal); }
.footer-bar-brand em { font-style: normal; }
.footer-logo-img { height: 36px; width: auto; }
.footer-bar-copy { font-family: var(--sans); font-size: .7rem; color: rgba(0,0,0,.35); letter-spacing: .02em; }
.footer-bar-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.footer-social-icons { display: flex; gap: 18px; align-items: center; }
.footer-social-icons a { color: rgba(0,0,0,.45); transition: color .2s; display: flex; }
.footer-social-icons a:hover { color: var(--charcoal); }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-family: var(--sans); font-size: .7rem; color: rgba(0,0,0,.35); letter-spacing: .04em; transition: color .2s; }
.footer-legal-links a:hover { color: var(--charcoal); }

/* ================================================================
   BREADCRUMB & FLASH
================================================================ */
.breadcrumb { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 40px; }
.breadcrumb a { transition: color .3s; }
.breadcrumb a:hover { color: var(--indigo); }
.breadcrumb .sep { margin: 0 10px; }
.flash { padding: 14px 24px; margin-bottom: 24px; font-size: .85rem; }
.flash-success { background: rgba(31,58,95,.08); color: var(--indigo); border-left: 2px solid var(--indigo); }
.flash-error   { background: rgba(200,100,80,.08); color: #c86450;      border-left: 2px solid #c86450; }

/* ================================================================
   PRODUCT PAGE
================================================================ */
.product-page { padding: 120px 0; }
.product-layout { display: grid; grid-template-columns: 55% 1fr; gap: 80px; align-items: start; }
.product-gallery-main { aspect-ratio: 4/5; overflow: hidden; margin-bottom: 12px; background: linear-gradient(150deg,#D0CCC4 0%,#C0BCB4 60%,#B0ACA6 100%); }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.product-gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.thumb-btn { width: 80px; height: 80px; overflow: hidden; border: 1px solid transparent; background: none; padding: 0; transition: border-color .3s; }
.thumb-btn.active, .thumb-btn:hover { border-color: var(--indigo); }
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.product-type { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--indigo); margin-bottom: 12px; }
.product-title { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; color: var(--charcoal); line-height: 1.2; margin-bottom: 16px; }
.product-price-display { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--charcoal-2); margin-bottom: 28px; }
.product-divider { width: 40px; height: 1px; background: var(--sand); margin-bottom: 28px; }
.product-desc { font-size: .9rem; color: var(--charcoal-2); line-height: 1.9; margin-bottom: 32px; }
.variant-section { margin-bottom: 24px; }
.variant-label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--grey); margin-bottom: 10px; }
.variant-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-btn { padding: 9px 16px; border: 1px solid var(--sand); background: transparent; font-family: var(--sans); font-size: .8rem; color: var(--charcoal-2); cursor: pointer; transition: all .25s; }
.variant-btn:hover, .variant-btn.selected { border-color: var(--indigo); color: var(--indigo); background: rgba(31,58,95,.04); }
.variant-btn.unavailable { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.qty-wrap { display: flex; align-items: center; border: 1px solid var(--sand); }
.qty-btn { width: 40px; height: 44px; background: none; border: none; font-size: 1.1rem; color: var(--charcoal-2); transition: background .2s; }
.qty-btn:hover { background: var(--linen); }
.qty-input { width: 50px; height: 44px; border: none; text-align: center; font-family: var(--sans); font-size: .9rem; color: var(--charcoal); background: transparent; -moz-appearance: textfield; }
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.atc-btn { width: 100%; justify-content: center; padding: 17px; margin-top: 16px; }
.atc-btn:disabled { opacity: .5; cursor: not-allowed; }
.product-meta { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--sand); display: flex; flex-direction: column; gap: 10px; }
.product-meta-row { display: flex; gap: 12px; }
.product-meta-key { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); min-width: 90px; }
.product-meta-val { font-size: .85rem; color: var(--charcoal-2); }

/* ================================================================
   COLLECTION PAGE
================================================================ */
.collection-page { padding: 120px 0; }
.collection-page-header { margin-bottom: 60px; }
.collection-page-desc { font-size: .975rem; color: var(--charcoal-2); line-height: 1.85; max-width: 560px; margin-top: 16px; }
.collection-toolbar { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; margin-bottom: 40px; border-bottom: 1px solid var(--sand); }
.collection-count { font-size: .78rem; color: var(--grey); letter-spacing: .08em; }
.sort-select {
  font-family: var(--sans); font-size: .78rem; color: var(--charcoal-2);
  background: transparent; border: 1px solid var(--sand); padding: 9px 36px 9px 14px; cursor: pointer; outline: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0L5 6L10 0' stroke='%238A837C' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 80px; }
.page-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; font-size: .8rem; color: var(--charcoal-2); border: 1px solid transparent; transition: all .25s; }
.page-link:hover, .page-link.current { border-color: var(--indigo); color: var(--indigo); }

/* ================================================================
   CART PAGE
================================================================ */
.cart-page { padding: 120px 0; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 80px; align-items: start; }
.cart-heading { font-family: var(--serif); font-size: 2rem; font-weight: 400; margin-bottom: 40px; }
.cart-item { display: grid; grid-template-columns: 100px 1fr auto; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--sand); align-items: start; }
.cart-item:first-child { border-top: 1px solid var(--sand); }
.cart-item-img { aspect-ratio: 3/4; overflow: hidden; background: linear-gradient(150deg,#D0CCC4 0%,#C0BCB4 100%); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-title { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--charcoal); margin-bottom: 6px; }
.cart-item-variant { font-size: .75rem; color: var(--grey); margin-bottom: 14px; }
.cart-item-qty { display: flex; align-items: center; }
.cart-item-remove { background: none; border: none; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-light); cursor: pointer; padding: 0; margin-top: 8px; display: block; transition: color .3s; }
.cart-item-remove:hover { color: var(--charcoal); }
.cart-item-price { font-family: var(--serif); font-size: 1rem; color: var(--charcoal); text-align: right; }
.cart-summary { background: var(--linen); padding: 36px 32px; position: sticky; top: 100px; }
.cart-summary-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin-bottom: 28px; }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: .9rem; color: var(--charcoal-2); }
.cart-summary-total { display: flex; justify-content: space-between; padding-top: 20px; margin-top: 8px; border-top: 1px solid var(--sand); font-family: var(--serif); font-size: 1.1rem; color: var(--charcoal); }
.cart-checkout-btn { width: 100%; justify-content: center; margin-top: 24px; padding: 17px; }
.cart-note { font-size: .72rem; color: var(--grey); text-align: center; margin-top: 14px; }
.cart-empty { text-align: center; padding: 80px 0; }
.cart-empty-heading { font-family: var(--serif); font-size: 2rem; font-weight: 400; margin-bottom: 16px; }
.cart-empty p { color: var(--grey); margin-bottom: 32px; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .container { padding: 0 40px; }
  .nav { padding: 28px 40px; }
  .nav.scrolled { padding: 16px 40px; }
  .section { padding: 100px 0; }
  .craft-step-header { grid-template-columns: 48px 1fr 36px; }
  .craft-step-body-inner { padding: 0 24px 36px 48px; }
}

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .hero { min-height: 100svh; }
  .hero-text { padding: 100px 24px 60px; max-width: none; }
  .culture-v2-inner { grid-template-columns: 1fr; gap: 60px; }
  .culture-v2-stats { padding-left: 28px; }
  .brand-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .brand-intro-rule { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .craft-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .craft-header-body { padding-top: 0; }
  .symbols-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .journal-card:first-child { width: calc(60% - 12px); }
  .journal-card:not(:first-child) { width: calc(40% - 12px); }
  .footer-box { margin: 0 24px; padding: 56px 40px; }
  .footer-box-inner { gap: 48px; }
  .footer-nl { flex: 0 0 260px; }
  .footer-cols { gap: 32px; }
  .footer-bar { padding: 20px 24px; }
  .collection-header { flex-direction: column; align-items: flex-start; }
  .product-layout { grid-template-columns: 1fr; gap: 48px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-title { font-size: 3rem; }
  .brand-intro-quote { font-size: 1.4rem; }
  .symbols-grid, .product-grid { grid-template-columns: 1fr; }
  .culture-stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--sand); }
  .stat:last-child { border-bottom: none; }
  .journal-card:first-child { width: 80%; }
  .journal-card:not(:first-child) { width: 70%; }
  .footer-box { margin: 0; padding: 48px 24px; }
  .footer-box-inner { flex-direction: column; gap: 48px; }
  .footer-nl { flex: none; width: 100%; }
  .footer-cols { justify-content: flex-start; flex-wrap: wrap; gap: 28px 40px; }
  .footer-bar { padding: 20px 24px; }
  .footer-bar-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-bar-right { align-items: center; }
  .footer-legal-links { justify-content: center; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  .nl-form { flex-direction: column; }
  .nl-input { border-right: 1px solid var(--ivory-3); border-bottom: none; }
  .series-bar { flex-wrap: wrap; }
  .series-tag { margin-left: 0; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-price { grid-column: 2; }
}

/* ================================================================
   COLLECTION INTERACTIVE
================================================================ */
.collection-interactive { padding: 120px 0; }
.ci-header { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap; margin-bottom:52px; }
.ci-heading { font-family:var(--serif); font-weight:300; font-size:clamp(2rem,4vw,3rem); line-height:1.15; color:var(--ink); max-width:380px; }
.ci-heading em { font-style:italic; color:var(--indigo); }
.ci-link { display:inline-flex; align-items:center; gap:8px; font-size:.6875rem; letter-spacing:.12em; text-transform:uppercase; color:var(--indigo); border-bottom:1px solid transparent; padding-bottom:2px; transition:border-color .3s; }
.ci-link:hover { border-color:var(--indigo); }

/* Filters */
.ci-filters { margin-bottom:48px; }
.ci-filter-row { display:flex; align-items:center; gap:6px; flex-wrap:wrap; margin-bottom:10px; }
.ci-filter-lbl { font-size:.6rem; letter-spacing:.18em; text-transform:uppercase; color:var(--ink-3); margin-right:10px; white-space:nowrap; }
.ci-filter-btn { font-family:var(--sans); font-size:.6rem; letter-spacing:.12em; text-transform:uppercase; padding:7px 16px; border:1px solid var(--ivory-3); background:transparent; color:var(--ink-3); cursor:pointer; transition:all .2s; }
.ci-filter-btn:hover { border-color:var(--indigo); color:var(--indigo); }
.ci-filter-btn.active { background:var(--indigo); border-color:var(--indigo); color:var(--ivory); }

/* Product grid */
.ci-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.ci-card { background:var(--ivory-2); cursor:pointer; position:relative; overflow:hidden; }
.ci-card.ci-hidden { display:none; }
.ci-card-img { aspect-ratio:3/4; background:var(--ivory-2); display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.ci-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.25,.1,.25,1); }
.ci-card:hover .ci-card-img img { transform:scale(1.04); }
.ci-card-img .ci-no-img { width:45%; color:var(--indigo); opacity:.14; transition:opacity .5s, transform .7s; }
.ci-card:hover .ci-no-img { opacity:.22; transform:scale(1.04); }
.ci-overlay { position:absolute; inset:0; background:rgba(28,26,23,0); display:flex; align-items:center; justify-content:center; transition:background .4s; }
.ci-card:hover .ci-overlay { background:rgba(28,26,23,.07); }
.ci-cta { font-size:.625rem; letter-spacing:.16em; text-transform:uppercase; color:var(--ivory); background:var(--indigo); padding:11px 22px; opacity:0; transform:translateY(8px); transition:opacity .3s .05s, transform .3s .05s; }
.ci-card:hover .ci-cta { opacity:1; transform:translateY(0); }
.ci-info { padding:20px 24px 26px; background: transparent; }
.ci-series { font-size:.5625rem; letter-spacing:.16em; text-transform:uppercase; color:var(--indigo); margin-bottom:6px; }
.ci-name { font-family:var(--serif); font-weight:400; font-size:1.0625rem; color:var(--ink); margin-bottom:4px; }
.ci-material { font-size:.8125rem; color:var(--ink-3); }
.ci-price { font-size:.875rem; color:var(--ink-2); margin-top:12px; }
@media(max-width:900px){ .ci-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px){ .ci-grid { grid-template-columns:1fr; } }

/* Drawer */
.ci-overlay-bg { position:fixed; inset:0; background:rgba(28,26,23,.42); z-index:200; opacity:0; pointer-events:none; transition:opacity .45s; }
.ci-overlay-bg.open { opacity:1; pointer-events:all; }
.ci-drawer { position:fixed; top:0; right:0; bottom:0; width:540px; max-width:100vw; background:var(--ivory); z-index:201; transform:translateX(100%); transition:transform .55s cubic-bezier(0,0,.2,1); overflow-y:auto; }
.ci-drawer.open { transform:translateX(0); }
.ci-drawer-close { position:absolute; top:20px; right:20px; width:36px; height:36px; background:none; border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; color:var(--ink-3); transition:color .2s; z-index:1; }
.ci-drawer-close:hover { color:var(--ink); }
.ci-drawer-img { width:100%; aspect-ratio:4/3; background:var(--ivory-2); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.ci-drawer-img img { width:100%; height:100%; object-fit:cover; }
.ci-drawer-img .ci-drawer-noimg { width:38%; color:var(--indigo); opacity:.15; }
.ci-drawer-body { padding:36px 44px 64px; }
.ci-drawer-series { font-size:.5625rem; letter-spacing:.18em; text-transform:uppercase; color:var(--indigo); margin-bottom:12px; }
.ci-drawer-title { font-family:var(--serif); font-weight:400; font-size:1.875rem; color:var(--ink); line-height:1.15; margin-bottom:8px; }
.ci-drawer-meta { font-size:.875rem; color:var(--ink-3); margin-bottom:32px; }
.ci-drawer-hr { height:1px; background:var(--ivory-3); margin:24px 0; }
.ci-drawer-lbl { font-size:.5625rem; letter-spacing:.18em; text-transform:uppercase; color:var(--indigo); margin-bottom:10px; }
.ci-drawer-sym-name { font-family:var(--serif); font-weight:400; font-size:1.125rem; color:var(--ink); margin-bottom:10px; }
.ci-drawer-text { font-size:.9rem; line-height:1.85; color:var(--ink-2); }
.ci-drawer-bottom { display:flex; align-items:center; justify-content:space-between; margin-top:36px; padding-top:24px; border-top:1px solid var(--ivory-3); }
.ci-drawer-price { font-family:var(--serif); font-weight:300; font-size:1.5rem; color:var(--ink); }
}
  .marquee-band { overflow: hidden; background: var(--indigo); padding: 13px 0; }
  .marquee-track { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; }
  .marquee-track span { font-family: var(--serif); font-size: .7rem; letter-spacing: .22em; color: color: #2B3A5C;; flex-shrink:
   0; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* ================================================================
   LP-STYLE COLLECTION SHOWCASE
================================================================ */
.lp-collection { background: #fff; }

.lp-collection-intro {
  text-align: center;
  padding: 20px 40px 40px;
  background: #fff;
}
.lp-collection-label {
  font-size: 1rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}
.lp-collection-cats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.lp-collection-cat {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--indigo-mid);
  transition: opacity .3s;
}
.lp-collection-cat:hover { opacity: .5; }
.lp-collection-desc {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--grey);
  white-space: nowrap;
  margin: 0 auto;
  line-height: 1.75;
}

/* Lookbook */
.lb-section { padding: 0; background: #fff; }
.lb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 0 40px; }
.lb-card { display: block; text-decoration: none; color: inherit; }
.lb-card-img { overflow: hidden; aspect-ratio: 4/5; }
.lb-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
.lb-card-placeholder { width: 100%; height: 100%; background: var(--sand); }
.lb-card:hover .lb-card-img img { transform: scale(1.04); }
.lb-card-info { padding: 20px 24px 48px; text-align: center; background: #fff; }
.lb-card-year { font-family: var(--sans); font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--grey); margin-bottom: 10px; }
.lb-card-title { font-family: var(--sans); font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 300; letter-spacing: .04em; color: var(--charcoal); margin-bottom: 8px; }
.lb-card-sub { font-family: var(--sans); font-size: .75rem; letter-spacing: .08em; color: var(--grey); }

/* Tabs */
.lp-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 40px 40px 0;
  background: #fff;
}
.lp-tab {
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--charcoal-2);
  background: transparent;
  border: 1px solid var(--sand);
  padding: 12px 48px;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.lp-tab:not(:last-child) { border-right: none; }
.lp-tab.active { background: #fff; color: var(--charcoal); border-color: var(--sand); }

/* Product grid */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
}
.lp-grid--hidden { display: none; }
.lp-card {
  display: block;
  background: #fff;
  cursor: pointer;
}
.lp-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--linen);
  position: relative;
}
.lp-img-primary,
.lp-img-secondary {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.8s ease;
}
.lp-img-secondary { opacity: 0; }
.lp-card:hover .lp-img-primary { opacity: 0; }
.lp-card:hover .lp-img-secondary { opacity: 1; }
.lp-card-placeholder { width: 100%; height: 100%; background: var(--sand); }
.lp-card-info {
  padding: 20px 24px 28px;
  background: #fff;
  transition: transform 0.5s ease;
}
.lp-card:hover .lp-card-info {
  transform: translateY(-30px);
}
.lp-card-name {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.lp-card-price {
  font-size: .82rem;
  color: var(--grey);
}
.lp-card-material {
  font-size: .82rem;
  color: var(--indigo);
  font-style: italic;
}

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

/* Section-adaptive nav */
.nav.nav--dark {
  background: var(--indigo) !important;
  border-color: transparent !important;
}
.nav.nav--dark .nav-brand,
.nav.nav--dark .nav-links a,
.nav.nav--dark .nav-cart-link { color: rgba(255,255,255,.88) !important; }
.nav.nav--dark .nav-links a::after { background: rgba(255,255,255,.88); }
.nav.nav--dark .nav-burger span { background: rgba(255,255,255,.88); }

