        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2E7D32;
            --dark: #1B5E20;
            --accent: #FFD700;
            --bg: #F5F5F0;
            --text: #333333;
            --white: #FFFFFF;
            --light-green: #4CAF50;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Raleway', sans-serif;
            color: var(--text);
            background-color: var(--bg);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 2rem;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: 0;
            padding: 13px 12px;
            margin: -13px -12px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: var(--dark);
            transition: all 0.3s ease;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: var(--white);
            overflow: hidden;
            margin-top: 80px;
        }

        .mandala-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            opacity: 0.1;
            animation: rotate 60s linear infinite;
            z-index: 1;
        }

        .hero-globe {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: min(90vmin, 720px);
            height: min(90vmin, 720px);
            object-fit: cover;
            border-radius: 50%;
            opacity: 0.42;
            mix-blend-mode: screen;
            filter: saturate(1.05) contrast(0.95);
            z-index: 0;
            pointer-events: none;
            mask-image: radial-gradient(circle, black 55%, transparent 78%);
            -webkit-mask-image: radial-gradient(circle, black 55%, transparent 78%);
        }

        @keyframes rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            padding: 2rem;
            max-width: 900px;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
        }

        .hero h1 span {
            color: var(--accent);
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            opacity: 0.95;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .hero-author {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--accent);
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-family: 'Raleway', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--dark);
        }

        .btn-primary:hover {
            background: #FFC400;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* Stats Bar */
        .stats {
            background: var(--primary);
            color: var(--white);
            padding: 2rem;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 1.1rem;
        }

        /* Section Styles */
        section {
            padding: 5rem 2rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: clamp(16px, 4vw, 32px);
            padding-right: clamp(16px, 4vw, 32px);
        }

        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--dark);
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent);
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .about-image {
            position: relative;
            padding: 2rem;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 12px;
            left: 12px;
            right: -12px;
            bottom: -12px;
            border: 2px solid var(--accent);
            border-radius: 10px;
            z-index: 0;
        }

        .about-image img {
            position: relative;
            z-index: 1;
            width: 100%;
            height: auto;
            max-height: 520px;
            object-fit: cover;
            object-position: center 25%;
            border-radius: 10px;
            display: block;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        .placeholder-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--primary), var(--light-green));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            border-radius: 10px;
        }

        .person-portrait-figure {
            margin: 0 auto;
            max-width: 480px;
        }
        .person-portrait-figure img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.18);
            display: block;
        }
        .person-portrait-figure--wide {
            max-width: 720px;
            margin-top: 48px;
        }
        .person-portrait-figure figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            font-size: 0.95rem;
            margin-top: 12px;
        }

        /* Directions Section */
        .directions {
            background: var(--white);
        }

        .directions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .direction-card {
            background: var(--bg);
            padding: 2.5rem 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .direction-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .direction-card:hover::before {
            left: 100%;
        }

        .direction-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 15px 40px rgba(46, 125, 50, 0.2);
        }

        .direction-card.highlight {
            background: linear-gradient(135deg, var(--primary), var(--light-green));
            color: var(--white);
            border-color: var(--accent);
        }

        .direction-card.highlight h3,
        .direction-card.highlight p {
            color: var(--white);
        }

        .direction-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            display: inline-block;
            animation: float 3s ease-in-out infinite;
        }

        .direction-card.highlight .direction-icon {
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .direction-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .direction-card p {
            font-size: 1rem;
            color: var(--text);
            line-height: 1.6;
        }

        .fire-icon {
            display: inline-block;
            position: relative;
        }

        .fire-icon::before {
            content: '🔥';
            filter: grayscale(100%) brightness(1.5);
        }

        /* Courses Section */
        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .course-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }

        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .course-header {
            background: linear-gradient(135deg, var(--primary), var(--light-green));
            color: var(--white);
            padding: 2rem;
            text-align: center;
        }

        .course-header h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .course-body {
            padding: 2rem;
        }

        .course-info {
            list-style: none;
            margin-bottom: 2rem;
        }

        .course-info li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .course-info li::before {
            content: '✓';
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .course-card .btn {
            width: 100%;
        }

        /* How It Works */
        .how-it-works {
            background: var(--white);
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            position: relative;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 2;
        }

        .step h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .step p {
            font-size: 1rem;
            color: var(--text);
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            margin-bottom: 1.5rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--bg);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #E8E8E0;
        }

        .faq-question h3 {
            font-size: 1.2rem;
            color: var(--dark);
            flex: 1;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 2rem;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 1.5rem 2rem;
        }

        .faq-answer p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--dark), var(--primary));
            color: var(--white);
            text-align: center;
            padding: 5rem 2rem;
        }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }

        /* Contact Section */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-form {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-family: 'Raleway', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-item-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .contact-item-content p {
            font-size: 1rem;
            color: var(--text);
        }

        .contact-item-content a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item-content a:hover {
            color: var(--light-green);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 3rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }

        /* Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Главная: 8 пунктов не влезают на планшете — сворачиваем в бургер до ~1100px */
        @media (max-width: 1100px) {
            #header .nav-links {
                position: fixed;
                right: -100%;
                top: 80px;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                text-align: center;
                padding: 2rem;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
            }

            #header .nav-links.active {
                right: 0;
            }

            #header .burger {
                display: flex;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-author {
                font-size: 1.4rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .stats-container {
                grid-template-columns: 1fr 1fr;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 1rem;
            }

            .logo {
                font-size: 1.4rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }

            section {
                padding: 3rem 1rem;
            }
        }

/* ========== MULTIPAGE COMMON ========== */
.site-header { background: var(--bg); padding: 20px 0; border-bottom: 1px solid #E8E5DC; position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); letter-spacing: -.01em; text-decoration: none; }
.main-nav { display: flex; gap: 24px; }
.main-nav a { font-size: .9rem; font-weight: 500; color: #555; transition: color .3s; text-decoration: none; }
.main-nav a:hover { color: var(--primary); }
.breadcrumb { padding: 24px 0 0; font-size: .85rem; color: #888; }
.breadcrumb a { color: #888; transition: color .3s; text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--primary); font-weight: 500; }
.block-hero { padding: 80px 0 40px; background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 160%); }
.block-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 6vw, 4rem); color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 16px; }
.block-hero .lead { font-size: 1.15rem; color: rgba(255, 255, 255, 0.85); max-width: 720px; line-height: 1.7; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); cursor: pointer; transition: all .4s cubic-bezier(.25,.46,.45,.94); display: inline-block; text-decoration: none; }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.site-footer { background: var(--text); color: var(--bg); padding: 40px 0; text-align: center; font-size: .9rem; }
.site-footer a { color: var(--accent); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer p + p { margin-top: 8px; }
@media (max-width: 960px) {
  /* Внутренние страницы: бургер-меню (кнопка добавляется nav.js).
     .main-nav (6 пунктов) сворачивается в выпадашку под липкой шапкой до ~960px. */
  .site-header .burger { display: flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg);
    padding: 8px 0 12px;
    border-bottom: 1px solid #E8E5DC;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .main-nav.active { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { display: block; width: 100%; text-align: center; padding: 12px 24px; font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .main-nav { transition: opacity .01ms; transform: none; }
}

/* ========== CONTENT BLOCKS ========== */
.content-block { max-width: 760px; margin: 0 auto 56px; }
.content-block:last-child { margin-bottom: 0; }
.content-block .section-title { text-align: left; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; color: var(--primary); font-family: 'Cormorant Garamond', serif; font-weight: 700; }
.content-block p { color: #555; font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.content-block ul, .content-block ol { padding-left: 24px; color: #555; font-size: 1rem; line-height: 1.8; }
.content-block ul li, .content-block ol li { margin-bottom: 8px; }
.checklist { list-style: none; padding-left: 0; }
.checklist li { padding-left: 32px; position: relative; margin-bottom: 12px; }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; font-size: 1.2rem; }
.content-block h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--dark); margin-top: 32px; margin-bottom: 12px; font-weight: 600; }

/* ========== PDF CARDS ========== */
.pdf-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 32px; }
.pdf-card { background: var(--bg); padding: 32px 24px; border-radius: 12px; border: 1px solid #E8E5DC; text-align: center; transition: transform .3s, box-shadow .3s; }
.pdf-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(46, 125, 50, .12); }
.pdf-icon { font-size: 3rem; margin-bottom: 16px; }
.pdf-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--primary); margin-bottom: 12px; }
.pdf-card p { color: #555; font-size: .95rem; line-height: 1.6; margin-bottom: 12px; }
.pdf-meta { color: #888; font-size: .85rem; margin-bottom: 20px; }

/* ========== CARDS AS LINKS (main page) ========== */
a.direction-card { display: block; color: inherit; text-decoration: none; transition: transform .3s, box-shadow .3s; cursor: pointer; }
a.direction-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(46, 125, 50, .15); }
.direction-card--soon { cursor: default; opacity: .55; position: relative; }
.direction-card--soon:hover { transform: none; box-shadow: none; opacity: .55; }
.card-badge { position: absolute; top: 12px; right: 12px; background: #888; color: #fff; padding: 4px 10px; border-radius: 12px; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.card-cta { display: inline-block; margin-top: 16px; color: var(--accent); font-weight: 600; font-size: .9rem; }
a.direction-card:hover .card-cta { color: var(--primary); }
