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

:root {
    font-family: 'Poppins', sans-serif;
    --bg: #f7f4f1;
    --surface: #ffffff;
    --accent: #d2a6ff;
    --deep-accent: #8f54de;
    --text: #2a2438;
    --muted: #675d77;
    --border: rgba(42, 36, 56, 0.08);
}

body {
    background: linear-gradient(180deg, #f5f1ff 0%, #f7f4f1 40%);
    color: var(--text);
    min-height: 100vh;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 8vw;
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(247, 244, 241, 0.8);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(42, 36, 56, 0.05);
}

.mark {
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav nav {
    display: flex;
    gap: 1.75rem;
}

.nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: linear-gradient(120deg, #d2a6ff, #b986ff);
    color: var(--surface);
    box-shadow: 0 18px 36px rgba(143, 84, 222, 0.18);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 44px rgba(143, 84, 222, 0.22);
}

.btn.filled {
    background: linear-gradient(120deg, #8f54de, #b986ff);
}

.btn.subtle {
    background: transparent;
    color: var(--deep-accent);
    border: 1px solid rgba(143, 84, 222, 0.28);
    box-shadow: none;
}

main {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 4rem 8vw 6rem;
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.tag {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--muted);
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-text h1 {
    font-size: clamp(2.6rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.hero-text p {
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: grid;
    gap: 1.5rem;
    justify-items: start;
}

.hero-visual img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 35px 70px rgba(42, 36, 56, 0.18);
}

.hero-visual .card {
    position: absolute;
    bottom: -1.5rem;
    right: 2rem;
    background: var(--surface);
    border-radius: 22px;
    padding: 1.5rem;
    width: 220px;
    box-shadow: 0 25px 60px rgba(42, 36, 56, 0.12);
    border: 1px solid var(--border);
}

.services {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services h2 {
    font-size: 2.3rem;
}

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

.services article {
    background: var(--surface);
    border-radius: 22px;
    padding: 1.75rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services article:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(42, 36, 56, 0.12);
}

.services span {
    margin-top: auto;
    font-weight: 600;
    color: var(--deep-accent);
}

.lookbook {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lookbook .intro {
    max-width: 520px;
}

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

.lookbook img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(143, 84, 222, 0.2);
}

.artists {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.artists .profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.artists article {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: 24px;
    border: 1px solid var(--border);
    align-items: center;
    box-shadow: 0 22px 45px rgba(42, 36, 56, 0.08);
}

.artists img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(143, 84, 222, 0.18);
}

.artists span {
    color: var(--deep-accent);
    font-size: 0.9rem;
    letter-spacing: 0.07em;
}

.artists p {
    color: var(--muted);
}

.book {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    background: var(--surface);
    border-radius: 28px;
    padding: 2.75rem;
    border: 1px solid var(--border);
    box-shadow: 0 30px 70px rgba(42, 36, 56, 0.12);
}

.book .copy {
    display: grid;
    gap: 0.75rem;
}

.book .copy p {
    color: var(--muted);
}

.book .copy .phone a {
    color: var(--deep-accent);
    font-weight: 600;
    text-decoration: none;
}

.book form {
    display: grid;
    gap: 0.75rem;
}

label {
    font-weight: 600;
    letter-spacing: 0.04em;
}

input,
select,
textarea {
    border: 1px solid rgba(143, 84, 222, 0.18);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    background: rgba(210, 166, 255, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--deep-accent);
    box-shadow: 0 0 0 4px rgba(143, 84, 222, 0.15);
}

button {
    margin-top: 0.5rem;
    border: none;
    border-radius: 14px;
    padding: 0.9rem 1.3rem;
    background: linear-gradient(120deg, #8f54de, #b986ff);
    color: var(--surface);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 44px rgba(143, 84, 222, 0.22);
}

footer {
    padding: 3rem 8vw;
    text-align: center;
    color: var(--muted);
}

@media (max-width: 900px) {
    .hero-visual .card {
        position: static;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    main {
        padding: 3.5rem 6vw 5rem;
    }
}
