:root {
    --peach-50: #FFF5F0;
    --peach-100: #FFDCD0;
    --peach-200: #F4C3B2;
    --cream-100: #FFEEC7;
    --yellow-200: #F3D785;
    --yellow-500: #FFDC27;
    --caramel: #D09E6B;
    --brown: #A65D02;
    --ink: #141414;
    --ink-soft: #2a2422;
    --paper: #FFFBF7;

    --radius: 22px;
    --radius-lg: 40px;

    --font-display: 'Nunito', ui-sans-serif, system-ui, sans-serif;
    --font-body: 'Poppins', ui-sans-serif, system-ui, sans-serif;
}

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

html, body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: clip;
}

body { overflow-x: clip; }

a { color: inherit; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    pointer-events: none;
}
.nav-inner {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px 8px 18px;
    background: rgba(255, 251, 247, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(20, 20, 20, 0.08);
    border-radius: 999px;
}
.nav-logo { height: 28px; margin-right: 8px; }
.nav a.navlink {
    text-decoration: none;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.nav a.navlink:hover { background: var(--peach-100); }
.nav a.cta {
    background: var(--ink);
    color: var(--paper);
    padding: 10px 18px;
}
.nav a.cta:hover { background: var(--brown); color: var(--paper); }

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    -webkit-appearance: none;
    appearance: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--ink);
}
.nav-toggle:hover { background: var(--peach-100); }
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-panel { display: contents; }

@media (max-width: 720px) {
    .nav { top: 12px; }
    .nav-inner {
        position: relative;
        padding: 6px 8px 6px 14px;
        gap: 6px;
    }
    .nav-logo { height: 24px; margin-right: 4px; }
    .nav a.cta { padding: 8px 14px; font-size: 13px; }
    .nav-toggle { display: flex; }

    .nav-panel {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 10px;
        background: rgba(255, 251, 247, 0.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(20, 20, 20, 0.08);
        border-radius: 18px;
        box-shadow: 0 8px 24px rgba(20, 20, 20, 0.08);
    }
    .nav-panel[data-open="true"] { display: flex; }
    .nav-panel a.navlink {
        font-size: 15px;
        padding: 12px 16px;
        border-radius: 12px;
    }
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 32px 80px;
    overflow: hidden;
    background: var(--peach-50);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--paper);
    border: 1px solid rgba(20, 20, 20, 0.08);
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}
.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow-500);
    box-shadow: 0 0 0 4px rgba(255, 220, 39, 0.25);
}

.hero-title {
    font-size: clamp(54px, 9.5vw, 142px);
    line-height: 0.92;
    letter-spacing: -0.02em;
    max-width: 14ch;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    font-weight: 900;
}
.hero-title .line { display: block; }
.hero-title .ch {
    display: inline-block;
    cursor: default;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s;
    will-change: transform;
}
.hero-title .ch:hover {
    animation: wiggle 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--caramel);
}
.hero-title .ch.pop-yellow:hover { color: var(--yellow-500); }
.hero-title .ch.pop-peach:hover { color: var(--peach-200); }
.hero-title .ch.pop-caramel:hover { color: var(--caramel); }
.hero-title .ch.pop-brown:hover { color: var(--brown); }

@keyframes wiggle {
    0% { transform: translateY(0) rotate(0); }
    20% { transform: translateY(-18px) rotate(-8deg) scale(1.15); }
    45% { transform: translateY(4px) rotate(6deg) scale(0.95); }
    70% { transform: translateY(-6px) rotate(-3deg) scale(1.05); }
    100% { transform: translateY(0) rotate(0) scale(1); }
}

.hero-sub {
    max-width: 560px;
    margin: 28px auto 0;
    font-size: 18px;
    color: var(--ink-soft);
    position: relative;
    z-index: 2;
}
.hero-ctas {
    margin-top: 36px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid transparent;
    transition: transform 0.15s, background 0.2s, color 0.2s;
    cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--ink); color: var(--paper); }
.btn.primary:hover { background: var(--brown); }
.btn.ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }

/* ---- Hero + section bubbles ---- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.shape {
    position: absolute;
    animation: drift 14s ease-in-out infinite;
    opacity: 0.9;
}
@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(18px, -30px) scale(1.08); }
    66% { transform: translate(-14px, 22px) scale(0.95); }
}

.section-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.section-bubbles .shape { opacity: 0.5; }
.section-content { position: relative; z-index: 1; }

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-soft);
    animation: bounce 2.2s ease-in-out infinite;
    z-index: 2;
}
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

/* ---- SECTIONS ---- */
section {
    padding: 110px 32px;
    position: relative;
    z-index: 1;
}
.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 20px;
}
.sec-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--ink);
}
.sec-title {
    font-size: clamp(40px, 5.2vw, 72px);
    max-width: 18ch;
    line-height: 1.05;
    margin-bottom: 24px;
}
.sec-intro { max-width: 56ch; font-size: 18px; color: var(--ink-soft); }

/* ---- ABOUT ---- */
.about { background: var(--cream-100); }
.about-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: center;
}
.about-photo {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.4) 0 12px, transparent 12px 24px),
        var(--peach-100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    position: relative;
    overflow: hidden;
}
.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: calc(var(--radius-lg) - 14px);
    position: relative;
    z-index: 0;
}
.about-photo::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: var(--yellow-500);
    border-radius: 50%;
    opacity: 0.9;
    z-index: 1;
}
.about-copy p {
    font-size: 17px;
    margin-bottom: 18px;
    color: var(--ink-soft);
    max-width: 54ch;
}
.about-copy p:first-of-type {
    font-size: 22px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.4;
}
.sign {
    margin-top: 28px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    display: inline-block;
    transform: rotate(-3deg);
    background: var(--paper);
    padding: 6px 18px;
    border-radius: 999px;
    border: 1.5px dashed var(--ink);
}
.stats-row {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.stat {
    background: var(--paper);
    border-radius: var(--radius);
    padding: 20px;
    border: 1.5px solid var(--ink);
}
.stat .n { font-family: var(--font-display); font-weight: 900; font-size: 36px; }
.stat .l { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }

@media (max-width: 820px) {
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-photo { padding: 18px; max-width: 420px; margin: 0 auto; }
    .about-photo img { z-index: 2; }
    .about-photo::before {
        width: 80px;
        height: 80px;
        top: -20px;
        right: -20px;
        z-index: 1;
    }
}

/* ---- SERVICES ---- */
.services { background: var(--paper); }
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.service-card {
    background: var(--peach-50);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 8px 8px 0 var(--ink);
}
.service-card.c1 { background: var(--peach-100); }
.service-card.c2 { background: var(--cream-100); }
.service-card.c3 { background: var(--peach-50); border-style: dashed; }

.service-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}
.service-title { font-size: 32px; line-height: 1.05; margin-bottom: 12px; }
.service-desc {
    font-size: 15px;
    color: var(--ink-soft);
    margin-bottom: 20px;
    flex: 1;
}
.service-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1.5px solid rgba(20, 20, 20, 0.15);
    padding-top: 18px;
    margin-top: auto;
}
.service-meta .row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 500;
}
.service-meta .row span:first-child {
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
}
.service-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--ink);
    color: var(--paper);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.service-badge.soon { background: var(--yellow-500); color: var(--ink); }
.service-icon { width: 64px; height: 64px; margin-bottom: 18px; display: block; }

@media (max-width: 820px) {
    .service-grid { grid-template-columns: 1fr; }
}

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--peach-100); }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.testi {
    background: var(--paper);
    border-radius: var(--radius);
    padding: 28px;
    border: 1.5px solid var(--ink);
    position: relative;
    transition: transform 0.2s;
}
.testi:hover { transform: rotate(-1deg); }
.testi:nth-child(2) { background: var(--cream-100); transform: rotate(1.5deg); }
.testi:nth-child(2):hover { transform: rotate(0); }
.testi:nth-child(3) { transform: rotate(-0.8deg); }
.testi .quote {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 48px;
    line-height: 0.5;
    color: var(--yellow-500);
    margin-bottom: 10px;
}
.testi p { font-size: 15px; color: var(--ink-soft); margin-bottom: 18px; line-height: 1.5; }
.testi .who { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.testi .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--peach-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
}
.testi .who .name { font-weight: 600; }
.testi .who .meta { color: var(--ink-soft); font-size: 12px; }

@media (max-width: 820px) {
    .testi-grid { grid-template-columns: 1fr; }
}

/* ---- FAQ ---- */
.faq { background: var(--paper); }
.faq-list { margin-top: 48px; max-width: 820px; }
.faq-item {
    border-bottom: 1.5px solid var(--ink);
    padding: 22px 0;
}
.faq-item:first-child { border-top: 1.5px solid var(--ink); }
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(20px, 2.2vw, 26px);
    list-style: none;
    padding: 0;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--peach-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.3s, background 0.2s;
    font-family: var(--font-display);
    font-weight: 900;
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--yellow-500);
}
.faq-a {
    color: var(--ink-soft);
    font-size: 16px;
    padding-top: 14px;
}

/* ---- CONTACT ---- */
.contact {
    background: var(--ink);
    color: var(--paper);
    text-align: center;
    padding: 120px 32px 60px;
    overflow: hidden;
    position: relative;
}
.contact h2 {
    font-size: clamp(52px, 8vw, 120px);
    color: var(--paper);
    max-width: 14ch;
    margin: 0 auto 28px;
    line-height: 0.95;
}
.contact h2 .pop {
    color: var(--yellow-200);
    display: inline-block;
    cursor: default;
    transition: color 0.25s;
}
.contact h2 .pop:hover { animation: wiggle 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.contact p {
    color: rgba(255, 251, 247, 0.7);
    max-width: 48ch;
    margin: 0 auto 40px;
    font-size: 17px;
}
.contact-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact-ctas .btn.primary {
    background: var(--yellow-200);
    color: var(--ink);
}
.contact-ctas .btn.primary:hover { background: var(--yellow-500); color: var(--ink); }
.contact-ctas .btn.ghost {
    border-color: rgba(255, 251, 247, 0.3);
    color: var(--paper);
}
.contact-ctas .btn.ghost:hover {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
}
.contact-meta {
    margin-top: 64px;
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 13px;
    color: rgba(255, 251, 247, 0.5);
    flex-wrap: wrap;
}
.contact-shape {
    position: absolute;
    opacity: 0.06;
}

/* ---- FOOTER ---- */
footer {
    background: var(--ink);
    color: rgba(255, 251, 247, 0.5);
    padding: 32px;
    text-align: center;
    font-size: 12px;
    border-top: 1px solid rgba(255, 251, 247, 0.1);
}

/* ---- DIVIDERS ---- */
.divider-wrap { line-height: 0; margin-bottom: -1px; }
.divider-wrap svg { display: block; width: 100%; height: 70px; }

/* ---- SKIP LINK ---- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 100;
    background: var(--paper);
    color: var(--ink);
    padding: 12px 18px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.15s;
}
.skip-link:focus { top: 16px; }

/* ---- FOCUS VISIBLE ---- */
.btn:focus-visible,
.navlink:focus-visible,
.faq-q:focus-visible,
.skip-link:focus-visible,
.nav-toggle:focus-visible,
.faq-a a:focus-visible {
    outline: 3px solid var(--yellow-500);
    outline-offset: 3px;
    border-radius: inherit;
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
