/** Shopify CDN: Minification failed

Line 279:23 Expected "}" to go with "{"

**/

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  :root {
    --black: #0a0a0a;
    --black2: #111111;
    --black3: #181818;
    --border: #2a2a2a;
    --border-light: #333;
    --gold: #c9a84c;
    --gold-dim: #8a6e2f;
    --white: #f0ede8;
    --white-dim: #a09a90;
    --white-muted: #5a5550;
    --red-accent: #c0392b;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', monospace;
  }
 
  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.75;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
  }
 
  .article-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 24px 120px;
  }
 
  /* ── Header ── */
  .article-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .article-eyebrow::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
  }
 
  .article-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 20px;
  }
  .article-title em {
    font-style: italic;
    color: var(--gold);
  }
 
  .article-subtitle {
    font-size: 18px;
    color: var(--white-dim);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 36px;
    border-left: 2px solid var(--gold);
    padding-left: 20px;
  }
 
  .article-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--white-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
  }
  .article-meta span { color: var(--gold-dim); }
 
  /* ── Hero image placeholder ── */
  .hero-img {
    width: 100%;
    aspect-ratio: 16/7;
    background: var(--black3);
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
    position: relative;
  }
  .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-caption {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--white-muted);
    margin-bottom: 56px;
    letter-spacing: 0.05em;
  }
 
  /* ── Quick-answer box (SEO featured snippet target) ── */
  .quick-answer {
    background: var(--black3);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    padding: 28px 32px;
    margin-bottom: 56px;
  }
  .quick-answer-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .quick-answer p {
    font-size: 16px;
    color: var(--white-dim);
    line-height: 1.7;
    margin-bottom: 14px;
  }
  .quick-answer p:last-child { margin-bottom: 0; }
  .quick-answer strong { color: var(--white); font-weight: 500; }
 
  /* ── TOC ── */
  .toc {
    background: var(--black2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 28px 32px;
    margin-bottom: 56px;
  }
  .toc-title {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-muted);
    margin-bottom: 16px;
  }
  .toc ol {
    padding-left: 20px;
    counter-reset: toc;
    list-style: none;
  }
  .toc ol li {
    counter-increment: toc;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .toc ol li::before {
    content: counter(toc, decimal-leading-zero) ". ";
    font-family: var(--font-mono);
    color: var(--gold-dim);
    font-size: 12px;
    margin-right: 6px;
  }
  .toc ol li a {
    color: var(--white-dim);
    text-decoration: none;
    transition: color 0.2s;
  }
  .toc ol li a:hover { color: var(--gold); }
 
  /* ── Body text ── */
  .article-body h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--white);
    margin: 64px 0 20px;
    line-height: 1.2;
  }
 
  .article-body h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: var(--font-mono);
    margin: 40px 0 14px;
  }
 
  .article-body p {
    margin-bottom: 22px;
    color: var(--white-dim);
  }
  .article-body p strong { color: var(--white); font-weight: 500; }
  .article-body a { color: var(--gold); text-decoration: underline; text-decoration-color: var(--gold-dim); }
 
  /* ── Inline image ── */
  .inline-img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--border);
    margin: 32px 0 12px;
    display: block;
    object-fit: cover;
  }
  .inline-caption {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--white-muted);
    margin-bottom: 32px;
    letter-spacing: 0.05em;
  }
 
  /* ── Warning / tip callout ── */
  .callout {
    border-radius: 4px;
    padding: 22px 28px;
    margin: 32px 0;
    font-size: 15px;
    line-height: 1.65;
  }
  .callout.warn {
    background: rgba(192,57,43,0.08);
    border: 1px solid rgba(192,57,43,0.35);
    border-left: 3px solid var(--red-accent);
  }
  .callout.warn .callout-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e74c3c;
    margin-bottom: 8px;
  }
  .callout.tip {
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    border-left: 3px solid var(--gold);
  }
  .callout.tip .callout-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .callout p { color: var(--white-dim); margin: 0; }
  .callout strong { color: var(--white); font-weight: 500; }
 
  /* ── Steps ── */
  .steps { margin: 28px 0 36px; }
  .step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 20px;
    margin-bottom: 28px;
    align-items: start;