/* ============================================
   INNER PAGES — Editorial Style
   ============================================ */

/* ─── About Page ─── */
.about-story {
    display: grid; grid-template-columns: .9fr 1.2fr;
    gap: 72px; align-items: center;
}
.about-photo {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--ink);
    border: 3px solid var(--ink); border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 160px; font-weight: 300;
    color: rgba(255,253,247,.2); letter-spacing: -6px; font-style: italic;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(-1.5deg);
}
.about-photo::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 20%, var(--red) 0, transparent 50%),
        radial-gradient(circle at 70% 80%, var(--ochre) 0, transparent 55%);
    opacity: .55;
}
.about-exp-badge {
    position: absolute; bottom: -22px; right: -22px;
    background: var(--paper); color: var(--ink);
    padding: 18px 22px; border-radius: 16px;
    border: 2.5px solid var(--ink);
    box-shadow: var(--shadow);
    text-align: center;
    transform: rotate(4deg);
    z-index: 5;
}
.about-exp-badge .num {
    display: block; font-family: var(--font-display);
    font-size: 36px; font-weight: 500; line-height: 1;
    color: var(--red); font-style: italic;
}
.about-exp-badge .label {
    font-size: 11.5px; color: var(--ink-3); margin-top: 4px;
    display: block; font-weight: 600; letter-spacing: .5px;
}
.about-text {
    font-size: 17px; color: var(--ink-3); line-height: 1.8;
    margin-bottom: 16px; font-family: var(--font-display);
}
.about-text strong { color: var(--ink); font-weight: 600; background: linear-gradient(transparent 60%, var(--blush) 60%); padding: 0 2px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-card { padding: 32px 28px; }
.value-card-icon {
    width: 56px; height: 56px; background: var(--blush);
    border: 2px solid var(--red); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red); margin-bottom: 18px;
    transform: rotate(-4deg);
}
.value-card h3 {
    font-family: var(--font-display); font-size: 22px;
    font-weight: 500; margin-bottom: 8px; color: var(--ink);
    letter-spacing: -.3px;
}
.value-card p { font-size: 15px; color: var(--ink-4); line-height: 1.7; }

.timeline {
    position: relative; max-width: 680px; margin: 0 auto;
    padding-left: 40px;
}
.timeline::before {
    content: ''; position: absolute; left: 10px; top: 4px; bottom: 4px;
    width: 3px; background: var(--ink);
    border-radius: 2px;
}
.timeline-item { position: relative; padding-bottom: 40px; padding-left: 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: ''; position: absolute; left: -30px; top: 4px;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--red); border: 3px solid var(--ink);
    box-shadow: var(--shadow-sm);
}
.timeline-item h4 {
    font-family: var(--font-display); font-size: 22px;
    font-weight: 500; margin-bottom: 6px; color: var(--ink);
    font-style: italic;
}
.timeline-item p { font-size: 15px; color: var(--ink-4); line-height: 1.7; }

.quote-block {
    background: var(--paper);
    border: 2.5px solid var(--ink); border-left: 8px solid var(--red);
    border-radius: var(--radius); padding: 48px 48px 40px;
    max-width: 780px; margin: 0 auto;
    box-shadow: var(--shadow);
    position: relative;
}
.quote-block::before {
    content: '"'; position: absolute; top: -20px; left: 32px;
    font-family: var(--font-display); font-size: 140px; line-height: 1;
    color: var(--red); font-weight: 500;
}
.quote-block p {
    font-size: 22px; font-family: var(--font-display);
    font-style: italic; color: var(--ink);
    line-height: 1.55; margin-bottom: 16px;
    position: relative; z-index: 2;
}
.quote-block cite {
    font-size: 14px; color: var(--red); font-style: normal;
    font-weight: 600; letter-spacing: .5px;
    font-family: var(--font);
}

/* ─── Resources Page ─── */
.filter-tabs {
    display: flex; gap: 10px; justify-content: center;
    margin-bottom: 48px; flex-wrap: wrap;
}
.filter-tab {
    padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 600;
    background: var(--paper); border: 2px solid var(--ink);
    color: var(--ink); cursor: pointer; transition: all .25s var(--ease-bounce);
    box-shadow: var(--shadow-sm); font-family: var(--font);
}
.filter-tab:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow); }
.filter-tab.active { background: var(--red); color: var(--paper); }

.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.resource-card { padding: 32px 28px; display: flex; flex-direction: column; position: relative; }
.resource-card:nth-child(even) { transform: rotate(.5deg); }
.resource-card:nth-child(3n) { transform: rotate(-.5deg); }
.resource-badge {
    position: absolute; top: -10px; right: 20px;
    background: var(--red); color: var(--paper);
    font-size: 11px; font-weight: 700;
    padding: 5px 12px; border-radius: 999px;
    letter-spacing: 1px; border: 2px solid var(--ink);
    transform: rotate(4deg);
}
.resource-icon {
    width: 64px; height: 64px; background: var(--blush);
    border: 2px solid var(--red); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red); margin-bottom: 18px;
    transform: rotate(-3deg);
}
.resource-card h3 {
    font-family: var(--font-display); font-size: 22px;
    font-weight: 500; margin-bottom: 10px; color: var(--ink);
    letter-spacing: -.3px; line-height: 1.25;
}
.resource-card > p {
    font-size: 14.5px; color: var(--ink-4); line-height: 1.7;
    margin-bottom: 16px; flex-grow: 1;
}
.resource-meta { display: flex; gap: 14px; margin-bottom: 18px; }
.resource-meta span { font-size: 12px; color: var(--ink-5); font-weight: 600; font-style: italic; font-family: var(--font-display); }

/* ─── Guides Page ─── */
.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.guide-card { overflow: hidden; }
.guide-card:nth-child(3n+1) { transform: rotate(-.5deg); }
.guide-card:nth-child(3n+2) { transform: rotate(.5deg); }
.guide-featured {
    grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1.2fr;
    transform: rotate(-.5deg);
}
.guide-featured-img {
    min-height: 320px;
    background: linear-gradient(140deg, var(--red), var(--red-ink)) !important;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 14px; font-weight: 700;
    letter-spacing: 5px; color: var(--paper); position: relative;
    border-right: 3px solid var(--ink);
}
.guide-featured-img::before {
    content: '✍'; position: absolute; font-size: 180px;
    color: rgba(255,253,247,.1); line-height: 1;
}
.guide-featured-img span { position: relative; z-index: 2; }
.guide-content {
    padding: 36px 32px; display: flex; flex-direction: column; justify-content: center;
    background: var(--paper);
}
.guide-content h3 {
    font-family: var(--font-display); font-size: 24px;
    font-weight: 500; margin-bottom: 12px; line-height: 1.2;
    color: var(--ink); letter-spacing: -.4px;
}
.guide-featured .guide-content h3 { font-size: 32px; letter-spacing: -.8px; }
.guide-content p {
    font-size: 15px; color: var(--ink-4); line-height: 1.7;
    margin-bottom: 14px;
}
.guide-meta { display: flex; gap: 14px; margin-bottom: 16px; }
.guide-meta span {
    font-size: 12px; color: var(--ink-5); font-family: var(--font-display);
    font-style: italic;
}
.guide-link {
    font-size: 14.5px; font-weight: 600; color: var(--red);
    font-family: var(--font-display); font-style: italic;
    border-bottom: 2px solid var(--red); padding-bottom: 2px;
    align-self: flex-start;
}
.guide-link:hover { color: var(--red-2); }

.nl-card {
    background: var(--paper);
    border: 3px solid var(--ink); border-radius: var(--radius-lg);
    padding: 60px 56px; position: relative; overflow: hidden;
    box-shadow: 12px 12px 0 var(--red);
    transform: rotate(-.5deg);
}
.nl-card h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px); font-weight: 400;
    margin-bottom: 14px; color: var(--ink); line-height: 1.1;
    letter-spacing: -1px;
}
.nl-card h2 em, .nl-card h2 .text-red { color: var(--red); font-weight: 300; }
.nl-card p {
    font-size: 16px; color: var(--ink-4); line-height: 1.7;
    margin-bottom: 28px; max-width: 560px; font-family: var(--font-display);
    font-style: italic;
}
.nl-form { display: flex; gap: 10px; max-width: 520px; }
.nl-form input {
    flex: 1; padding: 14px 18px; background: var(--cream);
    border: 2px solid var(--ink); border-radius: 999px;
    color: var(--ink); font-size: 15px; font-family: var(--font); outline: none;
}
.nl-form input:focus { border-color: var(--red); }
.nl-form input::placeholder { color: var(--ink-5); }
.nl-note {
    display: block; margin-top: 14px; font-size: 13px;
    color: var(--ink-5); font-style: italic; font-family: var(--font-display);
}

/* ─── Videos Page ─── */
.video-featured { margin-bottom: 60px; }
.video-featured .video-embed {
    position: relative; width: 100%; padding-bottom: 56.25%;
    border: 3px solid var(--ink); border-radius: 20px; overflow: hidden;
    background: var(--ink); box-shadow: 10px 10px 0 var(--red);
    transform: rotate(-.5deg);
}
.video-featured .video-embed iframe {
    position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-featured-info { padding: 24px 0 0; }
.video-featured-info h2 {
    font-family: var(--font-display); font-size: 30px; font-weight: 500;
    margin-bottom: 8px; color: var(--ink); letter-spacing: -.6px;
}

.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.video-card { overflow: hidden; cursor: pointer; }
.video-card:nth-child(3n+1) { transform: rotate(-.5deg); }
.video-card:nth-child(3n+2) { transform: rotate(.3deg); }
.video-thumb { position: relative; overflow: hidden; border-bottom: 2.5px solid var(--ink); }
.video-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: var(--transition); }
.video-card:hover .video-thumb img { transform: scale(1.06); }
.video-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.video-play-btn {
    width: 62px; height: 62px; background: var(--red);
    border: 3px solid var(--paper); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--paper);
    transition: all .25s var(--ease-bounce);
    box-shadow: 3px 3px 0 var(--ink);
}
.video-card:hover .video-play-btn { transform: scale(1.1) rotate(-5deg); }
.video-dur {
    position: absolute; bottom: 12px; right: 12px;
    background: var(--ink); color: var(--paper);
    padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700;
    border: 2px solid var(--paper); font-family: var(--font-display);
}
.video-card-info { padding: 20px 22px; }
.video-card-info h3 {
    font-family: var(--font-display); font-size: 18px;
    font-weight: 500; line-height: 1.3; margin-bottom: 8px;
    color: var(--ink); letter-spacing: -.3px;
}
.video-card-meta { display: flex; gap: 14px; }
.video-card-meta span {
    font-size: 12.5px; color: var(--ink-5);
    font-family: var(--font-display); font-style: italic;
}

.stats-bar {
    display: flex; justify-content: center; gap: 60px; padding: 40px 0;
    border-top: 2px dashed var(--ink-3);
    border-bottom: 2px dashed var(--ink-3);
    flex-wrap: wrap; margin: 20px 0;
}
.stats-bar-item { text-align: center; }
.stats-bar-item .num {
    font-family: var(--font-display); font-size: 42px;
    font-weight: 500; display: block; color: var(--red); font-style: italic;
    line-height: 1;
}
.stats-bar-item .label {
    font-size: 13px; color: var(--ink-4); margin-top: 6px;
    display: block; font-family: var(--font-display); font-style: italic;
}

/* ─── Inner Circle Page ─── */
.ic-hero {
    padding: 180px 0 90px; text-align: center; position: relative;
    overflow: hidden; background: var(--cream-2);
    border-bottom: 2px solid var(--ink);
}
.ic-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.ic-glow {
    position: absolute; border-radius: 50%;
    filter: blur(100px); opacity: .4;
}
.ic-glow-1 { width: 500px; height: 500px; background: var(--red); top: -150px; left: -100px; }
.ic-glow-2 { width: 400px; height: 400px; background: var(--ochre); bottom: -120px; right: -80px; }
.ic-hero .hero-grid {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 15% 30%, var(--ochre) 2px, transparent 3px),
        radial-gradient(circle at 85% 70%, var(--red) 2px, transparent 3px);
    background-size: 200px 200px, 250px 250px;
    opacity: .35;
}
.ic-hero .section-title { color: var(--ink); }
.ic-hero .section-subtitle { color: var(--ink-3); }
.ic-stat-boxes {
    display: flex; gap: 14px; justify-content: center;
    margin-top: 32px; flex-wrap: wrap;
}
.ic-stat-box {
    padding: 12px 24px; background: var(--paper);
    border: 2px solid var(--ink); border-radius: 999px;
    font-size: 14px; font-weight: 600; color: var(--ink);
    box-shadow: var(--shadow-sm); font-family: var(--font-display);
    font-style: italic;
}
.ic-stat-box:nth-child(2) { transform: rotate(-1.5deg); background: var(--blush); }
.ic-stat-box:nth-child(3) { transform: rotate(1.5deg); }

.ic-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ic-card { padding: 36px 32px; }
.ic-card:nth-child(even) { transform: rotate(.5deg); }
.ic-card:nth-child(3n) { transform: rotate(-.5deg); }
.ic-card-icon {
    width: 60px; height: 60px; background: var(--blush);
    border: 2px solid var(--red); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red); margin-bottom: 20px;
    transform: rotate(-4deg);
}
.ic-card h3 {
    font-family: var(--font-display); font-size: 24px;
    font-weight: 500; margin-bottom: 10px; color: var(--ink);
    letter-spacing: -.3px;
}
.ic-card p { font-size: 15px; color: var(--ink-4); line-height: 1.7; }
.section-dark .ic-card { background: var(--paper); color: var(--ink); }
.section-dark .ic-card h3 { color: var(--ink); }
.section-dark .ic-card p { color: var(--ink-4); }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
    text-align: center; padding: 40px 28px;
    background: var(--paper); border: 2.5px solid var(--ink);
    border-radius: 20px; box-shadow: var(--shadow);
    color: var(--ink);
}
.step:nth-child(1) { transform: rotate(-1deg); }
.step:nth-child(2) { transform: rotate(.8deg); }
.step:nth-child(3) { transform: rotate(-.5deg); }
.step-num {
    font-family: var(--font-display); font-size: 80px;
    font-weight: 300; color: var(--red); opacity: 1;
    line-height: .9; margin-bottom: 14px; font-style: italic;
}
.step h3 {
    font-family: var(--font-display); font-size: 22px;
    font-weight: 500; margin-bottom: 10px; color: var(--ink);
    letter-spacing: -.3px;
}
.step p { font-size: 15px; color: var(--ink-4); line-height: 1.65; }
.section-dark .step { color: var(--ink); }
.section-dark .step h3 { color: var(--ink); }
.section-dark .step p { color: var(--ink-4); }

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    border-bottom: 2px dashed var(--ink-3);
    padding: 24px 0;
}
.faq-item summary {
    font-family: var(--font-display); font-size: 20px; font-weight: 500;
    cursor: pointer; list-style: none; display: flex; justify-content: space-between;
    align-items: center; color: var(--ink); letter-spacing: -.3px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 28px; color: var(--red);
    transition: var(--transition); font-weight: 300;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
    font-size: 15.5px; color: var(--ink-4); line-height: 1.75;
    padding-top: 14px; font-family: var(--font-display);
}

.ic-big-cta {
    text-align: center; padding: 80px 48px;
    background: var(--paper);
    border: 3px solid var(--ink);
    border-radius: 28px;
    box-shadow: 14px 14px 0 var(--red);
    max-width: 880px; margin: 0 auto;
    color: var(--ink);
}
.section-dark .ic-big-cta { background: var(--paper); color: var(--ink); }
.section-dark .ic-big-cta .section-label { background: var(--paper); color: var(--red); }
.ic-big-cta h2 {
    font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px);
    font-weight: 400; margin-bottom: 18px; color: var(--ink);
    letter-spacing: -1.5px; line-height: 1.05;
}
.section-dark .ic-big-cta h2 { color: var(--ink); }
.section-dark .ic-big-cta p { color: var(--ink-4); }

/* ─── Contact Page ─── */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 72px; align-items: start;
}
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
    display: flex; align-items: center; gap: 18px;
    padding: 22px 24px; transition: all .25s var(--ease-bounce);
}
.contact-card:hover { transform: translate(-3px,-3px) rotate(-.5deg); }
.contact-card-icon {
    width: 56px; height: 56px; background: var(--blush);
    border: 2px solid var(--red); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red); flex-shrink: 0;
}
.contact-card strong {
    display: block; font-size: 16px; margin-bottom: 3px;
    font-family: var(--font-display); color: var(--ink);
}
.contact-card span { font-size: 14px; color: var(--ink-4); }
.contact-form {
    display: flex; flex-direction: column; gap: 0;
    padding: 40px;
    background: var(--paper); border: 3px solid var(--ink);
    border-radius: 24px; box-shadow: var(--shadow-lg);
    transform: rotate(-.5deg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.location-note {
    text-align: center; font-size: 15px; color: var(--ink-4);
    padding: 32px 0; font-family: var(--font-display); font-style: italic;
}

/* ═══ EXPANDED ABOUT PAGE ═══ */
.about-stat-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; margin-top: 40px;
}
.about-stat {
    padding: 24px;
    background: var(--paper);
    border: 2.5px solid var(--ink);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.about-stat:nth-child(even) { transform: rotate(.8deg); }
.about-stat:nth-child(odd) { transform: rotate(-.6deg); }
.about-stat .num {
    display: block; font-family: var(--font-display); font-style: italic;
    font-size: 42px; font-weight: 400; color: var(--red); line-height: 1;
    margin-bottom: 6px;
}
.about-stat .label {
    font-size: 12.5px; color: var(--ink-4);
    font-family: var(--font-display); font-style: italic;
    line-height: 1.3;
}

.longform {
    max-width: 720px; margin: 0 auto;
    padding: 80px 0;
}
.longform h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 48px); font-weight: 400;
    line-height: 1.1; letter-spacing: -1.2px; color: var(--ink);
    margin: 48px 0 18px;
}
.longform h2:first-child { margin-top: 0; }
.longform h2 em { color: var(--red); font-weight: 300; }
.longform h3 {
    font-family: var(--font-display); font-style: italic;
    font-size: 24px; font-weight: 400; color: var(--red);
    margin: 36px 0 12px;
}
.longform p {
    font-size: 18px; line-height: 1.85; color: var(--ink-2);
    margin-bottom: 20px;
    font-family: var(--font-display);
}
.longform p:first-of-type:first-letter {
    font-size: 76px; float: left; font-weight: 500;
    line-height: .8; padding: 6px 12px 0 0; color: var(--red);
    font-style: italic;
}
.longform blockquote {
    border-left: 6px solid var(--red);
    padding: 8px 0 8px 32px;
    margin: 36px 0;
    font-family: var(--font-display);
    font-style: italic; font-size: 26px;
    line-height: 1.45; color: var(--ink);
    letter-spacing: -.3px;
}
.longform ul, .longform ol {
    margin: 24px 0 28px 24px;
    font-family: var(--font-display);
}
.longform ul li, .longform ol li {
    font-size: 17px; line-height: 1.7; color: var(--ink-2);
    margin-bottom: 10px;
}
.longform strong { color: var(--ink); font-weight: 600; }
.longform em { color: var(--red); font-style: italic; }

.mistakes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1040px; margin: 0 auto; }
.mistake-card {
    padding: 32px;
    background: var(--paper);
    border: 2.5px solid var(--ink);
    border-radius: 18px;
    box-shadow: var(--shadow);
}
.mistake-card:nth-child(odd) { transform: rotate(-.6deg); }
.mistake-card:nth-child(even) { transform: rotate(.5deg); }
.mistake-card .mistake-num {
    font-family: var(--font-display); font-style: italic;
    font-size: 14px; color: var(--red); font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; display: block;
    margin-bottom: 8px;
}
.mistake-card h3 {
    font-family: var(--font-display); font-size: 22px;
    font-weight: 500; color: var(--ink); margin-bottom: 10px;
    line-height: 1.25; letter-spacing: -.4px;
}
.mistake-card p {
    font-size: 15.5px; line-height: 1.7; color: var(--ink-3);
    font-family: var(--font-display);
}

/* ═══ NOW PAGE ═══ */
.now-page {
    padding: 80px 0;
}
.now-updated {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 20px; background: var(--paper);
    border: 2px solid var(--ink); border-radius: 999px;
    font-family: var(--font-display); font-style: italic;
    font-size: 14px; color: var(--ink-3);
    box-shadow: var(--shadow-sm); margin-bottom: 36px;
    transform: rotate(-1deg);
}
.now-updated .dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 0 3px rgba(34,197,94,.2); animation: pulse 2s ease-in-out infinite; }
.now-block {
    max-width: 780px; margin: 0 auto 56px;
}
.now-block h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 46px); font-weight: 400;
    color: var(--ink); letter-spacing: -1.2px; line-height: 1.1;
    margin-bottom: 24px; padding-bottom: 16px;
    border-bottom: 2px dashed var(--ink-3);
}
.now-block h2 em { color: var(--red); font-weight: 300; }
.now-block p {
    font-size: 17.5px; line-height: 1.8; color: var(--ink-2);
    margin-bottom: 18px; font-family: var(--font-display);
}
.now-block p strong { color: var(--ink); font-weight: 600; }
.now-block p em { color: var(--red); }
.now-block ul {
    list-style: none; padding: 0; margin: 20px 0 24px;
}
.now-block ul li {
    padding: 14px 0 14px 36px; position: relative;
    border-bottom: 1.5px dashed var(--ink-3);
    font-size: 16.5px; color: var(--ink-2); line-height: 1.55;
    font-family: var(--font-display);
}
.now-block ul li:last-child { border-bottom: none; }
.now-block ul li::before {
    content: '→'; position: absolute; left: 0; top: 14px;
    color: var(--red); font-family: var(--font-display);
    font-style: italic; font-weight: 500; font-size: 22px;
}
.now-block ul li b { color: var(--ink); font-weight: 600; }

/* ═══ USES PAGE ═══ */
.uses-intro {
    max-width: 720px; margin: 0 auto 64px; text-align: center;
}
.uses-intro p {
    font-size: 18px; line-height: 1.75; color: var(--ink-3);
    font-family: var(--font-display); font-style: italic;
}
.uses-category {
    margin-bottom: 72px;
}
.uses-cat-header {
    display: flex; align-items: baseline; justify-content: space-between;
    padding-bottom: 16px; margin-bottom: 28px;
    border-bottom: 2px solid var(--ink);
}
.uses-cat-header h2 {
    font-family: var(--font-display);
    font-size: 34px; font-weight: 500; color: var(--ink);
    letter-spacing: -1px;
}
.uses-cat-header h2 em { color: var(--red); font-weight: 400; }
.uses-cat-header span {
    font-family: var(--font-display); font-style: italic;
    font-size: 14px; color: var(--ink-5);
}
.uses-list {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.uses-item {
    display: grid; grid-template-columns: 72px 1fr auto;
    gap: 20px; align-items: center;
    padding: 22px 24px;
    background: var(--paper);
    border: 2.5px solid var(--ink);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all .3s var(--ease-bounce);
}
.uses-item:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow); }
.uses-item-icon {
    width: 56px; height: 56px;
    background: var(--cream);
    border: 2px solid var(--ink);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; flex-shrink: 0;
}
.uses-item-body h4 {
    font-family: var(--font-display); font-size: 19px;
    font-weight: 600; color: var(--ink); margin-bottom: 4px;
    letter-spacing: -.2px;
}
.uses-item-body p { font-size: 14px; color: var(--ink-4); line-height: 1.55; }
.uses-tag {
    font-size: 11px; font-weight: 700;
    padding: 5px 10px; border-radius: 999px;
    background: var(--blush); color: var(--red-ink);
    border: 1.5px solid var(--red);
    text-transform: uppercase; letter-spacing: .5px;
    justify-self: end;
}
.uses-tag.free { background: #dcfce7; color: #166534; border-color: #22c55e; }
.uses-tag.paid { background: var(--blush); color: var(--red-ink); border-color: var(--red); }
.uses-tag.freemium { background: #fef3c7; color: #92400e; border-color: var(--ochre); }

/* ═══ ARTICLE PAGE ═══ */
.article-hero {
    padding: 160px 0 72px;
    background: var(--cream-2);
    border-bottom: 2px solid var(--ink);
    position: relative; overflow: hidden;
}
.article-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 15% 30%, var(--ochre) 2px, transparent 3px),
        radial-gradient(circle at 85% 70%, var(--red) 2px, transparent 3px);
    background-size: 200px 200px, 250px 250px;
    opacity: .25;
}
.article-hero > .container { position: relative; z-index: 2; max-width: 820px; }
.article-breadcrumb {
    font-size: 13px; color: var(--ink-4); margin-bottom: 20px;
    font-family: var(--font-display); font-style: italic;
}
.article-breadcrumb a { color: var(--ink-4); text-decoration: underline; text-decoration-color: var(--red); }
.article-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px); font-weight: 400;
    line-height: 1.02; letter-spacing: -2.2px; color: var(--ink);
    margin-bottom: 24px;
}
.article-hero h1 em { color: var(--red); font-weight: 300; }
.article-meta {
    display: flex; align-items: center; gap: 24px;
    flex-wrap: wrap; padding: 20px 0;
    border-top: 1.5px dashed var(--ink-3);
    border-bottom: 1.5px dashed var(--ink-3);
    font-family: var(--font-display);
}
.article-meta .avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--red); color: var(--paper);
    border: 2px solid var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 600;
}
.article-meta .author { display: flex; align-items: center; gap: 12px; }
.article-meta .author b { display: block; color: var(--ink); font-size: 15px; font-family: var(--font); }
.article-meta .author span { font-size: 12.5px; color: var(--ink-4); font-style: italic; }
.article-meta .meta-pill {
    padding: 6px 14px; border-radius: 999px;
    background: var(--paper); border: 2px solid var(--ink);
    font-size: 12.5px; color: var(--ink-3); font-weight: 600;
    font-family: var(--font);
}

.article-body {
    max-width: 720px; margin: 0 auto;
    padding: 80px 0;
}
.article-body > * { position: relative; z-index: 2; }
.article-body p {
    font-size: 19px; line-height: 1.85; color: var(--ink-2);
    margin-bottom: 22px; font-family: var(--font-display);
}
.article-body p.lead {
    font-size: 22px; line-height: 1.65; color: var(--ink);
    margin-bottom: 32px;
    font-style: italic;
}
.article-body p.lead:first-letter {
    font-size: 84px; float: left; font-weight: 500;
    line-height: .8; padding: 8px 14px 0 0; color: var(--red);
    font-family: var(--font-display); font-style: italic;
}
.article-body h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px); font-weight: 500;
    line-height: 1.1; letter-spacing: -1px; color: var(--ink);
    margin: 56px 0 20px;
}
.article-body h2 em { color: var(--red); font-weight: 400; }
.article-body h3 {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 500; color: var(--ink);
    margin: 36px 0 14px; letter-spacing: -.4px;
}
.article-body blockquote {
    border-left: 6px solid var(--red);
    padding: 12px 0 12px 32px;
    margin: 40px 0;
    font-family: var(--font-display); font-style: italic;
    font-size: 26px; line-height: 1.45;
    color: var(--ink); letter-spacing: -.3px;
}
.article-body ul, .article-body ol {
    margin: 24px 0 28px 24px;
    font-family: var(--font-display);
}
.article-body ul li, .article-body ol li {
    font-size: 18px; line-height: 1.75; color: var(--ink-2);
    margin-bottom: 12px;
}
.article-body strong { color: var(--ink); font-weight: 600; background: linear-gradient(transparent 60%, var(--blush) 60%); padding: 0 2px; }
.article-body em { color: var(--red); font-style: italic; }
.article-body a { color: var(--red); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.article-body hr {
    border: none; height: 2px; background: var(--ink-3);
    margin: 56px 0; max-width: 120px;
    margin-left: auto; margin-right: auto;
}
.article-body .callout {
    padding: 32px 36px;
    background: var(--blush);
    border: 2.5px solid var(--red);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    margin: 32px 0;
}
.article-body .callout h4 {
    font-family: var(--font-display); font-style: italic;
    font-size: 20px; font-weight: 600; color: var(--red-ink);
    margin-bottom: 10px;
}
.article-body .callout p {
    font-size: 16.5px; line-height: 1.7; color: var(--red-ink);
    margin: 0; font-family: var(--font-display);
}

.article-cta {
    max-width: 720px; margin: 0 auto;
    padding: 48px 40px;
    background: var(--paper); border: 2.5px solid var(--ink);
    border-radius: 20px; box-shadow: var(--shadow-red);
    text-align: center; margin-bottom: 80px;
}
.article-cta h3 {
    font-family: var(--font-display); font-size: 28px;
    font-weight: 500; color: var(--ink); margin-bottom: 12px;
    letter-spacing: -.5px;
}
.article-cta p {
    font-size: 16px; color: var(--ink-4); margin-bottom: 24px;
    font-family: var(--font-display); font-style: italic;
}

/* ═══ CONTACT "LANES" ═══ */
.contact-lanes {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    margin-bottom: 56px;
}
.lane {
    padding: 32px 24px;
    background: var(--paper);
    border: 2.5px solid var(--ink);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transition: all .3s var(--ease-bounce);
}
.lane:nth-child(1) { transform: rotate(-1deg); }
.lane:nth-child(2) { transform: rotate(.5deg); }
.lane:nth-child(3) { transform: rotate(-.5deg); }
.lane:nth-child(4) { transform: rotate(1deg); }
.lane:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-lg); }
.lane-emoji { font-size: 40px; margin-bottom: 14px; display: block; }
.lane h3 {
    font-family: var(--font-display); font-size: 22px;
    font-weight: 500; color: var(--ink); margin-bottom: 8px;
    letter-spacing: -.3px;
}
.lane p {
    font-size: 14.5px; line-height: 1.6; color: var(--ink-4);
    margin-bottom: 16px; font-family: var(--font-display);
}
.lane a.lane-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-display); font-weight: 600; font-style: italic;
    font-size: 15px; color: var(--red);
    border-bottom: 2px solid var(--red); padding-bottom: 2px;
}

/* ═══ CATEGORY FILTER (for guides/videos) ═══ */
.cat-filter {
    display: flex; gap: 12px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 48px;
}
.cat-filter button {
    padding: 11px 22px; border-radius: 999px;
    font-size: 14px; font-weight: 600;
    background: var(--paper); border: 2px solid var(--ink);
    color: var(--ink); cursor: pointer;
    transition: all .25s var(--ease-bounce);
    box-shadow: var(--shadow-sm); font-family: var(--font);
}
.cat-filter button:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow); }
.cat-filter button.active { background: var(--red); color: var(--paper); border-color: var(--ink); }

/* ═══ VIDEOS PAGE ENHANCED ═══ */
.videos-sections { display: flex; flex-direction: column; gap: 80px; }
.videos-section-title {
    display: flex; align-items: baseline; gap: 16px;
    padding-bottom: 16px; margin-bottom: 32px;
    border-bottom: 2px solid var(--ink);
}
.videos-section-title h2 {
    font-family: var(--font-display); font-size: 32px;
    font-weight: 500; color: var(--ink); letter-spacing: -.8px;
}
.videos-section-title h2 em { color: var(--red); font-weight: 400; }
.videos-section-title span {
    font-family: var(--font-display); font-style: italic;
    font-size: 14px; color: var(--ink-5);
}

/* ═══ RESOURCES PAGE ENHANCED ═══ */
.resources-section { margin-bottom: 80px; }
.resources-section-title {
    display: flex; align-items: baseline; justify-content: space-between;
    padding-bottom: 16px; margin-bottom: 32px;
    border-bottom: 2px solid var(--ink);
}
.resources-section-title h2 {
    font-family: var(--font-display); font-size: 32px;
    font-weight: 500; color: var(--ink); letter-spacing: -.8px;
}
.resources-section-title h2 em { color: var(--red); font-weight: 400; }
.resources-section-title span {
    font-family: var(--font-display); font-style: italic;
    font-size: 14px; color: var(--ink-5);
}

/* ═══ INNER CIRCLE ENHANCED ═══ */
.ic-sample-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: center;
}
.ic-sample-visual {
    padding: 32px;
    background: var(--ink);
    border: 3px solid var(--ink); border-radius: 20px;
    box-shadow: var(--shadow-lg); transform: rotate(-1deg);
    color: var(--cream);
}
.ic-channel {
    font-family: var(--font); font-size: 15px; font-weight: 600;
    color: var(--cream); margin-bottom: 16px; padding-bottom: 14px;
    border-bottom: 1px solid var(--ink-3);
    display: flex; align-items: center; gap: 8px;
}
.ic-channel::before { content: '#'; color: var(--red-light); font-weight: 700; font-size: 18px; }
.ic-msg { display: flex; gap: 12px; margin-bottom: 16px; }
.ic-msg-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 600;
    color: var(--paper); font-size: 15px;
}
.ic-msg-body b { font-size: 14px; color: var(--paper); font-weight: 600; font-family: var(--font); }
.ic-msg-body time { font-size: 11.5px; color: var(--ink-5); margin-left: 6px; font-family: var(--font); }
.ic-msg-body p { font-size: 14px; color: var(--cream); line-height: 1.55; margin-top: 2px; font-family: var(--font); }

.schedule-list { display: flex; flex-direction: column; gap: 16px; }
.schedule-item {
    display: grid; grid-template-columns: 64px 1fr auto;
    gap: 20px; align-items: center;
    padding: 20px 24px;
    background: var(--paper);
    border: 2.5px solid var(--ink);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all .3s var(--ease-bounce);
}
.schedule-item:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow); }
.schedule-date {
    display: flex; flex-direction: column; align-items: center;
    background: var(--red); color: var(--paper);
    padding: 10px 8px; border-radius: 12px;
    border: 2px solid var(--ink);
    font-family: var(--font-display);
}
.schedule-date b { font-size: 24px; font-weight: 600; line-height: 1; font-style: italic; }
.schedule-date span { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.schedule-body h4 {
    font-family: var(--font-display); font-size: 18px;
    font-weight: 600; color: var(--ink); margin-bottom: 4px;
}
.schedule-body p { font-size: 13.5px; color: var(--ink-4); font-family: var(--font-display); font-style: italic; }
.schedule-type {
    font-size: 11px; font-weight: 700;
    padding: 5px 11px; border-radius: 999px;
    background: var(--blush); color: var(--red-ink);
    border: 1.5px solid var(--red);
    text-transform: uppercase; letter-spacing: .5px;
    white-space: nowrap;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .about-story { grid-template-columns: 1fr; gap: 56px; }
    .about-photo { max-width: 360px; margin: 0 auto; }
    .resources-grid { grid-template-columns: repeat(2, 1fr); }
    .guides-grid { grid-template-columns: repeat(2, 1fr); }
    .videos-grid { grid-template-columns: repeat(2, 1fr); }
    .ic-features-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr; }
    .resources-grid { grid-template-columns: 1fr; }
    .guides-grid { grid-template-columns: 1fr; }
    .guide-featured { grid-template-columns: 1fr; }
    .guide-featured-img { min-height: 200px; }
    .videos-grid { grid-template-columns: 1fr; }
    .ic-features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .nl-form { flex-direction: column; }
    .nl-card { padding: 40px 28px; }
    .form-row { grid-template-columns: 1fr; }
    .stats-bar { gap: 32px; padding: 28px 0; }
    .ic-stat-boxes { flex-direction: column; align-items: center; }
    .ic-hero { padding: 140px 0 64px; }
    .quote-block { padding: 40px 28px 32px; }
    .ic-big-cta { padding: 56px 28px; }
    .contact-form { padding: 28px; }
}

/* ═══════════════════════════════════════════════════════════════
   BELIEFS — manifesto list (reusable on about / other pages)
   ═══════════════════════════════════════════════════════════════ */
.beliefs-list {
    max-width: 900px; margin: 0 auto;
    counter-reset: belief;
    position: relative;
}
.belief {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 32px;
    padding: 36px 0;
    border-bottom: 2px dashed var(--ink-3);
    align-items: start;
    counter-increment: belief;
}
.belief:last-child { border-bottom: none; }
.belief::before {
    content: counter(belief, decimal-leading-zero);
    font-family: var(--font-display); font-style: italic;
    font-size: 62px; font-weight: 400;
    color: var(--red); line-height: 1;
    transition: all .4s var(--ease-bounce);
}
.belief:hover::before { transform: translateX(-6px) rotate(-4deg); }
.belief-body h3 {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 500; line-height: 1.15;
    color: var(--ink); margin-bottom: 10px; letter-spacing: -.4px;
}
.belief-body h3 em { color: var(--red); font-weight: 400; font-style: italic; }
.belief-body p {
    font-size: 16.5px; line-height: 1.7; color: var(--ink-4);
    font-family: var(--font-display); font-style: italic;
}
@media (max-width: 760px) {
    .belief { grid-template-columns: 54px 1fr; gap: 20px; padding: 28px 0; }
    .belief::before { font-size: 42px; }
    .belief-body h3 { font-size: 22px; }
}

