/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2d4a3e;
    --color-secondary: #8b7355;
    --color-accent: #c9a961;
    --color-dark: #1a2820;
    --color-light: #f8f6f2;
    --color-white: #ffffff;
    --color-gray: #6b7280;
    --color-gray-light: #e8e6e2;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container--narrow {
    max-width: 720px;
}

.container--wide {
    max-width: 1400px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0;
}

.nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

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

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: all 0.3s ease;
}

.nav__menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav__menu.active {
    display: block;
}

.nav__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav__link {
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 0;
    display: block;
}

.nav__cta {
    margin-top: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

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

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

.btn--secondary:hover {
    background: #b89851;
}

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

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

.btn--large {
    padding: 18px 42px;
    font-size: 1.1rem;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--color-light) 0%, #e8e4dc 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%232d4a3e" opacity="0.03" x="10" y="10" width="30" height="50" rx="2"/><rect fill="%232d4a3e" opacity="0.05" x="50" y="20" width="40" height="60" rx="2"/></svg>') center/cover;
    transform: rotate(-15deg);
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-dark);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero__title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 600px;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--color-gray);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Editorial Sections */
.editorial {
    padding: 60px 0;
}

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

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

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

.editorial__intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.editorial__dropcap::first-letter {
    float: left;
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 0.8;
    padding-right: 12px;
    color: var(--color-primary);
}

.editorial__image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.editorial__image--float-right {
    float: right;
    width: 45%;
    margin: 0 0 20px 30px;
}

.editorial__image--float-left {
    float: left;
    width: 45%;
    margin: 0 30px 20px 0;
}

.editorial__quote {
    border-left: 4px solid var(--color-accent);
    padding: 20px 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.2rem;
    background: rgba(201, 169, 97, 0.08);
}

.editorial__quote cite {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--color-gray);
}

/* Split Section */
.split {
    display: flex;
    flex-direction: column;
}

.split__media {
    min-height: 300px;
    background: var(--color-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.split__content {
    padding: 50px 30px;
}

/* Cards */
.cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card__image {
    height: 200px;
    background: var(--color-gray-light);
    position: relative;
    overflow: hidden;
}

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

.card__body {
    padding: 25px;
}

.card__tag {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-dark);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 12px;
}

.card__title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card__text {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.card__price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.card__price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-gray);
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services__header {
    text-align: center;
    margin-bottom: 50px;
}

.services__header h2 {
    margin-bottom: 15px;
}

.services__header p {
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

.service-item {
    background: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--color-accent);
}

.service-item__header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-item__title {
    font-size: 1.2rem;
}

.service-item__desc {
    color: var(--color-gray);
    font-size: 0.95rem;
}

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

.service-item__unit {
    font-size: 0.85rem;
    color: var(--color-gray);
    font-weight: 400;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--color-dark);
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.testimonial__text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.testimonial__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-dark);
}

.testimonial__info h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.testimonial__info p {
    color: var(--color-gray);
    font-size: 0.85rem;
    margin: 0;
}

/* CTA Sections */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    text-align: center;
}

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

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-inline {
    background: var(--color-accent);
    padding: 25px 30px;
    border-radius: 8px;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.cta-inline p {
    font-weight: 600;
    margin: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

.sticky-cta.active {
    display: block;
}

.sticky-cta__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.sticky-cta__text {
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* Forms */
.form-section {
    padding: 80px 0;
    background: var(--color-light);
}

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

.form {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form__header {
    text-align: center;
    margin-bottom: 30px;
}

.form__header h3 {
    margin-bottom: 10px;
}

.form__header p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid var(--color-gray-light);
    border-radius: 4px;
    background: var(--color-white);
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form__textarea {
    min-height: 120px;
    resize: vertical;
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-gray);
}

.form__checkbox input {
    margin-top: 4px;
}

.form__checkbox a {
    text-decoration: underline;
}

/* Benefits */
.benefits {
    padding: 80px 0;
}

.benefit {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-dark);
}

.benefit__content h4 {
    margin-bottom: 8px;
}

.benefit__content p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Stats */
.stats {
    padding: 60px 0;
    background: var(--color-primary);
}

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

.stat {
    text-align: center;
    color: var(--color-white);
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    display: block;
    color: var(--color-accent);
}

.stat__label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Urgency */
.urgency {
    background: #dc2626;
    color: var(--color-white);
    padding: 20px;
    text-align: center;
}

.urgency p {
    margin: 0;
    font-weight: 600;
}

.urgency strong {
    color: #fef08a;
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-light);
    padding: 60px 0 30px;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer__brand {
    margin-bottom: 15px;
}

.footer__brand h3 {
    color: var(--color-white);
    font-size: 1.4rem;
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer__nav h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-light);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.cookie-banner__inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.cookie-banner p {
    font-size: 0.9rem;
    margin: 0;
}

.cookie-banner p a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-banner__buttons {
    display: flex;
    gap: 10px;
}

.cookie-banner__btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

/* Thanks Page */
.thanks {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    text-align: center;
}

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

.thanks__icon svg {
    width: 50px;
    height: 50px;
    fill: var(--color-white);
}

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

.thanks p {
    color: var(--color-gray);
    max-width: 500px;
    margin: 0 auto 30px;
}

/* About Page */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--color-light) 0%, #e8e4dc 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 15px;
}

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

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

/* Contact Page */
.contact-info {
    background: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-info__item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info__item:last-child {
    margin-bottom: 0;
}

.contact-info__icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info__icon svg {
    width: 20px;
    height: 20px;
    fill: var(--color-dark);
}

.contact-info__text h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-info__text p {
    margin: 0;
    color: var(--color-gray);
}

/* Legal Pages */
.legal {
    padding: 60px 0;
}

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

.legal ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal li {
    margin-bottom: 10px;
}

/* Utilities */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

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

/* Media Queries */
@media (min-width: 640px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }

    .hero__title {
        font-size: 2.8rem;
    }

    .hero__cta {
        flex-direction: row;
    }

    .cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .card {
        flex: 1 1 calc(50% - 12.5px);
    }

    .cookie-banner__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .sticky-cta__inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .nav__toggle {
        display: none;
    }

    .nav__menu {
        display: flex;
        position: static;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }

    .nav__list {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }

    .nav__cta {
        margin-top: 0;
        margin-left: 20px;
    }

    .split {
        flex-direction: row;
    }

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

    .split__media,
    .split__content {
        flex: 1;
    }

    .split__content {
        padding: 60px 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .service-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .service-item__header {
        flex: 1;
    }

    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer__brand {
        flex: 1;
        max-width: 300px;
    }

    .cta-inline {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 3.2rem;
    }

    .card {
        flex: 1 1 calc(33.333% - 17px);
    }

    .editorial {
        padding: 100px 0;
    }

    .form {
        padding: 50px 40px;
    }
}
