:root {
    --primary: #8B4A6B;
    --primary-dark: #6B3A52;
    --secondary: #D4A574;
    --accent: #5C8A6F;
    --text-dark: #2D2D2D;
    --text-light: #666666;
    --bg-light: #FAF7F5;
    --bg-cream: #F5EDE6;
    --bg-white: #FFFFFF;
    --border: #E8E0D8;
    --shadow: rgba(139, 74, 107, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header - Magazine Style */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.ad-disclosure {
    background: var(--bg-cream);
    padding: 8px 24px;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero - Magazine Editorial */
.hero-magazine {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-white);
}

.hero-content {
    flex: 1 1 45%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-label {
    display: inline-block;
    background: var(--secondary);
    color: var(--bg-white);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-image {
    flex: 1 1 55%;
    min-height: 500px;
    background-color: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-white);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--bg-white);
}

.btn-accent {
    background: var(--accent);
    color: var(--bg-white);
}

.btn-accent:hover {
    background: #4A7259;
    color: var(--bg-white);
}

/* Magazine Grid Sections */
.section {
    padding: 80px 0;
}

.section-cream {
    background: var(--bg-cream);
}

.section-white {
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Magazine Multi-Column Layout */
.magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.magazine-col-main {
    flex: 2 1 600px;
}

.magazine-col-side {
    flex: 1 1 280px;
}

.magazine-article {
    margin-bottom: 48px;
}

.magazine-article h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.magazine-article p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.article-image {
    width: 100%;
    height: 280px;
    background-color: var(--bg-cream);
    margin-bottom: 20px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sidebar Elements */
.sidebar-box {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 28px;
    margin-bottom: 28px;
}

.sidebar-box h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 12px 40px var(--shadow);
}

.service-image {
    height: 200px;
    background-color: var(--bg-cream);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.price-note {
    font-size: 12px;
    color: var(--text-light);
}

/* Testimonials */
.testimonials-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.testimonial-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background: var(--bg-white);
    padding: 40px;
    border-left: 4px solid var(--secondary);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-location {
    font-size: 13px;
    color: var(--text-light);
}

/* About Split */
.about-split {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1 1 400px;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 1 1 400px;
    height: 420px;
    background-color: var(--bg-cream);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features List */
.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 28px;
}

.feature-item {
    flex: 1 1 200px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* Forms */
.form-container {
    background: var(--bg-white);
    padding: 48px;
    border: 1px solid var(--border);
    max-width: 640px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Contact Info */
.contact-info {
    background: var(--bg-cream);
    padding: 40px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    padding: 80px 24px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: var(--bg-white);
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--bg-cream);
    color: var(--primary-dark);
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 24px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1 1 200px;
}

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

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

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

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

.footer-legal a:hover {
    color: var(--secondary);
}

/* Disclaimer */
.disclaimer {
    background: var(--bg-cream);
    padding: 20px 24px;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px 24px;
    display: none;
    z-index: 1000;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    flex: 1 1 400px;
    font-size: 14px;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.cookie-accept {
    background: var(--accent);
    color: var(--bg-white);
}

.cookie-accept:hover {
    background: #4A7259;
}

.cookie-reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

/* Thanks Page */
.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 24px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--bg-white);
}

.thanks-container h1 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.thanks-container p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 900px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px 24px;
        border-top: 1px solid var(--border);
        gap: 0;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-toggle {
        display: block;
    }

    .hero-content {
        padding: 60px 24px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-image {
        min-height: 350px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

    .footer-col {
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .form-container {
        padding: 32px 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
