:root {
    --bg: #100d11;
    --bg-deep: #0b090c;
    --bg-soft: #181219;

    --ink: #f5eef4;
    --muted: #b9aeb8;

    --pink: #d64b9b;
    --pink-soft: #a83c7b;
    --plum: #642d69;
    --violet: #493061;

    --white: #fff;
    --header-h: 120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(ellipse 65% 38% at -5% 12%, rgba(214, 75, 155, 0.14) 0%, rgba(100, 45, 105, 0.07) 38%, transparent 72%),
        radial-gradient(ellipse 60% 42% at 105% 34%, rgba(114, 55, 133, 0.16) 0%, rgba(73, 48, 97, 0.07) 42%, transparent 72%),
        radial-gradient(ellipse 65% 40% at -5% 61%, rgba(190, 54, 133, 0.12) 0%, rgba(100, 45, 105, 0.06) 42%, transparent 72%),
        radial-gradient(ellipse 60% 40% at 105% 84%, rgba(123, 60, 143, 0.14) 0%, rgba(73, 48, 97, 0.05) 42%, transparent 72%),
        linear-gradient(180deg, #100d11 0%, #151016 35%, #0e0b10 70%, #120d13 100%);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    min-height: 100vh;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

/* Header / Navigation */
.site-header {
    height: var(--header-h);
    padding: 18px 5vw 10px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    color: #fff;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo img {
    display: block;
    width: auto;
    height: 78px;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.35));
}

.brand {
    display: inline-flex;
    flex-direction: column;
    line-height: .82;
}

.brand-script {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 2rem;
}

.brand-small {
    font-size: .62rem;
    letter-spacing: .38em;
    margin-left: .15rem;
    margin-top: .55rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: .85rem;
    padding-top: 10px;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.88);
    transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.site-nav a:hover {
    color: #f2b8dc;
}

.nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.42);
    padding: .8rem 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
}

.nav-cta:hover {
    border-color: rgba(214, 75, 155, 0.72);
    background: rgba(214, 75, 155, 0.10);
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 1.6rem;
    padding: .25rem;
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 100svh;
    position: relative;
    color: #fff;
    overflow: hidden;
    background: #1a151a;
}

.hero-slides,
.hero-slide,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.fallback-hero {
    background:
        radial-gradient(circle at 18% 30%, rgba(214, 75, 155, 0.28), transparent 35%),
        radial-gradient(circle at 82% 70%, rgba(100, 45, 105, 0.30), transparent 40%),
        linear-gradient(135deg, #171116, #2d1d2c 48%, #161018);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(9, 8, 8, 0.72), rgba(9, 8, 8, 0.18) 58%, rgba(9, 8, 8, 0.30)),
        radial-gradient(ellipse at 20% 60%, rgba(214, 75, 155, 0.09), transparent 45%);
}

.hero-copy {
    position: relative;
    z-index: 3;
    left: auto;
    top: auto;
    transform: none;

    width: min(84vw, 900px);
    max-width: 900px;

    padding-top: clamp(180px, 22vh, 240px);
    padding-bottom: 120px;
    margin-left: 8vw;
}

.eyebrow {
    font-size: .7rem;
    letter-spacing: .28em;
    font-weight: 600;
    margin: 0 0 1.6rem;
    color: rgba(255, 255, 255, 0.78);
}

.eyebrow.dark {
    color: #d787b9;
}

h1,
h2,
h3,
blockquote {
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

h1 {
    font-size: clamp(3.8rem, 6.5vw, 7rem);
    line-height: .94;
    margin: 0 0 1.8rem;
    letter-spacing: -.045em;
    text-wrap: balance;
}

h1 em,
h2 em {
    font-weight: 500;
}

.hero-copy > p:not(.eyebrow) {
    font-size: 1.1rem;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 1.35rem;
    font-size: .78rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: #1d1a17;
}

.btn-light:hover {
    background: #f2d7e7;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .45);
}

.btn-outline:hover {
    border-color: rgba(214, 75, 155, .75);
    background: rgba(214, 75, 155, .08);
}

.text-link {
    font-size: .85rem;
    border-bottom: 1px solid currentColor;
    padding-bottom: .25rem;
    transition: color .25s ease;
}

.text-link:hover {
    color: #f2b8dc;
}

.scroll-cue {
    position: absolute;
    right: 4vw;
    bottom: 2.5rem;
    z-index: 4;
    font-size: .55rem;
    letter-spacing: .28em;
    writing-mode: vertical-rl;
    color: rgba(255, 255, 255, 0.72);
}

.scroll-cue span {
    display: inline-block;
    height: 64px;
    border-left: 1px solid rgba(255, 255, 255, .5);
    margin-top: .7rem;
}

/* Shared Sections */
.section {
    padding: 9rem 8vw;
}

h2 {
    font-size: clamp(2.8rem, 5vw, 5.6rem);
    line-height: 1;
    letter-spacing: -.035em;
    margin: .2rem 0;
    text-wrap: balance;
}

/* Intro / About */
.intro {
    display: grid;
    grid-template-columns: 100px minmax(0, 1.15fr) minmax(260px, .8fr);
    gap: 3rem;
    align-items: start;
    position: relative;
    background:
        radial-gradient(ellipse 55% 80% at 0% 50%, rgba(211, 65, 151, 0.10), transparent 68%);
}

.intro-number {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    color: rgba(231, 161, 204, 0.75);
}

.intro-copy {
    padding-top: 2rem;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--muted);
}

.dark-link {
    display: inline-block;
    margin-top: 1.4rem;
    color: #e7a1cc;
}

/* Feature Story */
.feature-story {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 720px;
    background:
        radial-gradient(ellipse 70% 90% at 105% 45%, rgba(119, 54, 137, 0.20), rgba(75, 38, 89, 0.08) 45%, transparent 72%),
        #0e0b10;
}

.feature-image {
    margin: 0;
    min-height: 100%;
    overflow: hidden;
}

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

.feature-copy {
    padding: 8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-copy p:last-child {
    line-height: 1.9;
    color: var(--muted);
}

.huge-number {
    font-family: "Playfair Display", serif;
    font-size: 8rem;
    line-height: .8;
    color: rgba(214, 75, 155, 0.10);
}

/* Portfolio */
.portfolio {
    background:
        radial-gradient(ellipse 70% 65% at -10% 35%, rgba(207, 61, 147, 0.14), rgba(104, 43, 103, 0.06) 42%, transparent 70%),
        #121014;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: end;
    margin-bottom: 3rem;
}

.section-heading > p {
    max-width: 420px;
    color: var(--muted);
    line-height: 1.7;
}

.gallery-tabs {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.gallery-tab {
    color: #d6cbd4;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: .75rem 1rem;
    cursor: pointer;
    transition: all .25s ease;
}

.gallery-tab:hover {
    color: #fff;
    border-color: rgba(214, 75, 155, .65);
    background: rgba(214, 75, 155, .08);
}

.gallery-tab.active {
    background: linear-gradient(135deg, #b93f88, #71316f);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(214, 75, 155, 0.15);
}

.gallery-panel {
    display: none;
}

.gallery-panel.active {
    display: block;
}

.gallery-intro {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 1.5rem;
}

.gallery-intro h3 {
    font-size: 2rem;
    margin: 0;
}

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

.masonry {
    columns: 3 320px;
    column-gap: 1rem;
}

.gallery-item {
    border: 0;
    padding: 0;
    margin: 0 0 1rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #171317;
    break-inside: avoid;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(11, 9, 12, 0.28) 100%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.gallery-item img {
    width: 100%;
    transition: transform .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.025);
}

.gallery-item:hover::after {
    opacity: 1;
}

.zoom {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .9);
    color: #241820;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
}

.empty-gallery {
    padding: 4rem;
    border: 1px dashed rgba(255, 255, 255, .14);
    text-align: center;
    color: var(--muted);
}

/* Experience */
.experience {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    color: #fff;
    min-height: 780px;
    background:
        radial-gradient(ellipse 65% 80% at 105% 55%, rgba(132, 58, 151, 0.18), transparent 68%),
        linear-gradient(135deg, #0c0a0d, #171018);
}

.experience-copy {
    padding: 10vw 8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-copy p:not(.eyebrow) {
    color: #c8bebf;
    line-height: 1.9;
    max-width: 620px;
}

.experience-copy .btn {
    align-self: flex-start;
    margin-top: 1.3rem;
}

.experience-image {
    overflow: hidden;
}

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

/* Promise */
.promise {
    text-align: center;
    background:
        radial-gradient(ellipse 55% 90% at -5% 50%, rgba(204, 58, 145, 0.13), transparent 70%);
}

.promise blockquote {
    font-size: clamp(2.7rem, 5vw, 5.6rem);
    line-height: 1.08;
    max-width: 1050px;
    margin: 1rem auto;
}

.promise > p:last-child {
    color: var(--muted);
}

/* Contact */
.contact {
    color: #fff;
    padding: 8rem 8vw;
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 4rem;
    align-items: end;
    background:
        radial-gradient(ellipse 70% 120% at 100% 50%, rgba(207, 64, 151, 0.22), rgba(101, 42, 108, 0.12) 45%, transparent 72%),
        linear-gradient(120deg, #120d13, #201221);
}

.contact-card {
    border-top: 1px solid rgba(255, 255, 255, .30);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    color: rgba(255, 255, 255, .84);
}

.contact-card a {
    display: inline-block;
    transition: color .25s ease;
}

.contact-card a:hover {
    color: #f0add3;
}

.socials {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Footer */
footer {
    padding: 3rem 8vw;
    background:
        radial-gradient(ellipse 55% 140% at 0% 0%, rgba(117, 45, 105, 0.12), transparent 70%),
        #0a080b;
    color: #ddd;
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    color: #fff;
}

footer .brand-logo img {
    height: 58px;
    max-width: 230px;
}

footer p {
    font-size: .75rem;
    color: #8f888f;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 7, 9, .95);
    z-index: 100;
    display: none;
    place-items: center;
    padding: 4rem;
    backdrop-filter: blur(7px);
}

.lightbox.open {
    display: grid;
}

.lightbox img {
    max-width: 88vw;
    max-height: 80vh;
    box-shadow:
        0 20px 80px #000,
        0 0 80px rgba(214, 75, 155, .08);
}

.lightbox p {
    color: #ddd;
    margin: .9rem 0 0;
}

.lightbox-close {
    position: absolute;
    right: 2rem;
    top: 1.4rem;
    background: none;
    border: 0;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Tablet */
@media (max-width: 900px) {
    :root {
        --header-h: 104px;
    }

    .site-header {
        height: var(--header-h);
        padding: 15px 5vw 8px;
    }

    .brand-logo img {
        height: 66px;
        max-width: 250px;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 86px;
        right: 5vw;
        min-width: 220px;
        flex-direction: column;
        gap: 0;
        background: linear-gradient(145deg, rgba(28, 20, 28, 0.98), rgba(16, 13, 17, 0.98));
        border: 1px solid rgba(255, 255, 255, 0.10);
        box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
        padding: .75rem;
        align-items: stretch;
        backdrop-filter: blur(16px);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: .85rem 1rem;
    }

    .site-nav .nav-cta {
        margin-top: .25rem;
        text-align: center;
    }

    .nav-toggle {
        display: block;
        margin-top: 8px;
    }

    .intro {
        grid-template-columns: 1fr;
    }

    .intro-number {
        display: none;
    }

    .feature-story,
    .experience,
    .contact {
        grid-template-columns: 1fr;
    }

    .feature-image {
        max-height: 70vh;
    }

    .experience-image {
        order: -1;
        max-height: 65vh;
    }

    .section-heading,
    .gallery-intro {
        display: block;
    }

    .section-heading > p,
    .gallery-intro p {
        margin-top: 1rem;
    }

    .contact {
        gap: 2rem;
    }

    footer {
        display: block;
    }

    footer p {
        margin-top: 2rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    :root {
        --header-h: 90px;
    }

    .site-header {
        height: var(--header-h);
        padding: 14px 5vw 8px;
    }

    .brand-logo img {
        height: 52px;
        max-width: 190px;
    }

    .site-nav {
        top: 76px;
        left: 5vw;
        right: 5vw;
        min-width: 0;
    }

    .nav-toggle {
        margin-top: 3px;
    }

    .hero {
        min-height: 620px;
    }

    .hero-copy {
        left: 6vw;
        right: 6vw;
        top: 52%;
    }

    h1 {
        font-size: clamp(3rem, 15vw, 4.6rem);
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .scroll-cue {
        display: none;
    }

    .section {
        padding: 6rem 6vw;
    }

    .feature-copy,
    .experience-copy,
    .contact {
        padding: 6rem 6vw;
    }

    .huge-number {
        font-size: 6rem;
    }

    .gallery-tabs {
        gap: .5rem;
    }

    .gallery-tab {
        padding: .7rem .85rem;
        font-size: .85rem;
    }

    .masonry {
        columns: 1;
    }

    .lightbox {
        padding: 2rem 1rem;
    }

    .lightbox-close {
        right: 1rem;
        top: .75rem;
    }

    footer {
        padding: 2.5rem 6vw;
    }

    footer .brand-logo img {
        height: 50px;
        max-width: 190px;
    }
    
    .hero-copy {
        left: auto;
        right: auto;
        top: auto;
        transform: none;
    
        width: auto;
        max-width: none;
        margin: 0 6vw;
    
        padding-top: 145px;
        padding-bottom: 90px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
