/** Shopify CDN: Minification failed

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

**/
/* ==========================================================================
   MORIKO · DESIGN TOKENS
   Loaded once via theme.liquid — shared by all moriko-* sections.
   ========================================================================== */
:root,
.moriko-scope {
  /* surfaces */
  --m-bg-cream: #F7F2EB;
  --m-bg-blush: #F0E4DC;
  --m-bg-white: #FFFFFF;
  --m-bg-dark: #2A1A1F;
  --m-bg-charcoal: #1F1410;

  /* brand */
  --m-wine: #5C2F38;
  --m-wine-deep: #3D1F26;
  --m-gold: #B8924A;
  --m-gold-soft: #E5C97D;
  --m-coral: #D8553B;
  --m-sage: #7A8B6F;

  /* CTA — terracotta safety orange */
  --m-cta: #FF6A1A;
  --m-cta-hover: #E5571A;
  --m-cta-deep: #C84512;

  /* ink */
  --m-ink: #1F1410;
  --m-ink-soft: #4A3B36;
  --m-ink-muted: #8A7A73;

  /* lines */
  --m-line: #E5DBCF;
  --m-line-soft: #EFE7DC;

  /* rhythm */
  --m-pad-y: 32px;
  --m-pad-y-sm: 22px;
  --m-container: 1200px;
  --m-container-narrow: 920px;

  /* type families */
  --m-display: 'Kaisei Decol', 'Fraunces', 'Playfair Display', serif;
  --m-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --m-mono: 'Geist Mono', 'IBM Plex Mono', ui-monospace, monospace;
}

@import url('https://fonts.googleapis.com/css2?family=Kaisei+Decol:wght@400;500;700&family=Inter:wght@300;400;500;600&family=Geist+Mono:wght@400;500&display=swap');

.moriko-scope,
.moriko-scope *,
.moriko-scope *::before,
.moriko-scope *::after {
  box-sizing: border-box;
}
.moriko-scope {
  font-family: var(--m-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--m-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.moriko-scope img { display: block; max-width: 100%; height: auto; }
.moriko-scope a { color: inherit; text-decoration: none; }
.moriko-scope button { font-family: inherit; cursor: pointer; }

.m-eyebrow {
  font-family: var(--m-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--m-gold);
  font-weight: 500;
}
.moriko-scope h1,
.moriko-scope h2,
.moriko-scope h3,
.moriko-scope h4,
.m-display {
  font-family: var(--m-display);
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--m-wine-deep);
  line-height: 1.05;
  margin: 0;
}
.moriko-scope h1 em,
.moriko-scope h2 em,
.moriko-scope h3 em {
  font-style: italic;
  color: var(--m-coral);
  font-weight: 400;
}
.moriko-scope.dark h1,
.moriko-scope.dark h2,
.moriko-scope.dark h3 { color: var(--m-bg-cream); }
.moriko-scope.dark h2 em,
.moriko-scope.dark h1 em { color: var(--m-gold-soft); }

.m-container {
  max-width: var(--m-container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 760px) {
  .m-container { padding: 0 18px; }
}

.moriko-sec { padding: var(--m-pad-y) 0; border-top: 1px solid var(--m-line); }
.moriko-sec.no-border { border-top: none; }
.moriko-sec.blush { background: var(--m-bg-blush); border-top: none; }
.moriko-sec.dark { background: var(--m-bg-dark); color: var(--m-bg-cream); border-top: none; }

.m-section-label {
  font-family: var(--m-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--m-ink-muted);
  font-weight: 500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.m-section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--m-gold);
}
.moriko-scope.dark .m-section-label { color: var(--m-gold-soft); }
.moriko-scope.dark .m-section-label::before { background: var(--m-gold-soft); }

.m-section-h {
  font-size: clamp(26px, 3.2vw, 36px);
  margin-bottom: 8px;
  max-width: 760px;
  letter-spacing: -.025em;
}
.m-section-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--m-ink-soft);
  max-width: 600px;
  margin-bottom: 20px;
  font-weight: 300;
}
.moriko-scope.dark .m-section-desc { color: rgba(247, 242, 235, .72); }

.m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 10px;
  font-family: var(--m-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .02em;
  transition: transform .18s, box-shadow .18s, background .18s;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  text-decoration: none;
}
.m-btn-primary {
  background: linear-gradient(180deg, var(--m-cta) 0%, var(--m-cta-deep) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 106, 26, .32), inset 0 1px 0 rgba(255, 255, 255, .22);
}
.m-btn-primary:hover {
  background: linear-gradient(180deg, var(--m-cta-hover) 0%, var(--m-cta-deep) 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(255, 106, 26, .42), inset 0 1px 0 rgba(255, 255, 255, .22);
}
.m-btn-large { padding: 20px 32px; font-size: 16px; }
.m-btn-block { width: 100%; }
.m-btn .m-arrow { transition: transform .2s; }
.m-btn:hover .m-arrow { transform: translateX(3px); }

.m-btn-pulse { animation: mBtnPulse 2.4s ease-in-out infinite; }
@keyframes mBtnPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(255, 106, 26, .32), inset 0 1px 0 rgba(255, 255, 255, .22); }
  50% { box-shadow: 0 4px 26px rgba(255, 106, 26, .55), inset 0 1px 0 rgba(255, 255, 255, .22); }
}

.m-check-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--m-sage);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}