/* Studio Tromfanke - Premium Stylesheet */
:root {
    --primary: #722f37;
    --primary-dark: #551e24;
    --accent: #c5a059;
    --accent-light: #dfc89d;
    --bg-warm: #faf8f5;
    --bg-white: #ffffff;
    --text-dark: #2c2625;
    --text-muted: #6b6361;
    --border-color: #e6e2dd;
    --font-header: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-warm);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand-name {
    font-family: var(--font-header);
    font-weight: 700;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--text-dark);
    padding: 10px 20px;
    z-index: 10000;
    transition: top 0.2s;
    font-weight: bold;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--primary);
}

/* Accessibility Focus Outline */
*:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* Layout Elements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 40px;
    height: 40px;
}

.brand-text h1 {
    font-size: 1.5rem;
    color: var(--primary);
}

.brand-text span {
    font-size: 0.75rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

nav a:hover, nav a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Mobile Nav */
.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    height: calc(100vh - 73px);
    background: var(--bg-white);
    z-index: 999;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-size: 1.25rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(114,47,55,0.03) 0%, rgba(197,160,89,0.05) 100%);
    padding: 80px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 14px 30px;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(114,47,55,0.15);
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: rgba(114,47,55,0.05);
    color: var(--primary);
}

.hero-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(44,38,37,0.1);
}

/* Custom Wave Separator */
.custom-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
}

/* Stats */
.stats {
    background-color: var(--bg-white);
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--text-muted);
    font-weight: 500;
}

/* Steps - How it works */
.steps {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.step-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-family: var(--font-header);
    color: rgba(197,160,89,0.2);
    font-weight: 700;
}

.step-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.step-card h3 {
    margin-bottom: 10px;
}

/* Features Block - Asymmetric */
.features-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.asymmetric-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.asymmetric-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.asymmetric-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.asymmetric-text p {
    margin-bottom: 20px;
}

.asymmetric-text ul {
    list-style: none;
}

.asymmetric-text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.asymmetric-text ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Services */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-box {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.service-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-body {
    padding: 30px;
}

.service-body h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.service-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Pricing */
.pricing {
    background: var(--bg-white);
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.price-card {
    border: 1px solid var(--border-color);
    background: var(--bg-warm);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border: 2px solid var(--accent);
    background: var(--bg-white);
    box-shadow: 0 15px 35px rgba(114,47,55,0.06);
    transform: scale(1.03);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price-val {
    font-family: var(--font-header);
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 25px;
}

.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

/* Lead Capture Form */
.form-section {
    padding: 80px 0;
}

.form-wrapper {
    background: var(--bg-white);
    max-width: 750px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.02);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

input[type="text"], input[type="email"], input[type="tel"], textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--bg-warm);
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
}

.consent-label input {
    margin-top: 4px;
}

/* FAQ Accordion */
.faq-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.accordion-title {
    display: flex;
    justify-content: flex-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-header);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    justify-content: space-between;
    padding: 10px 0;
}

.accordion-content {
    display: none;
    padding: 10px 0 20px 0;
    color: var(--text-muted);
}

/* Trust Layer & Legal disclosures */
.trust-layer {
    background-color: #2c2625;
    color: #e6e2dd;
    padding: 40px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-wrapper h3 {
    color: var(--accent-light);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.trust-wrapper p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: rgba(230,226,221,0.7);
}

.trust-wrapper a {
    color: var(--accent-light);
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #201b1a;
    color: #a8a09e;
    padding: 50px 0 30px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #a8a09e;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-dark);
    color: var(--bg-white);
    z-index: 9999;
    padding: 20px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    font-size: 0.85rem;
}

.cookie-text a {
    color: var(--accent-light);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.btn-accept {
    background: var(--accent);
    color: var(--text-dark);
}

.btn-decline {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Responsiveness */
@media (max-width: 991px) {
    .hero-grid, .pricing-grid, .services-grid, .asymmetric-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid {
        gap: 30px;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .asymmetric-grid {
        gap: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }
    nav {
        display: none;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}