/* =============================================================
   NALM CREATIVE — site.css
   Bold, retail-magazine design system.
   Single shared stylesheet. All pages reference this file.
   ============================================================= */

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }

/* ---------- Tokens ---------- */
:root {
  /* Palette — pulled from the official nalm CREATIVE confetti logo */
  --nalm-blue:   #1f3a93;   /* deep brand blue — wordmark, frame */
  --nalm-cyan:   #25b9d9;   /* the n */
  --nalm-red:    #e8323c;   /* the a */
  --nalm-lime:   #8dc63f;   /* the l */
  --nalm-orange: #f7941d;   /* the m */
  --nalm-pink:   #ec3d8e;
  --nalm-purple: #7e3ea1;
  --nalm-yellow: #fbbf24;
  --nalm-teal:   #14b8a6;

  --ink:    #15171c;
  --ink-2:  #41454f;
  --muted:  #6b7280;
  --line:   #e6e8ee;
  --bg:     #ffffff;
  --bg-soft:#fafaf7;
  --bg-cream:#fff8ec;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --shadow-sm: 0 1px 2px rgba(20,24,40,.06), 0 1px 3px rgba(20,24,40,.04);
  --shadow:    0 6px 18px rgba(20,24,40,.08), 0 2px 6px rgba(20,24,40,.05);
  --shadow-lg: 0 18px 50px rgba(20,24,40,.16), 0 6px 18px rgba(20,24,40,.08);

  --container: 1240px;
  --container-wide: 1400px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* ---------- Typography ---------- */
.serif { font-family: 'Fraunces', 'Source Serif Pro', Georgia, serif; }
h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Source Serif Pro', Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nalm-blue);
}
.eyebrow--white { color: #fff; opacity: .9; }
.kicker {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.display {
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.h1 { font-size: clamp(36px, 5.5vw, 64px); }
.h2 { font-size: clamp(30px, 4vw, 48px); }
.h3 { font-size: clamp(22px, 2.4vw, 30px); }
.h4 { font-size: clamp(18px, 1.6vw, 22px); }
.lead { font-size: clamp(18px, 1.4vw, 22px); color: var(--ink-2); line-height: 1.45; }

.text-muted { color: var(--muted); }
.text-blue { color: var(--nalm-blue); }
.text-red { color: var(--nalm-red); }
.text-cyan { color: var(--nalm-cyan); }
.text-lime { color: var(--nalm-lime); }
.text-orange { color: var(--nalm-orange); }
.text-pink { color: var(--nalm-pink); }
.text-purple { color: var(--nalm-purple); }

/* Highlight underline — chunky marker effect for emphasis words */
.mark-cyan,
.mark-red,
.mark-lime,
.mark-orange,
.mark-pink,
.mark-purple {
  position: relative;
  display: inline-block;
  padding: 0 .12em;
  isolation: isolate;
}
.mark-cyan::before,
.mark-red::before,
.mark-lime::before,
.mark-orange::before,
.mark-pink::before,
.mark-purple::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.42em;
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1deg);
}
.mark-cyan::before   { background: rgba(37,185,217,.35); }
.mark-red::before    { background: rgba(232,50,60,.30); }
.mark-lime::before   { background: rgba(141,198,63,.40); }
.mark-orange::before { background: rgba(247,148,29,.40); }
.mark-pink::before   { background: rgba(236,61,142,.30); }
.mark-purple::before { background: rgba(126,62,161,.30); }

/* ---------- Layout primitives ---------- */
.wrap   { max-width: var(--container);      margin: 0 auto; padding: 0 var(--gutter); }
.wrap-w { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(64px, 9vw, 128px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.section--cream { background: var(--bg-cream); }
.section--soft  { background: var(--bg-soft); }
.section--blue  { background: var(--nalm-blue); color: #fff; }
.section--blue h1, .section--blue h2, .section--blue h3, .section--blue h4 { color: #fff; }
.section--blue .lead { color: rgba(255,255,255,.85); }
.section--ink   { background: var(--ink); color: #fff; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

.grid { display: grid; gap: clamp(20px, 3vw, 40px); }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
@media (max-width: 960px) {
  .cols-3, .cols-4, .cols-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .cols-2, .cols-3, .cols-4, .cols-6 { grid-template-columns: 1fr; }
}

.row-center { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.row-between { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.stack-sm > * + * { margin-top: 8px; }
.stack    > * + * { margin-top: 16px; }
.stack-lg > * + * { margin-top: 28px; }
.stack-xl > * + * { margin-top: 48px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary   { background: var(--nalm-blue); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: #1a3284; }
.btn--ink       { background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.btn--white     { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.btn--outline   { border: 1.5px solid var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--outline-w { border: 1.5px solid rgba(255,255,255,.55); color: #fff; }
.btn--outline-w:hover { background: #fff; color: var(--ink); }
.btn--ghost     { color: var(--nalm-blue); padding-left: 0; padding-right: 0; }
.btn--ghost::after { content: "→"; transition: transform .15s ease; }
.btn--ghost:hover::after { transform: translateX(4px); }

/* ---------- Confetti dots motif ---------- */
.confetti {
  position: relative;
  overflow: hidden;
}
.confetti::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 8% 14%,  var(--nalm-cyan) 5px, transparent 6px),
    radial-gradient(circle at 22% 78%, var(--nalm-red) 4px, transparent 5px),
    radial-gradient(circle at 52% 22%, var(--nalm-lime) 5px, transparent 6px),
    radial-gradient(circle at 76% 64%, var(--nalm-orange) 4px, transparent 5px),
    radial-gradient(circle at 88% 18%, var(--nalm-pink) 5px, transparent 6px),
    radial-gradient(circle at 38% 90%, var(--nalm-purple) 4px, transparent 5px),
    radial-gradient(circle at 95% 86%, var(--nalm-yellow) 6px, transparent 7px),
    radial-gradient(circle at 12% 50%, var(--nalm-teal) 4px, transparent 5px);
  pointer-events: none;
  opacity: .9;
  z-index: 0;
}
.confetti > * { position: relative; z-index: 1; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  max-width: var(--container-wide);
  margin: 0 auto;
  gap: 24px;
}
.nav__brand img { height: 40px; width: auto; }
.nav__links {
  display: flex; align-items: center; gap: 28px;
}
.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .12s ease;
}
.nav__links a:hover { color: var(--nalm-blue); }
.nav__links a.is-active { color: var(--nalm-blue); font-weight: 600; }
.nav__cta { display: flex; gap: 10px; align-items: center; }
.nav__burger { display: none; }
@media (max-width: 900px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger {
    display: inline-flex;
    width: 44px; height: 44px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    align-items: center; justify-content: center;
    font-size: 20px;
  }
}
.nav-drawer {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 16px var(--gutter) 28px;
}
.nav-drawer.is-open { display: block; }
.nav-drawer a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.nav-drawer .btn { margin-top: 18px; width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 7vw, 96px);
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 960px) { .hero__grid { grid-template-columns: 1fr; } }
.hero__copy .display { margin-top: 18px; }
.hero__copy .lead { margin-top: 22px; max-width: 540px; }
.hero__actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__chips { margin-top: 36px; display: flex; gap: 8px; flex-wrap: wrap; }
.hero__visual {
  position: relative;
}
.hero__visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Tagline pill chips */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.chip--cyan   { background: var(--nalm-cyan); }
.chip--red    { background: var(--nalm-red); }
.chip--lime   { background: var(--nalm-lime); color: #15171c; }
.chip--orange { background: var(--nalm-orange); }
.chip--pink   { background: var(--nalm-pink); }
.chip--purple { background: var(--nalm-purple); }
.chip--blue   { background: var(--nalm-blue); }
.chip--ink    { background: var(--ink); }
.chip--outline { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }

/* ---------- Stats / At-a-Glance strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__cell {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
}
.stats__cell:last-child { border-right: none; }
.stats__num {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  font-weight: 600;
  color: var(--nalm-blue);
}
.stats__label {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__cell { border-right: none; border-bottom: 1px solid var(--line); }
  .stats__cell:nth-child(odd) { border-right: 1px solid var(--line); }
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .15s ease, box-shadow .2s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--nalm-blue);
  color: #fff;
  font-weight: 700;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  margin-bottom: 18px;
}

/* Category cards — full-bleed magazine tiles */
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 36px 28px 28px;
  min-height: 280px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .15s ease, box-shadow .2s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card__eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: .85;
}
.cat-card h3 {
  font-size: clamp(28px, 3vw, 38px);
  color: #fff;
  margin-top: 8px;
}
.cat-card p { margin-top: 12px; opacity: .9; font-size: 15px; }
.cat-card__cta { margin-top: 24px; font-weight: 600; }
.cat-card__cta::after { content: " →"; }
.cat-card--celebrations { background: linear-gradient(135deg, var(--nalm-pink) 0%, var(--nalm-red) 100%); }
.cat-card--stationery   { background: linear-gradient(135deg, var(--nalm-blue) 0%, var(--nalm-cyan) 100%); }
.cat-card--play         { background: linear-gradient(135deg, var(--nalm-orange) 0%, var(--nalm-yellow) 100%); color: var(--ink); }
.cat-card--play h3      { color: var(--ink); }
.cat-card--craft        { background: linear-gradient(135deg, var(--nalm-purple) 0%, var(--nalm-pink) 100%); }
.cat-card--gifting      { background: linear-gradient(135deg, var(--nalm-teal) 0%, var(--nalm-lime) 100%); color: var(--ink); }
.cat-card--gifting h3   { color: var(--ink); }
.cat-card--party        { background: linear-gradient(135deg, var(--nalm-red) 0%, var(--nalm-orange) 100%); }

/* Brand-world card */
.brand-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .15s ease, box-shadow .2s ease;
}
.brand-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.brand-card__dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 999px;
  margin-right: 8px;
  vertical-align: middle;
}
.brand-card__name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand-card__tag {
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}

/* ---------- Brand-card logo (top of card) ---------- */
.brand-card__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 56px;
  margin-bottom: 18px;
}
.brand-card__logo img {
  max-height: 56px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
}
.brand-card__logo--text {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}

/* ---------- Brand-mark logo strip ---------- */
.mark-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 173px;
  padding: 30px 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.mark:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.mark img {
  max-height: 92px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.mark--text {
  font-family: 'Fraunces', serif;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  color: var(--ink);
}
.mark--text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* Brand-family header pill */
.family {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Process step */
.step {
  position: relative;
  padding-top: 24px;
  border-top: 3px solid var(--nalm-blue);
}
.step__n {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--nalm-blue);
  text-transform: uppercase;
}
.step h3 { margin-top: 8px; }
.step p  { margin-top: 10px; color: var(--ink-2); }

/* ---------- Quote / pull ---------- */
.pull {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 1000px;
}
.pull--white { color: #fff; }
.pull__attr {
  display: block;
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.pull--white .pull__attr { color: rgba(255,255,255,.7); }

/* ---------- Workflow signals list ---------- */
.signals { display: grid; gap: 0; }
.signal {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 32px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.signal:last-child { border-bottom: 1px solid var(--line); }
.signal__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nalm-blue);
}
.signal__body h4 { font-size: 20px; }
.signal__body p { margin-top: 6px; color: var(--ink-2); font-size: 15px; }
.signal__meta { color: var(--muted); font-size: 13px; }
@media (max-width: 760px) {
  .signal { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- Magazine spread layout ---------- */
.spread {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.spread--flip { grid-template-columns: 7fr 5fr; }
.spread--flip .spread__media { order: -1; }
@media (max-width: 880px) {
  .spread, .spread--flip { grid-template-columns: 1fr; }
  .spread--flip .spread__media { order: 0; }
}
.spread__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ---------- Image showcase frame ---------- */
.frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-cream);
}
.frame--cream { background: var(--bg-cream); padding: clamp(20px, 3vw, 40px); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 72px 0 32px;
}
.footer a { color: rgba(255,255,255,.78); transition: color .12s ease; }
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer__col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; padding: 0; }
.footer__col li { padding: 6px 0; }
.footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer__tagline {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: rgba(255,255,255,.85);
  margin-top: 16px;
}

/* ---------- Page header (interior pages) ---------- */
.page-header {
  background: var(--nalm-blue);
  color: #fff;
  padding: clamp(64px, 9vw, 120px) 0 clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-header h1 { color: #fff; }
.page-header .lead { color: rgba(255,255,255,.85); max-width: 700px; }
.page-header__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 18px;
}

/* Confetti decoration in headers */
.page-header::after {
  content: "";
  position: absolute;
  right: -80px; top: -60px;
  width: 360px; height: 360px;
  background-image:
    radial-gradient(circle at 20% 20%, var(--nalm-cyan) 6px, transparent 7px),
    radial-gradient(circle at 70% 30%, var(--nalm-yellow) 8px, transparent 9px),
    radial-gradient(circle at 40% 60%, var(--nalm-orange) 6px, transparent 7px),
    radial-gradient(circle at 80% 70%, var(--nalm-pink) 7px, transparent 8px),
    radial-gradient(circle at 30% 85%, var(--nalm-lime) 6px, transparent 7px);
  opacity: .8;
  pointer-events: none;
}

/* ---------- Form (Contact) ---------- */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.input, .textarea, .select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 15px;
  transition: border-color .12s ease, box-shadow .12s ease;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--nalm-blue);
  box-shadow: 0 0 0 4px rgba(31,58,147,.12);
}
.textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

/* ---------- Misc utilities ---------- */
.divider { height: 1px; background: var(--line); border: 0; margin: clamp(40px, 6vw, 72px) 0; }
.center { text-align: center; }
.mt-0  { margin-top: 0 !important; }
.mt-4  { margin-top: 8px; }
.mt-8  { margin-top: 16px; }
.mt-12 { margin-top: 24px; }
.mt-16 { margin-top: 32px; }
.mt-24 { margin-top: 48px; }
.hide-mobile { display: initial; }
@media (max-width: 760px) { .hide-mobile { display: none; } }

/* =============================================================
   REMODEL — tokinjew-inspired bolder layout
   ============================================================= */

/* ---------- Hero — image stands alone, headline below (editorial) ---------- */
.hero-bleed {
  position: relative;
  width: 100%;
  background: #efe9e0;
  color: var(--ink);
  overflow: hidden;
}
.hero-bleed__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-bleed__inner {
  background: var(--bg);
  padding: clamp(40px, 5vw, 72px) var(--gutter) clamp(48px, 6vw, 88px);
}
.hero-bleed__copy {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 5vw, 88px);
  align-items: end;
}
@media (max-width: 880px) { .hero-bleed__copy { grid-template-columns: 1fr; align-items: start; } }
.hero-bleed__copy .lead { margin-top: 0; align-self: end; padding-bottom: 8px; }
.hero-bleed__copy .hero-bleed__actions { grid-column: 1 / -1; }
.hero-bleed__copy { max-width: 820px; }
.hero-bleed h1 {
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.hero-bleed .lead {
  color: var(--ink-2);
  font-size: clamp(16px, 1.3vw, 20px);
  max-width: 520px;
  font-weight: 500;
}
.hero-bleed__actions {
  margin-top: 28px;
  display: flex; gap: 14px;
  flex-wrap: wrap;
}
.hero-bleed__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--nalm-blue);
  margin-bottom: 16px;
  display: block;
}

/* ---------- Marquee / tagline ribbon ---------- */
.marquee {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee__track {
  display: flex;
  gap: 56px;
  animation: marquee-scroll 38s linear infinite;
  white-space: nowrap;
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee__dot {
  width: 14px; height: 14px; border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.marquee__dot--cyan   { background: var(--nalm-cyan); }
.marquee__dot--red    { background: var(--nalm-red); }
.marquee__dot--lime   { background: var(--nalm-lime); }
.marquee__dot--orange { background: var(--nalm-orange); }
.marquee__dot--pink   { background: var(--nalm-pink); }
.marquee__dot--purple { background: var(--nalm-purple); }
.marquee__dot--yellow { background: var(--nalm-yellow); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Light variant */
.marquee--light { background: var(--bg-cream); color: var(--ink); border-color: var(--line); }

/* ---------- Big brand tiles ---------- */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
@media (max-width: 760px) { .tile-grid { grid-template-columns: 1fr; } }

.tile {
  position: relative;
  display: block;
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tile__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.tile:hover .tile__img { transform: scale(1.04); }
.tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.78) 100%);
  z-index: 1;
}
.tile__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: clamp(24px, 3vw, 38px);
  color: #fff;
}
.tile__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.tile__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 10px;
  color: #fff;
  font-weight: 600;
}
.tile__desc {
  margin-top: 10px;
  color: rgba(255,255,255,.85);
  font-size: 14.5px;
  max-width: 520px;
}
.tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  border-bottom: 1.5px solid rgba(255,255,255,.45);
  padding-bottom: 4px;
  transition: border-color .12s ease;
}
.tile__cta::after { content: "→"; transition: transform .15s ease; }
.tile:hover .tile__cta { border-color: #fff; }
.tile:hover .tile__cta::after { transform: translateX(4px); }

/* Sticker badge */
.tile__badge {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
  background: var(--nalm-yellow);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  transform: rotate(-4deg);
}
.tile__badge--pink   { background: var(--nalm-pink); color: #fff; }
.tile__badge--cyan   { background: var(--nalm-cyan); color: #fff; }
.tile__badge--lime   { background: var(--nalm-lime); color: var(--ink); }
.tile__badge--orange { background: var(--nalm-orange); color: #fff; }

/* ---------- Big dark CTA button ---------- */
.btn--dark { background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.btn--dark:hover { background: #000; }
.btn--xl   { padding: 18px 34px; font-size: 16px; }

/* ---------- Compact 3-up "how we work" ---------- */
.tri {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
@media (max-width: 820px) { .tri { grid-template-columns: 1fr; } }
.tri__cell {
  padding: clamp(28px, 3.5vw, 48px) clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--ink);
}
.tri__cell:last-child { border-right: none; }
@media (max-width: 820px) {
  .tri__cell { border-right: none; border-bottom: 1px solid var(--ink); }
  .tri__cell:last-child { border-bottom: none; }
}
.tri__num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nalm-blue);
}
.tri__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 14px;
  font-weight: 600;
}
.tri__desc { margin-top: 12px; color: var(--ink-2); }

/* ---------- Mega stats single-row strip ---------- */
.stats-strip {
  background: var(--bg-cream);
  padding: clamp(48px, 6vw, 80px) 0;
}
.stats-strip__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 820px) {
  .stats-strip__row { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
.stats-strip__num {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--nalm-blue);
}
.stats-strip__label {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Spotlight feature block ---------- */
.spotlight {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  overflow: hidden;
  position: relative;
}
@media (max-width: 880px) { .spotlight { grid-template-columns: 1fr; } }
.spotlight h2 { color: #fff; font-size: clamp(36px, 5vw, 64px); line-height: 1.0; letter-spacing: -0.03em; }
.spotlight .lead { color: rgba(255,255,255,.85); }
.spotlight__img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-lg);
}

/* ---------- Newsletter ---------- */
.nlsr {
  background: var(--bg-cream);
  padding: clamp(56px, 7vw, 96px) 0;
  text-align: center;
}
.nlsr__form {
  display: flex; gap: 10px;
  max-width: 520px; margin: 28px auto 0;
}
.nlsr__form .input { flex: 1; border-radius: 999px; padding: 16px 22px; }
.nlsr__form .btn   { border-radius: 999px; padding: 16px 28px; }
@media (max-width: 520px) { .nlsr__form { flex-direction: column; } }
.nlsr__small { margin-top: 14px; font-size: 13px; color: var(--muted); }

/* =============================================================
   BRAND-WORLD DETAIL PAGE
   ============================================================= */

.brand-hero {
  background: var(--bg-cream);
  padding: clamp(48px, 6vw, 96px) 0 clamp(40px, 5vw, 72px);
}
.brand-hero__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 960px) { .brand-hero__inner { grid-template-columns: 1fr; } }
.brand-hero__crumbs {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.brand-hero__crumbs a { color: var(--nalm-blue); }
.brand-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.brand-hero__tagline {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
  color: var(--ink-2);
  margin-top: 18px;
  font-style: italic;
}
.brand-hero__desc { font-size: clamp(16px, 1.2vw, 19px); color: var(--ink-2); margin-top: 22px; max-width: 540px; }
.brand-hero__meta { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 32px; }
.brand-hero__meta-item { font-size: 13px; }
.brand-hero__meta-item strong { display: block; font-family: 'Fraunces', serif; font-size: 24px; font-weight: 600; color: var(--ink); }
.brand-hero__meta-item span { color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; font-weight: 700; }
.brand-hero__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.brand-hero__media img { display: block; width: 100%; height: auto; }
.brand-hero__actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Collection gallery ---------- */
.collection {
  padding: clamp(56px, 7vw, 96px) 0;
}
.collection__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.collection__head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-top: 12px;
}
.collection__head p { color: var(--ink-2); font-size: clamp(16px, 1.3vw, 19px); margin-top: 16px; }

.collection__grid {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 1.5vw, 24px);
}
.product-card {
  position: relative;
  display: block;
  background: var(--bg-cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.product-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--bg-cream);
}
.product-card__body { padding: 18px 22px; }
.product-card__name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 600;
  color: var(--ink);
}
.product-card__meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* Sub-collection (family) header within collection */
.family-head {
  grid-column: 1 / -1;
  padding: 32px 0 8px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}
.family-head:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.family-head__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nalm-blue);
}
.family-head h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 6px;
}

/* ---------- Story block ---------- */
.brand-story {
  background: var(--bg-soft);
  padding: clamp(56px, 7vw, 96px) 0;
}
.brand-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 960px) { .brand-story__inner { grid-template-columns: 1fr; } }
.brand-story h2 { font-family: 'Fraunces', serif; font-size: clamp(32px, 4vw, 48px); line-height: 1.05; letter-spacing: -0.025em; }
.brand-story p { color: var(--ink-2); font-size: clamp(16px, 1.2vw, 18px); margin-top: 18px; }
.brand-story__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ---------- Sibling brands rail ---------- */
.sibling-rail {
  background: var(--ink);
  color: #fff;
  padding: clamp(48px, 6vw, 80px) 0;
}
.sibling-rail h3 { color: #fff; font-family: 'Fraunces', serif; font-size: clamp(24px, 3vw, 34px); margin-bottom: 28px; }
.sibling-rail__grid {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.sibling-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.sibling-card:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); transform: translateY(-2px); }
.sibling-card__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.sibling-card h4 { font-family: 'Fraunces', serif; font-size: 22px; color: #fff; margin-top: 8px; }
.sibling-card p { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 8px; }

/* ---------- Accessibility ---------- */
:focus-visible { outline: 3px solid var(--nalm-cyan); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -9999px;
  background: var(--ink); color: #fff;
  padding: 12px 18px; border-radius: 6px;
}
.skip-link:focus { left: 12px; top: 12px; z-index: 100; }
