/* ==============================
   BASE
================================ */

:root {
    --pink: #f6c9d8;
    --pink-light: #fff1f6;
    --pink-hot: #e992ae;

    --wine: #741c3b;
    --wine-dark: #421023;

    --cream: #fff9f7;
    --white: #ffffff;
    --black: #24171c;

    --border: rgba(116, 28, 59, 0.15);

    --radius-sm: 16px;
    --radius-md: 26px;
    --radius-lg: 42px;

    --shadow: 0 25px 70px rgba(116, 28, 59, 0.15);
}


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


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: var(--cream);
    color: var(--black);

    overflow-x: hidden;
}


body::before {
    content: "";

    position: fixed;
    inset: 0;
    z-index: -5;

    background:
        radial-gradient(
            circle at 5% 5%,
            rgba(246, 201, 216, 0.75),
            transparent 30%
        ),
        radial-gradient(
            circle at 95% 25%,
            rgba(233, 146, 174, 0.25),
            transparent 25%
        );

    pointer-events: none;
}


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


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


.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}


.section {
    padding: 120px 0;
}


/* ==============================
   NAV
================================ */

.site-header {
    position: fixed;
    width: 100%;
    top: 0;

    z-index: 100;

    padding: 18px 0;

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease;
}


.site-header.scrolled {
    padding: 10px 0;

    background: rgba(255, 249, 247, 0.8);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 8px 40px rgba(66, 16, 35, 0.08);
}


.navbar {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo,
.footer-logo {
    color: var(--wine);
    font-size: 0.95rem;
    font-weight: 900;

    line-height: 0.85;

    letter-spacing: -0.05em;
}


.logo span,
.footer-logo span {
    display: block;

    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 500;

    font-size: 1.4rem;

    letter-spacing: -0.06em;
}


.desktop-nav {
    list-style: none;

    display: flex;
    align-items: center;
    gap: 34px;

    font-size: 0.9rem;
    font-weight: 700;
}


.desktop-nav a {
    transition: color 0.2s ease;
}


.desktop-nav a:hover {
    color: var(--wine);
}


.nav-contact {
    padding: 12px 18px;

    border: 1px solid var(--wine);
    border-radius: 100px;

    color: var(--wine);
}


.menu-toggle,
.mobile-nav {
    display: none;
}


/* ==============================
   HERO
================================ */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 150px 0 90px;

    position: relative;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;

    align-items: center;
    gap: 70px;
}


.eyebrow {
    color: var(--wine);

    font-size: 0.73rem;
    font-weight: 900;

    letter-spacing: 0.18em;

    margin-bottom: 22px;
}


.hero h1 {
    max-width: 750px;

    font-size: clamp(4rem, 8vw, 7.8rem);
    line-height: 0.85;

    letter-spacing: -0.075em;

    font-weight: 900;
}


.hero h1 span {
    display: block;

    color: var(--wine);

    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 500;
}


.hero-description {
    max-width: 550px;

    margin-top: 35px;

    font-size: 1.12rem;
    line-height: 1.7;

    color: #65545b;
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;
}


.button {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 100px;

    border: 0;

    cursor: pointer;

    font-weight: 800;
    font-size: 0.9rem;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.button:hover {
    transform: translateY(-3px);
}


.primary-button {
    color: white;
    background: var(--wine);

    box-shadow: 0 15px 30px rgba(116, 28, 59, 0.2);
}


.primary-button:hover {
    box-shadow: 0 20px 40px rgba(116, 28, 59, 0.3);
}


.secondary-button {
    color: var(--wine);
    background: transparent;

    border: 1px solid var(--wine);
}


.social-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 42px;

    font-size: 0.78rem;
    font-weight: 700;
}


.social-row > span {
    color: #9f858e;
}


.social-row a:hover {
    color: var(--wine);
}


/* ==============================
   HERO ART
================================ */

.hero-art {
    min-height: 650px;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}


.hero-circle {
    position: absolute;

    width: 470px;
    height: 470px;

    border-radius: 50%;

    background: var(--pink);

    z-index: -1;
}


.phone {
    width: 295px;

    background: var(--wine-dark);

    padding: 9px;

    border-radius: 48px;

    box-shadow:
        0 50px 90px rgba(66, 16, 35, 0.25),
        0 10px 25px rgba(66, 16, 35, 0.1);

    transform: rotate(5deg);

    transition: transform 0.4s ease;
}


.phone:hover {
    transform: rotate(2deg) translateY(-8px);
}


.phone-screen {
    min-height: 570px;

    padding: 26px 15px 16px;

    overflow: hidden;

    border-radius: 39px;

    background: var(--pink-light);
}


.phone-top {
    position: absolute;

    width: 90px;
    height: 22px;

    margin-top: 12px;
    margin-left: 103px;

    background: var(--wine-dark);

    border-radius: 100px;

    z-index: 3;
}


.screen-tag {
    padding-top: 17px;
    padding-bottom: 13px;

    color: var(--wine);

    text-align: center;

    font-size: 0.55rem;
    font-weight: 900;

    letter-spacing: 0.15em;
}


.fake-post {
    margin-top: 15px;

    background: white;

    padding: 10px;

    border-radius: 25px;
}


.post-image {
    height: 390px;

    border-radius: 19px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(255,255,255,.5),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            var(--pink-hot),
            var(--wine)
        );

    color: white;
}


.post-image span {
    font-size: 2.4rem;
    line-height: 0.83;

    letter-spacing: -0.08em;

    font-weight: 900;
}


.post-bottom {
    display: flex;
    justify-content: space-between;

    padding: 14px 8px 4px;

    color: var(--wine-dark);

    font-size: 0.65rem;
}


.post-bottom p {
    margin-top: 4px;

    color: #88747b;
}


.post-bottom > span {
    font-size: 1.5rem;
}


.floating-note {
    position: absolute;
    z-index: 5;

    padding: 15px 20px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 100px;

    box-shadow: var(--shadow);

    font-size: 0.8rem;
    font-weight: 800;
}


.floating-note span {
    color: var(--wine);

    margin-right: 5px;
}


.note-one {
    left: 0;
    top: 120px;

    transform: rotate(-7deg);
}


.note-two {
    right: 0;
    bottom: 115px;

    transform: rotate(6deg);
}


/* ==============================
   MARQUEE
================================ */

.marquee-section {
    overflow: hidden;

    padding: 18px 0;

    color: white;
    background: var(--wine);

    transform: rotate(-1deg) scale(1.02);
}


.marquee {
    overflow: hidden;
}


.marquee-track {
    width: max-content;

    display: flex;

    animation: marquee 25s linear infinite;

    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1.25rem;
}


.marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 35px;
    padding-right: 35px;
}

.marquee-group > span {
    white-space: nowrap;
}

.marquee-star {
    flex: 0 0 auto;
    font-family: Georgia, serif;
    font-style: normal;
    line-height: 1;
}


@keyframes marquee {
    to {
        transform: translateX(calc(-100% / 3));
    }
}


/* ==============================
   HEADINGS
================================ */

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 60px;

    margin-bottom: 60px;
}


.section-heading h2,
.about-copy h2,
.contact-copy h2 {
    font-size: clamp(2.8rem, 5vw, 5.4rem);

    line-height: 0.92;

    letter-spacing: -0.065em;
}


.section-heading > p {
    max-width: 400px;

    color: #76636a;

    line-height: 1.7;
}


/* ==============================
   WORK
================================ */

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}


.work-card {
    padding: 12px;

    border-radius: var(--radius-md);

    background: white;

    border: 1px solid var(--border);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.work-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);
}


.work-visual {
    height: 430px;

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;
}


.large-card .work-visual {
    height: 570px;
}


.visual-one {
    background:
        radial-gradient(
            circle at 80% 20%,
            #fff5f8 0 15%,
            transparent 16%
        ),
        linear-gradient(
            135deg,
            var(--pink),
            #e78daa
        );
}


.visual-two {
    background:
        linear-gradient(
            45deg,
            var(--wine-dark),
            var(--wine)
        );
}


.visual-three {
    background:
        radial-gradient(
            circle,
            #ffd7e2,
            var(--pink-hot)
        );
}


.visual-four {
    background:
        linear-gradient(
            140deg,
            #fbe0e8 0 45%,
            var(--wine) 46% 100%
        );
}


.visual-text {
    color: white;

    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 300;

    letter-spacing: -0.07em;

    text-align: center;

    line-height: 0.85;
}


.visual-text strong {
    display: block;

    font-family: Georgia, serif;
    font-style: italic;

    font-weight: 500;
}


.work-number {
    position: absolute;

    left: 20px;
    top: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: rgba(255,255,255,0.9);

    color: var(--wine);

    font-size: 0.72rem;
    font-weight: 900;
}


.work-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 20px;

    padding: 20px 8px 10px;
}


.work-info p {
    color: #9b8089;

    font-size: 0.72rem;
    text-transform: uppercase;

    margin-bottom: 5px;
}


.work-info h3 {
    color: var(--wine-dark);

    font-size: 1.25rem;
}


.work-info a {
    color: var(--wine);

    font-size: 0.8rem;
    font-weight: 800;

    white-space: nowrap;
}


/* ==============================
   SERVICES
================================ */

.services-section {
    background: var(--pink-light);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


.service-card {
    min-height: 330px;

    padding: 32px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: rgba(255,255,255,0.55);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.service-card:hover {
    color: white;
    background: var(--wine);

    transform: translateY(-8px);
}


.service-card > span {
    margin-bottom: auto;

    color: var(--pink-hot);

    font-size: 0.8rem;
    font-weight: 900;
}


.service-card h3 {
    margin-bottom: 15px;

    font-size: 1.4rem;
    letter-spacing: -0.04em;
}


.service-card p {
    font-size: 0.9rem;
    line-height: 1.65;

    opacity: 0.75;
}


/* ==============================
   ABOUT
================================ */

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    align-items: center;

    gap: 90px;
}


.about-art {
    position: relative;
}


.about-photo {
    aspect-ratio: 4 / 5;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: var(--radius-lg);

    background:
        radial-gradient(
            circle at 20% 20%,
            white,
            transparent 15%
        ),
        linear-gradient(
            135deg,
            var(--pink-hot),
            var(--wine)
        );

    box-shadow: var(--shadow);

    color: white;

    text-align: center;

    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;

    line-height: 0.8;

    letter-spacing: -0.08em;
}


.about-sticker {
    position: absolute;

    right: -35px;
    bottom: 55px;

    width: 145px;
    height: 145px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--cream);

    border: 2px solid var(--wine);

    color: var(--wine);

    text-align: center;

    font-size: 0.68rem;
    font-weight: 900;

    line-height: 1.5;

    transform: rotate(8deg);
}


.about-copy > p:not(.eyebrow) {
    max-width: 590px;

    margin-top: 25px;

    color: #705e65;

    font-size: 1rem;
    line-height: 1.8;
}


.mini-stats {
    display: flex;

    gap: 45px;

    margin-top: 45px;
    padding-top: 30px;

    border-top: 1px solid var(--border);
}


.mini-stats strong,
.mini-stats span {
    display: block;
}


.mini-stats strong {
    color: var(--wine);

    font-size: 1.2rem;
}


.mini-stats span {
    margin-top: 4px;

    color: #9b818a;

    font-size: 0.78rem;
}


/* ==============================
   CONTACT
================================ */

.contact-section {
    padding-top: 40px;
}


.contact-card {
    padding: 70px;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    border-radius: var(--radius-lg);

    color: white;
    background: var(--wine);

    box-shadow: 0 40px 90px rgba(66, 16, 35, 0.2);
}


.light-eyebrow {
    color: var(--pink);
}


.contact-copy p:not(.eyebrow) {
    max-width: 430px;

    margin-top: 25px;

    color: rgba(255,255,255,0.7);

    line-height: 1.7;
}


.email-link {
    display: inline-block;

    margin-top: 30px;

    color: var(--pink);

    font-family: Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
}


.contact-form {
    display: flex;
    flex-direction: column;

    gap: 18px;
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


.contact-form label {
    display: flex;
    flex-direction: column;

    gap: 8px;

    color: rgba(255,255,255,0.75);

    font-size: 0.72rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}


.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;

    padding: 16px 18px;

    outline: none;

    border: 1px solid rgba(255,255,255,0.17);
    border-radius: var(--radius-sm);

    color: white;
    background: rgba(255,255,255,0.08);

    text-transform: none;
}


.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.45);
}


.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--pink);
}


.contact-form option {
    color: var(--black);
}


.contact-form textarea {
    resize: vertical;
}


.form-button {
    width: 100%;

    margin-top: 5px;

    color: var(--wine);
    background: var(--pink);
}


/* ==============================
   FOOTER
================================ */

.footer {
    padding: 40px 0 50px;
}


.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.footer p {
    color: #9a838b;

    font-size: 0.75rem;
}


.footer-links {
    display: flex;

    gap: 20px;

    font-size: 0.78rem;
    font-weight: 700;
}


.footer-links a:hover {
    color: var(--wine);
}


/* ==============================
   SCROLL ANIMATIONS
================================ */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==============================
   TABLET
================================ */

@media (max-width: 950px) {

    .hero-grid,
    .about-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }


    .hero-copy {
        text-align: center;
    }


    .hero-description {
        margin-inline: auto;
    }


    .hero-actions,
    .social-row {
        justify-content: center;
    }


    .hero-art {
        min-height: 600px;
    }


    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .about-grid {
        max-width: 700px;

        gap: 70px;
    }


    .about-art {
        width: min(500px, 90%);
        margin-inline: auto;
    }


    .contact-card {
        gap: 50px;
    }

}


/* ==============================
   MOBILE
================================ */

@media (max-width: 700px) {

    .container {
        width: min(100% - 30px, 1180px);
    }


    .section {
        padding: 80px 0;
    }


    /* MOBILE NAV */

    .desktop-nav {
        display: none;
    }


    .menu-toggle {
        width: 45px;
        height: 45px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 5px;

        border: 0;
        border-radius: 50%;

        background: var(--wine);

        cursor: pointer;
    }


    .menu-toggle span {
        width: 18px;
        height: 2px;

        border-radius: 10px;

        background: white;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }


    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }


    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }


    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    .mobile-nav {
        position: absolute;

        top: 62px;
        left: 0;
        right: 0;

        padding: 22px;

        display: flex;
        flex-direction: column;

        gap: 4px;

        border: 1px solid var(--border);
        border-radius: 22px;

        background: rgba(255, 249, 247, 0.95);

        backdrop-filter: blur(20px);

        box-shadow: var(--shadow);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }


    .mobile-nav.open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    .mobile-nav a {
        padding: 14px;

        border-radius: 12px;

        color: var(--wine-dark);

        font-weight: 800;
    }


    .mobile-nav a:hover {
        background: var(--pink-light);
    }


    /* HERO */

    .hero {
        padding-top: 135px;
    }


    .hero-grid {
        gap: 25px;
    }


    .hero h1 {
        font-size: clamp(3.6rem, 18vw, 5.8rem);
    }


    .hero-description {
        font-size: 1rem;
    }


    .hero-actions .button {
        width: 100%;
    }


    .social-row > span {
        width: 100%;
    }


    .hero-art {
        min-height: 540px;

        transform: scale(0.9);
    }


    .hero-circle {
        width: 370px;
        height: 370px;
    }


    .note-one {
        left: -10px;
    }


    .note-two {
        right: -10px;
    }


    /* SECTION HEADERS */

    .section-heading {
        flex-direction: column;
        align-items: flex-start;

        gap: 25px;

        margin-bottom: 40px;
    }


    .section-heading h2,
    .about-copy h2,
    .contact-copy h2 {
        font-size: clamp(2.8rem, 13vw, 4.2rem);
    }


    /* WORK */

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


    .work-visual,
    .large-card .work-visual {
        height: 430px;
    }


    /* SERVICES */

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


    .service-card {
        min-height: 260px;
    }


    /* ABOUT */

    .about-sticker {
        width: 115px;
        height: 115px;

        right: -10px;

        font-size: 0.58rem;
    }


    .mini-stats {
        gap: 20px;

        justify-content: space-between;
    }


    /* CONTACT */

    .contact-card {
        padding: 40px 24px;

        border-radius: 28px;
    }


    .form-row {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .footer-inner {
        flex-direction: column;

        text-align: center;
    }

}


/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}
