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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: #fffaf8;
    color: #40323a;
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    width: min(1120px, 90%);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}


/* NAVIGATION */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fffaf8;
    border-bottom: 1px solid #f0dfe4;
}

.nav-container {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #39232d;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.logo span {
    color: #c85b7b;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: #76636b;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.25s ease;
}

nav a:hover {
    color: #c85b7b;
}

.nav-button {
    padding: 10px 20px;
    background: #c85b7b;
    color: #ffffff !important;
    border-radius: 30px;
}

.nav-button:hover {
    background: #a94664;
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: #39232d;
    font-size: 1.7rem;
    cursor: pointer;
}


/* HERO */

.hero {
    min-height: 700px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(
            circle at 85% 20%,
            #f9e3e9 0,
            transparent 30%
        ),
        #fffaf8;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    padding: 7px 14px;
    background: #f8e5ea;
    border-radius: 50px;
    color: #a94664;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.hero h1 {
    max-width: 680px;
    color: #39232d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5.3rem);
    line-height: 1.02;
    letter-spacing: -3px;
}

.hero h1 span {
    display: inline;
    color: #c85b7b;
    font-style: italic;
}

.hero-description {
    max-width: 590px;
    margin: 28px 0;
    color: #76636b;
    font-size: 0.98rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 23px;
    border: 1px solid transparent;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn-primary {
    background: #c85b7b;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(200, 91, 123, 0.22);
}

.btn-primary:hover {
    background: #a94664;
    transform: translateY(-3px);
}

.btn-secondary {
    background: #ffffff;
    border-color: #e9cdd5;
    color: #a94664;
}

.btn-secondary:hover {
    background: #f9e5ea;
    border-color: #c85b7b;
    transform: translateY(-2px);
}


/* HERO CARD */

.hero-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 410px;
    min-height: 450px;
    padding: 40px;
    overflow: hidden;
    background: #39232d;
    color: #ffffff;
    border-radius: 32px;
    box-shadow: 18px 18px 0 #efd0d9;
}

.visual-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    top: -85px;
    right: -70px;
    background: #c85b7b;
    border-radius: 50%;
}

.visual-card::after {
    content: "♡";
    position: absolute;
    right: 30px;
    bottom: 20px;
    color: #eaaabb;
    font-size: 5rem;
    opacity: 0.35;
}

.visual-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #f0c8d2;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #e9a3b7;
    border-radius: 50%;
}

.visual-symbol {
    position: relative;
    z-index: 2;
    margin-top: 70px;
    color: #e9a3b7;
    font-family: Georgia, serif;
    font-size: 4.8rem;
    line-height: 1;
}

.visual-card h2 {
    position: relative;
    z-index: 2;
    max-width: 280px;
    margin-top: 20px;
    font-family: Georgia, serif;
    font-size: 2.25rem;
    line-height: 1.1;
}

.visual-card p {
    position: relative;
    z-index: 2;
    max-width: 300px;
    margin-top: 18px;
    color: #d8bdc5;
    font-size: 0.86rem;
}

.visual-lines {
    position: absolute;
    left: 40px;
    bottom: 35px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.visual-lines div {
    height: 3px;
    background: #d98aa0;
    border-radius: 10px;
}

.visual-lines div:nth-child(1) {
    width: 70px;
}

.visual-lines div:nth-child(2) {
    width: 48px;
}

.visual-lines div:nth-child(3) {
    width: 85px;
}


/* SECTION HEADINGS */

.section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.section-label {
    margin-bottom: 12px;
    color: #c85b7b;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2,
.about-grid h2,
.contact-info h2,
.cta h2 {
    color: #39232d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 4vw, 3.7rem);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.section-heading h2 span,
.about-grid h2 span,
.contact-info h2 span {
    color: #c85b7b;
    font-style: italic;
}

.section-heading > p:last-child {
    max-width: 620px;
    margin-top: 18px;
    color: #76636b;
}


/* SERVICES */

.services-section {
    background: #ffffff;
}

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

.service-card {
    padding: 32px;
    background: #fffaf8;
    border: 1px solid #f0dce2;
    border-radius: 22px;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: #df9db0;
    box-shadow: 0 20px 45px rgba(57, 35, 45, 0.08);
}

.service-number {
    margin-bottom: 20px;
    color: #c89ba8;
    font-size: 0.68rem;
    font-weight: 800;
}

.service-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #f9e5ea;
    border-radius: 15px;
    color: #c85b7b;
    font-size: 0.78rem;
    font-weight: 800;
}

.service-card h3 {
    margin-bottom: 10px;
    color: #39232d;
    font-size: 1.22rem;
}

.service-card > p {
    margin-bottom: 18px;
    color: #76636b;
    font-size: 0.86rem;
}

.service-card li {
    margin: 8px 0;
    color: #65535b;
    font-size: 0.82rem;
}

.service-card li::before {
    content: "♡";
    margin-right: 8px;
    color: #c85b7b;
    font-weight: 800;
}

.service-link {
    display: inline-block;
    margin-top: 18px;
    color: #a94664;
    font-size: 0.78rem;
    font-weight: 800;
}


/* ABOUT */

.about-section {
    background: #f9e5ea;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.about-content {
    color: #76636b;
}

.about-content > p {
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.about-stats div {
    padding-top: 16px;
    border-top: 2px solid #c85b7b;
}

.about-stats strong {
    display: block;
    color: #a94664;
    font-family: Georgia, serif;
    font-size: 1.5rem;
}

.about-stats span {
    display: block;
    margin-top: 3px;
    color: #76636b;
    font-size: 0.74rem;
}


/* WORK */

.work-section {
    background: #fffaf8;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.project-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #f0dce2;
    border-radius: 22px;
    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(57, 35, 45, 0.08);
}

.featured-project {
    grid-column: span 2;
}

.project-visual {
    min-height: 260px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #39232d;
    color: #ffffff;
}

.project-visual span {
    margin-bottom: 9px;
    color: #eca6b9;
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.project-visual strong {
    font-family: Georgia, serif;
    font-size: 2rem;
}

.project-data {
    background: #a94664;
}

.project-business {
    background: #73535f;
}

.project-content {
    padding: 27px;
}

.project-category {
    margin-bottom: 9px;
    color: #c85b7b;
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.project-content h3 {
    margin-bottom: 9px;
    color: #39232d;
}

.project-content > p:not(.project-category) {
    margin-bottom: 17px;
    color: #76636b;
    font-size: 0.85rem;
}

.project-link {
    color: #a94664;
    font-size: 0.78rem;
    font-weight: 800;
}


/* PROCESS */

.process-section {
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    padding: 23px;
    background: #fffaf8;
    border: 1px solid #f0dce2;
    border-radius: 20px;
}

.process-step > span {
    color: #c85b7b;
    font-size: 0.73rem;
    font-weight: 800;
}

.process-step h3 {
    margin: 17px 0 9px;
    color: #39232d;
    font-family: Georgia, serif;
}

.process-step p {
    color: #76636b;
    font-size: 0.82rem;
}


/* CTA */

.cta {
    padding: 90px 0;
    background: #39232d;
}

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

.cta .section-label {
    color: #eca6b9;
}

.cta h2 {
    max-width: 700px;
    color: #ffffff;
}

.cta h2 span {
    color: #eca6b9;
    font-style: italic;
}

.btn-light {
    background: #ffffff;
    color: #a94664;
}

.btn-light:hover {
    background: #f9e5ea;
    transform: translateY(-3px);
}


/* CONTACT */

.contact-section {
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info > p:not(.section-label) {
    max-width: 520px;
    margin-top: 20px;
    color: #76636b;
}

.contact-details {
    margin-top: 38px;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: #b28d99;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-item a {
    color: #a94664;
    font-weight: 600;
}

.contact-item p {
    color: #65535b;
}


/* FORM */

.contact-form-container {
    padding: 35px;
    background: #fffaf8;
    border: 1px solid #f0dce2;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(57, 35, 45, 0.05);
}

.form-group {
    margin-bottom: 19px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: #65535b;
    font-size: 0.77rem;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    background: #ffffff;
    border: 1px solid #e7ccd4;
    border-radius: 11px;
    outline: none;
    color: #40323a;
    font-size: 0.84rem;
    transition: 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b39da5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c85b7b;
    box-shadow: 0 0 0 4px rgba(200, 91, 123, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-button {
    width: 100%;
    border: none;
}

.form-message {
    display: none;
    margin-top: 14px;
    color: #a94664;
    font-size: 0.8rem;
    font-weight: 600;
}


/* FOOTER */

.footer {
    padding: 48px 0;
    background: #2b1821;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
}

.footer .logo {
    color: #ffffff;
}

.footer .logo span {
    color: #eca6b9;
}

.footer p {
    margin-top: 6px;
    color: #c9b1b9;
    font-size: 0.76rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #e4d0d6;
    font-size: 0.76rem;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #eca6b9;
}

.copyright {
    grid-column: 1 / -1;
    padding-top: 20px;
    border-top: 1px solid #4b303a;
}


/* TABLET */

@media (max-width: 950px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .visual-card {
        max-width: 500px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

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


/* MOBILE */

@media (max-width: 700px) {
    .section {
        padding: 70px 0;
    }

    .container {
        width: 91%;
    }

    .nav-container {
        min-height: 70px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 12px 20px 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: #fffaf8;
        border-bottom: 1px solid #f0dce2;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 12px;
    }

    .nav-button {
        text-align: center;
        margin-top: 5px;
    }

    .hero {
        min-height: auto;
        padding: 70px 0 80px;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 13vw, 4rem);
        letter-spacing: -2px;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .visual-card {
        min-height: 390px;
        padding: 30px;
        border-radius: 27px;
        box-shadow: 11px 11px 0 #efd0d9;
    }

    .visual-symbol {
        margin-top: 55px;
        font-size: 4.2rem;
    }

    .visual-card h2 {
        font-size: 2rem;
    }

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

    .service-card {
        padding: 27px;
    }

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

    .featured-project {
        grid-column: auto;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .cta {
        padding: 75px 0;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form-container {
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .copyright {
        grid-column: auto;
    }
}


/* SMALL PHONES */

@media (max-width: 420px) {
    .container {
        width: 92%;
    }

    .logo {
        font-size: 1.1rem;
    }

    .hero {
        padding: 55px 0 70px;
    }

    .hero h1 {
        font-size: 2.65rem;
    }

    .eyebrow {
        font-size: 0.6rem;
    }

    .visual-card {
        min-height: 350px;
        padding: 25px;
    }

    .visual-symbol {
        margin-top: 48px;
        font-size: 3.8rem;
    }

    .visual-card h2 {
        font-size: 1.8rem;
    }

    .visual-card p {
        font-size: 0.8rem;
    }

    .section-heading h2,
    .about-grid h2,
    .contact-info h2,
    .cta h2 {
        font-size: 2.25rem;
    }

    .project-visual {
        min-height: 210px;
        padding: 25px;
    }

    .project-visual strong {
        font-size: 1.6rem;
    }

    .contact-form-container {
        padding: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 64px;
    width: auto;
    display: block;
    transition: transform .3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

@media (max-width:768px){

.logo-img{
    height:34px;
}

}