/* ============================================================
   Yellow Letter — Main Stylesheet
   Real letters. Real responses. Since 1986.
   ============================================================ */

:root {
  --yellow: #FFD23F;
  --yellow-deep: #E6B82A;
  --ink: #1A1A1A;
  --paper: #F8F3E3;
  --canvas: #FAF7EC;
  --slate: #5F5E5A;
  --rule: #D3D1C7;
  --rule-dark: #2A2A2A;
  --white: #FFFFFF;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  line-height: 1.5;
  font-size: 16px;
  background: var(--canvas);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.serif { font-family: 'Playfair Display', Georgia, serif; }
.mono  { font-family: 'JetBrains Mono', ui-monospace, monospace; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ============ WORDPRESS CORE FIXES ============ */
.wp-block-image { margin: 0; }
.alignnone { margin: 0; }
.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }

/* ============ NAVIGATION ============ */
.nav {
  background: var(--canvas);
  border-bottom: 0.5px solid var(--rule);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-seal { width: 36px; height: 36px; flex-shrink: 0; }
.nav-brand-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--ink);
}
.nav-est {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--slate);
  letter-spacing: 2px;
  padding-left: 12px;
  border-left: 1px solid var(--rule);
  margin-left: 4px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  color: var(--ink);
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 0.6; }
.nav-cta {
  background: var(--ink) !important;
  color: var(--canvas) !important;
  padding: 8px 16px !important;
  border-radius: 4px;
  font-weight: 600 !important;
  opacity: 1 !important;
}
.nav-cta:hover { background: #000 !important; }
/* WordPress nav menu compatibility */
.nav-links .menu-item a { font-size: 13px; text-decoration: none; font-weight: 500; color: var(--ink); transition: opacity 0.15s; }
.nav-links .menu-item a:hover { opacity: 0.6; }
.nav-links .menu-item.nav-cta-item a {
  background: var(--ink);
  color: var(--canvas);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background-color 0.15s, color 0.15s;
  font-family: inherit;
  line-height: 1;
}
.btn-primary { background: var(--ink); color: var(--canvas); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,26,26,0.2); color: var(--canvas); }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--canvas); }
.btn-arrow { display: inline-block; transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============ HERO ============ */
.hero {
  padding: 80px 32px 100px;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--slate); }
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -2.5px;
  font-weight: 900;
  margin: 0 0 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px; bottom: 8px;
  height: 18px;
  background: var(--yellow);
  z-index: -1;
}
.hero-sub { font-size: 19px; line-height: 1.55; color: var(--slate); max-width: 480px; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 14px; align-items: center; margin-bottom: 56px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; }
.trust-num { font-family: 'Playfair Display', Georgia, serif; font-size: 32px; font-weight: 900; line-height: 1; }
.trust-num small { font-size: 18px; }
.trust-label { font-size: 11px; color: var(--slate); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }
.trust-divider { width: 1px; height: 40px; background: var(--rule); }

/* Envelope visual */
.hero-visual { position: relative; height: 540px; }
.envelope {
  position: absolute;
  background: var(--paper);
  border: 1px solid #E8DFC0;
  border-radius: 3px;
  box-shadow: 0 30px 60px rgba(26,26,26,0.18), 0 8px 20px rgba(26,26,26,0.08);
  padding: 32px;
  width: 480px;
  height: 290px;
  transition: transform 0.4s ease;
}
.envelope-1 { top: 30px; right: -40px; transform: rotate(-3deg); z-index: 3; }
.envelope-2 { top: 180px; right: 60px; transform: rotate(2deg); z-index: 2; opacity: 0.85; }
.envelope-3 { top: 320px; right: -20px; transform: rotate(-1deg); z-index: 1; opacity: 0.7; }
.envelope-1:hover { transform: rotate(-3deg) translateY(-8px); }
.env-return { position: absolute; top: 24px; left: 24px; display: flex; align-items: center; gap: 8px; }
.env-return-text { font-family: 'Playfair Display', serif; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; line-height: 1.4; }
.env-return-sub { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 8px; color: var(--slate); display: block; }
.env-stamp { position: absolute; top: 24px; right: 24px; width: 60px; height: 70px; background: var(--white); border: 0.5px solid var(--rule); padding: 6px; }
.env-stamp-inner { background: var(--yellow); width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 900; }
.env-stamp-inner div:nth-child(1) { font-size: 7px; }
.env-stamp-inner div:nth-child(2) { font-size: 11px; line-height: 1; margin-top: 4px; }
.env-stamp-inner div:nth-child(3) { font-size: 7px; margin-top: 2px; }
.env-postmark { position: absolute; top: 95px; right: 30px; width: 70px; height: 70px; border: 1.5px solid var(--ink); border-radius: 50%; transform: rotate(-12deg); opacity: 0.85; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.env-postmark-small { font-size: 7px; font-weight: 700; letter-spacing: 1.5px; }
.env-postmark-big { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 900; margin: 2px 0; }
.env-address { position: absolute; bottom: 32px; left: 80px; font-family: 'Caveat', cursive; font-size: 22px; line-height: 1.35; }
.env-badge { position: absolute; top: -16px; left: -16px; background: var(--ink); color: var(--yellow); padding: 10px 14px; border-radius: 100px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1.5px; z-index: 10; box-shadow: 0 6px 16px rgba(26,26,26,0.2); transform: rotate(-4deg); }

/* ============ MARQUEE ============ */
.marquee { background: var(--ink); color: var(--canvas); padding: 28px 0; overflow: hidden; border-top: 1px solid var(--rule-dark); border-bottom: 1px solid var(--rule-dark); }
.marquee-inner { display: flex; align-items: center; gap: 56px; animation: marquee 30s linear infinite; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { font-family: 'Playfair Display', serif; font-size: 18px; font-style: italic; display: flex; align-items: center; gap: 56px; }
.marquee-item::after { content: '✦'; color: var(--yellow); font-size: 14px; }

/* ============ SECTION SHARED ============ */
.section { padding: 120px 32px; max-width: 1240px; margin: 0 auto; }
.section-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--slate); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.section h2 { font-family: 'Playfair Display', serif; line-height: 1; letter-spacing: -2px; font-weight: 900; }
.section h2 em { font-style: italic; font-weight: 400; }

/* ============ STATS ============ */
.stats-header { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; margin-bottom: 64px; align-items: end; }
.stats-header h2 { font-size: 52px; }
.stats-intro { font-size: 17px; line-height: 1.55; color: var(--slate); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.stat { background: var(--canvas); padding: 40px 24px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 72px; font-weight: 900; line-height: 0.95; letter-spacing: -3px; }
.stat-num small { font-size: 36px; vertical-align: super; line-height: 1; }
.stat-label { font-size: 13px; color: var(--slate); margin-top: 12px; line-height: 1.4; max-width: 220px; }

/* ============ HOW IT WORKS ============ */
.how { background: var(--paper); padding: 120px 32px; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.how-inner { max-width: 1240px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 80px; }
.how-header h2 { font-family: 'Playfair Display', serif; font-size: 60px; line-height: 1; letter-spacing: -2px; font-weight: 900; margin-bottom: 16px; }
.how-header h2 em { font-style: italic; font-weight: 400; }
.how-sub { font-size: 17px; color: var(--slate); max-width: 520px; margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.step-num { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--slate); letter-spacing: 2px; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.step-num::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.step-visual { height: 140px; background: var(--canvas); border: 1px solid var(--rule); border-radius: 8px; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; }
.step h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; letter-spacing: -0.5px; margin: 0 0 12px; }
.step p { font-size: 14px; color: var(--slate); line-height: 1.55; }

/* ============ SAMPLE LETTER ============ */
.sample { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sample h2 { font-size: 52px; margin-bottom: 28px; }
.sample-text p { font-size: 17px; line-height: 1.6; color: var(--slate); margin: 0 0 20px; }
.sample-letter { background: var(--paper); border: 1px solid #E8DFC0; border-radius: 4px; padding: 48px 44px; font-family: 'Caveat', cursive; font-size: 22px; line-height: 1.5; box-shadow: 0 20px 50px rgba(26,26,26,0.12); position: relative; transform: rotate(-1deg); }
.sample-letter::before { content: 'SAMPLE'; position: absolute; top: 16px; right: 16px; font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--slate); letter-spacing: 2px; opacity: 0.6; }
.sample-letter p { margin: 0 0 14px; }
.sample-sig { display: flex; flex-direction: column; margin-top: 24px; }

/* ============ PRICING ============ */
.pricing { background: var(--ink); color: var(--canvas); padding: 120px 32px; }
.pricing-inner { max-width: 1240px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-header .section-eyebrow { color: var(--yellow); }
.pricing-header h2 { font-family: 'Playfair Display', serif; font-size: 60px; line-height: 1; letter-spacing: -2px; font-weight: 900; margin-bottom: 16px; color: var(--canvas); }
.pricing-header h2 em { font-style: italic; font-weight: 400; }
.pricing-sub { font-size: 17px; color: #888; max-width: 520px; margin: 0 auto; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.tier { background: var(--rule-dark); border: 1px solid #333; border-radius: 12px; padding: 40px 32px; position: relative; transition: border-color 0.2s, transform 0.2s; }
.tier:hover { border-color: var(--yellow); transform: translateY(-4px); }
.tier-featured { background: var(--yellow); color: var(--ink); border: 1px solid var(--yellow); }
.tier-featured:hover { transform: translateY(-4px); }
.tier-tag { position: absolute; top: -12px; left: 32px; background: var(--ink); color: var(--yellow); padding: 6px 12px; border-radius: 100px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1.5px; }
.tier-name { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.tier-desc { font-size: 13px; color: var(--slate); margin-bottom: 24px; }
.tier-featured .tier-desc { color: rgba(26,26,26,0.7); }
.tier-price { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 900; line-height: 1; letter-spacing: -2px; margin-bottom: 4px; }
.tier-price small { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--slate); font-weight: 400; }
.tier-featured .tier-price small { color: rgba(26,26,26,0.7); }
.tier hr { border: none; border-top: 1px solid #333; margin: 32px 0 24px; }
.tier-featured hr { border-top: 1px solid rgba(26,26,26,0.15); }
.tier-features { list-style: none; margin-bottom: 32px; }
.tier-features li { font-size: 14px; padding: 8px 0; display: flex; align-items: flex-start; gap: 10px; }
.tier-features li::before { content: '✓'; color: var(--yellow); font-weight: 900; flex-shrink: 0; }
.tier-featured .tier-features li::before { color: var(--ink); }
.tier-btn { width: 100%; padding: 14px; border-radius: 6px; background: var(--canvas); color: var(--ink); border: none; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; transition: opacity 0.15s; }
.tier-btn:hover { opacity: 0.85; }
.tier-featured .tier-btn { background: var(--ink); color: var(--yellow); }
.pricing-note { text-align: center; font-size: 13px; color: #888; font-family: 'JetBrains Mono', monospace; letter-spacing: 1px; }

/* ============ TESTIMONIALS ============ */
.test-header { text-align: center; margin-bottom: 64px; }
.test-header h2 { font-family: 'Playfair Display', serif; font-size: 56px; line-height: 1; letter-spacing: -1.5px; font-weight: 900; }
.test-header h2 em { font-style: italic; font-weight: 400; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test-card { background: var(--canvas); border: 1px solid var(--rule); border-radius: 12px; padding: 36px 32px; display: flex; flex-direction: column; }
.test-quote { font-family: 'Playfair Display', serif; font-size: 21px; line-height: 1.4; margin-bottom: 24px; flex: 1; }
.test-quote-mark { font-family: 'Playfair Display', serif; font-size: 48px; line-height: 0; color: var(--yellow); display: block; margin-bottom: 12px; }
.test-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--rule); }
.test-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 16px; color: var(--ink); flex-shrink: 0; }
.test-name { font-size: 14px; font-weight: 600; }
.test-role { font-size: 12px; color: var(--slate); }

/* ============ FINAL CTA ============ */
.final { background: var(--yellow); padding: 140px 32px; text-align: center; border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink); position: relative; overflow: hidden; }
.final::before, .final::after { content: '★'; position: absolute; font-size: 200px; color: var(--ink); opacity: 0.06; font-family: serif; pointer-events: none; }
.final::before { top: -40px; left: -20px; }
.final::after { bottom: -80px; right: -20px; transform: rotate(20deg); }
.final-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.final h2 { font-family: 'Playfair Display', serif; font-size: 72px; line-height: 0.95; letter-spacing: -2.5px; font-weight: 900; margin: 0 0 24px; }
.final h2 em { font-style: italic; font-weight: 400; }
.final p { font-size: 19px; margin-bottom: 40px; }

/* ============ FOOTER ============ */
.yl-footer { background: var(--ink); color: var(--canvas); padding: 80px 32px 32px; }
.footer-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 64px; }
.footer-brand-text { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; letter-spacing: -1px; margin-bottom: 16px; }
.footer-brand-sub { font-family: 'Playfair Display', serif; font-style: italic; font-size: 17px; color: #888; line-height: 1.4; max-width: 280px; }
.footer-col h4 { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 2px; color: var(--yellow); margin: 0 0 24px; text-transform: uppercase; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--canvas); text-decoration: none; font-size: 14px; transition: color 0.15s; }
.footer-col a:hover { color: var(--yellow); }
/* WordPress nav menu in footer */
.footer-col .menu { list-style: none; padding: 0; margin: 0; }
.footer-col .menu li { margin-bottom: 12px; }
.footer-col .menu a { color: var(--canvas); text-decoration: none; font-size: 14px; transition: color 0.15s; }
.footer-col .menu a:hover { color: var(--yellow); }
.footer-bottom { max-width: 1240px; margin: 0 auto; border-top: 1px solid var(--rule-dark); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #888; }
.footer-copy { font-family: 'JetBrains Mono', monospace; letter-spacing: 1px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .envelope { width: 380px; }
  .hero-visual { height: 480px; }
}
@media (max-width: 900px) {
  .hero, .sample, .stats-header { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid, .steps, .tiers, .test-grid, .footer-inner { grid-template-columns: 1fr; }
  .hero h1, .how-header h2, .pricing-header h2, .final h2 { font-size: 48px; }
  .stats-header h2, .sample h2, .test-header h2 { font-size: 40px; }
  .hero-visual { height: 320px; margin-top: 40px; }
  .envelope { width: 300px; height: 190px; padding: 18px; }
  .envelope-1 { top: 10px; right: 10px; }
  .envelope-2 { top: 130px; right: 50px; }
  .envelope-3 { top: 240px; right: 20px; }
  .env-address { font-size: 15px; bottom: 16px; left: 40px; }
  .nav-est { display: none; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { position: fixed; top: 65px; left: 0; right: 0; background: var(--canvas); border-bottom: 1px solid var(--rule); padding: 20px 32px; flex-direction: column; align-items: flex-start; gap: 16px; z-index: 99; }
  .nav-links.open a { display: block !important; font-size: 15px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .section { padding: 80px 24px; }
  .how { padding: 80px 24px; }
  .pricing { padding: 80px 24px; }
  .final { padding: 100px 24px; }
  .yl-footer { padding: 60px 24px 24px; }
}
@media (max-width: 480px) {
  .nav { padding: 12px 20px; }
  .hero { padding: 40px 20px 60px; }
  .hero h1 { font-size: 38px; letter-spacing: -1.5px; }
  .final h2 { font-size: 38px; }
  .stat-num { font-size: 52px; }
  .tiers { gap: 16px; }
  .tier { padding: 28px 20px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.skip-link:focus {
  background-color: var(--ink);
  color: var(--canvas);
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
  display: block;
  font-size: 14px;
  font-weight: 600;
  height: auto;
  left: 8px;
  line-height: normal;
  padding: 12px 18px;
  text-decoration: none;
  top: 8px;
  width: auto;
  z-index: 100000;
  border-radius: 4px;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.yl-breadcrumbs { margin-bottom: 24px; }
.yl-breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.yl-breadcrumbs li { display: flex; align-items: center; }
.yl-breadcrumbs li + li::before { content: '/'; margin-right: 8px; color: var(--rule); }
.yl-breadcrumbs a { color: var(--slate); text-decoration: none; }
.yl-breadcrumbs a:hover { color: var(--ink); }
.yl-breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ============================================================
   BLOG MAIN LAYOUT
   ============================================================ */
.yl-blog-main, .yl-archive, .yl-page-main, .yl-404 {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 32px 120px;
}

/* ============================================================
   POST HEADER
   ============================================================ */
.yl-post-header { max-width: 760px; margin: 0 auto 40px; text-align: left; }
.yl-post-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.yl-post-cat {
  background: var(--yellow);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
}
.yl-post-reading-time { color: var(--slate); }

.yl-post-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 900;
  margin: 0 0 24px;
}
.yl-post-lede {
  font-size: 21px;
  line-height: 1.5;
  color: var(--slate);
  margin-bottom: 32px;
}

.yl-post-meta-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
  gap: 16px;
}
.yl-post-author { display: flex; align-items: center; gap: 12px; }
.yl-author-avatar { border-radius: 50%; }
.yl-author-name { font-size: 14px; font-weight: 600; }
.yl-author-role { font-size: 12px; color: var(--slate); }
.yl-post-dates { font-size: 12px; color: var(--slate); text-align: right; }
.yl-post-dates time { display: block; }

/* Featured image */
.yl-post-featured { max-width: 1100px; margin: 0 auto 60px; }
.yl-post-featured img { width: 100%; height: auto; border-radius: 8px; }
.yl-post-featured figcaption { font-size: 13px; color: var(--slate); text-align: center; margin-top: 12px; font-style: italic; }

/* Layout grid */
.yl-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* ============================================================
   POST CONTENT
   ============================================================ */
.yl-post-content {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
}
.yl-post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 56px 0 20px;
  scroll-margin-top: 80px;
}
.yl-post-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 14px;
}
.yl-post-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 32px 0 12px;
}
.yl-post-content p { margin-bottom: 20px; }
.yl-post-content a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; text-underline-offset: 3px; }
.yl-post-content a:hover { text-decoration-color: var(--ink); }
.yl-post-content ul, .yl-post-content ol { margin: 0 0 20px 24px; }
.yl-post-content li { margin-bottom: 8px; }
.yl-post-content blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1.4;
  border-left: 4px solid var(--yellow);
  padding: 8px 0 8px 32px;
  margin: 40px 0;
  color: var(--ink);
}
.yl-post-content img { border-radius: 8px; margin: 32px 0; }
.yl-post-content code {
  background: var(--paper);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
  font-family: 'JetBrains Mono', monospace;
}
.yl-post-content pre {
  background: var(--ink);
  color: var(--canvas);
  padding: 24px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 32px 0;
}
.yl-post-content pre code { background: transparent; padding: 0; color: inherit; }
.yl-post-content hr { border: none; border-top: 1px solid var(--rule); margin: 48px 0; }

/* TOC */
.yl-toc {
  background: var(--paper);
  border: 1px solid #E8DFC0;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.yl-toc-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 12px;
}
.yl-toc ol {
  list-style: decimal;
  padding-left: 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}
.yl-toc a {
  text-decoration: none;
  color: var(--ink);
}
.yl-toc a:hover { color: var(--yellow-deep); }

/* Post tags */
.yl-post-tags {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}
.yl-tags-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
  margin-right: 8px;
}
.yl-post-tags a {
  background: var(--paper);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 12px;
}
.yl-post-tags a:hover { background: var(--yellow); }

/* Author bio */
.yl-author-bio {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: var(--paper);
  border-radius: 12px;
  margin-top: 48px;
  align-items: flex-start;
}
.yl-author-bio-avatar { border-radius: 50%; flex-shrink: 0; }
.yl-author-bio-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.yl-author-bio-desc { font-size: 14px; color: var(--slate); margin-bottom: 12px; line-height: 1.5; }
.yl-author-bio-link { font-size: 13px; font-weight: 600; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--yellow); }

/* Sidebar */
.yl-post-sidebar { position: sticky; top: 100px; }
.yl-sidebar-cta {
  background: var(--ink);
  color: var(--canvas);
  padding: 32px 28px;
  border-radius: 12px;
}
.yl-sidebar-cta-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 16px;
}
.yl-sidebar-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--canvas);
}
.yl-sidebar-cta p { font-size: 14px; line-height: 1.55; color: #ccc; margin-bottom: 20px; }
.yl-sidebar-cta .btn-primary { background: var(--yellow); color: var(--ink); width: 100%; justify-content: center; }
.yl-sidebar-cta .btn-primary:hover { background: var(--yellow-deep); }

/* ============================================================
   RELATED POSTS
   ============================================================ */
.yl-related {
  background: var(--paper);
  padding: 100px 32px;
  margin-top: 100px;
  border-top: 1px solid var(--rule);
}
.yl-related-inner { max-width: 1240px; margin: 0 auto; }
.yl-related h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -1.5px;
  font-weight: 900;
  margin: 8px 0 48px;
}
.yl-related h2 em { font-style: italic; font-weight: 400; }
.yl-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.yl-related-card {
  background: var(--canvas);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.yl-related-image img { width: 100%; height: 200px; object-fit: cover; display: block; }
.yl-related-cat {
  display: inline-block;
  margin: 24px 24px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
}
.yl-related-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin: 8px 24px 12px;
}
.yl-related-card h3 a { color: var(--ink); text-decoration: none; }
.yl-related-card h3 a:hover { color: var(--yellow-deep); }
.yl-related-excerpt {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
  margin: 0 24px 16px;
  flex: 1;
}
.yl-related-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 24px 24px;
}

/* ============================================================
   ARCHIVE / BLOG INDEX
   ============================================================ */
.yl-archive-header { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.yl-archive-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 900;
  margin: 12px 0 24px;
}
.yl-archive-title em { font-style: italic; font-weight: 400; }
.yl-archive-desc { font-size: 18px; line-height: 1.55; color: var(--slate); }

.yl-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.yl-post-card {
  background: var(--canvas);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.yl-post-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(26,26,26,0.08); }
.yl-card-image img { width: 100%; height: 220px; object-fit: cover; display: block; }
.yl-card-body { padding: 24px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.yl-card-cat {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 16px;
  align-self: flex-start;
}
.yl-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}
.yl-card-title a { color: var(--ink); text-decoration: none; }
.yl-card-title a:hover { color: var(--yellow-deep); }
.yl-card-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate);
  margin-bottom: 16px;
  flex: 1;
}
.yl-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

/* Pagination */
.yl-pagination {
  max-width: 1240px;
  margin: 64px auto 0;
  display: flex;
  justify-content: center;
}
.yl-pagination .nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.yl-pagination .page-numbers {
  padding: 10px 14px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.yl-pagination .page-numbers.current { background: var(--ink); color: var(--canvas); border-color: var(--ink); }
.yl-pagination .page-numbers:hover:not(.current) { background: var(--paper); }

/* ============================================================
   GENERIC PAGE TEMPLATE
   ============================================================ */
.yl-page-header { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.yl-page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 900;
  margin: 12px 0 20px;
}
.yl-page-lede { font-size: 19px; color: var(--slate); line-height: 1.55; }
.yl-page-featured { max-width: 1100px; margin: 0 auto 48px; }
.yl-page-featured img { width: 100%; height: auto; border-radius: 8px; }
.yl-page-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
}
.yl-page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  margin: 48px 0 16px;
}
.yl-page-content p { margin-bottom: 18px; }
.yl-page-content a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 2px; }

/* ============================================================
   404 PAGE
   ============================================================ */
.yl-404 { padding: 100px 32px; text-align: center; }
.yl-404-inner { max-width: 720px; margin: 0 auto; }
.yl-404 h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin: 12px 0 20px;
}
.yl-404 h1 em { font-style: italic; font-weight: 400; }
.yl-404-sub { font-size: 18px; color: var(--slate); margin-bottom: 40px; }
.yl-404-search { display: flex; gap: 12px; margin-bottom: 56px; max-width: 540px; margin-left: auto; margin-right: auto; }
.yl-404-search input { flex: 1; padding: 16px 20px; border: 1px solid var(--rule); border-radius: 6px; font-size: 15px; font-family: inherit; background: var(--white); }
.yl-404-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; text-align: left; max-width: 600px; margin: 0 auto; }
.yl-404-cols h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 16px;
  font-weight: 500;
}
.yl-404-cols ul { list-style: none; padding: 0; margin: 0; }
.yl-404-cols li { margin-bottom: 10px; }
.yl-404-cols a { color: var(--ink); text-decoration: none; font-size: 14px; border-bottom: 1px solid var(--rule); padding-bottom: 2px; }
.yl-404-cols a:hover { border-bottom-color: var(--yellow); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.yl-faq-section { padding-bottom: 60px; }
.yl-faqs {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.yl-faq {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.yl-faq summary {
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.yl-faq summary::-webkit-details-marker { display: none; }
.yl-faq summary::after {
  content: '+';
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--slate);
  transition: transform 0.2s, color 0.2s;
  line-height: 1;
}
.yl-faq[open] summary::after {
  content: '−';
  color: var(--yellow-deep);
}
.yl-faq summary h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
  flex: 1;
}
.yl-faq-answer {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 720px;
}

/* ============================================================
   NO POSTS
   ============================================================ */
.yl-no-posts {
  text-align: center;
  max-width: 520px;
  margin: 80px auto;
}
.yl-no-posts h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 16px;
}
.yl-no-posts p { color: var(--slate); margin-bottom: 24px; }

/* ============================================================
   WIDGETS
   ============================================================ */
.widget { margin-bottom: 32px; }
.widget-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 16px;
  font-weight: 500;
}

/* ============================================================
   RESPONSIVE FOR BLOG
   ============================================================ */
@media (max-width: 1100px) {
  .yl-post-layout { grid-template-columns: 1fr; }
  .yl-post-sidebar { position: static; max-width: 760px; margin: 40px auto 0; }
  .yl-post-grid, .yl-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .yl-post-grid, .yl-related-grid { grid-template-columns: 1fr; }
  .yl-blog-main, .yl-archive, .yl-page-main, .yl-404 { padding: 40px 20px 80px; }
  .yl-post-content { font-size: 17px; }
  .yl-post-content h2 { font-size: 28px; }
  .yl-related { padding: 60px 20px; }
  .yl-404-cols { grid-template-columns: 1fr; }
  .yl-404-search { flex-direction: column; }
  .yl-author-bio { flex-direction: column; text-align: center; align-items: center; }
}

/* ============================================================
   OFFER POPUP — $50 OFF FIRST PRINTING
   ============================================================ */
.yl-offer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.yl-offer-overlay.is-visible { opacity: 1; }
.yl-offer-overlay[hidden] { display: none; }

.yl-offer-modal {
  background: var(--canvas);
  max-width: 520px;
  width: 100%;
  border-radius: 12px;
  padding: 48px 44px 36px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.yl-offer-overlay.is-visible .yl-offer-modal { transform: translateY(0); }

.yl-offer-corner {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  line-height: 0;
}

.yl-offer-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.06);
  border: none;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  z-index: 2;
  transition: background 0.15s;
}
.yl-offer-close:hover { background: rgba(26, 26, 26, 0.15); }

.yl-offer-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--yellow-deep);
  margin-bottom: 16px;
}

.yl-offer-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 12px;
}

.yl-offer-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate);
  margin: 0 0 24px;
}

.yl-offer-field {
  margin-bottom: 14px;
}
.yl-offer-field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ink);
  margin-bottom: 6px;
}
.yl-offer-field input[type="text"],
.yl-offer-field input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}
.yl-offer-field input:focus {
  outline: none;
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 3px rgba(255, 210, 63, 0.25);
}

.yl-offer-radios {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.yl-offer-radio {
  display: flex !important;
  align-items: center;
  padding: 11px 14px !important;
  border: 1px solid var(--rule);
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--ink) !important;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
  margin-bottom: 0 !important;
}
.yl-offer-radio:hover { border-color: var(--yellow-deep); background: #FFFEF7; }
.yl-offer-radio input[type="radio"] {
  margin-right: 10px;
  accent-color: var(--yellow-deep);
}
.yl-offer-radio:has(input:checked) {
  border-color: var(--yellow-deep);
  background: #FFF7DC;
  border-width: 2px;
  padding: 10px 13px !important;
}
.yl-radio-label { flex: 1; }

.yl-offer-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--ink);
  color: var(--canvas);
  border: none;
  padding: 15px 24px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: 0.2px;
}
.yl-offer-submit:hover:not(:disabled) {
  background: var(--yellow-deep);
  color: var(--ink);
}
.yl-offer-submit:active:not(:disabled) { transform: scale(0.99); }
.yl-offer-submit:disabled { opacity: 0.7; cursor: wait; }
.yl-offer-submit-loading { display: none; }
.yl-offer-submit.is-loading .yl-offer-submit-label { display: none; }
.yl-offer-submit.is-loading .yl-offer-submit-loading { display: inline; }

.yl-offer-finepr {
  font-size: 11px;
  color: var(--slate);
  text-align: center;
  margin: 14px 0 0;
  letter-spacing: 0.2px;
}

.yl-offer-error {
  background: #fdf1ec;
  border-left: 3px solid #E85D24;
  color: #a8421a;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13px;
  margin-top: 12px;
}

/* Thank-you state */
.yl-offer-thanks-state {
  text-align: center;
  padding: 8px 0;
}
.yl-offer-thanks-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.yl-offer-thanks-state .yl-offer-submit { margin-top: 20px; }

/* Mobile */
@media (max-width: 600px) {
  .yl-offer-modal { padding: 36px 28px 28px; }
  .yl-offer-corner svg { width: 64px; height: 64px; }
  .yl-offer-heading { font-size: 26px; }
  .yl-offer-eyebrow { font-size: 10px; }
}

/* Two-tier pricing layout (centered, no 3-col) */
.tiers.tiers-two {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 800px) {
  .tiers.tiers-two { grid-template-columns: 1fr !important; }
}

/* ============================================================
   CTA FORM PAGES — /start/ /sample/ /contact/ /quote/
   ============================================================ */
.yl-cta-page { background: var(--canvas); }

.yl-cta-hero {
  background: var(--paper);
  padding: 60px 32px 80px;
  border-bottom: 1px solid var(--rule);
}
.yl-cta-hero-inner { max-width: 1100px; margin: 0 auto; }
.yl-cta-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 900;
  margin: 12px 0 20px;
}
.yl-cta-hero h1 em { font-style: italic; font-weight: 400; }
.yl-cta-lede {
  font-size: 19px;
  line-height: 1.5;
  color: var(--slate);
  max-width: 680px;
  margin: 0 0 32px;
}

.yl-cta-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  max-width: 800px;
}
.yl-cta-trust > div {
  display: flex;
  flex-direction: column;
}
.yl-cta-trust strong {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--ink);
}
.yl-cta-trust span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 6px;
}

/* Form section layout */
.yl-cta-form-section {
  padding: 80px 32px 120px;
}
.yl-cta-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.yl-cta-form-grid-narrow {
  max-width: 1000px;
}
@media (max-width: 900px) {
  .yl-cta-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .yl-cta-form-section { padding: 48px 20px 80px; }
}

/* Form */
.yl-cta-form-wrap {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 40px;
}
@media (max-width: 600px) { .yl-cta-form-wrap { padding: 28px 20px; } }

.yl-form-step-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.yl-form-section {
  border: none;
  padding: 0;
  margin: 0 0 32px;
}
.yl-form-section legend {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 18px;
  padding: 0;
}
.yl-form-section + .yl-form-section {
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.yl-form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 14px;
}
.yl-form-row-2 { grid-template-columns: 1fr 1fr; }
.yl-form-row-3 { grid-template-columns: 2fr 1fr 1fr; }
@media (max-width: 600px) {
  .yl-form-row-2, .yl-form-row-3 { grid-template-columns: 1fr; }
}

.yl-form-field { margin-bottom: 14px; }
.yl-form-field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ink);
  margin-bottom: 6px;
}
.yl-req { color: #E85D24; }

.yl-form-field input[type="text"],
.yl-form-field input[type="email"],
.yl-form-field input[type="tel"],
.yl-form-field input[type="number"],
.yl-form-field select,
.yl-form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.yl-form-field input:focus,
.yl-form-field select:focus,
.yl-form-field textarea:focus {
  outline: none;
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 3px rgba(255, 210, 63, 0.25);
}

.yl-form-radios {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 480px) { .yl-form-radios { grid-template-columns: 1fr; } }

.yl-form-radio {
  display: flex !important;
  align-items: center;
  padding: 12px 14px !important;
  border: 1px solid var(--rule);
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--ink) !important;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
  margin-bottom: 0 !important;
}
.yl-form-radio:hover { border-color: var(--yellow-deep); background: #FFFEF7; }
.yl-form-radio input[type="radio"] {
  margin-right: 10px;
  accent-color: var(--yellow-deep);
}
.yl-form-radio:has(input:checked) {
  border-color: var(--yellow-deep);
  background: #FFF7DC;
  border-width: 2px;
  padding: 11px 13px !important;
}

.yl-form-submit-wrap {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.yl-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--canvas);
  border: none;
  padding: 17px 36px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: 0.2px;
  min-width: 280px;
}
.yl-form-submit:hover:not(:disabled) { background: var(--yellow-deep); color: var(--ink); }
.yl-form-submit:active:not(:disabled) { transform: scale(0.99); }
.yl-form-submit:disabled { opacity: 0.7; cursor: wait; }
.yl-form-submit-loading { display: none; }
.yl-form-submit.is-loading .yl-form-submit-label { display: none; }
.yl-form-submit.is-loading .yl-form-submit-loading { display: inline; }

.yl-form-fineprint {
  font-size: 12px;
  color: var(--slate);
  margin: 14px 0 0;
}

.yl-form-error {
  background: #fdf1ec;
  border-left: 3px solid #E85D24;
  color: #a8421a;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  margin-top: 16px;
}

/* Sidebar */
.yl-cta-sidebar { display: flex; flex-direction: column; gap: 16px; }
.yl-cta-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 24px 26px;
}
.yl-cta-card-dark {
  background: var(--ink);
  color: var(--canvas);
  border-color: var(--ink);
}
.yl-cta-card-dark h3 {
  color: var(--canvas);
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin: 8px 0 12px;
}
.yl-cta-card-quiet { background: var(--paper); border-color: #E8DFC0; }
.yl-cta-card-quiet p { margin: 0 0 8px; font-size: 14px; }
.yl-cta-card-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--slate);
  margin-bottom: 14px;
  font-weight: 600;
}
.yl-cta-card-dark .yl-cta-card-eyebrow { color: var(--yellow); }
.yl-cta-card p { font-size: 14px; line-height: 1.55; margin: 0 0 10px; }
.yl-cta-card-note { font-size: 12px; color: var(--slate); margin-top: 8px !important; font-style: italic; }
.yl-cta-card-dark .yl-cta-card-note { color: #ccc; }

.yl-cta-steps {
  list-style: none;
  counter-reset: ylstep;
  padding: 0;
  margin: 0;
}
.yl-cta-steps li {
  counter-increment: ylstep;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}
.yl-cta-steps li:last-child { border-bottom: none; }
.yl-cta-steps li::before {
  content: counter(ylstep);
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.yl-cta-includes {
  list-style: none;
  padding: 0;
  margin: 0;
}
.yl-cta-includes li {
  padding: 6px 0 6px 22px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}
.yl-cta-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}
.yl-cta-card-dark .yl-cta-includes li::before { color: var(--yellow); }

.yl-cta-inline-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 1px;
}
.yl-cta-inline-link:hover { border-bottom-color: var(--ink); }

/* Thank-you state */
.yl-cta-thanks {
  background: var(--paper);
  padding: 100px 32px;
  text-align: center;
  border-top: 1px solid var(--rule);
}
.yl-cta-thanks-inner { max-width: 600px; margin: 0 auto; }
.yl-cta-thanks-icon { display: flex; justify-content: center; margin-bottom: 24px; }
.yl-cta-thanks h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 16px;
}
.yl-cta-thanks p { font-size: 17px; color: var(--slate); line-height: 1.5; margin: 0 0 14px; }
.yl-cta-thanks-cta { margin-top: 28px !important; }
.yl-cta-thanks-cta a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 2px solid var(--yellow);
  text-decoration: none;
  padding-bottom: 1px;
}

/* ============================================================
   PRICING CALCULATOR
   ============================================================ */
.yl-calculator {
  background: var(--ink);
  color: var(--canvas);
  border-radius: 12px;
  padding: 36px;
  margin-bottom: 32px;
}
.yl-calc-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 24px;
  font-weight: 600;
}
.yl-calc-display {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}
.yl-calc-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
}
.yl-calc-quantity input,
.yl-calc-total {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--canvas);
  letter-spacing: -1.5px;
}
.yl-calc-quantity input {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--yellow);
  padding: 4px 0;
  width: 100%;
  -moz-appearance: textfield;
}
.yl-calc-quantity input::-webkit-outer-spin-button,
.yl-calc-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.yl-calc-quantity input:focus { outline: none; border-bottom-color: var(--canvas); }
.yl-calc-equals {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #555;
}
.yl-calc-total {
  color: var(--yellow);
  font-size: 56px;
}
.yl-calc-perletter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #999;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.yl-calc-slider-wrap {
  margin-top: 24px;
}
#yl-calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #333;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
#yl-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--yellow);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--ink);
}
#yl-calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--yellow);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--ink);
}

.yl-calc-slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #777;
}

.yl-calc-volume-note {
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(255, 210, 63, 0.15);
  border-left: 3px solid var(--yellow);
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.5;
}
.yl-calc-volume-note a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--yellow);
}

@media (max-width: 600px) {
  .yl-calculator { padding: 24px; }
  .yl-calc-display { grid-template-columns: 1fr; text-align: center; }
  .yl-calc-equals { display: none; }
  .yl-calc-quantity input, .yl-calc-total { font-size: 40px; }
}


/* ============================================================
   SHARED — section eyebrow yellow variant
   ============================================================ */
.section-eyebrow-yellow {
  color: #FFD23F !important;
}

/* ============================================================
   PRICING PAGE (/pricing/)
   ============================================================ */
.yl-pricing-page { background: var(--canvas, #FAF7EC); }

/* Hero with stat strip */
.yl-pricing-hero {
  background: var(--paper, #F8F3E3);
  padding: 72px 32px 88px;
  border-bottom: 1px solid var(--rule, #E4E0D2);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.yl-pricing-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: #FFD23F;
  opacity: 0.18;
  transform: rotate(45deg);
  pointer-events: none;
}
.yl-pricing-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 200px; height: 200px;
  background: #FFD23F;
  opacity: 0.08;
  transform: rotate(45deg);
  pointer-events: none;
}
.yl-pricing-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.yl-pricing-hero .yl-breadcrumbs { justify-content: center; }
.yl-pricing-hero .section-eyebrow { text-align: center; }
.yl-pricing-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.0;
  letter-spacing: -2.5px;
  font-weight: 900;
  margin: 14px 0 22px;
  color: #1A1A1A;
  text-align: center;
}
.yl-pricing-hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(transparent 60%, #FFD23F 60%);
  padding: 0 6px;
}
.yl-pricing-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--slate, #5F5E5A);
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.yl-pricing-hero-meta {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--rule, #E4E0D2);
  border-radius: 10px;
  padding: 22px 32px;
  max-width: 760px;
  margin: 0 auto;
  justify-content: center;
}
.yl-pricing-hero-meta-item {
  flex: 1 1 auto;
  min-width: 120px;
}
.yl-pricing-hero-meta-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  color: #1A1A1A;
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.yl-pricing-hero-meta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate, #5F5E5A);
}
.yl-pricing-hero-meta-divider {
  width: 1px;
  height: 36px;
  background: var(--rule, #E4E0D2);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .yl-pricing-hero-meta-divider { display: none; }
}

/* Tiers section */
.yl-pricing-tiers-section {
  padding: 80px 32px 70px;
}
.yl-pricing-tiers-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.yl-pricing-tiers-section .section-eyebrow {
  text-align: center;
}
.yl-pricing-tiers-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.8px;
  line-height: 1.05;
  margin: 12px auto 14px;
  color: #1A1A1A;
  text-align: center;
  max-width: 720px;
}
.yl-pricing-tiers-section h2 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(transparent 60%, #FFD23F 60%);
  padding: 0 6px;
}
.yl-pricing-tiers-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate, #5F5E5A);
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.yl-pricing-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 960px) {
  .yl-pricing-tiers-grid { grid-template-columns: 1fr; gap: 18px; }
}

.yl-pricing-tier {
  background: #fff;
  border: 1px solid var(--rule, #E4E0D2);
  border-radius: 14px;
  padding: 36px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.yl-pricing-tier:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.06);
}

.yl-pricing-tier-featured {
  background: #1A1A1A;
  color: #FAF7EC;
  border-color: #1A1A1A;
  transform: translateY(-8px);
  box-shadow: 0 10px 32px rgba(26, 26, 26, 0.15);
}
.yl-pricing-tier-featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 38px rgba(26, 26, 26, 0.22);
}
@media (max-width: 960px) {
  .yl-pricing-tier-featured { transform: none; }
  .yl-pricing-tier-featured:hover { transform: translateY(-2px); }
}

.yl-pricing-tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD23F;
  color: #1A1A1A;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 18px;
  letter-spacing: 1.5px;
  border-radius: 100px;
  white-space: nowrap;
  border: 2px solid #1A1A1A;
}

.yl-pricing-tier-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--slate, #5F5E5A);
  margin-bottom: 16px;
}
.yl-pricing-tier-featured .yl-pricing-tier-name {
  color: #FFD23F;
}

.yl-pricing-tier-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
  color: #1A1A1A;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
}
.yl-pricing-tier-featured .yl-pricing-tier-price {
  color: #FAF7EC;
}
.yl-pricing-tier-price span {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-right: 2px;
  color: inherit;
  opacity: 0.85;
}
.yl-pricing-tier-price small {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  margin-left: 6px;
  color: var(--slate, #5F5E5A);
}
.yl-pricing-tier-featured .yl-pricing-tier-price small {
  color: #ccc;
}

.yl-pricing-tier-savings {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #1D9E75;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.yl-pricing-tier-featured .yl-pricing-tier-savings {
  color: #FFD23F;
}

.yl-pricing-tier-desc {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 22px;
  color: var(--slate, #5F5E5A);
}
.yl-pricing-tier-featured .yl-pricing-tier-desc {
  color: #ccc;
}

.yl-pricing-tier-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 22px 0 0;
  flex: 1;
  border-top: 1px solid var(--rule, #E4E0D2);
}
.yl-pricing-tier-featured .yl-pricing-tier-features {
  border-top-color: #333;
}
.yl-pricing-tier-features li {
  padding: 9px 0 9px 26px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}
.yl-pricing-tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E5BC2F;
  font-weight: 900;
  font-size: 14px;
}
.yl-pricing-tier-featured .yl-pricing-tier-features li::before {
  color: #FFD23F;
}
.yl-pricing-tier-features li strong {
  color: inherit;
}

.yl-pricing-tier-cta {
  display: block;
  background: #FFD23F;
  color: #1A1A1A;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  transition: all 0.15s;
  letter-spacing: 0.2px;
  border: 2px solid transparent;
}
.yl-pricing-tier-cta:hover {
  background: #1A1A1A;
  color: #FFD23F;
  border-color: #FFD23F;
}
.yl-pricing-tier-featured .yl-pricing-tier-cta {
  background: #FFD23F;
  color: #1A1A1A;
}
.yl-pricing-tier-featured .yl-pricing-tier-cta:hover {
  background: #FAF7EC;
  color: #1A1A1A;
  border-color: #FAF7EC;
}

/* Compare section (dark) */
.yl-pricing-compare-section {
  background: #1A1A1A;
  color: #FAF7EC;
  padding: 80px 32px 90px;
}
.yl-pricing-compare-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.yl-pricing-compare-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.8px;
  line-height: 1.05;
  color: #FAF7EC;
  margin: 12px 0 16px;
}
.yl-pricing-compare-section h2 em {
  font-style: italic;
  font-weight: 400;
  color: #FFD23F;
}
.yl-pricing-compare-lede {
  font-size: 17px;
  line-height: 1.6;
  color: #ccc;
  max-width: 700px;
  margin: 0 0 40px;
}
.yl-pricing-compare-grid {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
.yl-pricing-compare-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
}
.yl-pricing-compare-row:last-child {
  border-bottom: none;
}
@media (max-width: 700px) {
  .yl-pricing-compare-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .yl-pricing-compare-row > div:first-child {
    grid-column: 1 / -1;
    font-weight: 700;
  }
}
.yl-pricing-compare-header {
  background: rgba(255, 255, 255, 0.06);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  padding: 14px 28px;
  font-weight: 700;
}
@media (max-width: 700px) {
  .yl-pricing-compare-header { display: none; }
}
.yl-pricing-compare-val {
  font-size: 14px;
  color: #ccc;
}
.yl-pricing-compare-row-highlight {
  background: #FFD23F;
  color: #1A1A1A;
}
.yl-pricing-compare-row-highlight .yl-pricing-compare-val {
  color: #1A1A1A;
}
.yl-pricing-compare-caveat {
  font-size: 12px;
  color: #999;
  font-style: italic;
  line-height: 1.5;
  margin: 24px 0 0;
  max-width: 800px;
}

/* Shipping section */
.yl-pricing-shipping-section {
  background: var(--canvas, #FAF7EC);
  padding: 80px 32px;
}
.yl-pricing-shipping-inner {
  max-width: 900px;
  margin: 0 auto;
}
.yl-pricing-shipping-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin: 12px 0 14px;
}
.yl-pricing-shipping-section h2 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(transparent 60%, #FFD23F 60%);
}
.yl-pricing-shipping-lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate, #5F5E5A);
  margin: 0 0 36px;
}
.yl-pricing-shipping-card {
  background: #fff;
  border: 1px solid var(--rule, #E4E0D2);
  border-radius: 12px;
  overflow: hidden;
}
.yl-pricing-shipping-table {
  width: 100%;
  border-collapse: collapse;
}
.yl-pricing-shipping-table th {
  text-align: left;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate, #5F5E5A);
  font-weight: 700;
  padding: 16px 22px;
  background: var(--paper, #F8F3E3);
  border-bottom: 2px solid #1A1A1A;
}
.yl-pricing-shipping-table td {
  padding: 16px 22px;
  font-size: 14px;
  border-bottom: 1px solid var(--rule, #E4E0D2);
  color: #1A1A1A;
}
.yl-pricing-shipping-table tr:last-child td { border-bottom: none; }
.yl-pricing-shipping-table tr:hover td { background: var(--paper, #F8F3E3); }
.yl-pricing-shipping-table td strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .yl-pricing-shipping-table th:nth-child(3),
  .yl-pricing-shipping-table td:nth-child(3) { display: none; }
}

/* FAQ section */
.yl-pricing-faq-section {
  background: var(--paper, #F8F3E3);
  padding: 80px 32px;
}
.yl-pricing-faq-inner {
  max-width: 880px;
  margin: 0 auto;
}
.yl-pricing-faq-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin: 12px 0 36px;
}
.yl-pricing-faq-section h2 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(transparent 60%, #FFD23F 60%);
}
.yl-pricing-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.yl-pricing-faq-item {
  background: #fff;
  border: 1px solid var(--rule, #E4E0D2);
  border-radius: 10px;
  overflow: hidden;
}
.yl-pricing-faq-item summary {
  padding: 22px 28px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 60px;
  color: #1A1A1A;
}
.yl-pricing-faq-item summary::-webkit-details-marker { display: none; }
.yl-pricing-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  line-height: 1;
  color: var(--slate, #5F5E5A);
  transition: transform 0.2s, color 0.2s;
}
.yl-pricing-faq-item[open] summary::after {
  content: '−';
  color: #E5BC2F;
}
.yl-pricing-faq-item[open] summary {
  border-bottom: 1px solid var(--rule, #E4E0D2);
}
.yl-pricing-faq-item p {
  padding: 18px 28px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate, #5F5E5A);
  margin: 0;
}

/* Final CTA */
.yl-pricing-final {
  background: #1A1A1A;
  color: #FAF7EC;
  padding: 90px 32px;
  text-align: center;
}
.yl-pricing-final-inner {
  max-width: 700px;
  margin: 0 auto;
}
.yl-pricing-final h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -2px;
  margin: 0 0 14px;
  color: #FAF7EC;
}
.yl-pricing-final h2 em {
  font-style: italic;
  font-weight: 400;
  color: #FFD23F;
}
.yl-pricing-final p {
  font-size: 18px;
  color: #ccc;
  margin: 0 0 36px;
}
.yl-pricing-final-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT PAGE (/about/) — v3.3.x with centered hero
   ============================================================ */
.yl-about-page { background: var(--canvas, #FAF7EC); }

.yl-about-hero {
  background: var(--paper, #F8F3E3);
  padding: 72px 32px 88px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.yl-about-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 280px; height: 280px;
  background: #FFD23F;
  opacity: 0.18;
  transform: rotate(45deg);
  pointer-events: none;
}
.yl-about-hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 240px; height: 240px;
  background: #FFD23F;
  opacity: 0.08;
  transform: rotate(45deg);
  pointer-events: none;
}
.yl-about-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.yl-about-hero .yl-breadcrumbs { justify-content: center; }
.yl-about-hero .section-eyebrow { text-align: center; }
.yl-about-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(46px, 6.5vw, 82px);
  line-height: 0.98;
  letter-spacing: -3px;
  font-weight: 900;
  margin: 14px 0 22px;
  color: #1A1A1A;
  text-align: center;
}
.yl-about-hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(transparent 60%, #FFD23F 60%);
  padding: 0 8px;
}
.yl-about-lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--slate, #5F5E5A);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* Stats band (dark) */
.yl-about-stats-band {
  background: #1A1A1A;
  color: #FAF7EC;
  padding: 56px 32px;
}
.yl-about-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
@media (max-width: 760px) {
  .yl-about-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
.yl-about-stat {
  text-align: left;
  border-left: 3px solid rgba(255, 255, 255, 0.15);
  padding-left: 20px;
}
.yl-about-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 10px;
  color: #FAF7EC;
}
.yl-about-stat-num.yellow { color: #FFD23F; }
.yl-about-stat-num small {
  font-size: 22px;
  font-weight: 400;
  color: #999;
}
.yl-about-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  line-height: 1.5;
}

/* Sections */
.yl-about-section {
  padding: 80px 32px;
}
.yl-about-section-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.yl-about-section .section-eyebrow {
  text-align: center;
}
.yl-about-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.8px;
  line-height: 1.05;
  margin: 12px auto 40px;
  color: #1A1A1A;
  text-align: center;
  max-width: 760px;
}
.yl-about-section h2 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(transparent 60%, #FFD23F 60%);
  padding: 0 6px;
}
.yl-about-section-dark {
  background: #1A1A1A;
  color: #FAF7EC;
}
.yl-about-section-dark h2 { color: #FAF7EC; }
.yl-about-section-dark h2 em {
  background: none;
  color: #FFD23F;
  padding: 0;
}

.yl-about-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 760px) {
  .yl-about-2col { grid-template-columns: 1fr; gap: 0; }
}
.yl-about-2col p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 18px;
  color: #1A1A1A;
}
.yl-about-section-dark .yl-about-2col p {
  color: #ddd;
}
.yl-about-2col p strong {
  color: inherit;
}
.yl-about-section-dark .yl-about-2col p strong {
  color: #FFD23F;
}

/* Pillars */
.yl-about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 720px) {
  .yl-about-pillars { grid-template-columns: 1fr; }
}
.yl-about-pillar {
  background: #fff;
  border: 1px solid var(--rule, #E4E0D2);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
}
.yl-about-pillar-num {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  font-weight: 900;
  color: #FFD23F;
  line-height: 1;
  letter-spacing: -2px;
  opacity: 0.6;
}
.yl-about-pillar h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin: 0 0 12px;
  color: #1A1A1A;
}
.yl-about-pillar p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate, #5F5E5A);
  margin: 0;
}

/* About final CTA */
.yl-about-cta {
  background: #FFD23F;
  padding: 80px 32px;
  text-align: center;
}
.yl-about-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
.yl-about-cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -2px;
  margin: 0 0 14px;
  color: #1A1A1A;
}
.yl-about-cta h2 em { font-style: italic; font-weight: 400; }
.yl-about-cta p {
  font-size: 17px;
  color: #1A1A1A;
  margin: 0 0 32px;
}
.yl-about-cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.yl-about-cta .btn-secondary {
  border-color: #1A1A1A;
}

/* ============================================================
   AUTH PAGES — TWO-COLUMN SPLIT
   ============================================================ */
.yl-auth-page {
  background: var(--canvas, #FAF7EC);
  min-height: calc(100vh - 80px);
  padding: 0;
}
.yl-auth-split {
  display: grid;
  grid-template-columns: 1fr 480px;
  min-height: calc(100vh - 80px);
  align-items: stretch;
}
@media (max-width: 960px) {
  .yl-auth-split { grid-template-columns: 1fr; }
}

/* LEFT: form column */
.yl-auth-form-col {
  background: var(--canvas, #FAF7EC);
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yl-auth-form-wrap {
  width: 100%;
  max-width: 460px;
}
@media (max-width: 500px) {
  .yl-auth-form-col { padding: 40px 24px; }
}

.yl-auth-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.0;
  letter-spacing: -2px;
  font-weight: 900;
  margin: 14px 0 16px;
  color: #1A1A1A;
}
.yl-auth-h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(transparent 60%, #FFD23F 60%);
}
.yl-auth-lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate, #5F5E5A);
  margin: 0 0 32px;
  max-width: 440px;
}

.yl-auth-error,
.yl-auth-success {
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.55;
}
.yl-auth-error {
  background: #fdf1ec;
  border-left: 3px solid #E85D24;
  color: #a8421a;
}
.yl-auth-success {
  background: #e9f7f0;
  border-left: 3px solid #1D9E75;
  color: #155f47;
}
.yl-auth-error strong, .yl-auth-success strong { color: inherit; }
.yl-auth-error a, .yl-auth-success a { color: inherit; text-decoration: underline; }
.yl-auth-success p { margin: 6px 0 0; }

.yl-auth-form { margin: 0; }
.yl-auth-field { margin-bottom: 18px; }
.yl-auth-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 500px) {
  .yl-auth-field-row { grid-template-columns: 1fr; gap: 0; }
}
.yl-auth-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1A1A1A;
  margin-bottom: 8px;
}
.yl-auth-field-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.5px;
  color: var(--slate, #5F5E5A);
  font-weight: 400;
  text-transform: none;
  text-decoration: none;
}
.yl-auth-field-link:hover { color: #E5BC2F; }
.yl-auth-field input[type="text"],
.yl-auth-field input[type="email"],
.yl-auth-field input[type="password"] {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--rule, #E4E0D2);
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  background: #fff;
  color: #1A1A1A;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.yl-auth-field input:focus {
  outline: none;
  border-color: #1A1A1A;
  box-shadow: 0 0 0 4px rgba(255, 210, 63, 0.3);
}
.yl-auth-field input:disabled {
  background: var(--paper, #F8F3E3);
  color: var(--slate, #5F5E5A);
  cursor: not-allowed;
}
.yl-auth-field-hint {
  font-size: 12px;
  color: var(--slate, #5F5E5A);
  margin: 8px 0 0;
  line-height: 1.4;
}
.yl-auth-field-hint a { color: inherit; }

.yl-auth-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--slate, #5F5E5A);
}
.yl-auth-checkbox input { margin: 0; }

.yl-auth-button {
  display: block;
  width: 100%;
  background: #1A1A1A;
  color: #FAF7EC;
  border: 2px solid #1A1A1A;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.15s;
}
.yl-auth-button:hover {
  background: #FFD23F;
  color: #1A1A1A;
  border-color: #1A1A1A;
}
.yl-auth-button-arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.15s;
}
.yl-auth-button:hover .yl-auth-button-arrow { transform: translateX(4px); }

.yl-auth-terms {
  font-size: 12px;
  color: var(--slate, #5F5E5A);
  margin: 16px 0 0;
  line-height: 1.6;
}

.yl-auth-footer {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--rule, #E4E0D2);
  font-size: 14px;
  color: var(--slate, #5F5E5A);
}
.yl-auth-footer p { margin: 0; }
.yl-auth-footer a {
  color: #1A1A1A;
  text-decoration: none;
}
.yl-auth-footer a:hover { color: #E5BC2F; }

/* RIGHT: brand storytelling panel */
.yl-auth-brand-col {
  background: #1A1A1A;
  color: #FAF7EC;
  padding: 64px 48px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.yl-auth-brand-col::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 300px; height: 300px;
  background: #FFD23F;
  opacity: 0.08;
  transform: rotate(45deg);
  pointer-events: none;
}
@media (max-width: 960px) {
  .yl-auth-brand-col { padding: 48px 32px; }
}
@media (max-width: 500px) {
  .yl-auth-brand-col { padding: 36px 24px; }
}
.yl-auth-brand-wrap {
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 1;
}
.yl-auth-brand-corner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.yl-auth-brand-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  font-weight: 700;
}

.yl-auth-brand-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 18px;
  color: #FAF7EC;
}
.yl-auth-brand-h2 em {
  font-style: italic;
  font-weight: 400;
  color: #FFD23F;
}

.yl-auth-brand-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.yl-auth-brand-list li {
  padding: 9px 0 9px 26px;
  position: relative;
  font-size: 14px;
  line-height: 1.55;
  color: #ddd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.yl-auth-brand-list li:last-child { border-bottom: none; }
.yl-auth-brand-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD23F;
  font-weight: 700;
}

.yl-auth-brand-quote {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid #FFD23F;
  border-radius: 0 10px 10px 0;
  padding: 24px 28px;
  margin-bottom: 32px;
  position: relative;
}
.yl-auth-brand-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 0.5;
  color: #FFD23F;
  margin-bottom: 8px;
}
.yl-auth-brand-quote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 16px;
  color: #FAF7EC;
}
.yl-auth-brand-attribution {
  font-size: 12px;
  color: #999;
}
.yl-auth-brand-attribution strong {
  display: block;
  color: #FFD23F;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 700;
}

.yl-auth-brand-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.yl-auth-brand-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 900;
  color: #FFD23F;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.yl-auth-brand-stat-num small {
  font-size: 16px;
  color: #999;
  font-weight: 400;
}
.yl-auth-brand-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #999;
  line-height: 1.5;
}

.yl-auth-brand-help { margin-bottom: 28px; }
.yl-auth-brand-help p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
  margin: 0 0 16px;
}
.yl-auth-brand-contact {
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 18px;
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.7;
}
.yl-auth-brand-contact a {
  color: #FFD23F;
  text-decoration: none;
  font-weight: 700;
}
.yl-auth-brand-contact span { color: #999; }

.yl-auth-brand-footer {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.yl-auth-brand-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
}
.yl-auth-brand-link:hover { color: #FFD23F; }

/* ============================================================
   ACCOUNT DASHBOARD (/account/) — homepage-style sections
   ============================================================ */
.yl-account-page { background: var(--canvas, #FAF7EC); }

/* Hero */
.yl-account-hero {
  background: var(--paper, #F8F3E3);
  padding: 60px 32px 72px;
  position: relative;
  overflow: hidden;
}
.yl-account-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: #FFD23F;
  opacity: 0.18;
  transform: rotate(45deg);
  pointer-events: none;
}
.yl-account-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.yl-account-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 6.5vw, 80px);
  line-height: 0.98;
  letter-spacing: -3px;
  font-weight: 900;
  margin: 14px 0 18px;
  color: #1A1A1A;
}
.yl-account-hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(transparent 60%, #FFD23F 60%);
}
.yl-account-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate, #5F5E5A);
  max-width: 700px;
  margin: 0 0 32px;
}
.yl-account-lede strong { color: #1A1A1A; }
.yl-account-hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.yl-account-logout-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate, #5F5E5A);
  text-decoration: none;
  font-weight: 700;
}
.yl-account-logout-link:hover { color: #E85D24; }

/* Stats band */
.yl-account-stats-band {
  background: #1A1A1A;
  color: #FAF7EC;
  padding: 40px 32px;
}
.yl-account-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 720px) {
  .yl-account-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
.yl-account-stat {
  border-left: 3px solid rgba(255, 255, 255, 0.15);
  padding-left: 18px;
}
.yl-account-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
  color: #FFD23F;
}
.yl-account-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
}

/* Sections */
.yl-account-section {
  padding: 70px 32px 80px;
}
.yl-account-section-paper {
  background: var(--paper, #F8F3E3);
}
.yl-account-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.yl-account-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 50px);
  font-weight: 900;
  letter-spacing: -1.8px;
  line-height: 1.05;
  margin: 12px 0 32px;
  color: #1A1A1A;
}
.yl-account-section h2 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(transparent 60%, #FFD23F 60%);
}

/* Empty state */
.yl-account-empty {
  background: #fff;
  border: 1px solid var(--rule, #E4E0D2);
  border-radius: 12px;
  padding: 48px 36px;
  text-align: center;
}
.yl-account-empty p {
  font-size: 16px;
  color: var(--slate, #5F5E5A);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 28px;
}

/* Orders */
.yl-account-orders {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.yl-account-order {
  background: #fff;
  border: 1px solid var(--rule, #E4E0D2);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.15s;
}
.yl-account-order:hover {
  box-shadow: 0 6px 20px rgba(26, 26, 26, 0.06);
}
.yl-account-order-header {
  background: var(--paper, #F8F3E3);
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--rule, #E4E0D2);
  flex-wrap: wrap;
  gap: 14px;
}
.yl-account-order-id { display: flex; flex-direction: column; }
.yl-account-order-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--slate, #5F5E5A);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}
.yl-account-order-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.yl-account-order-date {
  font-size: 13px;
  color: var(--slate, #5F5E5A);
}
.yl-account-order-status {
  padding: 7px 16px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.yl-account-order-grid {
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 640px) {
  .yl-account-order-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
.yl-account-order-cell { display: flex; flex-direction: column; }
.yl-account-order-cell .yl-account-order-label { margin-bottom: 4px; }
.yl-account-order-val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1A1A1A;
  line-height: 1.2;
}
.yl-account-order-cell-total .yl-account-order-val { color: #1A1A1A; }
.yl-account-order-note {
  padding: 14px 28px 22px;
  border-top: 1px dashed var(--rule, #E4E0D2);
  font-size: 13px;
  color: var(--slate, #5F5E5A);
  line-height: 1.5;
}
.yl-account-order-note strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  color: #1A1A1A;
  font-weight: 700;
}

/* Multi-touch sequence list inside a campaign card */
.yl-account-touches {
  list-style: none;
  margin: 0;
  padding: 0 28px 22px;
  border-top: 1px dashed var(--rule, #E4E0D2);
}
.yl-account-touch {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-faint, #F0EDE0);
  font-size: 14px;
}
.yl-account-touch:last-child { border-bottom: 0; }
.yl-account-touch-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #1A1A1A;
  background: #FFD23F;
  padding: 4px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.yl-account-touch-template { color: #1A1A1A; font-weight: 500; }
.yl-account-touch-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}
.yl-account-touch-when { color: var(--slate, #5F5E5A); font-size: 13px; white-space: nowrap; }
.yl-account-touch-when a { color: #1A1A1A; }
@media (max-width: 700px) {
  .yl-account-touch { grid-template-columns: 1fr 1fr; gap: 8px 14px; }
  .yl-account-touch-when { grid-column: 1 / -1; }
}

/* Profile */
.yl-account-profile-card {
  background: #fff;
  border: 1px solid var(--rule, #E4E0D2);
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 36px;
}
@media (max-width: 600px) {
  .yl-account-profile-card { padding: 24px 22px; }
}

/* Extra links grid */
.yl-account-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 800px) {
  .yl-account-extra-grid { grid-template-columns: 1fr; }
}
.yl-account-extra-card {
  background: #fff;
  border: 1px solid var(--rule, #E4E0D2);
  border-radius: 10px;
  padding: 26px 28px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.15s;
}
.yl-account-extra-card:hover {
  border-color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 26, 26, 0.08);
}
.yl-account-extra-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 14px;
}
.yl-account-extra-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.yl-account-extra-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--slate, #5F5E5A);
}

/* ============================================================
   v3.3.x VISUAL OVERHAUL — CTA forms & order flow
   Goal: bring forms up to homepage-level richness.
   - Centered hero content (was left-aligned at 1100px max)
   - Centered eyebrow + headline + lede
   - Decorative corner mark (homepage rhythm)
   - Form section gets its own decorative border, numbered steps
   - Sidebar trust strip becomes a stat band
   ============================================================ */

/* ── HERO ───────────────────────────────────────────────── */
.yl-cta-hero {
  background: var(--paper);
  padding: 64px 32px 80px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.yl-cta-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: #FFD23F;
  opacity: 0.18;
  transform: rotate(45deg);
  pointer-events: none;
}
.yl-cta-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 200px; height: 200px;
  background: #FFD23F;
  opacity: 0.08;
  transform: rotate(45deg);
  pointer-events: none;
}
.yl-cta-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.yl-cta-hero .yl-breadcrumbs {
  justify-content: center;
}
.yl-cta-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.0;
  letter-spacing: -2.5px;
  font-weight: 900;
  margin: 14px 0 22px;
  text-align: center;
}
.yl-cta-hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(transparent 60%, #FFD23F 60%);
  padding: 0 6px;
}
.yl-cta-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}

/* Hero trust band — center-justified, looks like the homepage stats */
.yl-cta-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--rule);
  margin: 32px auto 0;
  max-width: 880px;
}
@media (max-width: 700px) {
  .yl-cta-trust { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
}
.yl-cta-trust > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--rule);
}
.yl-cta-trust > div:last-child { border-right: none; }
@media (max-width: 700px) {
  .yl-cta-trust > div:nth-child(2) { border-right: none; }
  .yl-cta-trust > div:nth-child(3) { border-right: 1px solid var(--rule); }
}
.yl-cta-trust strong {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.2px;
  color: var(--ink);
}
.yl-cta-trust span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 8px;
  line-height: 1.4;
}

/* ── FORM SECTION ───────────────────────────────────────── */
.yl-cta-form-section {
  padding: 70px 32px 100px;
  background: var(--canvas);
  position: relative;
}
.yl-cta-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.yl-cta-form-grid-narrow {
  max-width: 720px;
  grid-template-columns: 1fr;
}
@media (max-width: 960px) {
  .yl-cta-form-grid { grid-template-columns: 1fr; gap: 32px; }
  .yl-cta-form-section { padding: 48px 20px 80px; }
}

/* The form card itself */
.yl-cta-form-wrap {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 44px 48px;
  position: relative;
  box-shadow: 0 4px 24px rgba(26, 26, 26, 0.04);
}
.yl-cta-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 40px; right: 40px;
  height: 4px;
  background: linear-gradient(90deg, #FFD23F, #E5BC2F, #FFD23F);
  border-radius: 0 0 4px 4px;
}
@media (max-width: 600px) { .yl-cta-form-wrap { padding: 32px 24px; } }

.yl-form-step-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #E5BC2F;
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
  text-align: center;
}

/* Fieldset / legend with numbered indicator */
.yl-form-section {
  border: none;
  padding: 0;
  margin: 0 0 36px;
  counter-increment: yl-section;
}
.yl-cta-form-wrap { counter-reset: yl-section; }
.yl-form-section legend {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 24px;
  padding: 0;
  position: relative;
  padding-left: 44px;
  line-height: 1.1;
}
.yl-form-section legend::before {
  content: counter(yl-section, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #1A1A1A;
  background: #FFD23F;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  letter-spacing: 0;
}
.yl-form-section + .yl-form-section {
  padding-top: 32px;
  border-top: 1px dashed var(--rule);
}

/* ── SIDEBAR (right column on forms) ────────────────────── */
.yl-cta-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.yl-cta-sidebar-card {
  background: #1A1A1A;
  color: #FAF7EC;
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.yl-cta-sidebar-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 140px; height: 140px;
  background: #FFD23F;
  opacity: 0.1;
  transform: rotate(45deg);
  pointer-events: none;
}
.yl-cta-sidebar-card-light {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.yl-cta-sidebar-card-light::before { display: none; }

.yl-cta-sidebar-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFD23F;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.yl-cta-sidebar-card-light .yl-cta-sidebar-eyebrow {
  color: #E5BC2F;
}
.yl-cta-sidebar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #FAF7EC;
  position: relative;
  z-index: 1;
}
.yl-cta-sidebar-card-light h3 { color: var(--ink); }
.yl-cta-sidebar-card h3 em {
  font-style: italic;
  font-weight: 400;
  color: #FFD23F;
}
.yl-cta-sidebar-card-light h3 em {
  color: var(--ink);
  background: linear-gradient(transparent 60%, #FFD23F 60%);
}
.yl-cta-sidebar-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #ccc;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}
.yl-cta-sidebar-card-light p { color: var(--slate); }
.yl-cta-sidebar-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.yl-cta-sidebar-card li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 13px;
  line-height: 1.5;
  color: #ddd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.yl-cta-sidebar-card li:last-child { border-bottom: none; }
.yl-cta-sidebar-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD23F;
  font-weight: 700;
}
.yl-cta-sidebar-card-light li {
  color: var(--ink);
  border-bottom-color: var(--rule);
}
.yl-cta-sidebar-card-light li::before { color: #E5BC2F; }

/* ── ORDER FLOW: shared visual rhythm ───────────────────── */
.yl-order-page {
  background: var(--canvas);
}
.yl-order-hero {
  background: var(--paper);
  padding: 56px 32px 64px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.yl-order-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: #FFD23F;
  opacity: 0.16;
  transform: rotate(45deg);
  pointer-events: none;
}
.yl-order-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.yl-order-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.0;
  letter-spacing: -2px;
  font-weight: 900;
  margin: 14px 0 18px;
  text-align: center;
}
.yl-order-hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(transparent 60%, #FFD23F 60%);
}
.yl-order-hero .yl-order-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.yl-order-step-bar {
  background: var(--ink);
  color: var(--canvas);
  padding: 14px 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid var(--ink);
}
.yl-order-step-bar strong { color: #FFD23F; }

/* ============================================================
   3-TIER HOMEPAGE PRICING (v3.3.x)
   ============================================================ */
.tiers.tiers-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 960px) {
  .tiers.tiers-three { grid-template-columns: 1fr; gap: 18px; }
}
.tiers.tiers-three .tier {
  display: flex;
  flex-direction: column;
}
.tiers.tiers-three .tier-features {
  flex: 1;
}

/* Savings line under price */
.tier-savings {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #1D9E75;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: -4px;
}
.tier-featured .tier-savings {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.15);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 1px;
}

/* Strong inside features list (e.g. "Everything in Per-Letter") */
.tier-features li strong {
  font-weight: 700;
  color: inherit;
}

/* ============================================================
   v3.3.x — Center the remaining pricing page section headings
   ============================================================ */
.yl-pricing-compare-inner .section-eyebrow,
.yl-pricing-shipping-inner .section-eyebrow,
.yl-pricing-faq-inner .section-eyebrow {
  text-align: center;
}
.yl-pricing-compare-section h2,
.yl-pricing-shipping-section h2,
.yl-pricing-faq-section h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}
.yl-pricing-compare-lede,
.yl-pricing-shipping-lede {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Center account dashboard section headings too */
.yl-account-section .section-eyebrow {
  text-align: center;
}
.yl-account-section h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}
.yl-account-hero {
  text-align: center;
}
.yl-account-hero .section-eyebrow {
  text-align: center;
}
.yl-account-hero h1 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}
.yl-account-lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.yl-account-hero-actions {
  justify-content: center;
}

/* ============================================================
   v3.3.3 — VISUAL FORCEFULNESS
   - !important on alignment to defeat any third-party cache/override
   - Decorative hexagonal seal in hero
   - Stronger background contrast (subtle texture)
   ============================================================ */

/* Make centering bulletproof */
.yl-cta-hero,
.yl-pricing-hero,
.yl-about-hero,
.yl-order-step-header {
  text-align: center !important;
}
.yl-cta-hero h1,
.yl-cta-hero .yl-cta-lede,
.yl-cta-hero .section-eyebrow,
.yl-pricing-hero h1,
.yl-pricing-hero .yl-pricing-lede,
.yl-pricing-hero .section-eyebrow,
.yl-about-hero h1,
.yl-about-hero .yl-about-lede,
.yl-about-hero .section-eyebrow,
.yl-order-h1,
.yl-order-lede,
.yl-order-eyebrow {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Decorative seal at the top of every hero (above the eyebrow) */
.yl-cta-hero .yl-cta-hero-inner::before,
.yl-pricing-hero .yl-pricing-hero-inner::before,
.yl-about-hero .yl-about-hero-inner::before {
  content: '';
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-130 -120 260 240'><polygon points='-110,0 -55,-95 55,-95 110,0 55,95 -55,95' fill='%23FFD23F' stroke='%231A1A1A' stroke-width='6'/><text x='0' y='-20' text-anchor='middle' font-family='Playfair Display,serif' font-size='50' font-weight='900' fill='%231A1A1A'>YL</text><text x='0' y='22' text-anchor='middle' font-family='serif' font-size='40' fill='%231A1A1A'>★</text><text x='0' y='60' text-anchor='middle' font-family='Inter,sans-serif' font-size='22' font-weight='700' fill='%231A1A1A'>1986</text></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* Drop the seal slightly above breadcrumb if present */
.yl-cta-hero .yl-breadcrumbs,
.yl-pricing-hero .yl-breadcrumbs,
.yl-about-hero .yl-breadcrumbs {
  margin-top: 0;
  margin-bottom: 16px;
  justify-content: center;
}

/* Better visual contrast: hero background now has a subtle linear gradient
   instead of flat beige — gives texture without being busy */
.yl-cta-hero,
.yl-pricing-hero,
.yl-about-hero {
  background: linear-gradient(180deg, #F8F3E3 0%, #FAF7EC 100%) !important;
}

/* Form card visual lift — heavier shadow makes the white card pop on
   the beige hero gradient */
.yl-cta-form-wrap {
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.08), 0 2px 8px rgba(26, 26, 26, 0.04) !important;
}

/* Improve readability: line-height + max-width on body text */
.yl-cta-lede,
.yl-pricing-lede,
.yl-about-lede,
.yl-order-lede {
  line-height: 1.65 !important;
  font-size: 18px !important;
}

/* Ensure breadcrumb wrapper centers its items when in a centered hero */
.yl-cta-hero .yl-breadcrumbs ol,
.yl-pricing-hero .yl-breadcrumbs ol,
.yl-about-hero .yl-breadcrumbs ol {
  justify-content: center;
}
