@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&family=Inter:wght@400;500;600&display=swap");
/* ============================================================
   NOTE – The Scent Lab · Design System
   colors_and_type.css
   Aesthetic: Le Labo × Aesop — minimal apothecary, off-white substrate,
   serif display + clean sans body, restrained palette.
   ============================================================ */

/* ---- Webfonts (CDN — see /fonts for local fallbacks) ---- */


/* Multi-lang fallbacks (loaded lazily — only swap in if page lang requires) */
/*  */
/*  */
/*  */

:root {
  /* ------------------------------------------------------------
     COLORS — apothecary substrate (Le Labo × Aesop)
     ------------------------------------------------------------ */
  --note-ivory:      #F5F1EA;  /* page substrate */
  --note-paper:      #FAF7F2;  /* card / panel */
  --note-mist:       #E8E2D5;  /* hairline borders, subtle divisions */
  --note-mist-deep:  #D6CFBE;  /* secondary border on hover */

  --note-ink:        #1A1A1A;  /* primary text */
  --note-ink-soft:   #3F3F3F;  /* body, secondary text */
  --note-ink-mute:   #6B6B6B;  /* captions, meta */

  --note-amber:      #C8A951;  /* CTA, accent, link underline */
  --note-amber-deep: #A88A36;  /* hover state for amber */
  --note-clay:       #8C7355;  /* tertiary accent, icon fill */
  --note-fresh:      #5B7A5F;  /* eco/herbal hint — sparing */

  --note-black:      #0A0A0A;  /* full-bleed black (rare, video hero only) */
  --note-white:      #FFFFFF;

  /* ------------------------------------------------------------
     SEMANTIC ROLES (use these in components, not raw tokens)
     ------------------------------------------------------------ */
  --bg-page:         var(--note-ivory);
  --bg-card:         var(--note-paper);
  --bg-elev:         var(--note-white);
  --bg-inverse:      var(--note-ink);

  --fg-primary:      var(--note-ink);
  --fg-secondary:    var(--note-ink-soft);
  --fg-muted:        var(--note-ink-mute);
  --fg-inverse:      var(--note-ivory);
  --fg-accent:       var(--note-amber);
  --fg-link:         var(--note-ink);
  --fg-link-underline: var(--note-amber);

  --border-hairline: var(--note-mist);
  --border-default:  var(--note-mist-deep);

  --accent-primary:  var(--note-amber);
  --accent-hover:    var(--note-amber-deep);
  --accent-soft:     var(--note-clay);
  --accent-eco:      var(--note-fresh);

  /* ------------------------------------------------------------
     TYPOGRAPHY — Cormorant Garamond (display) + Inter (body/UI)
     ------------------------------------------------------------ */
  --font-serif:  "Cormorant Garamond", "Noto Serif", Georgia, "Times New Roman", serif;
  --font-sans:   "Inter", "Noto Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:   "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Scale — mobile-first; md+ overrides below */
  --fs-display:  36px;
  --fs-h1:       32px;
  --fs-h2:       28px;
  --fs-h3:       20px;
  --fs-body:     16px;
  --fs-small:    14px;
  --fs-caption:  13px;
  --fs-button:   13px;
  --fs-quote:    20px;

  --lh-display:  1.05;
  --lh-heading:  1.15;
  --lh-body:     1.7;
  --lh-caption:  1.5;

  --ls-tight:    -0.01em;
  --ls-normal:   0;
  --ls-eyebrow:  0.18em;   /* uppercase eyebrow */
  --ls-button:   0.16em;   /* uppercase button */
  --ls-caption:  0.04em;

  /* ------------------------------------------------------------
     SPACING — 8px base unit
     ------------------------------------------------------------ */
  --s-0:   0;
  --s-1:   4px;
  --s-2:   8px;
  --s-3:   12px;
  --s-4:   16px;
  --s-5:   24px;
  --s-6:   32px;
  --s-7:   48px;
  --s-8:   64px;
  --s-9:   96px;
  --s-10: 128px;

  --gutter-mobile:  16px;
  --gutter-desktop: 32px;
  --section-pad-y-mobile:  64px;
  --section-pad-y-desktop: 96px;
  --card-pad-mobile:       24px;
  --card-pad-desktop:      32px;
  --max-content:           1120px;
  --max-text:              680px;

  /* ------------------------------------------------------------
     RADII — square-ish; serif brands rarely round
     ------------------------------------------------------------ */
  --r-none:   0;
  --r-xs:     2px;
  --r-sm:     4px;
  --r-md:     6px;
  --r-pill:   999px;

  /* ------------------------------------------------------------
     BORDERS & SHADOWS — restraint is the brand
     ------------------------------------------------------------ */
  --bw-hairline: 1px;
  --bw-strong:   2px;

  --shadow-none:   none;
  --shadow-card:   0 2px 8px rgba(26, 26, 26, 0.06);  /* max allowed depth */
  --shadow-lift:   0 4px 14px rgba(26, 26, 26, 0.08); /* hover only */

  /* ------------------------------------------------------------
     MOTION — 200–300ms ease-out; never bounce, never shake
     ------------------------------------------------------------ */
  --dur-fast:   150ms;
  --dur-base:   200ms;
  --dur-slow:   300ms;
  --ease-out:   cubic-bezier(0.2, 0.6, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  :root {
    --fs-display: 64px;
    --fs-h1:      56px;
    --fs-h2:      44px;
    --fs-h3:      24px;
    --fs-body:    17px;
    --fs-caption: 14px;
    --fs-button:  14px;
    --fs-quote:   24px;
  }
}

/* Per-language line-height tuning (apply at <html lang="…">) */
#npl-root :lang(ja), #npl-root :lang(zh) { --lh-body: 1.6; }
#npl-root :lang(ko) { --lh-body: 1.75; }

/* ============================================================
   SEMANTIC ELEMENT STYLES — drop-in defaults
   ============================================================ */




#npl-root h1, #npl-root h2, #npl-root h3, #npl-root h4 { color: var(--fg-primary); text-wrap: balance; }

#npl-root h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-tight);
  margin: 0 0 var(--s-5);
}
#npl-root h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  margin: 0 0 var(--s-5);
}
#npl-root h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-h3);
  line-height: var(--lh-heading);
  margin: 0 0 var(--s-3);
}

#npl-root p {
  margin: 0 0 var(--s-4);
  max-width: var(--max-text);
  text-wrap: pretty;
}

#npl-root a {
  color: var(--fg-link);
  text-decoration: none;
  border-bottom: 1px solid var(--fg-link-underline);
  padding-bottom: 1px;
  transition: color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
#npl-root a:hover { color: var(--note-amber-deep); border-bottom-color: var(--note-amber-deep); }

/* Eyebrow — the apothecary signature */
#npl-root .eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  color: var(--fg-muted);
  margin: 0 0 var(--s-4);
}

/* Quote — italic serif, no quotation marks */
#npl-root blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-quote);
  line-height: 1.45;
  color: var(--fg-primary);
  margin: 0;
  padding: 0;
}
#npl-root blockquote cite {
  display: block;
  margin-top: var(--s-4);
  font-family: var(--font-sans);
  font-style: normal;
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: var(--ls-caption);
  color: var(--fg-muted);
}

#npl-root hr {
  border: 0;
  border-top: var(--bw-hairline) solid var(--border-hairline);
  margin: var(--s-7) 0;
}

#npl-root ::selection { background: var(--note-amber); color: var(--note-ink); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
#npl-root { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/* Per-Location Landing — NOTE The Scent Lab
   Layered on top of the design system's colors_and_type.css */








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

#npl-root a.linkline {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px solid var(--note-amber);
  padding-bottom: 2px;
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-caption);
  color: var(--note-ink);
}
#npl-root a.linkline:hover { border-bottom-color: var(--note-amber-deep); color: var(--note-amber-deep); }
#npl-root a.linkline .arrow { transition: transform 200ms var(--ease-out); }
#npl-root a.linkline:hover .arrow { transform: translateX(3px); }

/* ───────── Container & sections ───────── */
#npl-root .container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--gutter-mobile);
}
@media (min-width: 768px) {
#npl-root .container { padding: 0 var(--gutter-desktop); }
}

#npl-root section { padding-block: var(--section-pad-y-mobile); }
@media (min-width: 768px) {
#npl-root section { padding-block: var(--section-pad-y-desktop); }
}

/* ───────── Nav ───────── */
#npl-root .nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 234, 0.94);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom: 1px solid var(--note-mist);
}

/* Utility bar — mirrors live site's thin top strip */
#npl-root .nav-utility {
  background: var(--note-ink);
  color: rgba(245, 241, 234, 0.72);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.04em;
}
#npl-root .nav-utility-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 8px var(--gutter-mobile);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
#npl-root .nav-utility-inner { padding: 9px var(--gutter-desktop); gap: 16px; flex-wrap: nowrap; }
}
#npl-root .util-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(245, 241, 234, 0.86);
}
#npl-root .util-sep {
  color: rgba(245, 241, 234, 0.25);
  user-select: none;
}
#npl-root .util-link {
  color: rgba(245, 241, 234, 0.86);
  border: 0;
  padding: 0;
  text-decoration: none;
}
#npl-root .util-link:hover { color: var(--note-amber); border: 0; }
#npl-root .util-spacer { flex: 1; }
#npl-root .util-followlbl {
  color: rgba(245, 241, 234, 0.42);
  font-size: 10px;
  letter-spacing: 0.04em;
  display: none;
}
@media (min-width: 1024px) { .util-followlbl { display: inline; } }
#npl-root .util-social {
  display: inline-flex;
  gap: 14px;
  align-items: center;
}
#npl-root .util-social a {
  color: rgba(245, 241, 234, 0.7);
  border: 0;
  padding: 0;
  line-height: 0;
  display: inline-flex;
  transition: color 200ms var(--ease-out);
}
#npl-root .util-social a:hover { color: var(--note-amber); }

/* Main nav row */
#npl-root .nav-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 14px var(--gutter-mobile);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (min-width: 768px) {
#npl-root .nav-inner { padding: 18px var(--gutter-desktop); }
}
#npl-root .nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
  border: 0;
  padding: 0;
  flex: none;
}
#npl-root .nav-logo .mk {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.22em;
  color: var(--note-ink);
}
#npl-root .nav-logo .sub {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.42em;
  color: var(--note-ink-mute);
  margin-top: 5px;
}

#npl-root .nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links > a,
#npl-root .nav-links .nav-droplink {
  border: 0;
  padding: 8px 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--note-ink-soft);
  display: inline-flex;
  align-items: center;
  transition: color 200ms var(--ease-out);
}
.nav-links > a:hover,
#npl-root .nav-links .nav-droplink:hover { color: var(--note-amber-deep); }
#npl-root .nav-links .nav-current { color: var(--note-ink); position: relative; }
#npl-root .nav-links .nav-current::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--note-amber);
}

#npl-root .nav-dropdown { position: relative; }
#npl-root .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--note-paper);
  border: 1px solid var(--note-mist);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms var(--ease-out);
  z-index: 5;
  box-shadow: var(--shadow-card);
}
.nav-dropdown:hover .nav-dropdown-menu,
#npl-root .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; }
#npl-root .nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--note-ink-soft);
  border: 0;
  white-space: nowrap;
}
#npl-root .nav-dropdown-menu a:hover {
  color: var(--note-ink);
  background: var(--note-ivory);
  border: 0;
}

#npl-root .nav-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
#npl-root .nav-link-dashboard {
  display: none;
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--note-ink-soft);
  border: 0;
  padding: 0;
}
#npl-root .nav-link-dashboard:hover { color: var(--note-ink); border: 0; }
@media (min-width: 1100px) { .nav-link-dashboard { display: inline-flex; } }

#npl-root .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: var(--note-amber);
  color: var(--note-ink);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border: 1px solid var(--note-amber);
  border-radius: 2px;
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
#npl-root .nav-cta:hover {
  background: var(--note-amber-deep);
  border-color: var(--note-amber-deep);
  color: var(--note-ink);
  border-bottom: 1px solid var(--note-amber-deep);
}

#npl-root .nav-hamburger {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
@media (min-width: 1024px) { .nav-hamburger { display: none; } }
#npl-root .nav-hamburger span {
  width: 20px;
  height: 1.5px;
  background: var(--note-ink);
  display: block;
}

#npl-root .nav-mobile {
  display: flex;
  flex-direction: column;
  background: var(--note-paper);
  border-top: 1px solid var(--note-mist);
  padding: 14px 0;
}
#npl-root .nav-mobile a {
  display: block;
  padding: 14px var(--gutter-mobile);
  font-family: var(--font-sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--note-ink);
  border: 0;
  border-bottom: 1px solid var(--note-mist);
}
#npl-root .nav-mobile a:last-child { border-bottom: 0; }
#npl-root .nav-mobile .nav-cta-mobile {
  margin: 14px var(--gutter-mobile) 8px;
  background: var(--note-amber);
  text-align: center;
  border-bottom: 0;
}

#npl-root .lang-switch {
  display: inline-flex;
  gap: 0;
  align-items: center;
  font-size: 11px;
  color: rgba(245, 241, 234, 0.6);
  flex-wrap: wrap;
}
#npl-root .lang-switch button {
  background: transparent;
  border: 0;
  padding: 2px 6px;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
#npl-root .lang-switch button:hover { color: var(--note-amber); }
#npl-root .lang-switch button.active { color: var(--note-ivory); }
#npl-root .lang-switch .sep { color: rgba(245, 241, 234, 0.2); }

/* ───────── Hero ───────── */
#npl-root .hero {
  padding-block: 0;
  background: var(--note-ivory);
}
#npl-root .hero-full {
  position: relative;
  width: 100%;
  height: 78vh;
  min-height: 560px;
  max-height: 820px;
  background-color: var(--note-ink);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
#npl-root .hero-full::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.30) 0%, rgba(10,10,10,0.18) 30%, rgba(10,10,10,0.82) 100%);
}
#npl-root .hero-full .hero-text {
  position: absolute;
  bottom: 56px;
  left: 0; right: 0;
  z-index: 2;
  color: var(--note-ivory);
}
#npl-root .hero-full .hero-text .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#npl-root .hero-full .eyebrow {
  color: rgba(245,241,234,0.85);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
#npl-root .hero-full .eyebrow::before {
  content: "";
  width: 36px; height: 1px; background: var(--note-amber);
}
#npl-root .hero-full h1 {
  color: var(--note-ivory);
  font-family: var(--font-serif);
  font-size: clamp(40px, 7.2vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 18ch;
  text-wrap: balance;
}
#npl-root .hero-full .tagline {
  color: rgba(245,241,234,0.85);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
  max-width: 38ch;
  margin: 0 0 28px;
}
#npl-root .hero-full .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(245,241,234,0.7);
}
#npl-root .hero-full .hero-meta span::before {
  content: "·";
  margin-right: 14px;
  color: var(--note-amber);
}
#npl-root .hero-full .hero-meta span:first-child::before { content: ""; margin: 0; }

/* Hero: split layout (alternate) */
#npl-root .hero-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 80vh;
  background: var(--note-ivory);
}
@media (min-width: 900px) {
#npl-root .hero-split { grid-template-columns: 5fr 6fr; }
}
#npl-root .hero-split .hero-copy {
  padding: 64px var(--gutter-mobile);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 768px) {
#npl-root .hero-split .hero-copy { padding: 96px var(--gutter-desktop); }
}
#npl-root .hero-split .hero-copy h1 {
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.04;
  margin: 0 0 22px;
  text-wrap: balance;
  color: var(--note-ink);
}
#npl-root .hero-split .hero-copy .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--note-ink-soft);
  max-width: 36ch;
  margin: 0 0 32px;
}
#npl-root .hero-split .hero-img {
  background-size: cover;
  background-position: center;
  min-height: 56vh;
  background-color: var(--note-mist);
}

/* ───────── Stat bar ───────── */
#npl-root .statbar {
  background: var(--note-paper);
  border-top: 1px solid var(--note-mist);
  border-bottom: 1px solid var(--note-mist);
}
#npl-root .statbar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 36px 0;
}
#npl-root .statbar-grid .stat {
  padding: 12px 20px;
  text-align: center;
  border-right: 1px solid var(--note-mist);
}
#npl-root .statbar-grid .stat:last-child { border-right: 0; }
#npl-root .statbar-grid .num {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 400;
  line-height: 1;
  color: var(--note-ink);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
#npl-root .statbar-grid .lbl {
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--note-ink-mute);
}
@media (max-width: 700px) {
#npl-root .statbar-grid { padding: 22px 0; }
#npl-root .statbar-grid .stat { padding: 8px 10px; }
#npl-root .statbar-grid .num { font-size: 22px; margin-bottom: 8px; }
#npl-root .statbar-grid .lbl { font-size: 9px; letter-spacing: 0.18em; }
}

/* ───────── Address ───────── */
#npl-root .address-card {
  background: var(--note-paper);
  border: 1px solid var(--note-mist);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
}
@media (min-width: 800px) {
#npl-root .address-card { grid-template-columns: 1fr auto; padding: 44px 48px; gap: 48px; }
}
#npl-root .address-card .eyebrow { margin-bottom: 14px; }
#npl-root .address-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--note-ink);
  text-wrap: balance;
}
#npl-root .address-card .meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  max-width: 620px;
}
@media (max-width: 600px) {
#npl-root .address-card .meta-grid { grid-template-columns: 1fr; gap: 18px; }
}
#npl-root .address-card .meta-grid > div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
#npl-root .address-card .meta-grid svg {
  flex: none;
  width: 18px; height: 18px;
  color: var(--note-amber);
  margin-top: 3px;
}
#npl-root .address-card .meta-grid .k {
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--note-ink-mute);
  margin-bottom: 4px;
}
#npl-root .address-card .meta-grid .v {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--note-ink);
}
#npl-root .address-card .map-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ───────── Buttons ───────── */
#npl-root .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 2px;
  cursor: pointer;
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out), border-color 200ms var(--ease-out);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
}
#npl-root .btn-primary { background: var(--note-amber); color: var(--note-ink); border-color: var(--note-amber); }
#npl-root .btn-primary:hover { background: var(--note-amber-deep); border-color: var(--note-amber-deep); color: var(--note-ink); }
#npl-root .btn-secondary { background: transparent; color: var(--note-ink); border-color: var(--note-ink); }
#npl-root .btn-secondary:hover { background: var(--note-ink); color: var(--note-ivory); }
#npl-root .btn-on-dark { background: var(--note-amber); color: var(--note-ink); border-color: var(--note-amber); }
#npl-root .btn-on-dark:hover { background: var(--note-ivory); border-color: var(--note-ivory); color: var(--note-ink); }
#npl-root .btn-ghost-on-dark {
  background: transparent;
  color: var(--note-ivory);
  border-color: rgba(245,241,234,0.5);
}
#npl-root .btn-ghost-on-dark:hover { border-color: var(--note-ivory); background: rgba(255,255,255,0.06); }

/* ───────── Section header (eyebrow + h2 + flourish) ───────── */
#npl-root .section-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
#npl-root .section-header .eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--note-ink-mute);
  margin: 0;
  display: inline-block;
}
#npl-root .section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 400;
  color: var(--note-ink);
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0.02em;
  word-spacing: 0.18em;
  max-width: 26ch;
  text-wrap: balance;
}
#npl-root .section-header .subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--note-ink-soft);
  line-height: 1.5;
  max-width: 52ch;
  margin: 0;
}
#npl-root .section-header.left { text-align: left; align-items: flex-start; }
#npl-root .flourish {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 280px;
}
#npl-root .flourish hr {
  flex: 1; border: 0; border-top: 1px solid var(--note-amber); margin: 0;
}
#npl-root .flourish .dot {
  width: 6px; height: 6px;
  border: 1px solid var(--note-amber);
  transform: rotate(45deg);
}

/* ───────── Story (50/50) ───────── */
#npl-root .story {
  background: var(--note-ivory);
}
#npl-root .story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
#npl-root .story-grid { grid-template-columns: 6fr 5fr; gap: 80px; }
}
#npl-root .story-grid.reverse { direction: ltr; }
@media (min-width: 900px) {
#npl-root .story-grid.reverse > :first-child { order: 2; }
#npl-root .story-grid.reverse > :last-child { order: 1; }
}
#npl-root .story-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--note-mist);
  position: relative;
}
#npl-root .story-img .img-caption {
  position: absolute;
  bottom: 12px;
  left: 14px;
  color: var(--note-ivory);
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
#npl-root .story-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--note-ink);
}
#npl-root .story-copy .eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--note-ink-mute);
  display: block;
  margin-bottom: 18px;
}
#npl-root .story-copy p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--note-ink-soft);
  margin: 0 0 18px;
  max-width: 56ch;
}
@media (min-width: 768px) {
#npl-root .story-copy p { font-size: 17px; }
}
#npl-root .story-copy p:last-of-type { margin-bottom: 24px; }
#npl-root .story-copy .signoff {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--note-ink-mute);
}
#npl-root .story-copy .signoff::before {
  content: ""; width: 36px; height: 1px; background: var(--note-amber);
}

/* ───────── Workshop journey ───────── */
#npl-root .workshop {
  background: var(--note-paper);
}
#npl-root .journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) {
#npl-root .journey-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 28px; }
}
@media (min-width: 1080px) {
#npl-root .journey-grid { grid-template-columns: repeat(4, 1fr); gap: 32px 28px; }
}
#npl-root .journey-step {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#npl-root .journey-step .step-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--note-mist);
}
#npl-root .journey-step .step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--note-amber);
  letter-spacing: 0.04em;
}
#npl-root .journey-step h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin: 0;
  color: var(--note-ink);
  line-height: 1.15;
}
#npl-root .journey-step p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--note-ink-soft);
  margin: 0;
  max-width: 38ch;
}

/* ───────── Reviews ───────── */
#npl-root .reviews {
  background: var(--note-ivory);
}
#npl-root .reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
#npl-root .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
#npl-root .review-card {
  background: var(--note-paper);
  border: 1px solid var(--note-mist);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
#npl-root .review-card .stars {
  color: var(--note-amber);
  letter-spacing: 4px;
  font-size: 13px;
}
#npl-root .review-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  color: var(--note-ink);
  margin: 0;
  text-wrap: pretty;
}
#npl-root .review-card cite {
  margin-top: auto;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--note-ink-mute);
  display: flex;
  align-items: center;
  gap: 12px;
}
#npl-root .review-card cite strong {
  color: var(--note-ink);
  font-weight: 500;
}
#npl-root .review-card cite .platform {
  border-left: 1px solid var(--note-mist-deep);
  padding-left: 12px;
}
#npl-root .reviews-summary {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--note-ink-mute);
}
#npl-root .reviews-summary .score {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--note-ink);
  letter-spacing: 0;
  text-transform: none;
}

/* Reviews — featured pull-quote variant */
#npl-root .reviews-featured {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}
#npl-root .reviews-featured .stars {
  color: var(--note-amber);
  letter-spacing: 6px;
  font-size: 15px;
  margin-bottom: 28px;
}
#npl-root .reviews-featured blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.3;
  color: var(--note-ink);
  margin: 0 0 28px;
  text-wrap: balance;
}
#npl-root .reviews-featured cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--note-ink-mute);
}
#npl-root .reviews-featured cite strong { color: var(--note-ink); font-weight: 500; margin-right: 12px; }
#npl-root .reviews-featured .more-reviews {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--note-mist);
  text-align: left;
}
#npl-root .reviews-featured .mini {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: var(--note-ink-soft);
}
#npl-root .reviews-featured .mini cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
}

/* ───────── Brand story (NOTE + R Parfums) ───────── */
#npl-root .brand {
  background: var(--note-ink);
  color: var(--note-ivory);
}
#npl-root .brand .section-header h2 { color: var(--note-ivory); }
#npl-root .brand .section-header .eyebrow { color: rgba(245,241,234,0.55); }
#npl-root .brand .section-header .subtitle { color: rgba(245,241,234,0.75); }
#npl-root .brand .flourish hr { border-top-color: rgba(200,169,81,0.7); }
#npl-root .brand .flourish .dot { border-color: rgba(200,169,81,0.7); }

#npl-root .brand-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 800px) {
#npl-root .brand-2col { grid-template-columns: 1fr 1px 1fr; gap: 60px; }
#npl-root .brand-2col::before {
    content: ""; grid-row: 1 / span 1; grid-column: 2;
    background: rgba(245,241,234,0.18); width: 1px;
    align-self: stretch;
  }
}
#npl-root .brand-col h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 16px;
  color: var(--note-ivory);
  letter-spacing: 0.04em;
}
#npl-root .brand-col .brand-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(200,169,81,0.85);
  display: block;
  margin-bottom: 22px;
}
#npl-root .brand-col p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245,241,234,0.78);
  margin: 0 0 16px;
  max-width: 44ch;
}
#npl-root .brand-col .linkline {
  color: var(--note-ivory);
  border-bottom-color: var(--note-amber);
  margin-top: 12px;
  display: inline-flex;
}
#npl-root .brand-col .linkline:hover { color: var(--note-amber); }

#npl-root .brand-unified {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
#npl-root .brand-unified p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.55;
  color: rgba(245,241,234,0.92);
  margin: 0 0 24px;
  text-wrap: pretty;
}
#npl-root .brand-unified .signature {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(245,241,234,0.55);
}
#npl-root .brand-unified .signature::before, #npl-root .brand-unified .signature::after {
  content: ""; width: 40px; height: 1px; background: rgba(200,169,81,0.7);
}

/* ───────── FAQ ───────── */
#npl-root .faq-section { background: var(--note-ivory); }
#npl-root .faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
#npl-root .faq-grid { grid-template-columns: 4fr 7fr; gap: 80px; }
}
#npl-root .faq-list { width: 100%; }
#npl-root .faq details {
  border-top: 1px solid var(--note-mist);
  padding: 26px 4px;
}
#npl-root .faq details:last-of-type { border-bottom: 1px solid var(--note-mist); }
#npl-root .faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--note-ink);
  font-weight: 400;
  line-height: 1.3;
  text-wrap: balance;
}
#npl-root .faq summary::-webkit-details-marker { display: none; }
#npl-root .faq summary::after {
  content: "";
  flex: none;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8A951' stroke-width='1.4'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 200ms var(--ease-out);
}
#npl-root .faq details[open] summary::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A88A36' stroke-width='1.4'><line x1='5' y1='12' x2='19' y2='12'/></svg>");
}
#npl-root .faq details p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--note-ink-soft);
  margin: 16px 0 4px;
  max-width: 60ch;
}

/* ───────── Map ───────── */
#npl-root .map-section {
  background: var(--note-ivory);
  padding-block: 0;
}
#npl-root .map-frame {
  position: relative;
  width: 100%;
  height: 420px;
  background-color: var(--note-mist);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
#npl-root .map-card {
  position: absolute;
  left: 32px;
  top: 32px;
  background: var(--note-ivory);
  border: 1px solid var(--note-mist);
  padding: 24px 26px;
  max-width: 320px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 700px) {
#npl-root .map-card { left: 16px; right: 16px; top: 16px; max-width: none; padding: 18px 20px; }
}
#npl-root .map-card .eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--note-ink-mute);
  margin: 0 0 10px;
}
#npl-root .map-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--note-ink);
}
#npl-root .map-card .addr {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--note-ink-soft);
  margin: 0 0 18px;
}
#npl-root .map-card a.btn { width: 100%; }

/* ───────── Final CTA ───────── */
#npl-root .cta {
  background: var(--note-ink);
  color: var(--note-ivory);
  text-align: center;
}
#npl-root .cta .eyebrow {
  color: rgba(245,241,234,0.55);
  margin-bottom: 22px;
  display: inline-block;
}
#npl-root .cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.2vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--note-ivory);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
#npl-root .cta .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 22px);
  color: rgba(245,241,234,0.75);
  max-width: 48ch;
  margin: 0 auto 40px;
  line-height: 1.5;
}
#npl-root .cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (min-width: 600px) {
#npl-root .cta-actions { flex-direction: row; justify-content: center; }
}

