:root {
    --primary: #3d2473;
    --secondary: #9368df;
    --accent: #b28af2;
    --bg: #f8f6fc;
    --text: #1f2937;
    --muted: #4b5563;
    --card: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.site-header {
    background: var(--primary);
    color: white;
    padding: 2rem 1rem;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: inherit;
    text-decoration: none;
}

.brand-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-text {
    display: grid;
    gap: 0.15rem;
}

.header-kicker {
    margin: 0;
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.header-title {
    margin: 0;
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

main {
    padding: 3rem 0;
}

section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin: 0 0 1rem;
    line-height: 1.05;
}

.hero p {
    max-width: 680px;
    font-size: 1.05rem;
    margin: 0 0 1.5rem;
}

.hero-image {
    background: linear-gradient(180deg, rgba(147, 104, 223, 0.16), rgba(61, 36, 115, 0.08));
    border-radius: 1.5rem;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-image div {
    text-align: center;
    color: var(--primary);
}

.hero-image h2 {
    margin: 0;
}

.hero-image span {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 260px;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.cards {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card,
.gallery-card {
    background: var(--card);
    border-radius: 1rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.card {
    padding: 1.6rem;
}

.card h3,
.gallery-card h3 {
    color: var(--primary);
}

.card h3 {
    margin-top: 0;
}

.card p,
.gallery-card p {
    color: var(--muted);
}

.card p {
    margin: 0.75rem 0 0;
}

.section-intro {
    margin-bottom: 1.5rem;
    color: var(--muted);
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-card {
    overflow: hidden;
    position: relative;
}

.gallery-card img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-photo {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-content {
    padding: 1.25rem;
}

.gallery-card h3 {
    margin: 0 0 0.75rem;
}

.gallery-card p {
    margin: 0;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.feature {
    background: white;
    padding: 1.25rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.feature strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.contact-card {
    background: var(--primary);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    display: grid;
    gap: 1rem;
}

.contact-card p {
    margin: 0;
}

.contact-card a {
    color: #efe7ff;
    text-decoration: none;
    word-break: break-all;
}

footer {
    text-align: center;
    padding: 2rem 1rem 1rem;
    color: var(--muted);
}

@media (min-width: 768px) {
    .hero {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

@media (max-width: 560px) {
    .brand {
        align-items: flex-start;
    }

    .brand-logo {
        width: 56px;
        height: 56px;
    }

    .header-title {
        font-size: 1.25rem;
    }
}
