:root {
    --ink: #24181d;
    --muted: #7b6870;
    --rose: #c94362;
    --wine: #6f203c;
    --cream: #fff8f4;
    --shell: #ffe2e6;
    --line: rgba(36, 24, 29, 0.12);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 22% 20%, rgba(255, 226, 230, 0.9), transparent 24%),
        radial-gradient(circle at 78% 76%, rgba(255, 248, 244, 0.92), transparent 25%),
        linear-gradient(135deg, #fdf2f4 0%, #fffaf8 48%, #f7d8dc 100%);
    font-family: Inter, Arial, sans-serif;
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    font: inherit;
}

.site-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 310px) minmax(260px, 0.82fr);
    gap: clamp(18px, 4vw, 42px);
    align-items: center;
    width: min(1180px, calc(100% - 36px));
    min-height: 100vh;
    margin: 0 auto;
    padding: clamp(18px, 4vh, 36px) 0;
}

.site-card::before {
    content: "";
    position: absolute;
    inset: clamp(10px, 3vw, 28px) -6px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: 0 30px 90px rgba(88, 31, 50, 0.14);
    backdrop-filter: blur(20px);
}

.topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    line-height: 0.92;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.1rem;
}

.brand strong {
    font-size: 1.75rem;
}

.admin-link {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 13px;
    background: rgba(255, 255, 255, 0.58);
    font-size: 0.75rem;
    font-weight: 900;
}

.brand-side {
    display: grid;
    gap: clamp(26px, 8vh, 70px);
}

.kicker {
    margin: 0 0 12px;
    color: var(--rose);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.headline h1 {
    max-width: 620px;
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.8rem, 6.2vw, 5.8rem);
    line-height: 0.98;
}

.headline p:last-child {
    max-width: 460px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: clamp(0.98rem, 1.5vw, 1.1rem);
    line-height: 1.7;
}

.lookbook {
    display: grid;
    justify-items: center;
    gap: 14px;
}

.photo-frame {
    position: relative;
    width: min(100%, 292px);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.72);
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.64), transparent 42%),
        linear-gradient(145deg, var(--shell), #fff, #d4778d);
    box-shadow: 0 26px 70px rgba(91, 30, 52, 0.22);
}

.photo-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(180deg, transparent 52%, rgba(36, 24, 29, 0.56));
    pointer-events: none;
}

.photo {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.9s ease, transform 1.8s ease;
}

.photo.is-active {
    opacity: 1;
    transform: scale(1);
}

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

.photo figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 4;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.36);
}

.photo-placeholder {
    position: relative;
    z-index: 4;
    display: grid;
    align-content: center;
    justify-items: center;
    height: 100%;
    padding: 20px;
    color: var(--wine);
    text-align: center;
}

.photo-placeholder::before {
    content: "";
    width: 116px;
    height: 84px;
    margin-bottom: 18px;
    border-radius: 999px 999px 22px 22px;
    background:
        radial-gradient(circle at 34px 31px, transparent 0 19px, rgba(255, 255, 255, 0.94) 20px 36px, transparent 37px),
        radial-gradient(circle at 82px 31px, transparent 0 19px, rgba(255, 255, 255, 0.94) 20px 36px, transparent 37px),
        linear-gradient(135deg, #c94362, #6f203c);
    box-shadow: 0 18px 38px rgba(91, 30, 52, 0.2);
}

.photo-placeholder span {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
    line-height: 1;
}

.photo-placeholder strong {
    margin-top: 6px;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.photo-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.photo-nav > button {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    font-size: 1.55rem;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.photo-nav > button:hover {
    color: #fff;
    background: var(--wine);
    transform: translateY(-2px);
}

.slideshow-dots {
    display: flex;
    gap: 7px;
    max-width: 126px;
    overflow: hidden;
}

.slideshow-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(36, 24, 29, 0.22);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.slideshow-dots button.is-active {
    width: 24px;
    background: var(--rose);
}

.stores-side {
    display: grid;
    gap: 14px;
}

.store {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 18px 48px rgba(88, 31, 50, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.store:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 58px rgba(88, 31, 50, 0.16);
}

.store p {
    margin: 0 0 10px;
    color: var(--rose);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.store h2 {
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.22rem);
    line-height: 1.25;
}

.store span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.store a {
    display: inline-flex;
    justify-content: center;
    margin-top: 16px;
    border-radius: 999px;
    padding: 10px 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--wine));
    font-size: 0.85rem;
    font-weight: 900;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
    transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.lookbook.reveal {
    transition-delay: 0.12s;
}

.stores-side.reveal {
    transition-delay: 0.2s;
}

@media (max-width: 900px) {
    body {
        overflow: auto;
    }

    .site-card {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 24px 0 32px;
    }

    .brand-side {
        gap: 26px;
    }

    .headline h1 {
        font-size: clamp(2.45rem, 11vw, 4.3rem);
    }

    .stores-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .site-card {
        width: min(100% - 24px, 430px);
    }

    .site-card::before {
        inset: 8px -6px;
        border-radius: 24px;
    }

    .topline,
    .stores-side {
        grid-template-columns: 1fr;
    }

    .stores-side {
        display: grid;
    }

    .photo-frame {
        width: min(76vw, 270px);
        border-width: 8px;
    }
}
