:root {
    --color-primary: #2c3e50;
    --color-secondary: #8b7355;
    --color-accent: #c9a961;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #faf9f7;
    --color-bg-dark: #2c3e50;
    --color-white: #ffffff;
    --color-border: #e5e5e5;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --max-width: 1200px;
    --narrow-width: 680px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
}

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

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

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

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

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    color: var(--color-white);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

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

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

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

.btn-accept:hover {
    background: #d4b46a;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--color-text-light);
    background: var(--color-border);
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: transform 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--color-text);
    font-size: 0.95rem;
}

.nav-list a:hover {
    color: var(--color-secondary);
}

.editorial-layout {
    width: 100%;
}

.hero-editorial {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    inset: 0;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 4rem 2rem 3rem;
    color: var(--color-white);
}

.hero-text-overlay h1 {
    color: var(--color-white);
    max-width: var(--narrow-width);
    margin: 0 auto 1rem;
}

.hero-text-overlay .lead {
    max-width: var(--narrow-width);
    margin: 0 auto;
    font-size: 1.2rem;
    opacity: 0.9;
}

.narrow-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
    padding: 3rem 2rem;
}

.story-intro {
    padding-top: 4rem;
}

.drop-cap::first-letter {
    float: left;
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 0.8;
    padding-right: 0.5rem;
    color: var(--color-secondary);
}

.inline-image-left,
.inline-image-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: var(--max-width);
    margin: 2rem auto;
    padding: 0 2rem;
    gap: 3rem;
}

.inline-image-left .image-wrapper,
.inline-image-right .image-wrapper {
    flex: 1;
    min-width: 300px;
}

.inline-image-left .image-text,
.inline-image-right .image-text {
    flex: 1;
    min-width: 300px;
}

.inline-image-right {
    flex-direction: row-reverse;
}

.image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.text-link {
    display: inline-block;
    color: var(--color-secondary);
    border-bottom: 1px solid var(--color-secondary);
    padding-bottom: 2px;
    margin-top: 0.5rem;
}

.text-link:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.problem-section.dark-bg {
    background: var(--color-bg-dark);
    color: var(--color-white);
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.problem-section h2 {
    color: var(--color-white);
}

.insight-section blockquote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--color-secondary);
    border-left: 3px solid var(--color-accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.services-preview {
    background: var(--color-white);
    padding: 4rem 2rem;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 2rem auto;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.card-image {
    height: 200px;
}

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

.service-card h3,
.service-card p,
.service-card .price {
    padding: 0 1.5rem;
}

.service-card h3 {
    padding-top: 1.5rem;
}

.service-card .price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-secondary);
    padding-bottom: 1.5rem;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.testimonial-inline {
    padding: 3rem 2rem;
}

.testimonial {
    background: var(--color-white);
    padding: 2.5rem;
    border-left: 4px solid var(--color-accent);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
}

.full-width-image {
    width: 100%;
    height: 400px;
    margin: 3rem 0;
}

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

.trust-section {
    padding: 4rem 2rem;
}

.trust-list {
    list-style: none;
    padding: 0;
}

.trust-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

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

.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3d5a73 100%);
    color: var(--color-white);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--color-white);
}

.inline-form {
    margin-top: 2rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row input,
.form-row select {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    border: none;
    font-size: 1rem;
    font-family: var(--font-body);
}

.form-row select {
    background: var(--color-white);
    cursor: pointer;
}

.final-thought {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-secondary);
    padding: 4rem 2rem;
}

.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.link-group {
    flex: 1;
    min-width: 150px;
}

.link-group h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.link-group a:hover {
    color: var(--color-white);
}

.link-group p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.email-display {
    margin-top: 1rem;
    color: var(--color-accent);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.page-header {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
}

.page-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: var(--max-width);
    margin: 3rem auto;
    padding: 0 2rem;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

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

.about-text {
    flex: 1;
    min-width: 300px;
}

.team-section {
    background: var(--color-white);
    padding: 4rem 2rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: var(--color-secondary);
    font-style: italic;
    margin-bottom: 1rem;
}

.services-full {
    padding: 3rem 2rem;
}

.service-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto 4rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

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

.service-detail-text {
    flex: 1;
    min-width: 300px;
}

.service-detail-text .price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-secondary);
    display: block;
    margin: 1.5rem 0;
}

.service-detail-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-detail-text li {
    margin-bottom: 0.5rem;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: var(--max-width);
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.contact-map {
    flex: 1;
    min-width: 280px;
    background: var(--color-border);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.legal-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-content h2 {
    margin-top: 2rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0;
        display: none;
        border-top: 1px solid var(--color-border);
    }

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

    .nav-list li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--color-border);
    }

    .hero-editorial {
        height: 60vh;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .inline-image-left,
    .inline-image-right {
        flex-direction: column;
    }

    .image-wrapper img {
        height: 300px;
    }

    .service-detail {
        flex-direction: column;
    }

    .service-detail:nth-child(even) {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .header-inner {
        padding: 0.75rem 1rem;
    }

    .ad-disclosure {
        display: none;
    }

    .narrow-content {
        padding: 2rem 1rem;
    }

    .form-row {
        flex-direction: column;
    }
}
