/* === PLAN THE EXIT — GLOBAL STYLES === */

:root {
  --ink: #1a2332;
  --slate: #3d4f5f;
  --stone: #6b7d8d;
  --warm: #f8f6f3;
  --cream: #fdfcfa;
  --accent: #b8860b;
  --accent-light: #d4a843;
  --white: #ffffff;
  --border: #e2ddd6;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--ink); background: var(--cream); line-height: 1.7; -webkit-font-smoothing: antialiased; }

/* === LAYOUT === */
.container { max-width: 920px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--warm { background: var(--warm); }
.section--dark { background: var(--ink); color: var(--cream); }

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); letter-spacing: -0.01em; margin-bottom: 24px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
p { margin-bottom: 20px; font-size: 1.05rem; }
a { color: var(--accent); }
.lead { font-size: 1.15rem; line-height: 1.8; color: var(--slate); }
.small { font-size: 0.88rem; color: var(--stone); }
.label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; display: block; }

/* === NAV === */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--cream); z-index: 100;
}
.nav .container {
  display: flex; justify-content: space-between; align-items: center;
}
.nav-brand {
  font-family: var(--serif); font-size: 1.25rem; color: var(--ink);
  text-decoration: none; letter-spacing: -0.01em;
}
.nav-brand span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--slate);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links .nav-cta {
  background: var(--accent); color: var(--white); padding: 10px 24px;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.02em;
  transition: background 0.2s;
}
.nav-links .nav-cta:hover { background: var(--accent-light); color: var(--white); }

/* === BUTTONS === */
.btn {
  display: inline-block; background: var(--accent); color: var(--white);
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 16px 36px; border: none; cursor: pointer; text-decoration: none;
  letter-spacing: 0.02em; transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--accent-light); color: var(--white); transform: translateY(-1px); }
.btn--outline {
  background: transparent; border: 1px solid var(--accent); color: var(--accent);
}
.btn--outline:hover { background: var(--accent); color: var(--white); }

/* === HERO === */
.hero { padding: 100px 0 88px; border-bottom: 1px solid var(--border); }
.hero h1 { margin-bottom: 32px; max-width: 680px; }
.hero .lead { max-width: 620px; margin-bottom: 40px; }
.hero-sub {
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.hero-sub-item { font-size: 0.9rem; color: var(--stone); }
.hero-sub-item strong { display: block; color: var(--ink); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }

/* === PULL QUOTE === */
.pullquote { padding: 60px 0; text-align: center; border-bottom: 1px solid var(--border); }
.pullquote p {
  font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.5; max-width: 700px; margin: 0 auto; color: var(--slate);
}

/* === PROBLEM ITEMS === */
.problem-item {
  padding: 32px 0; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: start;
}
.problem-item:last-child { border-bottom: none; }
.problem-label { font-family: var(--serif); font-size: 1.1rem; color: var(--accent); padding-top: 2px; }
.problem-item p { margin-bottom: 0; color: var(--slate); }

/* === CASE STUDY === */
.case-box {
  background: var(--white); border: 1px solid var(--border); padding: 48px; position: relative;
}
.case-box::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-light));
}
.case-intro { font-family: var(--serif); font-size: 1.25rem; line-height: 1.6; margin-bottom: 28px; color: var(--ink); }
.case-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin: 36px 0; text-align: center;
  padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.case-stat-num { font-family: var(--serif); font-size: 2.6rem; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.case-stat-label { font-size: 0.82rem; color: var(--stone); text-transform: uppercase; letter-spacing: 0.06em; }
.case-body p { color: var(--slate); font-size: 0.98rem; }
.case-kicker {
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border);
  font-family: var(--serif); font-size: 1.15rem; color: var(--ink); line-height: 1.5;
}
.case-kicker p { margin-bottom: 0; color: var(--ink); }

/* === STEPS === */
.step { display: grid; grid-template-columns: 48px 1fr; gap: 24px; margin-bottom: 44px; align-items: start; }
.step-num { font-family: var(--serif); font-size: 2rem; color: var(--accent); line-height: 1; padding-top: 2px; }
.step h3 { font-family: var(--sans); font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
.step p { margin-bottom: 0; color: var(--slate); font-size: 0.98rem; }

/* === FAQ === */
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: var(--sans); font-weight: 700; font-size: 1.02rem;
  margin-bottom: 0; color: var(--ink); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--stone); font-weight: 400; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { color: var(--slate); font-size: 0.95rem; max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding-top: 0; }
.faq-item.open .faq-a { max-height: 300px; padding-top: 14px; }
.faq-a p { margin-bottom: 0; }

/* === ASSESSMENT QUIZ (CAROUSEL) === */
.quiz-wrapper { position: relative; overflow: hidden; }
.quiz-track { display: flex; transition: transform 0.4s ease; }
.quiz-slide {
  min-width: 100%; padding: 0 4px; box-sizing: border-box;
}
.quiz-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 36px 32px; min-height: 320px;
  display: flex; flex-direction: column; justify-content: center;
}
.quiz-counter {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.quiz-q {
  font-family: var(--serif); font-size: 1.35rem; line-height: 1.4;
  color: var(--ink); margin-bottom: 12px;
}
.quiz-sub { font-size: 0.88rem; color: var(--stone); font-style: italic; margin-bottom: 24px; }
.quiz-opts { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt {
  padding: 14px 20px; border: 1px solid var(--border); background: var(--cream);
  font-family: var(--sans); font-size: 0.95rem; color: var(--slate);
  cursor: pointer; transition: all 0.2s; text-align: left;
}
.quiz-opt:hover { border-color: var(--accent); color: var(--ink); background: var(--warm); }
.quiz-opt.selected { background: var(--accent); color: var(--white); border-color: var(--accent); }

.quiz-progress { height: 3px; background: var(--border); margin-bottom: 24px; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: var(--accent); transition: width 0.4s ease; width: 0%; }

.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }
.quiz-nav-btn {
  padding: 12px 28px; font-family: var(--sans); font-size: 0.9rem;
  font-weight: 600; cursor: pointer; transition: all 0.2s; border: none;
}
.quiz-prev { background: transparent; color: var(--stone); border: 1px solid var(--border); }
.quiz-prev:hover { border-color: var(--slate); color: var(--ink); }
.quiz-prev:disabled { opacity: 0.3; cursor: default; }
.quiz-next { background: var(--accent); color: var(--white); }
.quiz-next:hover { background: var(--accent-light); }
.quiz-next:disabled { opacity: 0.4; cursor: default; }
.quiz-dots { display: flex; gap: 8px; }
.quiz-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); transition: background 0.3s;
}
.quiz-dot.active { background: var(--accent); }
.quiz-dot.done { background: var(--stone); }

/* Results */
.quiz-result-box { background: var(--white); border: 1px solid var(--border); padding: 44px; }
.quiz-result-box::before { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin: 0 auto 28px; }
.quiz-result-level {
  font-family: var(--serif); font-size: 2rem; color: var(--ink);
  margin-bottom: 8px; text-align: center;
}
.quiz-result-score {
  font-size: 0.82rem; color: var(--stone); margin-bottom: 28px;
  text-transform: uppercase; letter-spacing: 0.08em; text-align: center;
}
.quiz-result-body p { font-size: 0.98rem; color: var(--slate); line-height: 1.7; }
.quiz-result-recs { margin: 28px 0; }
.quiz-result-recs h3 {
  font-family: var(--sans); font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink); margin-bottom: 16px;
}
.quiz-rec-item {
  padding: 14px 18px; margin-bottom: 10px; font-size: 0.92rem;
  border-left: 3px solid var(--accent); background: var(--warm); color: var(--slate);
}
.quiz-rec-item a { color: var(--accent); font-weight: 600; text-decoration: none; }
.quiz-rec-item a:hover { text-decoration: underline; }
.quiz-result-actions {
  margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--border); text-align: center;
}
.quiz-result-actions p { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); margin-bottom: 20px; }
.quiz-action-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.quiz-email-form { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.quiz-email-row { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.quiz-email-row input {
  flex: 1; padding: 12px 16px; font-family: var(--sans); font-size: 0.95rem;
  border: 1px solid var(--border); background: var(--cream); color: var(--ink); outline: none;
}
.quiz-email-row input:focus { border-color: var(--accent); }
.quiz-email-row button {
  padding: 12px 24px; background: var(--accent); color: var(--white);
  font-family: var(--sans); font-weight: 600; font-size: 0.88rem;
  border: none; cursor: pointer; white-space: nowrap; transition: background 0.2s;
}
.quiz-email-row button:hover { background: var(--accent-light); }
.quiz-email-confirm {
  text-align: center; margin-top: 12px; font-size: 0.85rem; color: var(--accent); display: none;
}

@media (max-width: 768px) {
  .quiz-card { padding: 28px 20px; min-height: 280px; }
  .quiz-q { font-size: 1.15rem; }
  .quiz-result-box { padding: 32px 24px; }
  .quiz-action-btns { flex-direction: column; align-items: center; }
  .quiz-email-row { flex-direction: column; }
}

/* === CONTACT FORM === */
.form-wrapper { max-width: 540px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--cream); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; font-family: var(--sans); font-size: 1rem;
  border: 1px solid #3d4f5f; background: rgba(255,255,255,0.06);
  color: var(--cream); outline: none; transition: border-color 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #6b7d8d; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--ink); color: var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  display: block; width: 100%; background: var(--accent); color: var(--white);
  font-family: var(--sans); font-weight: 700; font-size: 1.05rem;
  padding: 18px; border: none; cursor: pointer; letter-spacing: 0.02em;
  margin-top: 8px; transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--accent-light); transform: translateY(-1px); }
.form-note { text-align: center; margin-top: 14px; font-size: 0.84rem; color: #6b7d8d; }

/* === ARTICLES PAGE === */
.page-header { padding: 72px 0 48px; border-bottom: 1px solid var(--border); }
.page-header h1 { margin-bottom: 16px; }
.page-header .lead { max-width: 620px; }

.pillar-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 60px; }
.pillar-card {
  padding: 28px; border: 1px solid var(--border); background: var(--white);
  text-decoration: none; color: var(--ink); transition: border-color 0.2s, transform 0.15s;
  border-top: 3px solid var(--accent);
}
.pillar-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.pillar-card h3 { font-family: var(--sans); font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; color: var(--ink); }
.pillar-card p { font-size: 0.88rem; color: var(--slate); margin-bottom: 0; }

.article-list { margin-bottom: 60px; }
.article-list h2 { margin-bottom: 32px; }
.article-card {
  padding: 28px 0; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start;
}
.article-card:first-of-type { border-top: 1px solid var(--border); }
.article-card h3 { font-family: var(--sans); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.article-card h3 a { color: var(--ink); text-decoration: none; transition: color 0.2s; }
.article-card h3 a:hover { color: var(--accent); }
.article-card p { font-size: 0.9rem; color: var(--slate); margin-bottom: 0; }
.article-card .article-meta { font-size: 0.8rem; color: var(--stone); white-space: nowrap; padding-top: 4px; }

.article-body { max-width: 700px; }
.article-body h2 { font-size: 1.6rem; margin-top: 48px; margin-bottom: 16px; }
.article-body h3 { font-size: 1.2rem; margin-top: 36px; margin-bottom: 12px; }
.article-body p { font-size: 1.05rem; line-height: 1.8; color: var(--slate); }
.article-body ul { margin: 0 0 20px 24px; color: var(--slate); }
.article-body li { margin-bottom: 8px; font-size: 1.02rem; line-height: 1.7; }
.article-body blockquote {
  border-left: 3px solid var(--accent); padding: 16px 24px; margin: 28px 0;
  background: var(--warm); font-style: italic; color: var(--slate);
}

/* === FOOTER === */
.footer { padding: 48px 0; text-align: center; font-size: 0.84rem; color: var(--stone); border-top: 1px solid var(--border); }
.footer a { color: var(--stone); text-decoration: none; }
.footer a:hover { color: var(--accent); }

/* === RESPONSIVE === */
/* === HAMBURGER MENU === */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer; padding: 8px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; z-index: 200;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(26,35,50,0.5); z-index: 90; opacity: 0; transition: opacity 0.3s;
}
.nav-overlay.show { display: block; opacity: 1; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 64px; }
  .hero-sub { grid-template-columns: 1fr; gap: 16px; }
  .problem-item { grid-template-columns: 1fr; gap: 8px; }
  .case-stats { grid-template-columns: 1fr; gap: 16px; }
  .case-box { padding: 32px 24px; }
  .step { grid-template-columns: 36px 1fr; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .pillar-nav { grid-template-columns: 1fr; }
  .article-card { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed; top: 0; right: -280px;
    width: 280px; height: 100vh;
    background: var(--cream); z-index: 150;
    flex-direction: column; align-items: stretch;
    padding: 80px 32px 32px; gap: 0;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    display: block; padding: 16px 0;
    font-size: 1.05rem; font-weight: 600; color: var(--ink);
    border-bottom: 1px solid var(--border);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .nav-cta {
    margin-top: 20px; text-align: center; padding: 16px 24px;
  }
}

/* === ANIMATIONS === */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.anim { opacity: 0; }
.anim.vis { animation: fadeUp 0.5s ease forwards; }

/* === CASE STUDY PILLAR BREAKDOWNS === */
.case-pillar { padding: 20px 0; border-bottom: 1px solid var(--border); }
.case-pillar:last-of-type { border-bottom: none; }
.case-pillar-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.case-pillar p { margin: 0; font-size: 0.95rem; line-height: 1.7; }
.case-pillar a { font-size: 0.9rem; }

/* === BUYER CARDS (Homepage) === */
.buyer-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.buyer-card {
  display: block; text-decoration: none; color: var(--ink);
  background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--accent);
  border-radius: 8px; padding: 28px 24px; cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.buyer-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent); box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.buyer-card:hover .buyer-card-link { text-decoration: underline; }
.buyer-card:hover .buyer-card-link::after { transform: translateX(4px); }
.buyer-card-num {
  font-family: var(--serif); font-size: 1.6rem; color: var(--accent); margin-bottom: 8px;
}
.buyer-card h3 { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 10px; }
.buyer-card p { font-size: 0.92rem; color: var(--slate); line-height: 1.65; margin-bottom: 16px; }
.buyer-card-link {
  font-size: 0.88rem; color: var(--accent); font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px;
}
.buyer-card-link::after {
  content: ''; display: inline-block; width: 16px; height: 16px;
  background: currentColor; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M7.21 14.77a.75.75 0 01.02-1.06L11.168 10 7.23 6.29a.75.75 0 111.04-1.08l4.5 4.25a.75.75 0 010 1.08l-4.5 4.25a.75.75 0 01-1.06-.02z'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M7.21 14.77a.75.75 0 01.02-1.06L11.168 10 7.23 6.29a.75.75 0 111.04-1.08l4.5 4.25a.75.75 0 010 1.08l-4.5 4.25a.75.75 0 01-1.06-.02z'/%3E%3C/svg%3E");
  transition: transform 0.2s;
}
@media (max-width: 768px) {
  .buyer-cards { grid-template-columns: 1fr; }
}

/* === STICKY QUIZ CTA (Article Pages) === */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--ink); color: var(--white); padding: 14px 20px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: 0.9rem; transform: translateY(100%); transition: transform 0.35s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta p { margin: 0; color: rgba(255,255,255,0.85); }
.sticky-cta .btn {
  background: var(--accent); color: var(--white); padding: 8px 20px;
  font-size: 0.85rem; border-radius: 4px; text-decoration: none; white-space: nowrap;
}
.sticky-cta .btn:hover { background: var(--accent-light); }
.sticky-cta-close {
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 1.2rem; cursor: pointer; padding: 0 4px; line-height: 1;
}
.sticky-cta-close:hover { color: #fff; }
@media (max-width: 600px) {
  .sticky-cta { flex-wrap: wrap; gap: 8px; padding: 12px 16px; }
  .sticky-cta p { flex: 1 1 100%; text-align: center; font-size: 0.85rem; }
}

/* === ARTICLE BODY STYLES === */
.article-body { max-width: 720px; margin: 0 auto; padding-top: 32px; padding-bottom: 60px; }
.article-body h1 { font-family: var(--serif); font-size: 2rem; margin-bottom: 24px; line-height: 1.25; }
.article-body h2 { font-family: var(--serif); font-size: 1.4rem; margin-top: 40px; margin-bottom: 16px; line-height: 1.3; }
.article-body h3 { font-family: var(--serif); font-size: 1.15rem; margin-top: 28px; margin-bottom: 12px; }
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 16px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--accent); }
.article-body a:hover { color: var(--accent-light); }
.article-sources { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); }
.article-sources h3 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--stone); }
