:root {
    --primary: #2c3e50;
    --secondary: #c9a227;
    --accent: #8b5a2b;
    --bg-light: #faf8f5;
    --bg-dark: #1a1a1a;
    --bg-warm: #f5ede0;
    --text-dark: #2c2c2c;
    --text-light: #f5f5f5;
    --text-muted: #6b6b6b;
    --border: #e0d8cc;
    --shadow: rgba(0,0,0,0.08);
    --radius: 6px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

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

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

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--bg-warm);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-tag {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border-radius: var(--radius);
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 24px;
    max-width: 680px;
}

.hero-lead {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--secondary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent);
    color: #fff;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.editorial-section {
    padding: 80px 0;
}

.editorial-section.alt-bg {
    background: var(--bg-warm);
}

.editorial-section.dark-bg {
    background: var(--bg-dark);
    color: var(--text-light);
}

.section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-intro {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
}

.dark-bg .section-intro {
    color: #bbb;
}

.story-block {
    margin-bottom: 64px;
}

.story-block p {
    font-size: 18px;
    margin-bottom: 24px;
}

.story-block h3 {
    font-size: 26px;
    margin: 48px 0 24px;
    color: var(--primary);
}

.inline-image {
    margin: 48px 0;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--bg-warm);
}

.inline-image img {
    width: 100%;
    display: block;
}

.inline-image figcaption {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-muted);
    background: #fff;
}

.split-layout {
    display: flex;
    gap: 48px;
    align-items: center;
}

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

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    background-color: var(--bg-warm);
    border-radius: var(--radius);
    overflow: hidden;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

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

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

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

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

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

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

.testimonial-block {
    background: #fff;
    border-left: 4px solid var(--secondary);
    padding: 32px;
    margin: 48px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.testimonial-block blockquote {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-block cite {
    font-style: normal;
    font-size: 14px;
    color: var(--text-muted);
}

.benefits-list {
    list-style: none;
    margin: 32px 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 17px;
}

.benefits-list li::before {
    content: "✓";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.form-section {
    background: linear-gradient(135deg, var(--bg-warm) 0%, #fff 100%);
    padding: 80px 0;
}

.form-container {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: 0 16px 48px var(--shadow);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 8px;
}

.form-container .section-intro {
    text-align: center;
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: border-color 0.2s ease;
}

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

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

.form-submit {
    width: 100%;
    margin-top: 16px;
}

.cta-banner {
    background: var(--primary);
    color: #fff;
    padding: 64px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 64px 0 32px;
}

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

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

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

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

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

.footer-col a {
    color: #bbb;
    font-size: 14px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
    color: #888;
}

.disclaimer {
    background: #f0ebe3;
    padding: 32px;
    border-radius: var(--radius);
    margin: 48px 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.disclaimer strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.references {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.references h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.references ol {
    padding-left: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

.references li {
    margin-bottom: 8px;
}

.page-header {
    background: var(--bg-warm);
    padding: 80px 0 48px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-muted);
}

.content-section {
    padding: 64px 0;
}

.content-section h2 {
    font-size: 24px;
    margin: 40px 0 16px;
    color: var(--primary);
}

.content-section h3 {
    font-size: 20px;
    margin: 32px 0 12px;
}

.content-section p {
    margin-bottom: 16px;
}

.content-section ul {
    margin: 16px 0 24px 24px;
}

.content-section li {
    margin-bottom: 8px;
}

.contact-info {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

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

.contact-info p {
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
}

.contact-info strong {
    min-width: 120px;
    color: var(--text-muted);
    font-weight: 500;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 24px;
}

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

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

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

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

.cookie-inner p {
    flex: 1;
    font-size: 14px;
    min-width: 300px;
}

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

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

.cookie-buttons button {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
}

.cookie-accept {
    background: var(--secondary);
    color: #fff;
}

.cookie-reject {
    background: transparent;
    border: 1px solid #666;
    color: #ccc;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 16px 24px;
        border-bottom: 1px solid var(--border);
        display: none;
    }

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

    .nav-list a {
        padding: 12px 0;
        display: block;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

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

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

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

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