/** Shopify CDN: Minification failed

Line 51:0 All "@import" rules must come first

**/
/* ==========================================================================
   Maison Midinette — Design System
   Brand Book v8 · Claude Design
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS — PALETTE & TYPOGRAPHY
   -------------------------------------------------------------------------- */

:root {
  /* Palette */
  --encre:    #4a1722;
  --encre-2:  #5e2331;
  --creme:    #f7f2e8;
  --creme-2:  #f0e9d8;
  --paper:    #c8d4dc;
  --olive:    #2e3a52;
  --argile:   #c66950;
  --sauge:    #a8b67e;
  --cacao:    #3a2a1f;

  /* Typography */
  --font-display:   'Italiana', serif;
  --font-editorial: 'Bodoni Moda', serif;
  --font-body:      'Cormorant Garamond', serif;
  --font-ui:        'Archivo', sans-serif;
  --font-mono:      'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  64px;
  --space-2xl: 96px;

  /* Layout */
  --max-width:    1280px;
  --content-pad:  56px;
}

/* --------------------------------------------------------------------------
   2. GOOGLE FONTS IMPORT
   -------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,600;1,6..96,400;1,6..96,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Archivo:wght@300;400;500;600&family=JetBrains+Mono:wght@300;400&display=swap');

/* --------------------------------------------------------------------------
   3. BASE RESET & GLOBALS
   -------------------------------------------------------------------------- */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--encre);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY SCALE
   -------------------------------------------------------------------------- */

/* Display — Italiana, never below 48px */
.t-display-xl  { font-family: var(--font-display); font-size: 96px; line-height: .9; font-weight: 400; }
.t-display-lg  { font-family: var(--font-display); font-size: 72px; line-height: .9; font-weight: 400; }
.t-display-md  { font-family: var(--font-display); font-size: 56px; line-height: .9; font-weight: 400; }
.t-display-sm  { font-family: var(--font-display); font-size: 48px; line-height: .95; font-weight: 400; }

/* Editorial — Bodoni Moda */
.t-editorial-lg { font-family: var(--font-editorial); font-size: 40px; font-weight: 400; line-height: 1.1; }
.t-editorial-md { font-family: var(--font-editorial); font-size: 28px; font-weight: 400; line-height: 1.2; }
.t-editorial-sm { font-family: var(--font-editorial); font-size: 22px; font-weight: 400; line-height: 1.3; }

/* Body — Cormorant Garamond */
.t-body-xl { font-family: var(--font-body); font-size: 24px; line-height: 1.6; }
.t-body-lg { font-family: var(--font-body); font-size: 20px; line-height: 1.65; }
.t-body-md { font-family: var(--font-body); font-size: 18px; line-height: 1.65; }
.t-body-sm { font-family: var(--font-body); font-size: 16px; line-height: 1.6; }

/* Julia's voice — always Cormorant italic */
.t-julia, em.julia, .julia-voice {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
}

/* UI — Archivo, always uppercase + letter-spacing */
.t-ui, .ui, .ui-sm {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 400;
}
.ui-sm {
  font-size: 10px;
  letter-spacing: .28em;
}
.t-ui-lg {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
}

/* Mono — JetBrains Mono */
.t-mono, .mono {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .04em;
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .3em;
  padding: 14px 28px;
  border: 1px solid var(--creme);
  color: var(--creme);
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.btn:hover {
  background: rgba(247, 242, 232, .1);
}

.btn--solid {
  background: var(--argile);
  border-color: var(--argile);
  color: var(--creme);
}

.btn--solid:hover {
  background: #b85d47;
  border-color: #b85d47;
}

.btn--dark {
  background: var(--encre);
  border-color: var(--encre);
  color: var(--creme);
}

.btn--dark:hover {
  background: var(--encre-2);
  border-color: var(--encre-2);
}

.btn--light {
  border-color: var(--encre);
  color: var(--encre);
  background: transparent;
}

.btn--light:hover {
  background: var(--encre);
  color: var(--creme);
}

/* --------------------------------------------------------------------------
   6. ANNOUNCEMENT RIBBON
   -------------------------------------------------------------------------- */

.ribbon {
  background: var(--encre);
  color: var(--creme);
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 10px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 10;
}

.ribbon .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--argile);
  flex-shrink: 0;
  opacity: .7;
}

/* --------------------------------------------------------------------------
   7. NAVIGATION
   -------------------------------------------------------------------------- */

.mm-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid rgba(74, 23, 34, .22);
  padding: 26px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.mm-nav a {
  font-family: var(--font-ui);
  font-size: 15px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--encre);
  transition: opacity .2s ease;
}

.mm-nav a:hover {
  opacity: .6;
}

.mm-nav__left {
  display: flex;
  align-items: center;
  gap: 48px;
}

.mm-nav__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 48px;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: .9;
  text-align: center;
  color: var(--encre);
  letter-spacing: .02em;
}

.mm-nav__bag {
  position: relative;
}

.mm-nav__bag-count {
  font-family: var(--font-mono);
  font-size: 9px;
  position: absolute;
  top: -6px;
  right: -10px;
}

.mm-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--encre);
  line-height: 0;
}

/* Mobile menu overlay */
.mm-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--paper);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.mm-mobile-menu.is-open {
  display: flex;
}

.mm-mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--encre);
  padding: 8px;
  line-height: 0;
}

.mm-mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mm-mobile-menu__links a {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.1;
  color: var(--encre);
  letter-spacing: .02em;
  transition: opacity .15s ease;
}

.mm-mobile-menu__links a:hover {
  opacity: .5;
}

.mm-mobile-menu__foot {
  position: absolute;
  bottom: 32px;
  display: flex;
  gap: 32px;
}

.mm-mobile-menu__foot a {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--encre);
  opacity: .6;
}

/* --------------------------------------------------------------------------
   8. HERO
   -------------------------------------------------------------------------- */

.hero {
  background: var(--encre);
  color: var(--creme);
  min-height: 92vh;
  padding: var(--space-xl) var(--content-pad) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-lg);
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .7;
}

.hero-mid {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
  max-width: 820px;
}

.hero-mid h1 {
  font-family: var(--font-display);
  font-size: 88px;
  line-height: .88;
  font-weight: 400;
  letter-spacing: -.01em;
}

.hero-mid h1 em {
  display: block;
  font-family: var(--font-body);
  font-size: 32px;
  font-style: italic;
  line-height: 1.4;
  margin-top: 16px;
  font-weight: 300;
  opacity: .85;
}

.hero-lede {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.5;
  max-width: 520px;
}

.hero-lede .ui-sm {
  color: var(--argile);
  margin-bottom: 4px;
}

/* --------------------------------------------------------------------------
   9. COUNTDOWN
   -------------------------------------------------------------------------- */

.countdown {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-xl);
  padding: var(--space-lg) var(--space-lg);
  background: var(--bordeaux);
  border: none;
}

.countdown .label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
}

.countdown .label .ui {
  color: #fff;
  opacity: 1;
}

.countdown .label .name {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: #fff;
}

.countdown .label .name em {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  opacity: 1;
  color: #fff;
  display: block;
  margin-top: 6px;
}

.countdown .cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.clock {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.clock .unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 100px;
}

.clock .unit .n {
  font-family: var(--font-display);
  font-size: 84px;
  line-height: .85;
  font-weight: 400;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.clock .unit .l {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: .32em;
  text-transform: uppercase;
  opacity: .85;
  color: #fff;
}

.clock .sep {
  font-family: var(--font-display);
  font-size: 64px;
  color: #fff;
  opacity: .75;
  line-height: 1;
  padding: 0 4px;
  align-self: flex-start;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   10. SECTION LAYOUT UTILITIES
   -------------------------------------------------------------------------- */

.mm-section {
  padding: var(--space-2xl) var(--content-pad);
}

.mm-section--sm {
  padding: var(--space-xl) var(--content-pad);
}

.mm-section--bordeaux {
  background: var(--encre);
  color: var(--creme);
}

.mm-section--creme {
  background: var(--creme);
  color: var(--encre);
}

.mm-section--olive {
  background: var(--olive);
  color: var(--creme);
}

.mm-section--paper {
  background: var(--paper);
  color: var(--encre);
}

.mm-section__head {
  margin-bottom: var(--space-xl);
}

.mm-section__kicker {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .6;
  margin-bottom: 12px;
}

.mm-section__title {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: .92;
  font-weight: 400;
}

.mm-section__title--bordeaux {
  color: var(--creme);
}

/* --------------------------------------------------------------------------
   11. THE RITUAL — 5-STEP GRID
   -------------------------------------------------------------------------- */

.ritual {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(74, 23, 34, .12);
}

.ritual__step {
  background: var(--paper);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ritual__step:hover {
  background: var(--creme-2);
}

.ritual__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: calc(var(--space-lg) * -1) calc(var(--space-md) * -1) 0;
  width: calc(100% + var(--space-md) * 2);
}

.ritual__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ritual__img--placeholder {
  background: var(--creme-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ritual__img--placeholder span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--argile);
  opacity: .5;
}

.ritual__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--argile);
  letter-spacing: .06em;
}

.ritual__title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: .95;
  color: var(--encre);
}

.ritual__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cacao);
}

.ritual__signal {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: var(--encre-2);
  opacity: .7;
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   12. PRODUCT CARD — .piece
   -------------------------------------------------------------------------- */

.piece {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .25s ease;
  text-decoration: none;
  color: var(--encre);
}

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

.piece .img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--creme-2);
}

.piece .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.piece:hover .img img {
  transform: scale(1.03);
}

.frame-id {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  color: var(--creme);
  background: rgba(74, 23, 34, .55);
  padding: 3px 7px;
  z-index: 2;
}

.kept {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--creme);
  background: var(--encre);
  padding: 4px 10px;
  z-index: 2;
}

.kept.sold {
  background: rgba(58, 42, 31, .85);
  opacity: .8;
}

.piece .info {
  padding: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.piece .info .ui-sm {
  color: var(--cacao);
  opacity: .65;
}

.piece .info h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--encre);
}

.piece .info h4 em {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  font-weight: 300;
  color: var(--cacao);
  margin-top: 2px;
}

.piece .info .julia {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: var(--cacao);
  margin-top: 4px;
}

.piece .info .meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(74, 23, 34, .1);
}

.piece .info .meta span:first-child {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--cacao);
  opacity: .55;
}

.piece .info .price {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--encre);
}

/* Product grid */
.pieces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

/* --------------------------------------------------------------------------
   13. JULIA SECTION
   -------------------------------------------------------------------------- */

.julia-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.julia-block__portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

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

.julia-block__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-top: var(--space-md);
}

.julia-block__pull {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: .92;
  color: var(--creme);
  margin-bottom: var(--space-sm);
}

.julia-block__body {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.7;
  color: rgba(247, 242, 232, .85);
}

.julia-block__body p + p {
  margin-top: 16px;
}

.julia-block__sig {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--argile);
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(247, 242, 232, .15);
}

/* --------------------------------------------------------------------------
   14. JOURNAL GRID
   -------------------------------------------------------------------------- */

.journal-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 24px;
}

.journal-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}

.journal-card__img {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--creme-2);
}

.journal-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.journal-card:hover .journal-card__img img {
  transform: scale(1.04);
}

.journal-card--featured .journal-card__img {
  aspect-ratio: 4 / 5;
}

.journal-card__meta {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cacao);
  opacity: .6;
}

.journal-card__title {
  font-family: var(--font-editorial);
  font-size: 24px;
  line-height: 1.2;
  color: var(--encre);
}

.journal-card--featured .journal-card__title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: .95;
}

.journal-card__excerpt {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--cacao);
}

/* --------------------------------------------------------------------------
   15. DROPS ARCHIVE TABLE
   -------------------------------------------------------------------------- */

.archive-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.archive-table thead th {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, .45);
  text-align: left;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(247, 242, 232, .12);
}

.archive-table tbody tr {
  border-bottom: 1px solid rgba(247, 242, 232, .08);
  transition: background .2s ease;
}

.archive-table tbody tr:hover {
  background: rgba(247, 242, 232, .04);
}

.archive-table tbody td {
  padding: 20px 0;
  font-size: 18px;
  color: rgba(247, 242, 232, .8);
  vertical-align: middle;
}

.archive-table .col-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--argile);
  padding-right: 24px;
  white-space: nowrap;
}

.archive-table .col-name {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--creme);
  padding-right: 32px;
}

.archive-table .col-desc {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: rgba(247, 242, 232, .65);
}

.archive-table .col-date {
  font-family: var(--font-mono);
  font-size: 11px;
  white-space: nowrap;
  padding: 0 24px;
  opacity: .55;
}

.archive-table .col-status {
  white-space: nowrap;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.status-badge::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--argile);
  flex-shrink: 0;
}

.status-badge--open::before  { background: var(--sauge); }
.status-badge--wait::before  { background: var(--argile); }
.status-badge--sold::before  { background: rgba(247, 242, 232, .3); }

/* --------------------------------------------------------------------------
   16. TRADE CALLOUT
   -------------------------------------------------------------------------- */

.trade-callout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-2xl);
  align-items: center;
}

.trade-callout__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.trade-callout__title {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: .92;
  color: var(--encre);
}

.trade-callout__body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--cacao);
}

.trade-callout__card {
  background: var(--creme);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.trade-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.trade-feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(74, 23, 34, .1);
}

.trade-feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trade-feature__num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--argile);
  flex-shrink: 0;
  padding-top: 4px;
}

.trade-feature__title {
  font-family: var(--font-editorial);
  font-size: 22px;
  line-height: 1.1;
  color: var(--encre);
  margin-bottom: 6px;
}

.trade-feature__desc {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--cacao);
}

/* --------------------------------------------------------------------------
   17. NEWSLETTER / WAITLIST
   -------------------------------------------------------------------------- */

.newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  padding: var(--space-2xl) var(--content-pad);
}

.newsletter__monogram {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--encre);
  opacity: .15;
  letter-spacing: .08em;
}

.newsletter__head {
  font-family: var(--font-editorial);
  font-size: 36px;
  line-height: 1.1;
  color: var(--encre);
  max-width: 480px;
}

.newsletter__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--cacao);
  max-width: 400px;
}

.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  width: 100%;
}

.newsletter__input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 20px;
  border: 1px solid rgba(74, 23, 34, .25);
  border-right: none;
  background: var(--creme);
  color: var(--encre);
  outline: none;
}

.newsletter__input::placeholder {
  font-style: italic;
  opacity: .45;
}

.newsletter__input:focus {
  border-color: var(--encre);
}

.newsletter__submit {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: 14px 24px;
  background: var(--encre);
  color: var(--creme);
  border: 1px solid var(--encre);
  cursor: pointer;
  transition: background .2s ease;
  white-space: nowrap;
}

.newsletter__submit:hover {
  background: var(--encre-2);
}

/* --------------------------------------------------------------------------
   18. PAGE HEAD (section head — fond bordeaux)
   -------------------------------------------------------------------------- */

.page-head {
  background: var(--encre);
  color: var(--creme);
  padding: var(--space-2xl) var(--content-pad) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.page-head__kicker {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--argile);
}

.page-head__title {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: .88;
  max-width: 800px;
}

.page-head__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  opacity: .75;
  max-width: 560px;
}

/* --------------------------------------------------------------------------
   19. PDP — PRODUCT DETAIL PAGE
   -------------------------------------------------------------------------- */

.breadcrumb {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 18px var(--content-pad);
  background: var(--paper);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--encre);
  opacity: .6;
}

.breadcrumb a {
  transition: opacity .2s ease;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb__sep {
  opacity: .35;
  font-size: 8px;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-2xl);
  padding: var(--space-xl) var(--content-pad);
  align-items: start;
}

/* Gallery */
.pdp-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: start;
}

.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pdp-thumb {
  width: 80px;
  height: 80px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s ease;
  flex-shrink: 0;
}

.pdp-thumb.active,
.pdp-thumb:hover {
  border-color: var(--encre);
}

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

.pdp-main-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--creme-2);
}

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

.pdp-main-img .kept {
  bottom: 16px;
  left: 16px;
  font-size: 10px;
  padding: 6px 14px;
}

/* Info panel */
.pdp-info {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.pdp-kicker {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--argile);
}

.pdp-title {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: .88;
  color: var(--encre);
}

.pdp-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--cacao);
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-top: 8px;
}

.pdp-price {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  color: var(--encre);
}

.pdp-stock {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--cacao);
  opacity: .55;
  letter-spacing: .06em;
}

.pdp-cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.pdp-cta-row .btn {
  width: 100%;
  justify-content: center;
  padding: 18px 28px;
  font-size: 11px;
}

.pdp-shipping-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--cacao);
  opacity: .5;
  line-height: 1.6;
}

/* Julia's note card */
.julia-note {
  background: var(--creme);
  padding: var(--space-md) var(--space-lg);
  border-left: 3px solid var(--argile);
}

.julia-note__label {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--argile);
  margin-bottom: 10px;
}

.julia-note__text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--encre);
}

/* Specs table */
.pdp-specs {
  border-top: 1px solid rgba(74, 23, 34, .12);
  padding-top: var(--space-md);
}

.pdp-specs dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 32px;
  align-items: baseline;
}

.pdp-specs dt {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cacao);
  opacity: .55;
  white-space: nowrap;
}

.pdp-specs dd {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--encre);
}

/* Stamp section */
.stamp-section {
  background: var(--creme);
  padding: var(--space-xl) var(--content-pad);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.stamp-section__img {
  width: 180px;
  height: 180px;
  overflow: hidden;
  border: 1px solid rgba(74, 23, 34, .1);
}

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

.stamp-section__text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 20px;
  line-height: 1.55;
  color: var(--cacao);
}

.stamp-section__label {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--argile);
  margin-bottom: 12px;
}

/* Accordions */
.mm-accordion {
  border-top: 1px solid rgba(74, 23, 34, .12);
}

.mm-accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--encre);
  list-style: none;
}

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

.mm-accordion summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 22px;
  font-style: normal;
  line-height: 1;
  transition: transform .2s ease;
  flex-shrink: 0;
}

.mm-accordion[open] summary::after {
  transform: rotate(45deg);
}

.mm-accordion__body {
  padding: 0 0 24px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cacao);
}

.mm-accordion__body em {
  font-style: italic;
}

/* --------------------------------------------------------------------------
   20. COLLECTION PAGE
   -------------------------------------------------------------------------- */

.filters-bar {
  padding: var(--space-md) var(--content-pad);
  border-bottom: 1px solid rgba(74, 23, 34, .12);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  position: sticky;
  top: calc(var(--nav-height, 68px));
  z-index: 20;
}

.filter-btn {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(74, 23, 34, .22);
  background: transparent;
  color: var(--encre);
  cursor: pointer;
  transition: all .2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--encre);
  color: var(--creme);
  border-color: var(--encre);
}

/* --------------------------------------------------------------------------
   21. FOOTER
   -------------------------------------------------------------------------- */

.mm-footer {
  background: var(--encre);
  color: var(--creme);
  padding: var(--space-2xl) var(--content-pad) var(--space-lg);
}

.mm-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(247, 242, 232, .1);
}

.mm-footer__brand-mark {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: .88;
  margin-bottom: 20px;
  color: var(--creme);
}

.mm-footer__brand-desc {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(247, 242, 232, .65);
}

.mm-footer__col-title {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, .4);
  margin-bottom: var(--space-sm);
}

.mm-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mm-footer__links a {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: rgba(247, 242, 232, .75);
  transition: color .2s ease;
}

.mm-footer__links a:hover {
  color: var(--creme);
}

.mm-footer__bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(247, 242, 232, .3);
  letter-spacing: .06em;
}

/* --------------------------------------------------------------------------
   22. ABOUT / JULIA PAGE
   -------------------------------------------------------------------------- */

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: .92;
  color: var(--creme);
}

.manifesto-body {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.7;
  color: rgba(247, 242, 232, .8);
}

.manifesto-body p + p {
  margin-top: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(247, 242, 232, .08);
}

.timeline__point {
  padding: var(--space-lg);
  background: var(--encre);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline__year {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--argile);
  letter-spacing: .1em;
}

.timeline__place {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: .95;
  color: var(--creme);
}

.timeline__desc {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(247, 242, 232, .65);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.value-item__num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--argile);
}

.value-item__title {
  font-family: var(--font-editorial);
  font-size: 22px;
  line-height: 1.1;
  color: var(--encre);
}

.value-item__desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--cacao);
}

.beliefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.beliefs-col__title {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: .92;
  margin-bottom: var(--space-md);
}

.beliefs-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.beliefs-list li {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--cacao);
  padding-left: 20px;
  position: relative;
}

.beliefs-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  font-style: normal;
  color: var(--argile);
}

/* --------------------------------------------------------------------------
   23. TRADE PAGE
   -------------------------------------------------------------------------- */

.trade-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(74, 23, 34, .1);
}

.trade-features-grid .trade-feature {
  background: var(--creme);
  padding: var(--space-lg);
  flex-direction: column;
  gap: 12px;
  border-bottom: none;
}

.faq-list {
  max-width: 720px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial__quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 20px;
  line-height: 1.65;
  color: var(--creme);
}

.testimonial__attr {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, .45);
}

/* --------------------------------------------------------------------------
   24. RELATED / MIX-IT-WITH
   -------------------------------------------------------------------------- */

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --------------------------------------------------------------------------
   25. MOBILE BREAKPOINTS
   -------------------------------------------------------------------------- */

/* ==========================================================================
   RESPONSIVE — 900px (tablet)
   ========================================================================== */

@media (max-width: 900px) {
  :root {
    --content-pad:  24px;
    --space-2xl:    64px;
    --space-xl:     48px;
  }

  /* Nav */
  .mm-nav { padding: 14px 24px; }
  .mm-nav a { font-size: 13px; }
  .mm-nav__left,
  .mm-nav__desktop-only { display: none; }
  .mm-nav__hamburger    { display: block; }

  /* Hero */
  .hero     { min-height: 80vh; padding: var(--space-lg) var(--content-pad) 0; }
  .hero-mid h1    { font-size: 58px; }
  .hero-mid h1 em { font-size: 20px; }

  /* Countdown */
  .countdown {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
  }
  .countdown .label .name { font-size: 34px; }

  /* Ritual — 2 col, dernière step pleine largeur */
  .ritual                  { grid-template-columns: repeat(2, 1fr); }
  .ritual__step:last-child { grid-column: span 2; }
  .ritual__img             { aspect-ratio: 3 / 2; }

  /* Grids */
  .pieces-grid           { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .julia-block           { grid-template-columns: 1fr; }
  .julia-block__portrait { max-height: 420px; }
  .journal-grid          { grid-template-columns: 1fr; }
  .journal-card--featured .journal-card__img { aspect-ratio: 3 / 2; }
  .pdp-grid              { grid-template-columns: 1fr; }
  .pdp-info              { position: static; }
  .pdp-gallery           { grid-template-columns: 80px 1fr; }
  .manifesto-grid        { grid-template-columns: 1fr; gap: var(--space-lg); }
  .manifesto-quote       { font-size: 40px; }
  .timeline              { grid-template-columns: 1fr; }
  .values-grid           { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .beliefs-grid          { grid-template-columns: 1fr; }
  .testimonials-grid     { grid-template-columns: 1fr; }
  .trade-features-grid   { grid-template-columns: 1fr; }

  /* Archive table */
  .archive-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  /* Footer */
  .mm-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .mm-footer__bot  { flex-direction: column; gap: 8px; text-align: center; }

  /* Typography */
  .page-head__title      { font-size: 52px; }
  .julia-block__pull     { font-size: 36px; }
  .mm-footer__brand-mark { font-size: 36px; }
}

/* ==========================================================================
   RESPONSIVE — 640px (mobile)
   ========================================================================== */

@media (max-width: 640px) {
  :root {
    --content-pad: 20px;
    --space-2xl:   48px;
    --space-xl:    36px;
    --space-lg:    32px;
  }

  /* Nav */
  .mm-nav     { padding: 12px 20px; }
  .brand-mark { font-size: 26px; }

  /* Hero */
  .hero       { min-height: 0; padding: 40px var(--content-pad) 0; }
  .hero-mid h1      { font-size: 44px; }
  .hero-mid h1 em   { font-size: 18px; }

  /* Countdown */
  .countdown  { padding: 20px; gap: 20px; }
  .countdown .label .name { font-size: 28px; }
  .countdown .cta-row { flex-direction: column; gap: 10px; }
  .countdown .cta-row .btn { width: 100%; justify-content: center; }

  /* Clock */
  .clock .unit .n { font-size: 48px; }
  .clock .sep     { font-size: 32px; }
  .clock .unit    { min-width: 56px; }

  /* Ritual — 1 colonne */
  .ritual                  { grid-template-columns: 1fr; }
  .ritual__step:last-child { grid-column: span 1; }
  .ritual__img             { aspect-ratio: 16 / 9; }
  .ritual__step            { padding: var(--space-md); }

  /* Grids */
  .pieces-grid   { grid-template-columns: 1fr; }
  .journal-grid  { grid-template-columns: 1fr; }
  .pdp-gallery   { grid-template-columns: 1fr; }
  .pdp-thumbs    { flex-direction: row; overflow-x: auto; gap: 8px; }
  .pdp-thumb     { width: 64px; height: 64px; }
  .stamp-section { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .trade-callout { grid-template-columns: 1fr; }

  /* Julia */
  .julia-block__portrait { max-height: 320px; }
  .julia-block__pull     { font-size: 30px; }

  /* Typography */
  .hero-mid h1      { font-size: 44px; }
  .pdp-title        { font-size: 44px; }
  .page-head__title { font-size: 40px; }
  .mm-section__title { font-size: 40px; }

  /* Footer */
  .mm-footer__grid { grid-template-columns: 1fr; }

  /* Mobile menu */
  .mm-mobile-menu__links a { font-size: 38px; }
}

/* ==========================================================================
   RESPONSIVE — 430px (small mobile)
   ========================================================================== */

@media (max-width: 430px) {
  :root {
    --content-pad: 16px;
    --space-lg:    24px;
  }

  /* Ribbon */
  .ribbon .hide-sm { display: none; }
  .ribbon          { gap: 20px; }

  /* Hero */
  .hero-mid h1    { font-size: 36px; }
  .hero-mid h1 em { font-size: 16px; }

  /* Countdown clock — 2×2 sur très petit écran */
  .clock {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    width: 100%;
  }
  .clock .unit .n { font-size: 40px; }
  .clock .sep     { font-size: 28px; align-self: center; margin-top: 0; }
  .clock .unit    { min-width: 0; }

  /* Countdown */
  .countdown .label .name { font-size: 24px; }

  /* Typography */
  .page-head__title  { font-size: 34px; }
  .manifesto-quote   { font-size: 28px; }
  .julia-block__pull { font-size: 26px; }

  /* Mobile menu */
  .mm-mobile-menu__links a { font-size: 32px; }
  .mm-mobile-menu__links   { gap: 2px; }
}

/* --------------------------------------------------------------------------
   26. UTILITY CLASSES
   -------------------------------------------------------------------------- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.color-encre  { color: var(--encre); }
.color-creme  { color: var(--creme); }
.color-argile { color: var(--argile); }
.color-sauge  { color: var(--sauge); }
.color-cacao  { color: var(--cacao); }

.bg-encre  { background: var(--encre); }
.bg-creme  { background: var(--creme); }
.bg-paper  { background: var(--paper); }
.bg-olive  { background: var(--olive); }

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }

.max-w-content {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
