/* ============================================================
   Mikadodeco · design system
   Identity decisions in MIKADO_IDENTITY.md.
   - Warm base #f8f5ef + brown-black ink + BABY-BLUE signature (#9ad4f0)
   - Cormorant Garamond display (matches logo) + Neue Haas Grotesk body
   - Signature: baby-blue detailing thread + atelier lockups/seal
   ============================================================ */

/* Fonts: Cormorant Garamond (Google) for display, plus the Adobe Fonts kit
   (gqc3ska) providing "gopher" (body) + "neue-haas-grotesk-display" (product
   names) + "neue-haas-grotesk-text" (available fallback). Loaded in index.html. */

:root {
  /* --- Mikado palette --- */
  --paper:      #f8f5ef;   /* warm base */
  --paper-2:    #efe9df;   /* warm band · USP, alt sections */
  --tile:       #efeae1;   /* product / image backdrop */
  --ink:        #1a1916;   /* warm brown-black */
  --ink-deep:   #1a1916;
  --muted:      #7c756c;   /* secondary text */
  --subtle:     #a39c91;   /* meta */
  --line:       #e0d9cf;   /* warm beige hairline */
  --line-ink:   #1a1916;   /* button/strong borders */

  /* signature baby blue */
  --accent:     #9ad4f0;   /* light baby blue · fills, rules, underlines */
  --accent-ink: #4ea7d6;   /* deeper companion · legible text/tags on cream */
  --accent-soft:#e6f4fb;   /* tint · the one "blue moment" panel */

  --on-dark:    #f8f5ef;   /* text over imagery */

  /* --- type --- */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'neue-haas-grotesk-text', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;  /* body / UI */
  --sans-product: 'neue-haas-grotesk-display', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif; /* product names + same tier */

  --fs-display: clamp(44px, 5vw, 92px);   /* Cormorant is narrow/light · runs larger */
  --fs-h2:      clamp(28px, 2.6vw, 40px);
  --fs-nav:     14px;
  --fs-body:    16px;
  --fs-small:   14px;
  --fs-meta:    12px;

  --container: 2560px;
  --gutter:    24px;
  --gap:       24px;
  --nav-h:     92px;
  --section-y: clamp(48px, 5vw, 88px);
  --ease:      cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: var(--fs-body); line-height: 1.55; font-weight: 400; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 2px; }

/* Cormorant display · needs weight 500-600 for presence */
.serif { font-family: var(--serif); font-weight: 600; line-height: 1.06; letter-spacing: 0; color: var(--ink-deep); }
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   NAV + ANNOUNCEMENT
   ============================================================ */
.chrome { position: fixed; top: 0; left: 0; right: 0; z-index: 80; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); color: var(--on-dark); border-bottom: 1px solid transparent; }
.announce { position: relative; height: 34px; padding-inline: var(--gutter); display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--accent); color: var(--ink-deep); }
.announce span { position: absolute; font-size: var(--fs-nav); opacity: 0; transition: opacity .5s var(--ease); }
.announce span.on { opacity: 1; }
.nav__inner { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 24px; max-width: var(--container); margin-inline: auto; padding: 18px var(--gutter) 16px; }
.nav__left { display: flex; align-items: center; gap: 16px; }
.wordmark { display: inline-flex; align-items: center; line-height: 1; }
.wordmark img { height: clamp(20px, 1.7vw, 28px); width: auto; display: block; }
.chrome .wordmark img { filter: brightness(0) invert(1); transition: filter .3s var(--ease); }
.chrome--solid .wordmark img, .chrome:hover .wordmark img { filter: none; }
.lockup { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .8; white-space: nowrap; }
.selector { font-size: 13px; opacity: .85; }
.nav__rightwrap { display: flex; align-items: center; justify-content: flex-end; gap: clamp(28px, 5vw, 64px); }
.nav__center { display: flex; gap: 24px; }
.nav__right { display: flex; align-items: center; gap: 24px; }
.chrome a.nlink, .chrome .nav__util { font-size: var(--fs-nav); font-weight: 400; position: relative; white-space: nowrap; }
.chrome a.nlink::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 100%; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.chrome a.nlink:hover::after { transform: scaleX(1); }
.nav__burger { display: none; font-size: var(--fs-nav); }
.chrome--solid, .chrome:hover { background: var(--paper); color: var(--ink); border-bottom-color: var(--line); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; background: var(--paper); color: var(--ink); z-index: 100; transform: translateX(-100%); transition: transform .4s var(--ease); display: flex; flex-direction: column; padding: 22px var(--gutter); }
.drawer.open { transform: none; }
.drawer__close { align-self: flex-end; font-size: 30px; line-height: 1; margin-bottom: 14px; }
.drawer a { font-family: var(--serif); font-weight: 600; font-size: 32px; padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--ink-deep); }
@media (min-width: 921px) { .drawer { display: none; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: var(--fs-small); font-weight: 500; padding: 13px 26px; border-radius: 0; transition: background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease); }
.btn--outline { border: 1px solid var(--line-ink); color: var(--ink-deep); background: transparent; }
.btn--outline:hover { background: var(--ink-deep); color: var(--paper); }
.btn--light { border: 1px solid rgba(248,245,239,.9); color: var(--on-dark); background: transparent; }
.btn--light:hover { background: var(--on-dark); color: var(--ink-deep); }
.btn--solid { background: var(--ink-deep); color: var(--paper); }
.btn--solid:hover { background: #000; }
.btn--blue { background: var(--accent); color: var(--ink-deep); border: 1px solid var(--accent); }
.btn--blue:hover { background: var(--accent-ink); border-color: var(--accent-ink); color: var(--paper); }
.btn--block { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; height: 64vh; min-height: 480px; max-height: 820px; overflow: hidden; background: var(--tile); }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(95deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.12) 34%, transparent 62%); }
.hero__content { position: relative; z-index: 2; max-width: var(--container); margin-inline: auto; padding: var(--nav-h) var(--gutter) 0; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero h1 { font-family: var(--serif); font-weight: 600; font-size: var(--fs-display); line-height: 1.0; color: var(--on-dark); max-width: 18ch; }
.hero__cta { margin-top: 28px; }

/* ============================================================
   CATEGORY CAROUSEL
   ============================================================ */
.catscroll { display: flex; gap: var(--gap); overflow-x: auto; scroll-snap-type: x mandatory; padding-inline: var(--gutter); max-width: var(--container); margin-inline: auto; scrollbar-width: none; }
.catscroll::-webkit-scrollbar { display: none; }
.cat { position: relative; flex: 0 0 calc((100% - var(--gutter) * 2 - var(--gap) * 3) / 4); aspect-ratio: 450 / 600; overflow: hidden; background: var(--tile); scroll-snap-align: start; }
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.cat:hover img { transform: scale(1.04); }
.cat__label { position: absolute; left: 22px; bottom: 20px; color: var(--on-dark); font-family: var(--serif); font-weight: 600; font-size: 26px; text-shadow: 0 1px 16px rgba(0,0,0,.3); z-index: 2; }
.cat::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.34), transparent 50%); }

/* ============================================================
   SECTION HEADER · serif + baby-blue rule (signature detail)
   ============================================================ */
.shead { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 2px solid var(--accent); }
.shead h2 { font-family: var(--serif); font-weight: 600; font-size: var(--fs-h2); line-height: 1.05; max-width: 24ch; }
.shead a { font-size: var(--fs-small); color: var(--ink); border-bottom: 1px solid var(--accent-ink); padding-bottom: 3px; white-space: nowrap; transition: color .25s var(--ease); }
.shead a:hover { color: var(--accent-ink); }

/* ============================================================
   EDITORIAL FEATURE · 50/50; one variant gets the blue panel
   ============================================================ */
.feature { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: min(86vh, 980px); }
.feature--rev .feature__media { order: 2; }
.feature__media { overflow: hidden; background: var(--tile); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__body { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(32px, 5vw, 96px); }
.feature__body h2 { font-family: var(--serif); font-weight: 600; font-size: var(--fs-display); line-height: 1.0; margin-bottom: 22px; max-width: 14ch; }
.feature__body p { color: var(--muted); max-width: 42ch; margin-bottom: 28px; font-size: 17px; }
.feature--accent .feature__body { background: var(--accent-soft); }   /* the single blue moment */

/* ============================================================
   PRODUCT ROW · baby-blue tag + price (signature detail)
   ============================================================ */
.prow { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.prow--4 { grid-template-columns: repeat(4, 1fr); }
.pcard { display: flex; flex-direction: column; }
.pcard__media { position: relative; aspect-ratio: 1/1; background: var(--tile); overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transition: opacity .35s var(--ease); }
.pcard__media img.alt { position: absolute; inset: 0; opacity: 0; }
.pcard:hover .pcard__media img.main { opacity: 0; }
.pcard:hover .pcard__media img.alt { opacity: 1; }
.pcard__tags { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; z-index: 2; }
.tag { font-family: var(--sans-product); font-weight: 600; font-size: var(--fs-meta); padding: 3px 8px; border: 1px solid var(--accent-ink); color: var(--accent-ink); background: var(--paper); letter-spacing: .04em; text-transform: uppercase; }
.pcard__heart { position: absolute; top: 10px; right: 12px; z-index: 2; width: 24px; height: 24px; color: var(--ink-deep); }
/* product-name tier · Neue Haas Grotesk Display, SemiBold (600) */
.pcard__brand { font-family: var(--sans-product); font-weight: 600; font-size: var(--fs-meta); color: var(--subtle); text-transform: uppercase; letter-spacing: .08em; margin-top: 14px; }
.pcard__name { font-family: var(--sans-product); font-weight: 600; font-size: var(--fs-small); color: var(--ink-deep); margin-top: 4px; line-height: 1.35; }
.pcard__price { font-family: var(--sans-product); font-weight: 600; font-size: var(--fs-small); color: var(--accent-ink); margin-top: 4px; }
.pcard__cta { margin-top: 14px; }
.pcard__skel { aspect-ratio: 1/1; background: var(--tile); animation: pulse 1.4s var(--ease) infinite; }
@keyframes pulse { 0%,100%{opacity:.55} 50%{opacity:1} }

/* ============================================================
   SHOP BY ROOM
   ============================================================ */
.room { display: grid; grid-template-columns: 1.4fr 1fr; gap: 0; min-height: 520px; }
.room__media { overflow: hidden; background: var(--tile); }
.room__media img { width: 100%; height: 100%; object-fit: cover; }
.room__body { background: var(--paper-2); padding: clamp(32px, 4vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.room__body h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(32px, 3.2vw, 52px); line-height: 1.02; margin-bottom: 24px; }
.room__links { display: flex; flex-wrap: wrap; gap: 10px; }
.room__links a { border: 1px solid var(--accent-ink); color: var(--accent-ink); padding: 9px 16px; font-size: var(--fs-small); transition: background .25s var(--ease), color .25s var(--ease); }
.room__links a:hover { background: var(--accent-ink); color: var(--paper); }

/* ============================================================
   UGC GALLERY
   ============================================================ */
.ugc__head { text-align: center; margin-bottom: 24px; }
.ugc__head h2 { font-family: var(--serif); font-weight: 600; font-size: var(--fs-h2); }
.ugc__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.ugc__grid img { aspect-ratio: 1/1; object-fit: cover; width: 100%; background: var(--tile); }

/* ============================================================
   USP BAND + FOOTER (+ atelier seal)
   ============================================================ */
.usp { background: var(--paper-2); }
.usp .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 48px); padding-block: clamp(44px, 5vw, 76px); }
.usp__col h3 { font-family: var(--serif); font-weight: 600; font-size: 28px; margin-bottom: 10px; }
.usp__col p { color: var(--muted); font-size: var(--fs-small); }

/* ============================================================
   BRAND LOGO MARQUEE  ·  "quelques-unes de nos maisons"
   ============================================================ */
.brandmarquee { border-block: 1px solid var(--line); padding-block: clamp(36px, 4vw, 64px); overflow: hidden; }
.brandmarquee__head { text-align: center; font-size: var(--fs-meta); text-transform: uppercase; letter-spacing: .18em; color: var(--subtle); margin-bottom: clamp(22px, 3vw, 36px); }
.brandmarquee__viewport { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.brandmarquee__track { display: flex; align-items: center; gap: clamp(48px, 6vw, 104px); width: max-content; animation: brand-scroll 42s linear infinite; }
.brandmarquee:hover .brandmarquee__track { animation-play-state: paused; }
.brandmarquee__item { flex: 0 0 auto; display: inline-flex; align-items: center; }
.brandmarquee__logo { height: clamp(20px, 2.3vw, 28px); width: auto; opacity: .5; transition: opacity .3s var(--ease); }
.brandmarquee__item:hover .brandmarquee__logo { opacity: 1; }
.brandmarquee__wordmark { font-family: var(--sans-product); font-size: clamp(16px, 1.7vw, 22px); font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); white-space: nowrap; transition: color .25s var(--ease); }
.brandmarquee__item:hover .brandmarquee__wordmark { color: var(--ink-deep); }
@keyframes brand-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .brandmarquee__track { animation: none; width: 100%; flex-wrap: wrap; justify-content: center; gap: clamp(28px, 4vw, 56px); }
  .brandmarquee__viewport { -webkit-mask: none; mask: none; }
}

/* ============================================================
   SOCIAL PROOF  ·  stats band (dark)
   ============================================================ */
.stats { background: var(--ink-deep); color: var(--on-dark); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 3vw, 56px); padding-block: clamp(52px, 5.5vw, 92px); text-align: center; }
.stat__num { font-family: var(--serif); font-weight: 600; font-size: clamp(42px, 4.6vw, 72px); line-height: 1; color: var(--on-dark); display: inline-flex; align-items: baseline; justify-content: center; gap: 6px; }
.stat__suf { font-size: .42em; color: var(--accent); letter-spacing: .02em; }
.stat__label { margin-top: 14px; font-size: var(--fs-small); color: rgba(248,245,239,.72); max-width: 22ch; margin-inline: auto; }
@media (max-width: 920px) {
  .stats .wrap { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .stat__label { max-width: 26ch; }
}
@media (max-width: 540px) {
  .brandstrip__row { gap: 18px 26px; }
}

.footer { background: var(--paper); border-top: 1px solid var(--line); }
.footer .wrap { padding-block: clamp(48px, 6vw, 84px); }
.footer__lockbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: clamp(32px, 4vw, 56px); margin-bottom: clamp(32px, 4vw, 56px); border-bottom: 1px solid var(--line); }
.footer__lockbar .lockup-lg { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.seal { width: 104px; height: 104px; color: var(--accent-ink); flex: 0 0 auto; animation: seal-spin 40s linear infinite; }
@keyframes seal-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .seal { animation: none; } }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__news h4 { font-family: var(--serif); font-weight: 600; font-size: 28px; margin-bottom: 12px; }
.footer__news p { color: var(--muted); font-size: var(--fs-small); max-width: 38ch; margin-bottom: 18px; }
.footer__form { display: flex; flex-direction: column; gap: 10px; max-width: 340px; }
.footer__form input { border: 1px solid var(--line); background: var(--paper); padding: 14px 16px; font: inherit; font-size: var(--fs-small); }
.footer__form input:focus { outline: none; border-color: var(--accent-ink); }
.footer__news-status { font-size: var(--fs-small); margin-top: 2px; }
.footer__news-status.is-ok { color: var(--accent-ink); }
.footer__news-status.is-error { color: var(--danger, #c43d3d); }
.footer h5 { font-size: var(--fs-small); font-weight: 600; color: var(--ink-deep); margin-bottom: 16px; }
.footer li { margin-bottom: 11px; }
.footer li a { font-size: var(--fs-small); color: var(--muted); }
.footer li a:hover { color: var(--accent-ink); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: clamp(40px, 5vw, 64px); padding-top: 22px; border-top: 1px solid var(--line); font-size: var(--fs-small); color: var(--muted); }
.footer__bottom nav { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.pay { display: flex; gap: 8px; }
.pay span { font-size: var(--fs-meta); border: 1px solid var(--line); padding: 4px 8px; color: var(--subtle); border-radius: 3px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .cat { flex-basis: calc((100% - var(--gutter) * 2 - var(--gap) * 2) / 3); }
  .prow, .prow--4 { grid-template-columns: repeat(3, 1fr); }
  .ugc__grid { grid-template-columns: repeat(3, 1fr); }
  .usp .wrap { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .nav__center, .nav__util-extra, .selector, .lockup { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__inner { grid-template-columns: auto 1fr; }
  .nav__rightwrap { justify-content: flex-end; }
}
@media (max-width: 680px) {
  .hero { height: 72vh; }
  .cat { flex-basis: calc((100% - var(--gutter) * 2 - var(--gap)) / 2); }
  .prow, .prow--4 { grid-template-columns: 1fr 1fr; }
  .feature, .room { grid-template-columns: 1fr; min-height: 0; }
  .feature--rev .feature__media { order: 0; }
  .feature__media, .room__media { aspect-ratio: 4/5; }
  .shead { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ugc__grid { grid-template-columns: repeat(2, 1fr); }
  .usp .wrap { grid-template-columns: 1fr; gap: 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__lockbar { justify-content: center; text-align: center; }
}

/* ============================================================
   SHARED PAGE PRIMITIVES (catalogue, brands, selection, forms, journal)
   ============================================================ */
.nav__cart { position: relative; display: inline-flex; align-items: center; color: inherit; }
.nav__cart svg { display: block; }
.cartcount { position: absolute; top: -7px; right: -9px; display: inline-flex; align-items: center; justify-content: center; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 8px; background: var(--accent-ink); color: var(--paper); font-size: 10px; font-weight: 600; line-height: 1; }
.cartcount.is-empty { display: none; }
.chrome a.nlink.is-active::after { transform: scaleX(1); background: var(--accent); }

/* non-hero pages clear the fixed chrome (+ breathing room before footer) */
body.has-topnav .page { padding-top: 116px; padding-bottom: clamp(56px, 7vw, 104px); }

/* ---------- lookbook (homepage editorial inspiration) ---------- */
.lookbook { display: grid; grid-template-columns: 2fr 1fr; grid-auto-rows: 1fr; gap: clamp(10px, 1.2vw, 18px); }
.lookbook__cell { position: relative; overflow: hidden; background: var(--tile); display: block; }
.lookbook__cell--tall { grid-row: span 2; }
.lookbook__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); aspect-ratio: 3/2; }
.lookbook__cell--tall img { aspect-ratio: 3/4; }
.lookbook__cell:hover img { transform: scale(1.04); }
.lookbook__label { position: absolute; left: 20px; bottom: 18px; z-index: 2; color: var(--on-dark); font-family: var(--serif); font-weight: 600; font-size: 24px; text-shadow: 0 1px 16px rgba(0,0,0,.3); }
.lookbook__cell::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.32), transparent 52%); }
@media (max-width: 760px) { .lookbook { grid-template-columns: 1fr 1fr; } .lookbook__cell--tall { grid-row: span 1; } .lookbook__cell--tall img { aspect-ratio: 3/2; } }

/* subpage hero (shorter than home) */
.subhero { position: relative; height: 44vh; min-height: 320px; max-height: 520px; overflow: hidden; background: var(--tile); }
.subhero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.subhero__scrim { position: absolute; inset: 0; background: linear-gradient(95deg, rgba(0,0,0,.34) 0%, rgba(0,0,0,.14) 38%, transparent 66%); }
.subhero__in { position: relative; z-index: 2; max-width: var(--container); margin-inline: auto; padding: var(--nav-h) var(--gutter) 0; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.subhero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(40px, 5vw, 76px); line-height: 1.0; color: var(--on-dark); max-width: 18ch; }
.subhero p { color: rgba(248,245,239,.9); margin-top: 14px; max-width: 46ch; font-size: 17px; }

/* page head for form / list pages (no hero image) */
.pagehead { padding-block: clamp(28px, 4vw, 56px) clamp(24px, 3vw, 40px); border-bottom: 2px solid var(--accent); margin-bottom: clamp(28px, 4vw, 52px); }
.pagehead h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(38px, 4.4vw, 64px); line-height: 1.0; }
.pagehead p { color: var(--muted); max-width: 56ch; margin-top: 14px; font-size: 17px; }
.eyebrow { font-size: var(--fs-meta); text-transform: uppercase; letter-spacing: .16em; color: var(--accent-ink); font-weight: 500; margin-bottom: 16px; display: block; }

/* ---------- catalogue ---------- */
.filterbar { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--paper) 92%, transparent); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding: 14px var(--gutter); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-size: var(--fs-small); padding: 8px 15px; border: 1px solid var(--line-ink); background: transparent; color: var(--ink); transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.chip:hover { border-color: var(--accent-ink); color: var(--accent-ink); }
.chip.is-active { background: var(--ink-deep); border-color: var(--ink-deep); color: var(--paper); }
.filterbar__right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.fselect { font-family: inherit; font-size: var(--fs-small); border: 1px solid var(--line); background: var(--paper); padding: 9px 12px; color: var(--ink); }
.plp-count { font-size: var(--fs-small); color: var(--muted); }
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 30px) var(--gap); }
.catalogue-head { font-size: var(--fs-h2); line-height: 1.05; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 2px solid var(--accent); }
.plp-empty { grid-column: 1 / -1; color: var(--muted); padding: 60px 0; text-align: center; }
.loadmore-wrap { display: flex; justify-content: center; padding-top: clamp(32px, 4vw, 56px); }

/* ---------- brands ---------- */
.brandgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.brandcard { display: flex; flex-direction: column; justify-content: space-between; min-height: 200px; border: 1px solid var(--line); padding: 24px; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
.brandcard:hover { background: var(--ink-deep); color: var(--paper); border-color: var(--ink-deep); }
.brandcard:hover .brandcard__count, .brandcard:hover .brandcard__origin { color: rgba(248,245,239,.7); }
.brandcard__origin { font-size: var(--fs-meta); text-transform: uppercase; letter-spacing: .1em; color: var(--subtle); }
.brandcard__name { font-family: var(--serif); font-weight: 600; font-size: 30px; line-height: 1.05; margin-top: auto; }
.brandcard__logo { display: block; height: 32px; width: auto; max-width: 75%; object-fit: contain; object-position: left bottom; margin-top: auto; transition: filter .25s var(--ease); }
.brandcard:hover .brandcard__logo { filter: brightness(0) invert(1); }
.brandcard__count { font-size: var(--fs-small); color: var(--muted); margin-top: 6px; }

/* ---------- selection (cart) ---------- */
.sel { display: grid; grid-template-columns: 1.7fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.sel-item { display: grid; grid-template-columns: 96px 1fr auto; gap: 20px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.sel-item__img { width: 96px; height: 96px; object-fit: cover; background: var(--tile); }
.sel-item__brand { font-family: var(--sans-product); font-weight: 600; font-size: var(--fs-meta); text-transform: uppercase; letter-spacing: .08em; color: var(--subtle); }
.sel-item__name { font-family: var(--sans-product); font-weight: 600; font-size: var(--fs-body); color: var(--ink-deep); margin-top: 2px; }
.sel-item__price { font-family: var(--sans-product); font-weight: 600; color: var(--accent-ink); }
.sel-item__remove { background: none; border: none; color: var(--muted); font-size: var(--fs-small); text-decoration: underline; cursor: pointer; margin-top: 6px; }
.sel-summary { position: sticky; top: 130px; background: var(--paper-2); padding: clamp(24px, 3vw, 36px); }
.sel-summary h2 { font-family: var(--serif); font-weight: 600; font-size: 28px; margin-bottom: 18px; }
.sel-row { display: flex; justify-content: space-between; font-size: var(--fs-small); padding: 8px 0; }
.sel-row--total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-size: var(--fs-body); font-weight: 500; color: var(--ink-deep); }
.sel-opt { margin: 18px 0; }
.sel-opt h3 { font-size: var(--fs-meta); text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 10px; }
.sel-opt label { display: flex; gap: 10px; align-items: baseline; font-size: var(--fs-small); padding: 7px 0; cursor: pointer; }
.sel-opt input { accent-color: var(--accent-ink); margin-top: 2px; }
.sel-empty { text-align: center; padding: clamp(48px, 8vw, 120px) 0; }
.sel-empty h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 3vw, 44px); margin-bottom: 16px; }

/* ---------- forms ---------- */
.formwrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: start; }
.formwrap--three { grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: var(--fs-meta); text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.field input, .field select, .field textarea { width: 100%; min-width: 0; font-family: inherit; font-size: var(--fs-body); border: 1px solid var(--line); background: var(--paper); padding: 13px 15px; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent-ink); }
.field textarea { resize: vertical; min-height: 130px; }
.formgrid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-error { color: var(--danger, #c43d3d); font-size: var(--fs-small); }
.form-aside { background: var(--paper-2); padding: clamp(24px, 3vw, 40px); }
.form-aside h3 { font-family: var(--serif); font-weight: 600; font-size: 24px; margin-bottom: 14px; }
.form-aside p, .form-aside li { font-size: var(--fs-small); color: var(--muted); line-height: 1.7; }
.form-aside a { color: var(--accent-ink); }
.form-success { background: var(--accent-soft); padding: clamp(32px, 5vw, 64px); text-align: center; }
.form-success h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 3vw, 44px); margin-bottom: 14px; }
.hours { width: 100%; font-size: var(--fs-small); border-collapse: collapse; margin-top: 8px; }
.hours td { padding: 5px 0; color: var(--muted); }
.hours td:last-child { text-align: right; }

/* ---------- product detail ---------- */
.pdp { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.pdp__back { display: inline-block; font-size: var(--fs-small); color: var(--accent-ink); margin-bottom: 22px; }
.pdp__main { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: var(--tile); }
.pdp__thumbs { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.pdp__thumbs img { width: 74px; height: 74px; object-fit: cover; background: var(--tile); cursor: pointer; opacity: .55; transition: opacity .2s var(--ease); }
.pdp__thumbs img:hover { opacity: .85; }
.pdp__thumbs img.is-active { opacity: 1; outline: 1px solid var(--ink-deep); outline-offset: 2px; }
.pdp__info { position: sticky; top: 130px; }
.pdp__brand { font-family: var(--sans-product); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: var(--fs-meta); color: var(--accent-ink); }
.pdp__name { font-family: var(--serif); font-weight: 600; font-size: clamp(32px, 3.4vw, 50px); line-height: 1.03; margin: 8px 0 6px; }
.pdp__designer { color: var(--muted); font-size: var(--fs-small); }
.pdp__price { font-family: var(--sans-product); font-weight: 600; font-size: 22px; color: var(--ink-deep); margin: 18px 0; }
.pdp__variants { margin: 18px 0; }
.pdp__variants .label { display: block; font-size: var(--fs-meta); text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 9px; }
.variant-chip { font-family: inherit; font-size: var(--fs-small); padding: 9px 15px; border: 1px solid var(--line-ink); background: transparent; color: var(--ink); margin: 0 8px 8px 0; cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.variant-chip:hover { border-color: var(--accent-ink); color: var(--accent-ink); }
.variant-chip.is-active { background: var(--ink-deep); border-color: var(--ink-deep); color: var(--paper); }
.variant-chip:disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.pdp__desc { color: var(--ink); line-height: 1.7; margin: 18px 0 4px; white-space: pre-line; }
.pdp__cta { margin: 18px 0 8px; }
.pdp__note { font-size: var(--fs-small); color: var(--muted); }
.pdp__note a { color: var(--accent-ink); }
.pdp__meta { margin-top: 26px; border-top: 1px solid var(--line); }
.pdp__meta div { display: flex; justify-content: space-between; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: var(--fs-small); }
.pdp__meta dt { color: var(--muted); }
.pdp__meta dd { color: var(--ink-deep); text-align: right; }
@media (max-width: 760px) { .pdp { grid-template-columns: 1fr; } .pdp__info { position: static; } }

/* ---------- article ---------- */
.article { max-width: 760px; margin-inline: auto; }
.article__back { display: inline-block; font-size: var(--fs-small); color: var(--accent-ink); margin-bottom: 24px; }
.article__meta { font-size: var(--fs-meta); text-transform: uppercase; letter-spacing: .12em; color: var(--accent-ink); margin-bottom: 14px; }
.article__title { font-family: var(--serif); font-weight: 600; font-size: clamp(38px, 4.6vw, 64px); line-height: 1.02; margin-bottom: 16px; }
.article__lead { font-size: 20px; line-height: 1.5; color: var(--ink-deep); margin-bottom: 28px; }
.article__hero { width: 100%; aspect-ratio: 3/2; object-fit: cover; background: var(--tile); margin-bottom: 36px; }
.prose p { font-size: 17px; line-height: 1.7; color: var(--ink); margin-bottom: 20px; }
.prose h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 2.6vw, 34px); line-height: 1.1; margin: 36px 0 14px; }
.prose blockquote { font-family: var(--serif); font-weight: 500; font-size: 26px; line-height: 1.25; color: var(--ink-deep); border-left: 3px solid var(--accent); padding-left: 22px; margin: 28px 0; }

/* ---------- rendez-vous hero (form top-right) ---------- */
.rdv-hero { position: relative; min-height: 740px; overflow: hidden; background: var(--tile); }
.rdv-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 85%; }
.rdv-hero__scrim { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(0,0,0,.46) 0%, rgba(0,0,0,.2) 38%, rgba(0,0,0,.05) 64%, transparent 80%); }
.rdv-hero__in { position: relative; z-index: 2; max-width: var(--container); margin-inline: auto; padding: calc(var(--nav-h) + 16px) var(--gutter) 56px; min-height: 740px; display: grid; grid-template-columns: 1fr minmax(380px, 440px); align-items: end; gap: 40px; }
.rdv-hero__text { color: var(--on-dark); max-width: 22ch; }
.rdv-hero__text .eyebrow { color: rgba(248,245,239,.85); }
.rdv-hero__text h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(40px, 5vw, 76px); line-height: 1.0; }
.rdv-hero__text p { margin-top: 14px; font-size: 17px; color: rgba(248,245,239,.92); max-width: 38ch; }
.rdv-form-card { align-self: start; background: var(--paper); padding: clamp(26px, 2.4vw, 38px); box-shadow: 0 24px 60px rgba(26,25,22,.18); }
.rdv-form-card h3 { font-family: var(--serif); font-weight: 600; font-size: 28px; margin-bottom: 4px; }
.rdv-form-card .muted { color: var(--muted); font-size: var(--fs-small); margin-bottom: 18px; }
@media (max-width: 860px) {
  .rdv-hero { min-height: 0; }
  .rdv-hero__in { grid-template-columns: 1fr; align-items: start; min-height: 0; gap: 28px; padding-top: calc(var(--nav-h) + 8px); }
  .rdv-hero__text { padding-top: 12px; }
}

/* ============================================================
   NOUS TROUVER · bespoke brand-styled location block
   Warm-tinted CARTO map + overlapping storefront print +
   baby-blue pin. This carries the page's single "blue moment".
   ============================================================ */
.locate { background: var(--paper); padding-block: var(--section-y); }
.locate__head { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); margin-bottom: clamp(24px, 3vw, 44px); }
.locate__head h2 { font-family: var(--serif); font-weight: 600; font-size: var(--fs-h2); line-height: 1.04; }
.locate__grid {
  max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: minmax(290px, 380px) 1fr; gap: clamp(20px, 2.6vw, 48px); align-items: stretch;
}

/* info rail · the soft-blue panel */
.locate__rail { background: var(--accent-soft); padding: clamp(26px, 2.4vw, 44px); display: flex; flex-direction: column; }
.locate__addr { font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 2.2vw, 32px); line-height: 1.08; color: var(--ink-deep); }
.locate__sub { color: var(--muted); margin-top: 6px; font-size: var(--fs-small); }
.locate__rule { height: 1px; background: var(--accent); opacity: .6; margin: clamp(20px, 2vw, 28px) 0; }
.locate__rail .hours td { color: var(--ink-deep); }
.locate__studio { margin-top: 22px; font-size: var(--fs-small); color: var(--muted); line-height: 1.6; }
.locate__studio a { color: var(--accent-ink); border-bottom: 1px solid var(--accent-ink); padding-bottom: 1px; transition: color .25s var(--ease); }
.locate__studio a:hover { color: var(--ink-deep); }
.locate__actions { margin-top: auto; padding-top: clamp(24px, 2.6vw, 34px); display: flex; flex-direction: column; gap: 12px; }

/* map showpiece */
.locate__map-wrap { position: relative; isolation: isolate; z-index: 0; min-height: 480px; overflow: hidden; background: var(--tile); border: 1px solid var(--line-ink); box-shadow: 0 24px 60px rgba(26,25,22,.18); }
.locate__map { position: absolute; inset: 0; background: var(--tile); }
/* warm-tint the map tiles toward cream so it reads Mikado, not stock Google */
.locate__map .leaflet-tile-pane { filter: grayscale(1) contrast(1.05) brightness(1.02); }
.locate__map-wrap::after { content: ""; position: absolute; inset: 0; background: var(--paper); mix-blend-mode: multiply; opacity: .05; pointer-events: none; z-index: 410; }
.locate__frame { position: absolute; inset: 14px; border: 1px solid rgba(248,245,239,.55); pointer-events: none; z-index: 420; }

/* overlapping storefront print · imagery focus */
.locate__photo { position: absolute; left: 20px; bottom: 20px; width: clamp(132px, 22%, 210px); margin: 0; z-index: 430; background: var(--paper); padding: 6px 6px 0; box-shadow: 0 16px 38px rgba(26,25,22,.30); }
.locate__photo img { aspect-ratio: 4/5; object-fit: cover; width: 100%; background: var(--tile); }
.locate__photo figcaption { font-size: var(--fs-meta); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); text-align: center; padding: 8px 4px 7px; }

/* baby-blue teardrop pin + slow pulse */
.mikado-pin { position: relative; }
.mikado-pin__svg { position: relative; z-index: 2; display: block; width: 34px; height: 42px; fill: var(--accent); stroke: var(--accent-ink); stroke-width: 1.4; filter: drop-shadow(0 6px 9px rgba(26,25,22,.35)); }
.mikado-pin__svg circle { fill: var(--paper); stroke: none; }
.mikado-pin__ring { position: absolute; left: 17px; bottom: 2px; width: 16px; height: 16px; transform: translate(-50%, 50%) scale(.6); border-radius: 50%; background: var(--accent-ink); opacity: .5; z-index: 1; animation: pin-pulse 2.6s var(--ease) infinite; }
@keyframes pin-pulse { 0% { transform: translate(-50%,50%) scale(.6); opacity: .5; } 70% { transform: translate(-50%,50%) scale(2.7); opacity: 0; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .mikado-pin__ring { animation: none; } }

/* restyle Leaflet chrome to the brand */
.locate__map .leaflet-control-zoom { border: none; box-shadow: 0 6px 18px rgba(26,25,22,.16); }
.locate__map .leaflet-control-zoom a { background: var(--paper); color: var(--ink-deep); border: 1px solid var(--line); border-bottom: none; width: 32px; height: 32px; line-height: 32px; font-weight: 400; transition: background .2s var(--ease), color .2s var(--ease); }
.locate__map .leaflet-control-zoom a:last-child { border-bottom: 1px solid var(--line); }
.locate__map .leaflet-control-zoom a:hover { background: var(--accent); color: var(--ink-deep); }
.locate__map .leaflet-control-attribution { background: rgba(248,245,239,.82); color: var(--subtle); font-family: var(--sans); font-size: 10px; }
.locate__map .leaflet-control-attribution a { color: var(--accent-ink); }

@media (max-width: 860px) {
  .locate__grid { grid-template-columns: 1fr; }
  .locate__map-wrap { min-height: 380px; }
}

/* ---------- journal ---------- */
.jgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 36px); }
.jcard__img { aspect-ratio: 3/2; object-fit: cover; width: 100%; background: var(--tile); }
.jcard__meta { font-size: var(--fs-meta); text-transform: uppercase; letter-spacing: .1em; color: var(--accent-ink); margin: 16px 0 8px; }
.jcard__title { font-family: var(--serif); font-weight: 600; font-size: 26px; line-height: 1.1; }
.jcard:hover .jcard__title { color: var(--accent-ink); }

@media (max-width: 1080px) {
  .pgrid, .brandgrid { grid-template-columns: repeat(3, 1fr); }
  .jgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .formwrap--three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .pgrid, .brandgrid { grid-template-columns: repeat(2, 1fr); }
  .sel, .formwrap, .formwrap--three { grid-template-columns: 1fr; }
  .sel-summary { position: static; }
  .jgrid { grid-template-columns: 1fr; }
  .formgrid2 { grid-template-columns: 1fr; }
  .filterbar__right { margin-left: 0; width: 100%; flex-wrap: wrap; gap: 10px; }
  .fselect { flex: 1 1 140px; min-width: 0; }
}
