* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --terracotta: #C75B39;
    --olive: #5C7A3A;
    --gold: #D4A853;
    --cream: #FDF8F0;
    --dark: #2C2C2C;
    --light-gray: #F5F0EA;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--cream);
}

/* NAV */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(8px);
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--terracotta);
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

.btn-nav {
    background: var(--terracotta);
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
}

/* HERO */
.hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 0 0 320px;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
}

.btn {
    display: inline-block;
    background: var(--terracotta);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn:hover {
    background: #a94a2e;
}

/* ABOUT */
.about {
    max-width: 750px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--terracotta);
}

.about p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about a {
    color: var(--terracotta);
}

/* SERVICES */
.services {
    background: var(--light-gray);
    padding: 5rem 2rem;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.packages {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.package {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
}

.package.featured {
    border-color: var(--terracotta);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--terracotta);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.package h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--terracotta);
}

.duration {
    color: #888;
    font-size: 0.9rem;
}

.package ul {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.package li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.package li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--olive);
    font-weight: 700;
}

.package .btn {
    text-align: center;
}

/* WHO */
.who {
    max-width: 750px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.who h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.who ul {
    list-style: none;
}

.who li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.who li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--terracotta);
}

/* FAQ */
.faq {
    background: var(--light-gray);
    padding: 5rem 2rem;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.faq-item {
    max-width: 750px;
    margin: 0 auto 1.5rem;
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.faq-item p {
    color: #555;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 3rem 2rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--terracotta);
    text-decoration: none;
    margin: 0 1rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
}

footer p:last-child {
    font-size: 0.85rem;
    color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        padding-top: 6rem;
        text-align: center;
    }

    .hero-image {
        flex: none;
        width: 200px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .packages {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    nav ul {
        gap: 1rem;
    }

    nav ul li:not(:last-child) {
        display: none;
    }
}


.btn.disabled {
    background: #ccc;
    color: #888;
    cursor: not-allowed;
    pointer-events: none;
}