/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ===== VARIABLES ===== */
:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

::selection { background: var(--black); color: var(--white); }
:focus-visible { outline: 2px solid var(--black); outline-offset: 3px; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--black); outline-offset: 3px; }

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--gray-800); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.2); }

.section-label {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--black);
    margin-bottom: 20px;
}

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { font-family: var(--font-heading); font-size: 22px; font-weight: 700; letter-spacing: 2px; color: var(--black); text-decoration: none; line-height: 1; }
.nav-logo span { font-size: 9px; letter-spacing: 1.5px; font-weight: 400; color: var(--gray-500); display: block; margin-top: 4px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; color: var(--gray-600); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--black); }
.nav-cta { padding: 10px 22px !important; font-size: 12px !important; background: var(--black); color: var(--white) !important; letter-spacing: 0.5px !important; }
.nav-cta:hover { background: var(--gray-800); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--black); transition: all 0.3s ease; }

/* ===== HERO ===== */
.hero { padding: 160px 0 120px; background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.03) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-label { font-family: var(--font-heading); font-weight: 500; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 28px; display: flex; align-items: center; gap: 12px; }
.hero-label::before { content: ''; width: 32px; height: 1px; background: var(--gray-500); }
.hero h1 { font-family: var(--font-heading); font-size: clamp(44px, 7.5vw, 84px); font-weight: 700; line-height: 0.98; margin-bottom: 32px; letter-spacing: -2.5px; }
.hero p { font-size: 18px; font-weight: 300; line-height: 1.6; color: var(--gray-300); margin-bottom: 40px; max-width: 560px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 56px; margin-top: 72px; padding-top: 40px; border-top: 1px solid var(--gray-800); }
.hero-stat h3 { font-family: var(--font-heading); font-size: 40px; font-weight: 700; color: var(--white); letter-spacing: -1px; line-height: 1; margin-bottom: 6px; }
.hero-stat p { font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 0; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--white); }
.services-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card { padding: 40px 32px; border: 1px solid var(--gray-200); transition: all 0.25s ease; background: var(--white); }
.service-card:hover { border-color: var(--black); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.service-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--gray-300); margin-bottom: 24px; color: var(--black); }
.service-icon svg { width: 22px; height: 22px; stroke: currentColor; }
.service-card:hover .service-icon { background: var(--black); color: var(--white); border-color: var(--black); }
.service-card h3 { font-family: var(--font-heading); font-size: 19px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 10px; color: var(--black); }
.service-card p { font-size: 15px; color: var(--gray-600); line-height: 1.65; }

/* ===== OFFER ===== */
.offer { padding: 100px 0; background: var(--gray-50); }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.offer-content h2 { font-family: var(--font-heading); font-size: clamp(30px, 4vw, 44px); font-weight: 700; line-height: 1.05; letter-spacing: -1px; color: var(--black); margin-bottom: 20px; }
.offer-content > p { font-size: 16px; color: var(--gray-600); margin-bottom: 32px; line-height: 1.7; }
.offer-features { list-style: none; margin-bottom: 36px; }
.offer-features li { padding: 12px 0; border-bottom: 1px solid var(--gray-200); font-size: 15px; color: var(--gray-700); display: flex; align-items: flex-start; gap: 12px; }
.offer-features li::before { content: '\2014'; color: var(--black); font-weight: 700; flex-shrink: 0; }
.offer-card { background: var(--black); color: var(--white); padding: 48px 40px; }
.offer-card-label { font-family: var(--font-heading); font-weight: 500; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 12px; }
.offer-card h3 { font-family: var(--font-heading); font-size: 28px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 8px; }
.offer-card .offer-subtitle { font-size: 15px; color: var(--gray-400); margin-bottom: 28px; }
.offer-card-features { list-style: none; margin-bottom: 32px; }
.offer-card-features li { padding: 10px 0; font-size: 15px; color: var(--gray-300); display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--gray-800); }
.offer-card-features li svg { flex-shrink: 0; }
.offer-card .btn-white { width: 100%; text-align: center; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image { width: 100%; aspect-ratio: 4/5; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray-400); border: 1px solid var(--gray-200); overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-family: var(--font-heading); font-size: clamp(30px, 4vw, 44px); font-weight: 700; line-height: 1.05; letter-spacing: -1px; color: var(--black); margin-bottom: 20px; }
.about-content p { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.about-credentials { display: flex; gap: 40px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--gray-200); }
.about-credential h4 { font-family: var(--font-heading); font-weight: 500; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 6px; }
.about-credential p { font-size: 15px; font-weight: 500; color: var(--black); margin-bottom: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--gray-50); }
.testimonials-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); padding: 40px 36px; border: 1px solid var(--gray-200); transition: all 0.25s ease; }
.testimonial-card:hover { border-color: var(--black); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.testimonial-stars { color: var(--black); font-size: 14px; letter-spacing: 3px; margin-bottom: 20px; }
.testimonial-card blockquote { font-size: 16px; font-weight: 300; line-height: 1.65; color: var(--gray-800); margin-bottom: 24px; font-style: normal; }
.testimonial-card blockquote::before { content: '\201C'; }
.testimonial-card blockquote::after { content: '\201D'; }
.testimonial-author { font-family: var(--font-heading); font-size: 14px; font-weight: 700; letter-spacing: -0.2px; color: var(--black); }
.testimonial-detail { font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-500); margin-top: 4px; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--white); }
.faq-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { width: 100%; padding: 28px 0; background: none; border: none; text-align: left; font-family: var(--font-heading); font-size: 18px; font-weight: 500; letter-spacing: -0.3px; color: var(--black); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.faq-question:hover { color: var(--gray-700); }
.faq-question::after { content: '+'; font-size: 24px; font-weight: 300; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding-bottom: 24px; font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ===== CTA ===== */
.cta-section { padding: 100px 0; background: var(--black); text-align: center; }
.cta-section h2 { font-family: var(--font-heading); font-size: clamp(36px, 5.5vw, 56px); font-weight: 700; line-height: 1.05; letter-spacing: -1.5px; color: var(--white); margin-bottom: 16px; }
.cta-section p { font-size: 17px; color: var(--gray-400); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { padding: 48px 0; background: var(--gray-900); border-top: 1px solid var(--gray-800); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-logo { font-family: var(--font-heading); font-size: 18px; font-weight: 700; letter-spacing: 2px; color: var(--white); line-height: 1; }
.footer-logo span { font-size: 9px; letter-spacing: 1.5px; font-weight: 400; color: var(--gray-500); display: block; margin-top: 4px; text-transform: uppercase; }
.footer-info { text-align: right; }
.footer-info p { font-size: 13px; color: var(--gray-500); line-height: 1.8; }
.footer-info a { color: var(--gray-400); text-decoration: none; transition: color 0.2s; }
.footer-info a:hover { color: var(--white); }
.footer-bottom { text-align: center; padding-top: 32px; margin-top: 32px; border-top: 1px solid var(--gray-800); }
.footer-bottom p { font-size: 12px; color: var(--gray-600); }

/* ===== MOBILE MENU ===== */
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 999; padding: 40px 24px; }
.mobile-menu.active { display: block; }
.mobile-menu a { display: block; padding: 16px 0; font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: var(--black); text-decoration: none; border-bottom: 1px solid var(--gray-100); }
.mobile-menu .btn { margin-top: 24px; width: 100%; text-align: center; }

/* ===== BLOG INDEX ===== */
.blog-list { padding: 140px 0 100px; }
.blog-list-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.blog-card { border: 1px solid var(--gray-200); transition: all 0.3s ease; text-decoration: none; color: inherit; display: block; }
.blog-card:hover { border-color: var(--black); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.blog-card-image { width: 100%; aspect-ratio: 16/9; background: var(--gray-100); overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 28px 24px; }
.blog-card-date { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 8px; }
.blog-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; color: var(--black); margin-bottom: 8px; line-height: 1.3; }
.blog-card p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }

/* ===== BLOG POST ===== */
.blog-post { padding: 140px 0 100px; }
.blog-post-header { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.blog-post-header h1 { font-family: var(--font-heading); font-size: clamp(28px, 5vw, 44px); font-weight: 700; line-height: 1.15; color: var(--black); margin-bottom: 16px; }
.blog-post-meta { font-size: 14px; color: var(--gray-500); }
.blog-post-content { max-width: 720px; margin: 0 auto; }
.blog-post-content h2 { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--black); margin: 40px 0 16px; }
.blog-post-content h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 600; color: var(--black); margin: 32px 0 12px; }
.blog-post-content p { font-size: 17px; line-height: 1.8; color: var(--gray-700); margin-bottom: 20px; }
.blog-post-content ul, .blog-post-content ol { margin: 0 0 20px 24px; }
.blog-post-content li { font-size: 17px; line-height: 1.8; color: var(--gray-700); margin-bottom: 8px; }
.blog-post-content img { width: 100%; margin: 32px 0; }
.blog-post-content a { color: var(--black); font-weight: 500; }
.blog-post-cta { max-width: 720px; margin: 64px auto 0; padding: 40px; background: var(--gray-50); border: 1px solid var(--gray-200); text-align: center; }
.blog-post-cta h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.blog-post-cta p { font-size: 15px; color: var(--gray-600); margin-bottom: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero { padding: 120px 0 80px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat h3 { font-size: 28px; }
    .offer-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { aspect-ratio: 16/9; }
    .about-credentials { flex-direction: column; gap: 16px; }
    .services, .offer, .about, .testimonials, .faq, .cta-section { padding: 80px 0; }
    .blog-list, .blog-post { padding: 120px 0 80px; }
}

/* ===== GHOST KOENIG EDITOR CARDS ===== */
.kg-width-wide { width: 100vw; max-width: 1200px; position: relative; left: 50%; transform: translateX(-50%); margin: 40px 0; }
.kg-width-full { width: 100vw; position: relative; left: 50%; transform: translateX(-50%); margin: 40px 0; }
.kg-width-wide img, .kg-width-full img { width: 100%; height: auto; display: block; }
.kg-image-card figcaption, .kg-embed-card figcaption { text-align: center; font-size: 14px; color: var(--gray-600); margin-top: 12px; }
.kg-bookmark-card { margin: 32px 0; }
.kg-bookmark-container { display: flex; border: 1px solid var(--gray-200); text-decoration: none; color: inherit; }
.kg-bookmark-content { flex: 1; padding: 20px; }
.kg-bookmark-thumbnail img { width: 200px; height: 100%; object-fit: cover; }
.kg-gallery-container { margin: 40px 0; }
.kg-gallery-row { display: flex; gap: 8px; margin-bottom: 8px; }
.kg-gallery-image img { width: 100%; height: auto; display: block; }
