:root{--page-title-display:none;}

/* Start custom CSS for html, class: .elementor-element-4a19c10 */:root {
    --ink:       #0c2c37;
    --paper:     #f5f2ec;
    --cream:     #ede9e0;
    --gold:      #b8924a;
    --gold-lt:   #d4ad6f;
    --sage:      #4a6b55;
    --rust:      #8b3a2a;
    --rule:      #c8c0b0;
  }
 
  body {
    background: #e8e4db;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
  }
 
  .wrapper {
    max-width: 1200px;
    margin: 40px auto;
    background: var(--paper);
    border: 1px solid var(--rule);
    box-shadow: 4px 4px 0 var(--rule);
  }
 
  /* ── HEADER ── */
  .header {
    background: var(--ink);
    padding: 48px 48px 36px;
    position: relative;
    overflow: hidden;
    color: #f8f8f8;;
  }
 
  .header::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(184,146,74,.25);
  }
 
  .header::after {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 140px; height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(184,146,74,.15);
  }
 
  .edition-label {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 4px 10px;
    margin-bottom: 24px;
  }
 
  .logo-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
  }
 
  .logo-mark {
    font-family: 'DM Serif Display', serif;
    font-size: 13px;
    color: var(--gold-lt);
    letter-spacing: .06em;
  }
 
  .logo-slash {
    color: rgba(255,255,255,.2);
    font-weight: 300;
    font-size: 18px;
  }
 
  .logo-pro {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
  }
 
  h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 38px;
    line-height: 1.1;
    color: #fff;
    font-weight: 400;
    max-width: 480px;
  }
 
  h1 em {
    font-style: italic;
    color: var(--gold-lt);
  }
 
  .header-sub {
    margin-top: 16px;
    font-size: 13.5px;
    color: rgba(255,255,255,.5);
    font-weight: 300;
    letter-spacing: .01em;
    line-height: 1.6;
  }
 
  .header-date {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
  }
 
  /* ── INTRO ── */
  .intro {
    padding: 40px 48px 32px;
    border-bottom: 1px solid var(--rule);
  }
 
  .intro p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #3a3530;
    font-weight: 300;
  }
 
  .intro p strong {
    font-weight: 600;
    color: var(--ink);
  }
 
  /* ── FEATURE CARDS ── */
  .features {
    padding: 8px 0;
  }
 
  .feature {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0;
    border-bottom: 1px solid var(--cream);
    padding: 36px 48px;
    position: relative;
    transition: background .2s;
  }
 
  .feature:last-child {
    border-bottom: none;
  }
 
  .feature-num {
    font-family: 'DM Serif Display', serif;
    font-size: 48px;
    line-height: 1;
    color: var(--cream);
    user-select: none;
    padding-top: 4px;
  }
 
  .feature-body {}
 
  .feature-tag {
    display: inline-block;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 3px 8px;
    margin-bottom: 10px;
    border-radius: 2px;
  }
 
  .tag-map   { background: #e8f0ea; color: var(--sage); }
  .tag-video { background: #fce8e5; color: var(--rust); }
  .tag-seo   { background: #fef3e2; color: var(--gold); }
 
  .feature h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--ink);
  }
 
  .feature p {
    font-size: 14.5px;
    line-height: 1.72;
    color: #5a5048;
    font-weight: 300;
  }
 
  .feature p strong {
    font-weight: 500;
    color: var(--ink);
  }
 
  .feature-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 14px;
    background: var(--cream);
    border-left: 3px solid var(--gold);
    font-size: 12.5px;
    color: #6a5f52;
    line-height: 1.5;
  }
 
  .feature-hint::before {
    content: '⚙';
    font-size: 13px;
    opacity: .6;
    flex-shrink: 0;
  }
 
  /* ── DIVIDER ── */
  .ornament {
    text-align: center;
    padding: 20px 0 8px;
    color: var(--rule);
    font-size: 18px;
    letter-spacing: .3em;
  }
 
  /* ── CTA ── */
  .cta-section {
    background: var(--ink);
    padding: 44px 48px;
    text-align: center;
  }
 
  .cta-section h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
  }
 
  .cta-section p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 300;
  }
 
  .btn {
    display: inline-block;
    background: var(--gold);
    color: var(--ink);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 14px 32px;
    transition: background .2s;
  }
 
  .btn:hover { background: var(--gold-lt); }
 
  .btn-ghost {
    display: inline-block;
    color: rgba(255,255,255,.4);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    margin-top: 16px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
  }
 
  .btn-ghost:hover { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.4); }
 
  /* ── FOOTER ── */
  .footer {
    padding: 28px 48px;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
 
  .footer-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 13px;
    color: var(--gold);
  }
 
  .footer p {
    font-size: 11.5px;
    color: #aaa49a;
    line-height: 1.6;
    text-align: right;
  }
 
  .footer a {
    color: #aaa49a;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
 
  @media (max-width: 640px) {
    .wrapper { margin: 0; box-shadow: none; }
    .header, .intro, .feature, .cta-section, .footer { padding-left: 24px; padding-right: 24px; }
    h1 { font-size: 28px; }
    .feature { grid-template-columns: 1fr; }
    .feature-num { font-size: 32px; margin-bottom: 4px; }
    .footer { flex-direction: column; text-align: center; }
    .footer p { text-align: center; }
  }/* End custom CSS */



