:root {
    --bg: #ebebeb;
    --peach: #ffede7;
    --pink: #f3dadd;
    --mauve: #b09da1;
    --blush: #d7697d;
    --ink: #101010;
    --white: #ffffff;
    --shadow: 0 10px 20px rgba(0, 0, 0, .06);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
}

/* Accessibility */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    background: var(--mauve);
    color: #fff;
    padding: .5rem .75rem;
    border-radius: .5rem;
    z-index: 999
}

.container {
    max-width: 1160px;
    margin-inline: auto;
    padding: 48px 20px
}

.section {
    padding: 80px 0
}

.section-header {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center
}

.section-header h2 {
    font-family: Anton, Inter, sans-serif;
    font-size: 2.2rem;
    color: var(--mauve);
    margin: 0 0 .5rem;
}

.lead {
    font-size: 1.1rem
}

/* Navbar */
.site-header {
    position: relative
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(4, 0, 2, .85);
    backdrop-filter: saturate(140%) blur(6px);
    padding: 12px 20px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .12);
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(4, 0, 2, .95);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .5rem
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-links a {
    color: #f8f8f8;
    text-decoration: none;
    font-weight: 600
}

.nav-cta {
    background: var(--blush);
    color: #fff !important;
    padding: .5rem .9rem;
    border-radius: 999px
}

.nav-cta:hover {
    background: var(--mauve)
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 1.25rem
}

/* Logo sizing */
.brand img {
    max-height: 48px;
    /* larger logo in navbar */
    width: auto;
}

.site-footer .brand img {
    max-height: 64px;
    /* footer logo bigger for emphasis */
    width: auto;
}

/* Hero */
.hero {
    position: relative;
    min-height: 82vh;
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: -2;
    will-change: transform;
    transition: transform 0.2s ease-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(243, 218, 221, .7), rgba(152, 96, 103, .45));
    z-index: -1
}

.hero-content {
    max-width: 860px;
    padding: 24px
}

.hero h1 {
    font-family: Anton, Inter, sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.1;
    margin: .25rem 0 1rem;
    color: #131112;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .08);
}

.hero p {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    margin: 0 0 1.25rem
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects */
.package,
.quote {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package:hover,
.quote:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .12);
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 24px rgba(248, 190, 201, .35);
}

/* Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 999px;
    padding: .8rem 1.2rem;
    border: 2px solid transparent;
    font-weight: 700;
    transition: .25s;
    box-shadow: 0 6px 16px rgba(248, 190, 201, .25);
}

.btn-primary {
    background: var(--mauve);
    color: #f6f4f5
}

.btn-primary:hover {
    background: var(--blush);
    box-shadow: 0 8px 20px rgba(165, 148, 151, 0.35)
}

/* About */
.two-col {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 36px;
    align-items: center
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 18px
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow)
}

.icon {
    font-size: 28px;
    color: var(--blush)
}

.rounded {
    border-radius: 18px
}

.shadow {
    box-shadow: var(--shadow)
}

.about img {
    max-width: 90%;
    height: auto;
    margin: auto;
    display: block;
    border-radius: 18px;
}

/* Services */
.services {
    background: var(--peach)
}

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

.package {
    background: #f4f0f3;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 12px
}

.package h3 {
    font-family: Anton, Inter, sans-serif;
    color: var(--mauve);
    margin: .25rem 0
}

.price {
    font-size: 1.6rem;
    color: var(--blush);
    margin: 0
}

.price span {
    font-size: .9rem;
    color: #726e6e
}

.features {
    list-style: none;
    padding: 0;
    margin: 6px 0 16px;
    display: grid;
    gap: 8px
}

.package.highlight {
    outline: 3px solid var(--blush);
    transform: translateY(-4px)
}

.package .btn {
    align-self: flex-start
}

/* Portfolio Section */
.portfolio {
    background: var(--bg);
}

.case-studies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.case-study {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .1);
}

.case-study h3 {
    font-family: Anton, Inter, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--mauve);
}

.case-study p {
    margin: 0 0 10px;
}


/* Testimonials */
.testimonials {
    background: var(--peach)
}

.quote {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow)
}

.quote footer {
    color: var(--mauve);
    font-weight: 700;
    margin-top: 8px
}

/* FAQ */
.faq details {
    background: #fff;
    border-radius: 14px;
    margin: 10px 0;
    padding: 16px;
    box-shadow: var(--shadow)
}

.faq summary {
    cursor: pointer;
    font-weight: 700;
    color: #3b3b3b
}

/* Contact */
.contact {
    background: var(--pink)
}

.contact-form {
    max-width: 720px;
    margin: 0 auto
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px
}

label {
    font-weight: 700;
    margin-bottom: 6px
}

input,
textarea {
    border: 0;
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .06);
    font-size: 1rem
}

input:focus,
textarea:focus {
    outline: 2px solid var(--blush)
}

.form-note {
    font-size: .9rem;
    color: #5a5a5a;
    margin-top: 8px
}

.contact-image {
    display: block;
    margin: 26px auto 0;
    max-width: 90%;
    border-radius: 18px;
}

/* Footer */
.site-footer {
    background: var(--peach);
    padding: 32px 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    align-items: start
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px
}

.footer-links a {
    text-decoration: none;
    color: #333
}

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

.social a {
    color: var(--mauve);
    font-size: 1.25rem;
    margin-right: .75rem
}

.small {
    font-size: .9rem;
    color: #606060
}

/* Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

/* Responsive */
@media (max-width:1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .two-col {
        grid-template-columns: 1fr
    }
}

@media (max-width:720px) {
    .navbar {
        padding: 10px 14px
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center
    }

    .nav-links {
        position: absolute;
        inset: 56px 0 auto 0;
        display: none;
        flex-direction: column;
        background: #1a0e14;
        padding: 16px 20px;
        gap: 14px
    }

    .nav-links.show {
        display: flex
    }

    .nav-links a {
        color: #fff
    }

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

    .about img {
        max-width: 100%;
    }
}