/* ── LOOKFIT Editorial Design System ── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@300;400;700&family=Manrope:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ivory:       #fbf9f9;
  --ivory-dim:   #f5f3f3;
  --ivory-bd:    #e9e8e7;
  --charcoal:    #1b1c1c;
  --charcoal-md: #444748;
  --charcoal-lt: #747878;
  --gold:        #9b804b;
  --gold-dk:     #7a6438;
  --stone-100:   #f5f5f0;
  --stone-200:   #e5e3e3;
  --stone-900:   #1a1a18;
  --ff-serif:    'Noto Serif KR', 'Noto Serif', Georgia, serif;
  --ff-sans:     'Manrope', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  background: var(--ivory);
  color: var(--charcoal);
  min-height: 100vh;
}

/* ── HEADER ── */
.ed-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  background: rgba(251,249,249,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-200);
  gap: 16px;
}

.ed-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ed-logo {
  font-family: var(--ff-serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
}

.ed-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.ed-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-md);
  text-decoration: none;
  transition: color 0.2s;
}
.ed-nav a:hover { color: var(--charcoal); }

.ed-header-cta {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--charcoal);
  border: none;
  padding: 11px 24px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.ed-header-cta:hover { background: var(--stone-900); }

/* ── LANGUAGE SWITCHER (mirrors React LanguageSwitcher) ── */
#lf-lang-switcher .ls-root {
  position: relative;
  display: inline-flex;
  align-items: center;
}
#lf-lang-switcher .ls-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: transparent;
  border: 1px solid rgba(27,28,28,0.18);
  padding: 10px 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  line-height: 1;
}
#lf-lang-switcher .ls-toggle:hover { border-color: rgba(27,28,28,0.55); }
#lf-lang-switcher .ls-globe { display: inline-flex; color: var(--gold); }
#lf-lang-switcher .ls-current { letter-spacing: 0.12em; }
#lf-lang-switcher .ls-caret { font-size: 9px; color: var(--charcoal-lt); transition: transform 0.2s; }
#lf-lang-switcher .ls-open .ls-caret { transform: rotate(180deg); color: var(--charcoal); }
#lf-lang-switcher .ls-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  list-style: none;
  padding: 6px 0;
  margin: 0;
  background: var(--ivory);
  border: 1px solid rgba(27,28,28,0.12);
  box-shadow: 0 14px 32px rgba(27,28,28,0.08);
  z-index: 200;
}
#lf-lang-switcher .ls-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--ff-sans);
  text-align: left;
  color: var(--charcoal-md);
  transition: background 0.15s, color 0.15s;
}
#lf-lang-switcher .ls-item:hover { background: rgba(155,128,75,0.08); color: var(--charcoal); }
#lf-lang-switcher .ls-item-short {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  width: 22px;
  flex-shrink: 0;
}
#lf-lang-switcher .ls-item-label {
  font-family: var(--ff-serif);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: inherit;
  flex: 1;
}
#lf-lang-switcher .ls-item--active .ls-item-label { color: var(--charcoal); font-weight: 700; }
#lf-lang-switcher .ls-item--active .ls-item-short { color: var(--charcoal); }
#lf-lang-switcher .ls-item-check { font-size: 12px; color: var(--gold); font-weight: 700; }
@media (max-width: 768px) {
  #lf-lang-switcher .ls-toggle { padding: 9px 10px; font-size: 11px; gap: 6px; }
}

/* ── PAGE BANNER ── */
.ed-banner {
  background: var(--stone-900);
  padding: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ed-banner-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.ed-banner-title {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
}

.ed-banner-sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
}

.ed-banner-date {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  text-transform: uppercase;
}

/* ── MAIN CONTENT ── */
.ed-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 32px;
}

.ed-main--wide {
  max-width: 960px;
}

/* ── SECTION DIVIDER ── */
.ed-section {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ivory-bd);
}
.ed-section:last-child { border-bottom: none; margin-bottom: 0; }

.ed-section-title {
  font-family: var(--ff-serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ed-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ivory-bd);
}

.ed-h2 {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.ed-p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--charcoal-md);
  margin-bottom: 16px;
}
.ed-p:last-child { margin-bottom: 0; }

.ed-ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ed-ul li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal-md);
  padding-left: 20px;
  position: relative;
}
.ed-ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.ed-ul li strong { color: var(--charcoal); font-weight: 600; }

.ed-a { color: var(--gold); text-decoration: none; }
.ed-a:hover { text-decoration: underline; }

/* ── CARD ── */
.ed-card {
  background: var(--ivory-dim);
  border: 1px solid var(--ivory-bd);
  padding: 40px;
  margin-bottom: 24px;
}

.ed-card:last-child { margin-bottom: 0; }

/* ── CONTACT ITEM ── */
.ed-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: var(--ivory-dim);
  border: 1px solid var(--ivory-bd);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 12px;
}
.ed-contact-item:hover {
  border-color: var(--gold);
  background: var(--stone-100);
}

.ed-contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--ivory-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--gold);
}

.ed-contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  margin-bottom: 4px;
}
.ed-contact-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.ed-contact-desc {
  font-size: 13px;
  color: var(--charcoal-lt);
}

/* ── FORM ── */
.ed-form { display: flex; flex-direction: column; gap: 24px; }

.ed-field { display: flex; flex-direction: column; gap: 8px; }

.ed-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
}

.ed-input,
.ed-select,
.ed-textarea {
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--charcoal-lt);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.ed-input::placeholder, .ed-textarea::placeholder { color: var(--charcoal-lt); }
.ed-input:focus, .ed-select:focus, .ed-textarea:focus {
  border-bottom-width: 2px;
  border-color: var(--charcoal);
}

.ed-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23747878' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; }
.ed-select option { background: #fff; color: var(--charcoal); }

.ed-textarea { resize: vertical; min-height: 120px; }

.ed-submit {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--charcoal);
  border: none;
  padding: 18px 48px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}
.ed-submit:hover { background: var(--stone-900); }

.ed-form-note {
  font-size: 12px;
  color: var(--charcoal-lt);
  line-height: 1.6;
}

/* ── FAQ ACCORDION ── */
.ed-faq { display: flex; flex-direction: column; }

.ed-faq-item {
  border-bottom: 1px solid var(--ivory-bd);
}
.ed-faq-item:first-child { border-top: 1px solid var(--ivory-bd); }

.ed-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.2s;
}
.ed-faq-q:hover { color: var(--gold); }

.ed-faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ivory-bd);
  transition: transform 0.25s, background 0.2s;
  font-style: normal;
  font-size: 11px;
  color: var(--charcoal-lt);
}
.ed-faq-item.open .ed-faq-arrow { transform: rotate(180deg); background: var(--charcoal); color: #fff; }

.ed-faq-a {
  font-size: 14px;
  line-height: 1.8;
  color: var(--charcoal-md);
  padding: 0 0 20px;
  display: none;
  max-width: 560px;
}
.ed-faq-item.open .ed-faq-a { display: block; }

/* ── FOOTER ── */
.ed-footer {
  background: var(--stone-100);
  border-top: 1px solid var(--stone-200);
  padding: 48px 64px;
}

.ed-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.ed-footer-brand {
  font-family: var(--ff-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: block;
  margin-bottom: 12px;
}

.ed-footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--charcoal-lt);
}

.ed-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ed-footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: block;
  margin-bottom: 16px;
}

.ed-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ed-footer-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  text-decoration: none;
  transition: color 0.2s;
}
.ed-footer-link:hover { color: var(--gold); }

.ed-footer-bottom {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--stone-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.ed-footer-copy {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
}

.ed-footer-disc {
  font-size: 11px;
  color: var(--charcoal-lt);
  text-align: right;
}

/* ── ARTICLE HERO ── */
.ed-article-hero {
  background: var(--stone-900);
  padding: 80px 64px 72px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.ed-article-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ed-article-category {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold);
  margin-bottom: 24px;
}

.ed-article-title {
  font-family: var(--ff-serif);
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}

.ed-article-lede {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  margin-bottom: 28px;
}

.ed-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.52);
}
.ed-article-meta span { letter-spacing: 0.08em; text-transform: uppercase; }
.ed-article-meta strong { color: rgba(255,255,255,0.85); font-weight: 600; }

/* ── ARTICLE BODY ── */
.ed-article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 32px 96px;
}

/* Korean-only article notice (shown when language is not Korean) */
.ed-ko-only-banner {
  background: #fff8ec;
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin-bottom: 36px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--charcoal-md);
  display: block;
}
html[lang="ko"] .ed-ko-only-banner { display: none; }

.ed-toc {
  background: var(--ivory-dim);
  border: 1px solid var(--ivory-bd);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.ed-toc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  margin-bottom: 14px;
}
.ed-toc ol {
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
}
.ed-toc li {
  counter-increment: toc;
  font-size: 14px;
  line-height: 1.6;
  padding: 6px 0 6px 36px;
  position: relative;
}
.ed-toc li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 6px;
  font-family: var(--ff-serif);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.ed-toc a {
  color: var(--charcoal-md);
  text-decoration: none;
  transition: color 0.2s;
}
.ed-toc a:hover { color: var(--charcoal); }

.ed-h2-major {
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--charcoal);
  margin: 56px 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--ivory-bd);
}
.ed-h2-major:first-child { margin-top: 0; border-top: none; padding-top: 0; }

.ed-eyebrow-inline {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.ed-h3 {
  font-family: var(--ff-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 32px 0 12px;
  letter-spacing: -0.005em;
}

.ed-lead {
  font-family: var(--ff-serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--charcoal-md);
  margin-bottom: 28px;
  font-weight: 300;
}

.ed-callout {
  background: var(--stone-100);
  border-left: 3px solid var(--charcoal);
  padding: 24px 28px;
  margin: 32px 0;
}
.ed-callout-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 8px;
}
.ed-callout p { font-size: 14px; line-height: 1.75; color: var(--charcoal); margin: 0; }

.ed-pull-quote {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--charcoal);
  text-align: center;
  padding: 32px 24px;
  margin: 40px 0;
  border-top: 1px solid var(--ivory-bd);
  border-bottom: 1px solid var(--ivory-bd);
}

.ed-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 32px;
}
.ed-feature-tile {
  border: 1px solid var(--ivory-bd);
  padding: 20px 22px;
  background: var(--ivory);
}
.ed-feature-tile h4 {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  margin: 0 0 8px;
}
.ed-feature-tile p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--charcoal-md);
  margin: 0;
}

.ed-color-swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0 28px;
}
.ed-color-swatch {
  border: 1px solid var(--ivory-bd);
  background: var(--ivory);
  padding: 12px 12px 14px;
}
.ed-color-swatch-chip {
  height: 56px;
  margin-bottom: 10px;
}
.ed-color-swatch-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.ed-color-swatch-hex {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--charcoal-lt);
  font-family: 'Manrope', monospace;
}

.ed-body-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--charcoal-md);
  margin-bottom: 18px;
}
.ed-body-text:last-child { margin-bottom: 0; }
.ed-body-text strong { color: var(--charcoal); font-weight: 600; }
.ed-body-text em { font-style: italic; color: var(--charcoal); }

/* ── GUIDE INDEX (article cards) ── */
.ed-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ed-card-link {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ivory-bd);
  background: var(--ivory);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
  overflow: hidden;
}
.ed-card-link:hover { border-color: var(--gold); transform: translateY(-2px); }

.ed-card-link-figure {
  height: 180px;
  background: var(--stone-100);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px 20px;
  overflow: hidden;
}
.ed-card-link-figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(155,128,75,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(27,28,28,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.ed-card-link-num {
  font-family: var(--ff-serif);
  font-size: 56px;
  font-weight: 300;
  color: rgba(27,28,28,0.18);
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.ed-card-link-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ed-card-link-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.ed-card-link-title {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--charcoal);
  margin: 4px 0 8px;
}
.ed-card-link-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--charcoal-md);
  margin-bottom: 12px;
}
.ed-card-link-arrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

/* ── RELATED ARTICLES ── */
.ed-related {
  background: var(--stone-100);
  padding: 72px 32px;
  border-top: 1px solid var(--ivory-bd);
}
.ed-related-inner {
  max-width: 960px;
  margin: 0 auto;
}
.ed-related-title {
  font-family: var(--ff-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.ed-related-sub {
  font-size: 13px;
  color: var(--charcoal-lt);
  margin-bottom: 28px;
  letter-spacing: 0.08em;
}

/* ── ABOUT page specific ── */
.ed-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ivory-bd);
  border-bottom: 1px solid var(--ivory-bd);
  margin: 32px 0 48px;
}
.ed-about-stat {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--ivory-bd);
}
.ed-about-stat:last-child { border-right: none; }
.ed-about-stat-num {
  font-family: var(--ff-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--charcoal);
  display: block;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.ed-about-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
}

.ed-tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0 32px;
}
.ed-tier {
  border: 1px solid var(--ivory-bd);
  padding: 32px 28px;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
}
.ed-tier--premium {
  background: var(--stone-900);
  color: rgba(255,255,255,0.85);
  border-color: var(--gold);
}
.ed-tier-name {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.ed-tier--premium .ed-tier-name { color: #fff; }
.ed-tier-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.ed-tier-price {
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.ed-tier--premium .ed-tier-price { color: #fff; }
.ed-tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ed-tier-list li {
  font-size: 13px;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  color: var(--charcoal-md);
}
.ed-tier--premium .ed-tier-list li { color: rgba(255,255,255,0.75); }
.ed-tier-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .ed-header { padding: 16px 20px; }
  .ed-nav { display: none; }
  .ed-banner { padding: 48px 24px; }
  .ed-main { padding: 48px 20px; }
  .ed-card { padding: 28px 20px; }
  .ed-contact-item { padding: 20px; }
  .ed-submit { width: 100%; text-align: center; }
  .ed-footer { padding: 40px 20px; }
  .ed-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .ed-footer-bottom { flex-direction: column; text-align: center; }
  .ed-footer-disc { text-align: center; }
  .ed-article-hero { padding: 56px 24px 48px; }
  .ed-article-body { padding: 48px 20px 64px; }
  .ed-h2-major { font-size: 22px; margin: 40px 0 14px; }
  .ed-pull-quote { font-size: 17px; padding: 24px 12px; margin: 28px 0; }
  .ed-feature-row, .ed-color-swatches, .ed-card-grid, .ed-tier-grid { grid-template-columns: 1fr; gap: 12px; }
  .ed-toc { padding: 22px 24px; }
  .ed-related { padding: 56px 20px; }
  .ed-about-stats { grid-template-columns: 1fr; }
  .ed-about-stat { border-right: none; border-bottom: 1px solid var(--ivory-bd); }
  .ed-about-stat:last-child { border-bottom: none; }
}
