/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --bg:        #0A0A0A;
  --surface:   #141414;
  --surface2:  #1A1A1A;
  --border:    #2A2A2A;
  --gold:      #C9A84C;
  --gold-l:    #E8C97A;
  --gold-dim:  #7A6430;
  --accent:    #C9A84C;
  --accent-l:  #E8C97A;
  --accent-dim:#7A6430;
  --text:      #F0EDE8;
  --muted:     #888888;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Heebo', 'Inter', system-ui, sans-serif;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--sans); }

/* ─── UTILITIES ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.divider { border: none; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-dim) 15%, var(--gold) 50%, var(--gold-dim) 85%, transparent); opacity: 0.85; margin: 56px 0; }
.section-label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ─── ADSENSE ────────────────────────────────────────── */
.ad-slot {
  background: var(--surface);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.05em;
}

/* ─── NAV ──────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}
.nav-logo {
  font-family: 'Cardo', var(--serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold);
  display: flex;
  align-items: center;
}
.nav-logo img { height: 100px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 9px; letter-spacing: 0; vertical-align: middle; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  left: auto;
  transform: translateY(-6px);
  background: var(--surface);
  border: 1px solid var(--border);
  min-width: 200px;
  list-style: none;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.dropdown li a:hover { color: var(--text); background: rgba(201,168,76,0.07); }
.nav-search {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 14px;
  font-size: 13px;
  font-family: var(--sans);
  letter-spacing: 0.02em;
  transition: border-color 0.2s;
  outline: none;
  width: 160px;
}
.nav-search::placeholder { color: var(--muted); }
.nav-search:focus { border-color: var(--gold-dim); }
.nav-mobile-menu { display: none; background: none; border: none; color: var(--text); font-size: 22px; }
.nav-signin-btn {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border: 1px solid var(--gold-dim);
  background: transparent;
  color: var(--gold);
  transition: all 0.2s;
  margin-right: 12px;
}
.nav-signin-btn:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }
.nav-user-display { display: none; align-items: center; gap: 8px; margin-right: 12px; }
.nav-user-avatar { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--gold-dim); object-fit: cover; }
.nav-user-name { font-size: 13px; color: var(--text); }
.nav-signout-btn { font-size: 12px; color: var(--muted); background: none; border: none; padding: 0; transition: color 0.2s; }
.nav-signout-btn:hover { color: var(--gold); }

/* ─── TOP AD ───────────────────────────── */
.ad-top { padding: 12px 0; background: var(--surface); }
.ad-top .ad-slot { height: 90px; max-width: 728px; margin: 0 auto; }
@media (max-width: 768px) { .ad-top .ad-slot { height: 50px; max-width: 320px; } }

/* ─── BREADCRUMB ─────────────────────────────────────── */
.breadcrumb-bar {
  position: relative;
  overflow: hidden;
}
.breadcrumb-bar .divider { position: relative; margin: 0; }
.breadcrumb-bar::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: url('BACKGROUNDS/velvet-dark.avif') center center / cover no-repeat;
  pointer-events: none;
}
.breadcrumb-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}
.breadcrumb { position: relative; padding: 20px 0; font-size: 16px; color: var(--gold); }
.breadcrumb a { color: var(--gold); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-l); }
.breadcrumb span { margin: 0 8px; color: var(--gold-dim); }

/* ─── ARTICLE HERO ───────────────────────────────────── */
.article-hero { padding: 56px 0 40px; }
.article-category-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #0D0D0D; background: var(--gold); padding: 4px 12px; margin-bottom: 22px;
}
.article-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 300; line-height: 1.15; color: var(--text); margin-bottom: 18px; max-width: 820px;
}
.article-title em { color: var(--gold-l); font-style: italic; }
.article-subtitle {
  font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 680px;
  margin-bottom: 28px; font-family: var(--serif); font-weight: 300;
}
.article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.article-meta-item { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; display: flex; align-items: center; gap: 6px; }
.meta-divider { width: 1px; height: 14px; background: var(--border); }

/* ─── EDITORIAL SECTION ─── */
.editorial-section {
  position: relative;
  overflow: hidden;
  background-color: #0C0C0C;
  background-image: url('BACKGROUNDS/gold-leaf-dark.avif');
  background-size: cover;
  background-position: center;
  padding: 72px 0;
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  box-shadow: 0 1px 24px rgba(201,168,76,0.05), inset 0 1px 0 rgba(201,168,76,0.08);
}
.editorial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(5,5,5,0.5) 0%, rgba(10,10,10,0.22) 50%, rgba(5,5,5,0.5) 100%);
  z-index: 0;
  pointer-events: none;
}
.editorial-section .container { position: relative; z-index: 1; }
.editorial-grid { display: block; }
.editorial-leaf { display: none; }
.editorial-copy { min-width: 0; }
.editorial-heading {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--gold-l);
  text-shadow: 0 0 24px rgba(201,168,76,0.25);
  margin-bottom: 24px;
}
.editorial-heading em { color: var(--gold); font-style: italic; }
.editorial-lead {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 20px;
  font-family: var(--serif);
  font-weight: 300;
}
.editorial-body {
  font-size: 16px;
  line-height: 2;
  color: rgba(240,237,232,0.72);
  margin-bottom: 18px;
}
.editorial-body:last-child { margin-bottom: 0; }
.editorial-body strong { color: var(--text); }
.gl-cta-link {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 36px;
  border: 1px solid rgba(196,160,80,0.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #c4a050;
  transition: background 0.2s, border-color 0.2s;
}
.gl-cta-link:hover { background: rgba(196,160,80,0.1); border-color: #c4a050; }

/* ─── LAYOUT ─────────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 48px 0 80px;
  align-items: start;
}
.article-body-wrap { min-width: 0; }
.article-sidebar { position: sticky; top: 84px; }

/* ─── GOLD LEAF ARTICLE BODY SECTIONS ───────────────── */
.article-body-section {
  position: relative;
  overflow: hidden;
  background-color: #0a0800;
  border: 1px solid var(--accent-dim);
  padding: 44px 48px;
  margin-bottom: 28px;
}
.article-body-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('BACKGROUNDS/gold-leaf-dark.avif') center center / cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.article-body-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,8,0,0.9) 0%, rgba(12,9,0,0.88) 100%);
  pointer-events: none;
  z-index: 0;
}
.article-body-section > * { position: relative; z-index: 1; }

/* ─── ARTICLE TYPOGRAPHY ─────────────────────────────── */
.article-lead {
  font-size: 19px; line-height: 1.85; color: var(--text);
  margin-bottom: 24px; font-family: var(--serif); font-weight: 300;
}
.article-p {
  font-size: 16px; line-height: 2; color: rgba(240,237,232,0.82); margin-bottom: 18px;
}
.article-p:last-child { margin-bottom: 0; }
.article-h2 {
  font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--text);
  margin: 36px 0 18px; padding-bottom: 10px; border-bottom: 1px solid var(--accent-dim);
}
.article-h2 em { color: var(--gold-l); font-style: italic; }
.article-h3, h3 {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); margin: 28px 0 12px;
}

/* ─── NOTES LIST ──────────────────── */
.scent-list { list-style: none; margin: 20px 0; }
.scent-list li {
  display: flex; align-items: baseline; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid rgba(201,168,76,0.12);
  font-size: 15px; line-height: 1.6; color: rgba(240,237,232,0.82);
}
.scent-list li:last-child { border-bottom: none; }
.scent-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #0D0D0D; background: var(--gold); padding: 3px 10px; flex-shrink: 0; min-width: 68px; text-align: center;
}

/* ─── PERFORMANCE BARS ───────────────────────────────── */
.perf-row { margin: 14px 0; }
.perf-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-bottom: 6px; letter-spacing: 0.03em; }
.perf-label strong { color: var(--text); }
.perf-bar { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.perf-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); border-radius: 2px; transition: width 1s ease; }

/* ─── PULL QUOTE ─────────────────────────────────────── */
.pull-quote {
  border-right: 3px solid var(--gold);
  padding: 18px 22px; margin: 28px 0;
  background: rgba(201,168,76,0.05);
}
.pull-quote p {
  font-family: var(--serif); font-size: 21px; font-weight: 300;
  font-style: italic; color: var(--text); line-height: 1.6;
}

/* ─── BUY CTA ────────────────────────────────────────── */
.buy-cta-block {
  position: relative; overflow: hidden;
  background-color: #0a0800;
  border: 1px solid var(--gold);
  padding: 36px 44px;
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.buy-cta-block::before {
  content: '';
  position: absolute; inset: 0;
  background: url('BACKGROUNDS/gold-leaf-dark.avif') center center / cover no-repeat;
  opacity: 0.08; pointer-events: none; z-index: 0;
}
.buy-cta-block::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,8,0,0.92) 0%, rgba(15,10,0,0.88) 100%);
  pointer-events: none; z-index: 0;
}
.buy-cta-block > * { position: relative; z-index: 1; }
.buy-cta-text h3 { font-family: var(--serif); font-size: 22px; font-weight: 300; margin-bottom: 6px; text-transform:none; letter-spacing:normal; color:var(--text); }
.buy-cta-text p { font-size: 13px; color: var(--muted); }
.buy-cta-btn {
  display: inline-block; padding: 14px 32px;
  background: var(--gold); color: #0D0D0D;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  border: none; transition: background 0.2s; white-space: nowrap; flex-shrink: 0;
}
.buy-cta-btn:hover { background: var(--gold-l); }

/* ─── AUTHOR BOX ─────────────────────────────────────── */
.author-box {
  display: flex; gap: 18px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); padding: 20px 24px; margin-bottom: 28px;
}
.author-avatar {
  width: 52px; height: 52px; border-radius: 50%; background: var(--surface2);
  border: 1px solid var(--gold-dim); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: var(--serif); font-size: 22px; color: var(--gold);
}
.author-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.author-bio { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ─── SHARE BAR ──────────────────────────────────────── */
.share-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 32px; flex-wrap: wrap;
}
.share-label { font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin-left: 4px; }
.share-btn {
  font-size: 12px; font-weight: 500; padding: 7px 14px;
  border: 1px solid var(--border); background: none; color: var(--muted); transition: all 0.2s;
}
.share-btn:hover { border-color: var(--gold-dim); color: var(--gold); }

/* ─── COMMENTS ───────────────────────────────────────── */
.comments-section { margin-top: 12px; }
.comments-title { font-family: var(--serif); font-size: 24px; font-weight: 300; margin-bottom: 24px; }
.comment-card { background: var(--surface); border: 1px solid var(--border); padding: 18px 22px; margin-bottom: 14px; }
.comment-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.comment-author { font-size: 13px; font-weight: 600; }
.comment-date { font-size: 11px; color: var(--muted); }
.comment-text { font-size: 14px; line-height: 1.75; color: rgba(240,237,232,0.72); }
.comment-write-btn {
  display: block; width: 100%; padding: 14px;
  background: transparent; border: 1px solid var(--gold-dim);
  color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  transition: all 0.2s; margin-top: 10px;
}
.comment-write-btn:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }

/* ─── SIDEBAR ────────────────────────────────────────── */
.sidebar-block { background: var(--surface); border: 1px solid var(--border); padding: 22px; margin-bottom: 22px; }
.sidebar-block-title { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.sidebar-article { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.sidebar-article:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-article-img { width: 60px; height: 60px; flex-shrink: 0; background: var(--surface2); overflow: hidden; }
.sidebar-article-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-article-title { font-size: 13px; line-height: 1.45; color: var(--text); transition: color 0.2s; }
.sidebar-article:hover .sidebar-article-title { color: var(--gold); }
.sidebar-article-date { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* ─── RELATED ────────────────────────────────────────── */
.content-bg-wrap { position: relative; background: var(--bg); }
#particles-bg { position: absolute; inset: 0; z-index: 0; display: block; }
.content-bg-inner { position: relative; z-index: 1; }
.related-section { padding: 0 0 56px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.related-card { background: var(--surface); border: 1px solid var(--border); transition: border-color 0.2s; display: flex; flex-direction: column; }
.related-card:hover { border-color: var(--gold-dim); }
.related-card-img { width: 100%; aspect-ratio: 16/9; background: var(--surface2); overflow: hidden; }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.related-card:hover .related-card-img img { transform: scale(1.04); }
.related-card-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #0d0800 0%, #120c00 100%); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 11px; }
.related-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.related-card-cat { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.related-card-title { font-family: var(--serif); font-size: 17px; font-weight: 300; line-height: 1.4; color: var(--text); flex: 1; transition: color 0.2s; }
.related-card:hover .related-card-title { color: var(--gold-l); }
.related-card-date { font-size: 11px; color: var(--muted); margin-top: 12px; }

/* ─── FOOTER ──────────── */
footer {
  background: #080808;
  border-top: 1px solid var(--gold-dim);
  padding: 48px 0 32px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.035) 0%, transparent 55%);
  pointer-events: none;
}
footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}
.footer-logo { font-family: 'Frank Ruhl Libre', var(--serif); font-size: 28px; font-weight: 500; letter-spacing: 0.02em; color: var(--gold); margin-bottom: 12px; }
.footer-logo img { height: 38px; width: auto; display: block; }
.footer-tagline { font-size: 13px; color: var(--muted); font-style: italic; font-family: var(--serif); }
.footer-col-title { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 12px; color: var(--muted); }
.social-links { display: flex; gap: 16px; margin-top: 20px; }
.social-link { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.2s; color: var(--muted); }
.social-link:hover { border-color: var(--gold-dim); color: var(--gold); }
.footer-newsletter-input { display: flex; margin-top: 12px; }
.footer-newsletter-input input {
  flex: 1; min-width: 0; background: transparent; border: 1px solid var(--gold-dim); border-left: none;
  color: var(--text); font-family: var(--sans); font-size: 12px; padding: 10px 12px; outline: none; text-align: right;
}
.footer-newsletter-input input::placeholder { color: var(--muted); font-size: 12px; }
.footer-newsletter-input input:focus { border-color: var(--gold); }
.footer-newsletter-submit {
  background: var(--gold); border: none; color: #0A0A0A; padding: 10px 14px;
  font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.2s; flex-shrink: 0;
}
.footer-newsletter-submit:hover { background: var(--gold-l); }
.footer-payment { display: flex; gap: 6px; margin-top: 14px; align-items: center; flex-wrap: wrap; }
.payment-icon {
  border: 1px solid #2a2a2a; padding: 3px 8px; font-size: 10px; letter-spacing: 0.05em;
  color: var(--muted); background: #1a1a1a; border-radius: 3px; font-family: var(--sans);
}

/* ─── MODAL ──────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(6px); z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--surface); border: 1px solid var(--border); width: 100%; max-width: 420px; padding: 40px; position: relative; animation: slideUp 0.3s cubic-bezier(0.16,1,0.3,1); }
@keyframes slideUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.modal-close { position: absolute; top: 16px; left: 16px; background: none; border: none; color: var(--muted); font-size: 22px; transition: color 0.2s; }
.modal-close:hover { color: var(--text); }
.modal-title { font-family: var(--serif); font-size: 28px; font-weight: 300; margin-bottom: 6px; }
.modal-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.auth-google-wrap { display: flex; justify-content: center; margin: 28px 0; }
.auth-note { font-size: 12px; color: var(--muted); text-align: center; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
.product-image-mobile { display: none; }
@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; gap: 36px; }
  .article-sidebar { position: static; }
  .product-image-mobile { display: block; margin-bottom: 28px; }
  .product-image-desktop { display: none; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-mobile-menu { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .editorial-section { background-image: none; }
  .editorial-grid { display: grid; grid-template-columns: 1fr 90px; gap: 20px; align-items: stretch; }
  .editorial-leaf {
    display: block;
    position: relative;
    order: 2;
    background: url('BACKGROUNDS/gold-leaf-dark.avif') left center / auto 100% no-repeat;
    min-height: 100%;
  }
  .editorial-copy { order: 1; }
  .editorial-leaf::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12,12,12,0) 70%, rgba(12,12,12,0.9) 100%);
  }
  .editorial-heading { font-size: clamp(15px, 4.5vw, 20px); white-space: nowrap; }
}
@media (max-width: 600px) {
  .article-body-section { padding: 28px 20px; }
  .buy-cta-block { padding: 24px 20px; flex-direction: column; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
