:root {
    --bg: #f8f4f4;
    --panel: #ffffff;
    --accent: #c84571;
    --accent-dark: #8f2f4f;
    --text: #2f2f35;
    --muted: #6c6c76;
    --border: #e6d9dd;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --green: #95c95f;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    background: linear-gradient(180deg, #fffefe 0%, #f7f1f3 100%);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand-block {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.brand-subtitle {
    color: var(--accent-dark);
    font-style: italic;
    font-size: .95rem;
}

.brand-title {
    color: var(--accent);
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: .03em;
}

.brand-location {
    color: var(--muted);
    font-size: .95rem;
}

.top-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

    .top-nav a {
        padding: .75rem 1rem;
        border-radius: 999px;
        color: var(--text);
        font-weight: 600;
        transition: .2s ease;
    }

        .top-nav a.active,
        .top-nav a:hover {
            background: var(--accent);
            color: white;
        }

.main-content {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 3rem;
    flex: 1;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 1.5rem 2rem 2rem;
    text-align: center;
    color: var(--muted);
    background: white;
    line-height: 1.8;
}

.hero-section {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-copy,
.hero-image-card,
.feature-card,
.content-card,
.contact-card,
.image-panel {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 2rem;
}

.script-line {
    color: var(--accent);
    font-size: 1.3rem;
    font-style: italic;
    margin: 0 0 .75rem;
}

.hero-copy h1,
.section-heading h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.lead,
.section-heading p,
.content-card p,
.contact-card p,
.feature-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
}

.btn-primary,
.btn-secondary {
    padding: .9rem 1.2rem;
    border-radius: 14px;
    font-weight: 700;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-secondary {
    background: #f2e8ec;
    color: var(--accent-dark);
}

.hero-image-card,
.image-panel {
    padding: 1rem;
}

    .hero-image-card img,
    .image-panel img {
        width: 100%;
        display: block;
        border-radius: 16px;
    }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card,
.content-card,
.contact-card {
    padding: 1.5rem;
}

    .feature-card h2,
    .content-card h2,
    .contact-card h2 {
        margin-top: 0;
        margin-bottom: .75rem;
        color: var(--accent-dark);
    }

.content-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.rate-box {
    background: linear-gradient(135deg, #fff4f7 0%, #fff 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 1rem;
}

.rate-price {
    color: var(--accent);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.rate-label {
    margin-top: .5rem;
    color: var(--accent-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.styled-list {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--muted);
    line-height: 1.9;
}

.highlight-banner {
    margin-top: 2rem;
    background: linear-gradient(90deg, var(--green), #b1d67f);
    color: white;
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.highlight-text {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: .03em;
}

@media (max-width: 900px) {
    .hero-section,
    .two-column-layout,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-content {
        width: min(100% - 1rem, 1200px);
    }
}

@media (max-width: 600px) {
    .site-header,
    .site-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-copy,
    .feature-card,
    .content-card,
    .contact-card {
        padding: 1.1rem;
    }

    .brand-title {
        font-size: 1.45rem;
    }

    .top-nav {
        width: 100%;
    }

        .top-nav a {
            flex: 1 1 calc(50% - .5rem);
            text-align: center;
        }
}
