:root {
    --primary: #2d5a4a;
    --primary-dark: #1e3d32;
    --accent: #c4785a;
    --accent-light: #d69a7e;
    --text: #2c3e3a;
    --text-light: #5a6d68;
    --bg: #f9f7f4;
    --bg-alt: #eee9e2;
    --white: #ffffff;
    --border: #d4cdc4;
    --shadow: rgba(45, 90, 74, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 17px;
}

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

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

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

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

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

header {
    background: var(--white);
    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 24px;
    max-width: 1180px;
    margin: 0 auto;
}

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

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    background: var(--bg-alt);
    padding: 4px 10px;
    border-radius: 3px;
    margin-left: 12px;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

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

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

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

.hero-editorial {
    padding: 80px 24px 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.hero-editorial h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-editorial .subtitle {
    font-size: 19px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-image-wrap {
    max-width: 900px;
    margin: 40px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    background-color: var(--primary-dark);
}

.hero-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.story-section {
    padding: 70px 24px;
}

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

.story-lead {
    font-size: 21px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 28px;
}

.story-text {
    margin-bottom: 24px;
}

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

.inline-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.inline-image.left {
    float: left;
    width: 45%;
    margin: 8px 32px 20px 0;
}

.inline-image.right {
    float: right;
    width: 45%;
    margin: 8px 0 20px 32px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.service-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background: var(--white);
    border-radius: 10px;
    padding: 32px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent);
}

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

.cta-inline {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    transition: background 0.25s ease;
    border: none;
    cursor: pointer;
}

.cta-inline:hover {
    background: var(--accent-light);
    color: var(--white);
}

.cta-secondary {
    display: inline-block;
    color: var(--primary);
    padding: 14px 32px;
    border: 2px solid var(--primary);
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    transition: all 0.25s ease;
}

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

.testimonial-block {
    background: var(--white);
    border-left: 4px solid var(--accent);
    padding: 28px 32px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
}

.testimonial-block p {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

.benefits-list li {
    padding: 16px 0 16px 36px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

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

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.form-section {
    background: var(--primary-dark);
    color: var(--white);
    padding: 70px 24px;
}

.form-section .section-title {
    color: var(--white);
}

.booking-form {
    max-width: 540px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-group select option {
    background: var(--primary-dark);
    color: var(--white);
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease;
}

.submit-btn:hover {
    background: var(--accent-light);
}

footer {
    background: var(--text);
    color: rgba(255,255,255,0.7);
    padding: 50px 24px 30px;
}

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

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

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

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 10px;
}

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

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

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

.disclaimer {
    background: var(--bg-alt);
    padding: 24px;
    font-size: 13px;
    color: var(--text-light);
    border-radius: 6px;
    margin: 40px 0;
    line-height: 1.7;
}

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

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

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

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

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

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

.cookie-btns button {
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

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

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

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

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
}

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

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

.page-content h2:first-child {
    margin-top: 0;
}

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

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

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

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

.contact-info {
    flex: 1 1 300px;
}

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

.contact-info-item h3 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-info-item p {
    color: var(--text-light);
    font-size: 15px;
}

.thanks-content {
    text-align: center;
    padding: 100px 24px;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 20px;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 24px;
    background: var(--accent);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(196, 120, 90, 0.4);
    z-index: 90;
    display: none;
}

.sticky-cta:hover {
    background: var(--accent-light);
    color: var(--white);
}

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

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

.about-intro-image {
    flex: 1 1 300px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--bg-alt);
}

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

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.value-item {
    flex: 1 1 calc(33% - 22px);
    min-width: 240px;
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 8px;
}

.value-item h3 {
    color: var(--primary-dark);
    margin-bottom: 12px;
}

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

.full-width-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: 50px 0;
    border-radius: 0;
    background-color: var(--bg-alt);
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .header-inner {
        padding: 14px 20px;
    }

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

    nav.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-editorial h1 {
        font-size: 30px;
    }

    .hero-image-wrap img {
        height: 260px;
    }

    .inline-image.left,
    .inline-image.right {
        float: none;
        width: 100%;
        margin: 30px 0;
    }

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

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

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

    .sticky-cta {
        bottom: 70px;
        right: 16px;
        padding: 12px 20px;
        font-size: 14px;
    }
}
