:root {
    --color-primary: #2c3e50;
    --color-secondary: #8e6b5a;
    --color-accent: #c9a86c;
    --color-light: #f8f6f3;
    --color-dark: #1a1a1a;
    --color-text: #333333;
    --color-muted: #6b6b6b;
    --color-white: #ffffff;
    --color-overlay: rgba(28, 28, 28, 0.55);
    --color-card-bg: #f5f0eb;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', sans-serif;
    --transition: all 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-white);
}

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

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

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

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

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

p { margin-bottom: 1rem; }

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

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

.ad-disclosure {
    background-color: var(--color-dark);
    color: var(--color-white);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background-color: var(--color-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header.scrolled .nav-link {
    color: var(--color-primary);
}

.header.scrolled .brand-name {
    color: var(--color-primary);
}

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

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-link {
    color: var(--color-white);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 0;
    position: relative;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition);
}

.header.scrolled .hamburger span {
    background-color: var(--color-primary);
}

.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-card-bg);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-overlay), rgba(28, 28, 28, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-white);
    padding: 0 20px;
    max-width: 800px;
}

.hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--color-accent);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

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

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

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

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

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

.section {
    padding: 100px 0;
}

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

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

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

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

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

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

.visual-block {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-card-bg);
}

.visual-block-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background-color: var(--color-card-bg);
}

.visual-block-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-block-content {
    position: relative;
    margin-left: auto;
    width: 50%;
    padding: 60px 80px;
    background-color: var(--color-white);
    z-index: 10;
}

.visual-block.reverse .visual-block-bg {
    left: auto;
    right: 0;
}

.visual-block.reverse .visual-block-content {
    margin-left: 0;
    margin-right: auto;
}

.split-section {
    display: flex;
    min-height: 600px;
}

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

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

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background-color: var(--color-white);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.service-card-image {
    height: 220px;
    background-color: var(--color-card-bg);
    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: 30px;
}

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

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

.service-card-price {
    font-size: 1.4rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 20px;
}

.testimonial-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-card-bg);
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 300px;
    background-color: var(--color-white);
    padding: 40px;
    position: relative;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--color-text);
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-card-bg);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.testimonial-role {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.cta-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-card-bg);
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
}

.cta-content {
    position: relative;
    z-index: 10;
    color: var(--color-white);
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.form-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 18px;
    font-size: 1rem;
    border: 1px solid #ddd;
    background-color: var(--color-white);
    font-family: var(--font-body);
    transition: var(--transition);
}

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

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

.form-submit {
    width: 100%;
    padding: 18px;
    margin-top: 10px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.feature-item {
    flex: 1 1 280px;
    max-width: 350px;
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-light);
    border-radius: 50%;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-secondary);
}

.feature-title {
    margin-bottom: 12px;
}

.feature-text {
    color: var(--color-muted);
    font-size: 0.95rem;
}

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

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

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

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-title {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--color-white);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-contact-item {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

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

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

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

.disclaimer {
    background-color: var(--color-card-bg);
    padding: 40px;
    margin-top: 60px;
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.8;
}

.references-section {
    padding: 60px 0;
    background-color: var(--color-light);
}

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

.references-list li {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.references-list a {
    color: var(--color-secondary);
    word-break: break-all;
}

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

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

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

.page-content {
    padding: 80px 0;
}

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

.page-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content ul,
.page-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 10px;
}

.contact-info {
    background-color: var(--color-light);
    padding: 40px;
    margin-bottom: 40px;
}

.contact-info-item {
    margin-bottom: 20px;
}

.contact-info-label {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

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

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

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

.thanks-title {
    margin-bottom: 20px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 25px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.7;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.cookie-accept:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

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

.cookie-reject:hover {
    border-color: var(--color-white);
}

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 1001;
    padding: 80px 40px;
    transition: var(--transition);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-nav {
    list-style: none;
}

.mobile-menu-nav li {
    margin-bottom: 20px;
}

.mobile-menu-nav a {
    font-size: 1.1rem;
    color: var(--color-primary);
    letter-spacing: 1px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1024px) {
    .visual-block-bg {
        width: 50%;
    }

    .visual-block-content {
        width: 55%;
        padding: 40px 50px;
    }

    .split-content {
        padding: 40px 50px;
    }
}

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

    .nav-main {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 70px 0;
    }

    .visual-block {
        flex-direction: column;
        min-height: auto;
    }

    .visual-block-bg {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .visual-block-content {
        width: 100%;
        padding: 40px 30px;
    }

    .visual-block.reverse {
        flex-direction: column;
    }

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

    .split-image {
        height: 300px;
    }

    .split-content {
        padding: 40px 30px;
    }

    .form-container {
        padding: 30px;
    }

    .footer-grid {
        gap: 30px;
    }

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

    .header-inner {
        padding: 15px 20px;
    }

    .sticky-cta {
        bottom: auto;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    .sticky-cta .btn {
        padding: 12px 20px;
        font-size: 0.75rem;
        writing-mode: vertical-rl;
        text-orientation: mixed;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 14px 30px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
