:root {
    --charcoal: #292524;
    --charcoal-light: #44403c;
    --copper: #B45309;
    --copper-dark: #92400e;
    --ember: #DC2626;
    --ember-glow: #EA580C;
    --forge-dark: #1c1917;
    --forge-mid: #57534e;
    --gray: #78716c;
    --light: #fafaf9;
    --warm: #fef3c7;
    --white: #ffffff;
    --radius: 8px;
    --shadow: 0 4px 24px rgba(28, 25, 23, 0.12);
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.65;
    background: var(--light);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--copper); text-decoration: none; }
a:hover { color: var(--copper-dark); }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 9999;
    background: var(--copper); color: white; padding: 0.5rem 1rem;
}
.skip-link:focus { left: 0; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(41, 37, 36, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--copper);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 72px;
}
.logo {
    display: flex; align-items: center; gap: 0.6rem;
    font-family: var(--font-head); font-weight: 800; font-size: 1.35rem;
    color: var(--white); letter-spacing: 0.02em; text-transform: uppercase;
}
.logo:hover { color: var(--warm); }
.logo-icon {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 4px;
    background: linear-gradient(145deg, var(--copper), var(--ember-glow));
    color: white; font-size: 1.1rem;
    box-shadow: 0 0 12px rgba(180, 83, 9, 0.4);
}
.main-nav { display: flex; align-items: center; gap: 1.5rem; }
.main-nav a { color: #e7e5e4; font-weight: 500; font-size: 0.95rem; }
.main-nav a:hover, .main-nav a.active { color: var(--ember-glow); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.75rem 1.5rem; border-radius: var(--radius);
    font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
    letter-spacing: 0.04em; text-transform: uppercase;
    border: 2px solid transparent; cursor: pointer; transition: all 0.2s;
}
.btn-primary {
    background: linear-gradient(145deg, var(--copper), var(--ember-glow));
    color: white; border-color: var(--copper);
    box-shadow: 0 4px 16px rgba(180, 83, 9, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
    color: white;
}
.btn-outline {
    background: transparent; border-color: #a8a29e; color: #e7e5e4;
}
.btn-outline:hover { background: var(--charcoal-light); color: white; border-color: var(--copper); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }

/* Hero */
.hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(165deg, var(--forge-dark) 0%, var(--charcoal) 55%, #3f2e1f 100%);
    color: var(--white); overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(180, 83, 9, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 40%);
    pointer-events: none;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
    position: relative;
}
.hero h1 {
    font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1; margin-bottom: 1.25rem; text-transform: uppercase;
    letter-spacing: 0.02em;
}
.hero h1 span { color: var(--ember-glow); }
.hero-lead { font-size: 1.125rem; color: #d6d3d1; margin-bottom: 1.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-note { font-size: 0.875rem; color: var(--gray); }
.hero-img {
    border-radius: var(--radius); box-shadow: var(--shadow);
    overflow: hidden; border: 2px solid var(--copper);
}
.hero-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Trust bar */
.trust-bar {
    background: var(--copper); color: white; padding: 0.75rem 0;
    font-size: 0.875rem; text-align: center;
    font-family: var(--font-head); letter-spacing: 0.06em; text-transform: uppercase;
}
.trust-bar span { margin: 0 1rem; opacity: 0.95; }

/* Domain callout */
.domain-callout { padding: 2.5rem 0; background: var(--warm); }
.callout-box {
    display: flex; gap: 2rem; align-items: flex-start;
    padding: 2rem; background: white; border-radius: var(--radius);
    border-left: 4px solid var(--copper); box-shadow: var(--shadow);
}
.callout-box h2 {
    font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.03em;
}

/* Stats */
.stats-section { padding: 3rem 0; background: var(--charcoal); color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-card {
    text-align: center; padding: 1.5rem;
    background: var(--charcoal-light); border-radius: var(--radius);
    border: 1px solid var(--copper);
}
.stat-num {
    font-family: var(--font-head); font-size: 2rem; font-weight: 800;
    color: var(--ember-glow); display: flex; align-items: center; justify-content: center; gap: 0.25rem;
}
.stat-num .spark { color: var(--copper); font-size: 1.25rem; }
.stat-label { font-size: 0.875rem; color: #d6d3d1; margin-top: 0.5rem; }

/* Cards */
.section { padding: 4rem 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-header h2 {
    font-family: var(--font-head); font-size: 2rem; margin-bottom: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.03em;
}
.section-header p { color: var(--gray); }
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.card {
    background: white; border-radius: var(--radius); overflow: hidden;
    border: 1px solid #e7e5e4; transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 1.25rem; }
.card-body h3 {
    font-family: var(--font-head); margin-bottom: 0.5rem;
    text-transform: uppercase; letter-spacing: 0.02em;
}
.card-body p { font-size: 0.95rem; color: var(--gray); }

/* Method steps */
.method-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.method-step {
    text-align: center; padding: 1.25rem 0.75rem;
    background: white; border-radius: var(--radius);
    border-top: 3px solid var(--copper);
    box-shadow: 0 2px 8px rgba(41, 37, 36, 0.06);
}
.step-num {
    width: 36px; height: 36px; margin: 0 auto 0.75rem;
    background: linear-gradient(145deg, var(--copper), var(--ember));
    color: white; border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-weight: 700; font-size: 0.875rem;
}
.method-step h3 { font-family: var(--font-head); font-size: 0.9rem; margin-bottom: 0.35rem; text-transform: uppercase; }
.method-step p { font-size: 0.8rem; color: var(--gray); }

/* Programs preview */
.programs-preview { background: var(--warm); }
.program-list { display: grid; gap: 1rem; max-width: 800px; margin: 0 auto; }
.program-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.5rem; background: white; border-radius: var(--radius);
    border: 1px solid #e7e5e4; border-left: 3px solid var(--copper);
}
.program-item h3 { font-family: var(--font-head); font-size: 1rem; text-transform: uppercase; }
.program-item span { color: var(--copper); font-weight: 700; font-size: 0.875rem; }

/* FAQ mini */
.faq-mini { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e7e5e4; padding: 1.25rem 0; }
.faq-item h3 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 0.5rem; text-transform: uppercase; }
.faq-item p { color: var(--gray); font-size: 0.95rem; }

/* Disclaimer */
.disclaimer-box {
    background: #fff7ed; border: 1px solid #fdba74;
    border-radius: var(--radius); padding: 1.25rem 1.5rem;
    font-size: 0.9rem; color: #9a3412; margin: 2rem 0;
}

/* CTA */
.cta-section {
    padding: 4rem 0; text-align: center;
    background: linear-gradient(145deg, var(--charcoal), var(--forge-dark));
    color: white; border-top: 3px solid var(--copper);
}
.cta-section h2 {
    font-family: var(--font-head); font-size: 2rem; margin-bottom: 1rem;
    text-transform: uppercase; letter-spacing: 0.04em;
}
.cta-section p { opacity: 0.9; margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Page hero */
.page-hero {
    padding: 3rem 0;
    background: linear-gradient(165deg, var(--forge-dark), var(--charcoal));
    color: white;
}
.page-hero h1 {
    font-family: var(--font-head); font-size: 2.25rem; margin-bottom: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.03em;
}
.page-hero p { color: #d6d3d1; max-width: 640px; }

/* Prose */
.prose { max-width: 800px; }
.prose h2 { font-family: var(--font-head); margin: 2rem 0 1rem; font-size: 1.5rem; text-transform: uppercase; }
.prose h3 { margin: 1.5rem 0 0.75rem; font-size: 1.15rem; }
.prose p { margin-bottom: 1rem; color: #44403c; }
.prose ul { margin: 1rem 0 1rem 1.5rem; }
.prose li { margin-bottom: 0.5rem; }

/* Programs page */
.program-card {
    display: grid; grid-template-columns: 280px 1fr; gap: 2rem;
    padding: 2rem 0; border-bottom: 1px solid #e7e5e4;
}
.program-card:not(:has(img)) { grid-template-columns: 1fr; }
.program-card:last-child { border-bottom: none; }
.program-card img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; border: 2px solid var(--copper); }
.program-card h2 {
    font-family: var(--font-head); font-size: 1.35rem; margin-bottom: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.02em;
}
.program-price { color: var(--copper); font-weight: 700; margin-top: 1rem; font-family: var(--font-head); }

.page-header { padding: 3rem 0 1.5rem; }
.page-header h1 { font-family: var(--font-head); font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 0.75rem; text-transform: uppercase; }
.page-header p { color: var(--text-muted); max-width: 720px; line-height: 1.7; }
.content-block { max-width: 800px; margin-bottom: 2.5rem; }
.content-block h2 { font-family: var(--font-head); font-size: 1.35rem; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.02em; }
.content-block p { margin-bottom: 1rem; }
.programs-intro { max-width: 800px; margin-bottom: 2rem; line-height: 1.7; }
.content-image { margin: 2rem 0; max-width: 800px; }
.content-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); border: 2px solid var(--copper); }
.content-image figcaption { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.5rem; }
.cta-block { text-align: center; margin-top: 3rem; padding: 2rem; background: var(--warm); border-radius: var(--radius); border: 1px solid #e7e5e4; }
.service-row { display: grid; grid-template-columns: 240px 1fr; gap: 1.75rem; align-items: start; padding: 2rem 0; border-bottom: 1px solid #e7e5e4; }
.service-row:last-child { border-bottom: none; }
.service-row img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; border: 2px solid var(--copper); }
.service-row-full { padding: 2rem 0; border-bottom: 1px solid #e7e5e4; max-width: 800px; }
.service-price { color: var(--copper); font-weight: 700; margin-top: 0.75rem; font-family: var(--font-head); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card {
    padding: 2rem; background: white; border-radius: var(--radius);
    border: 1px solid #e7e5e4; border-top: 3px solid var(--copper);
}
.service-card img { border-radius: var(--radius); margin-bottom: 1rem; aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.service-card h3 { font-family: var(--font-head); margin-bottom: 0.75rem; text-transform: uppercase; }
.service-price { font-weight: 700; color: var(--copper); margin-top: 1rem; font-family: var(--font-head); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.about-img img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; border: 2px solid var(--copper); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form label { display: block; font-weight: 500; margin-bottom: 0.35rem; font-size: 0.9rem; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 0.75rem 1rem; border: 1px solid #d6d3d1;
    border-radius: var(--radius); font-family: inherit; font-size: 1rem; margin-bottom: 1rem;
    background: white;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .checkbox-label {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-size: 0.875rem; margin-bottom: 1rem;
}
.contact-form input[type="checkbox"] { width: auto; margin-top: 0.2rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-msg { padding: 1rem; border-radius: var(--radius); margin-bottom: 1rem; }
.form-msg.success { background: #dcfce7; color: #166534; }
.form-msg.error { background: #fee2e2; color: #991b1b; }
.contact-info img { border-radius: var(--radius); margin-top: 1.5rem; aspect-ratio: 16/10; object-fit: cover; width: 100%; border: 2px solid var(--copper); }

/* FAQ full */
.faq-full .faq-item { padding: 1.5rem 0; }
.faq-full h2 { font-size: 1.1rem; margin-bottom: 0.75rem; }

/* Legal */
.legal-content { padding: 3rem 0 4rem; }
.legal-content h1 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 1.5rem; text-transform: uppercase; }
.legal-content h2 { font-family: var(--font-head); font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.legal-content p, .legal-content li { margin-bottom: 0.75rem; color: #44403c; line-height: 1.7; }
.legal-content ul { margin-left: 1.5rem; }

/* 404 */
.error-page {
    min-height: 60vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 4rem 1rem;
    background: var(--charcoal); color: white;
}
.error-page h1 {
    font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 1rem;
    text-transform: uppercase; color: var(--ember-glow);
}
.error-page p { color: #d6d3d1; margin-bottom: 2rem; }

/* Footer */
.site-footer {
    background: var(--forge-dark); color: #d6d3d1;
    padding: 3rem 0 1.5rem; border-top: 3px solid var(--copper);
}
.footer-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    margin-bottom: 2rem;
}
.footer-brand strong {
    font-family: var(--font-head); font-size: 1.1rem; color: white;
    text-transform: uppercase; letter-spacing: 0.04em;
}
.footer-brand p { margin-top: 0.5rem; font-size: 0.9rem; }
.footer-links, .footer-legal { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-legal a, .footer-contact a { color: #d6d3d1; font-size: 0.9rem; }
.footer-links a:hover, .footer-legal a:hover, .footer-contact a:hover { color: var(--ember-glow); }
.footer-contact p { font-size: 0.875rem; margin-bottom: 0.35rem; }
.footer-host { opacity: 0.7; font-size: 0.8rem !important; }
.footer-disclaimer {
    font-size: 0.8rem; color: #a8a29e; padding: 1rem 0;
    border-top: 1px solid var(--charcoal-light); line-height: 1.6;
}
.footer-copy { font-size: 0.8rem; color: #78716c; text-align: center; }

/* Cookie banner */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
    background: var(--forge-dark); color: white; padding: 1.25rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    border-top: 2px solid var(--copper);
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
    max-width: 1140px; margin: 0 auto;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.cookie-inner p { font-size: 0.9rem; flex: 1; min-width: 200px; }
.cookie-inner a { color: var(--ember-glow); }
.cookie-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-grid, .about-grid, .contact-grid, .cards-grid, .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .method-steps { grid-template-columns: repeat(2, 1fr); }
    .program-card { grid-template-columns: 1fr; }
    .service-row { grid-template-columns: 1fr; }
    .main-nav {
        display: none; position: absolute; top: 72px; left: 0; right: 0;
        background: var(--charcoal); flex-direction: column; padding: 1rem;
        border-bottom: 2px solid var(--copper);
    }
    .main-nav.open { display: flex; }
    .nav-toggle { display: flex; }
}
