:root {
    --color-primary: #1a5f7a;
    --color-secondary: #57837b;
    --color-accent: #c38e70;
    --color-dark: #0d2e3f;
    --color-light: #f8f6f3;
    --color-white: #ffffff;
    --color-text: #2c3e50;
    --color-text-muted: #6c7a89;
    --color-border: #e0dcd5;
    --color-fallback-hero: #1a5f7a;
    --color-fallback-card: #d4e4e8;
    --color-fallback-section: #e8e4df;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-light);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

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

.ad-disclosure {
    background-color: var(--color-dark);
    color: var(--color-white);
    font-size: 12px;
    text-align: center;
    padding: 6px 16px;
}

.header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    margin: 5px 0;
    transition: var(--transition);
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background-color: var(--color-white);
}

.hero-content h1 {
    margin-bottom: 24px;
    font-size: 3rem;
}

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

.hero-image {
    flex: 1;
    background-color: var(--color-fallback-hero);
    position: relative;
    overflow: hidden;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

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

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

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

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

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

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

.section {
    padding: 80px 0;
}

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

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--color-white);
}

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

.section-header h2 {
    margin-bottom: 16px;
}

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

.split-section {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

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

.split-content h2 {
    margin-bottom: 20px;
}

.split-content p {
    margin-bottom: 24px;
    color: var(--color-text-muted);
}

.split-image {
    flex: 1;
    background-color: var(--color-fallback-section);
    position: relative;
}

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

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card-image {
    height: 220px;
    background-color: var(--color-fallback-card);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 28px;
}

.service-card-body h3 {
    margin-bottom: 12px;
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.service-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.service-price .price-note {
    font-size: 14px;
    color: var(--color-text-muted);
}

.features-list {
    list-style: none;
    margin-bottom: 24px;
}

.features-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 600;
}

.testimonials-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: var(--color-white);
    padding: 100px 0;
}

.testimonials-section h2 {
    color: var(--color-white);
    text-align: center;
    margin-bottom: 56px;
}

.testimonials-layout {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author-info strong {
    display: block;
    font-size: 15px;
}

.testimonial-author-info span {
    font-size: 13px;
    opacity: 0.8;
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    gap: 16px;
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-details .label {
    font-weight: 600;
    color: var(--color-dark);
    min-width: 120px;
}

.contact-form-wrapper {
    flex: 1;
    background-color: var(--color-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-body);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: var(--color-light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26,95,122,0.1);
}

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

.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 24px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.8;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: var(--color-text-muted);
}

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

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

.cookie-buttons .btn {
    padding: 12px 24px;
    font-size: 14px;
}

.page-header {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

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

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

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 2.5rem;
    color: var(--color-white);
}

.thanks-content h1 {
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-intro-content {
    flex: 1;
}

.about-intro-content h2 {
    margin-bottom: 24px;
}

.about-intro-content p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.about-intro-image {
    flex: 1;
    background-color: var(--color-fallback-section);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
}

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

.values-grid {
    display: flex;
    gap: 32px;
}

.value-card {
    flex: 1;
    text-align: center;
    padding: 40px 32px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--color-text-muted);
}

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

.team-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.team-member {
    text-align: center;
    max-width: 280px;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: var(--color-fallback-card);
    margin: 0 auto 20px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    margin-bottom: 4px;
}

.team-member span {
    font-size: 14px;
    color: var(--color-text-muted);
}

.disclaimer {
    background-color: var(--color-light);
    border-left: 4px solid var(--color-accent);
    padding: 20px 24px;
    margin: 40px 0;
    font-size: 14px;
    color: var(--color-text-muted);
}

.cta-banner {
    background: linear-gradient(135deg, var(--color-accent) 0%, #a87860 100%);
    color: var(--color-white);
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 40px 0;
}

.cta-banner h3 {
    color: var(--color-white);
    margin-bottom: 16px;
    font-size: 1.8rem;
}

.cta-banner p {
    margin-bottom: 24px;
    opacity: 0.9;
}

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

.cta-banner .btn:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
}

@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 48px 32px;
    }

    .hero-image {
        height: 400px;
    }

    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 48px 32px;
    }

    .split-image {
        height: 350px;
        position: relative;
    }

    .split-image img {
        position: relative;
    }

    .testimonials-layout {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .about-intro {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .team-grid {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 80px 32px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 16px;
    }

    .nav.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
        z-index: 101;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}
