:root {
    --bg: #fffaf7;
    --surface: #ffffff;
    --surface-warm: #fff1ea;
    --text: #2d211d;
    --muted: #725f58;
    --accent: #d86b58;
    --accent-dark: #a64235;
    --rose: #f2b7ab;
    --sage: #8aa08a;
    --gold: #d8a650;
    --ink: #1d2528;
    --border: rgba(45, 33, 29, 0.12);
    --shadow: 0 22px 55px rgba(79, 50, 38, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 247, 0.94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
}

.navbar {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.logo {
    width: 188px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 600;
}

.nav-links a {
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--accent);
    transition: transform 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--text);
}

.hero {
    min-height: calc(100vh - 78px);
    display: grid;
    align-items: center;
    padding: 56px 0;
    background:
        linear-gradient(110deg, rgba(255, 250, 247, 0.96) 0%, rgba(255, 241, 234, 0.86) 48%, rgba(242, 183, 171, 0.34) 100%),
        url("../images/LOGO_2018.png") right 4vw top 72px / min(36vw, 430px) auto no-repeat;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(330px, 0.82fr);
    gap: clamp(32px, 6vw, 76px);
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.hero-copy h1,
.section-title h2,
.contact-panel h2 {
    margin: 14px 0 0;
    line-height: 1.04;
    letter-spacing: 0;
}

.hero-copy h1 {
    max-width: 760px;
    font-size: clamp(2.45rem, 6vw, 5.25rem);
}

.hero-copy p,
.section-title p,
.contact-panel p {
    max-width: 660px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 13px 20px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 14px 30px rgba(216, 107, 88, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--accent-dark);
}

.btn-secondary {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-highlights span {
    border: 1px solid rgba(216, 107, 88, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
    padding: 9px 12px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(45, 33, 29, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 241, 234, 0.82)),
        radial-gradient(circle at 30% 12%, rgba(216, 166, 80, 0.24), transparent 34%),
        var(--surface-warm);
    box-shadow: var(--shadow);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.floating-note {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: min(240px, calc(100% - 44px));
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 16px;
    box-shadow: 0 14px 36px rgba(45, 33, 29, 0.14);
}

.floating-note strong,
.floating-note span {
    display: block;
}

.floating-note span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.92rem;
}

.section {
    padding: clamp(68px, 9vw, 108px) 0;
}

.section-title {
    max-width: 780px;
    margin-bottom: 34px;
}

.section-title h2,
.contact-panel h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
}

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

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

.service-card {
    grid-column: span 2;
    min-height: 260px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #fff8f4);
    padding: 26px;
    box-shadow: 0 16px 34px rgba(79, 50, 38, 0.07);
}

.service-card.featured {
    grid-column: span 4;
    background:
        linear-gradient(115deg, rgba(45, 33, 29, 0.86), rgba(164, 66, 53, 0.72)),
        url("../images/birthday-hero.svg") center / cover no-repeat;
    color: #fff;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.84);
}

.service-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(216, 107, 88, 0.13);
    color: var(--accent-dark);
    font-weight: 900;
}

.featured .service-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.service-card h3,
.step h3,
.portfolio-item h3,
.contact-card h3 {
    margin: 18px 0 0;
    font-size: 1.28rem;
}

.service-card p,
.step p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.72;
}

.experience-section {
    background: linear-gradient(180deg, #fffaf7, #f8eee7);
}

.experience-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: start;
}

.steps {
    display: grid;
    gap: 14px;
}

.step {
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    padding: 22px 24px;
}

.step span {
    color: var(--gold);
    font-weight: 900;
}

.portfolio-section {
    background: var(--ink);
    color: #fff;
}

.portfolio-section .section-title p,
.portfolio-section .eyebrow {
    color: rgba(255, 255, 255, 0.76);
}

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

.portfolio-item {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: end;
    overflow: hidden;
    border-radius: 8px;
    padding: 22px;
    isolation: isolate;
}

.portfolio-item::before,
.portfolio-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
}

.portfolio-item::before {
    background:
        linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.72) 100%),
        var(--item-bg);
}

.portfolio-item::after {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.18;
}

.portfolio-item.birthday {
    grid-column: span 2;
    --item-bg: radial-gradient(circle at 28% 24%, #f3c3bd 0 12%, transparent 13%), linear-gradient(135deg, #d86b58, #d8a650);
}

.portfolio-item.maternity {
    --item-bg: radial-gradient(circle at 70% 20%, #fff1ea 0 14%, transparent 15%), linear-gradient(135deg, #8aa08a, #dfb0a7);
}

.portfolio-item.corporate {
    --item-bg: radial-gradient(circle at 62% 26%, #d8a650 0 10%, transparent 11%), linear-gradient(135deg, #35464b, #8aa08a);
}

.portfolio-item.products {
    --item-bg: radial-gradient(circle at 44% 22%, #ffffff 0 10%, transparent 11%), linear-gradient(135deg, #a64235, #d8a650);
}

.portfolio-item.wedding {
    grid-column: span 2;
    --item-bg: radial-gradient(circle at 68% 22%, #fffaf7 0 12%, transparent 13%), linear-gradient(135deg, #2d211d, #d86b58);
}

.portfolio-item span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-item h3 {
    max-width: 260px;
    color: #fff;
    font-size: 1.55rem;
}

.testimonials-section {
    background: var(--surface);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    padding: 26px;
    box-shadow: 0 14px 32px rgba(79, 50, 38, 0.07);
}

.testimonial-card blockquote {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.75;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    margin-top: 4px;
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-weight: 800;
}

.contact-section {
    background: linear-gradient(135deg, #fff1ea, #fffaf7 64%, rgba(138, 160, 138, 0.22));
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 32px;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    padding: clamp(26px, 5vw, 54px);
    box-shadow: var(--shadow);
}

.contact-card {
    display: grid;
    gap: 14px;
    border-radius: 8px;
    background: var(--text);
    color: #fff;
    padding: 26px;
}

.contact-card h3 {
    margin-top: 0;
}

.contact-card a:not(.btn) {
    color: rgba(255, 255, 255, 0.82);
    overflow-wrap: anywhere;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 45;
    border-radius: 8px;
    background: #1f9d59;
    color: #fff;
    padding: 13px 16px;
    font-size: 0.92rem;
    font-weight: 900;
    box-shadow: 0 16px 30px rgba(31, 157, 89, 0.28);
}

.site-footer {
    padding: 26px 0;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-grid p {
    margin: 0;
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
        background-size: 420px auto;
    }

    .hero-grid,
    .experience-grid,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 430px;
    }

    .service-card,
    .service-card.featured {
        grid-column: span 3;
    }

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

@media (max-width: 760px) {
    .navbar {
        min-height: 70px;
    }

    .logo {
        width: 156px;
    }

    .menu-toggle {
        display: inline-block;
    }

    .nav-links {
        position: fixed;
        inset: 70px 0 auto 0;
        display: grid;
        gap: 0;
        transform: translateY(-120%);
        border-bottom: 1px solid var(--border);
        background: rgba(255, 250, 247, 0.98);
        padding: 12px 16px 18px;
        transition: transform 0.24s ease;
    }

    .nav-links.is-open {
        transform: translateY(0);
    }

    .nav-links a {
        padding: 14px 0;
    }

    .hero {
        padding: 42px 0;
    }

    .cta-group,
    .cta-group .btn {
        width: 100%;
    }

    .service-card,
    .service-card.featured {
        grid-column: 1 / -1;
    }

    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item,
    .portfolio-item.birthday,
    .portfolio-item.wedding {
        grid-column: auto;
        min-height: 230px;
    }

    .footer-grid {
        display: grid;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 24px, 1160px);
    }

    .hero-copy h1 {
        font-size: clamp(2.15rem, 12vw, 3.05rem);
    }

    .section {
        padding: 58px 0;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 340px;
    }

    .floating-note {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
    }

    .service-card,
    .testimonial-card,
    .contact-card {
        padding: 22px;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
    }
}
