:root {
    --cream: #FBF3E3;
    --paper: #FFFDF6;
    --ink: #1A160F;
    --body: #4C4536;
    --coral: #FF5C4D;
    --pink: #FF7CC4;
    --blue: #2D5BFF;
    --yellow: #FFCE3A;
    --mint: #22C58A;
    --purple: #7A5CFF;
    --line: var(--ink);
    --radius: 22px;
    --shadow: 6px 6px 0 var(--ink);
    --shadow-sm: 3px 3px 0 var(--ink);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none;
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: .09;
    mix-blend-mode: multiply
}

::selection {
    background: var(--coral);
    color: #fff
}

/* cursor */
.cursor,
.cursor-follow {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference
}

.cursor {
    width: 10px;
    height: 10px;
    background: #fff;
    transform: translate(-50%, -50%)
}

.cursor-follow {
    width: 44px;
    height: 44px;
    border: 2px solid #fff;
    transform: translate(-50%, -50%);
    transition: transform .18s, width .18s, height .18s
}

.cursor-follow.grow {
    width: 78px;
    height: 78px;
    background: #fff
}

@media (hover:none) {

    .cursor,
    .cursor-follow {
        display: none
    }

    body {
        cursor: auto
    }
}

/* nav */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px clamp(20px, 5vw, 64px);
    /* background: rgba(244, 239, 230, .82); */
    /* backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line) */
}

.brand {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink)
}

.brand .dot {
    width: 13px;
    height: 13px;
    background: var(--coral);
    border-radius: 50%;
    display: inline-block;
    animation: bob 2s ease-in-out infinite
}

@keyframes bob {
    50% {
        transform: translateY(-6px)
    }
}

.nav-links {
    display: flex;
    gap: 6px;
    align-items: center
}

.nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
    font-size: .95rem;
    padding: 8px 16px;
    border-radius: 100px;
    transition: .25s;
    cursor: none
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--ink);
    color: var(--cream)
}

.nav-cta {
    background: var(--blue) !important;
    color: #fff !important;
    border: 1.5px solid var(--blue);
    box-shadow: var(--shadow-sm)
}

/* layout */
.wrap {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 132px clamp(20px, 5vw, 64px) 90px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: var(--cream);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 18px
}

.eyebrow .pulse {
    width: 8px;
    height: 8px;
    background: var(--mint);
    border-radius: 50%;
    animation: pulse 1.4s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

h1 {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 7vw, 5rem);
    line-height: .95;
    letter-spacing: -.025em
}

h1 em {
    font-style: italic;
    background: linear-gradient(90deg, var(--coral), var(--purple), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.sub {
    margin-top: 16px;
    color: var(--body);
    font-size: 1.15rem;
    max-width: 560px;
    line-height: 1.55
}

.grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start
}

/* contact cards */
.info {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: transform .25s, box-shadow .25s
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.info-card .ic {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.3rem
}

.info-card .lbl {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--body)
}

.info-card .val {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.25rem;
    margin-top: 3px;
    color: var(--ink);
    word-break: break-word
}

.info-card .note {
    font-size: .85rem;
    color: var(--body);
    margin-top: 3px
}

.ic.email {
    background: #F3E1D9;
    color: var(--coral)
}

.ic.web {
    background: #DDE7EE;
    color: var(--blue)
}

.ic.phone {
    background: #DDeae3;
    color: var(--mint)
}

.ic.time {
    background: #EDE8DF;
    color: var(--purple)
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 6px
}

.socials a {
    flex: 1;
    text-align: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: .9rem;
    background: var(--paper);
    transition: .2s;
    cursor: none
}

.socials a:hover {
    background: var(--ink);
    color: var(--cream)
}

/* form */
.form-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: clamp(26px, 4vw, 40px);
    box-shadow: var(--shadow)
}

.form-card h2 {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.7rem;
    margin-bottom: 6px
}

.form-card p.fh {
    color: var(--body);
    margin-bottom: 24px
}

.field {
    margin-bottom: 18px
}

.field label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--body);
    margin-bottom: 7px
}

.field input,
.field textarea,
.field select {
    width: 100%;
    font-family: 'Space Grotesk';
    font-size: 1rem;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px 15px;
    transition: .2s;
    cursor: none;
    resize: vertical
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--coral);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(177, 90, 68, .12)
}

.field textarea {
    min-height: 120px
}

.row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.btn {
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 1.02rem;
    cursor: none;
    padding: 15px 30px;
    border-radius: 100px;
    border: 2.5px solid var(--ink);
    color: #fff;
    background: var(--coral);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: var(--shadow);
    width: 100%;
    justify-content: center
}

.btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--ink)
}

.form-ok {
    display: none;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #e4efe8;
    color: #2c5c46;
    font-weight: 500;
    font-size: .95rem
}

.form-ok.show {
    display: block
}

/* footer */
footer {
    background: var(--ink);
    color: var(--cream);
    padding: 56px clamp(20px, 6vw, 80px) 34px
}

.foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center
}

.foot-brand {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.8rem
}

.foot-brand span {
    color: var(--coral)
}

.foot-in a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500
}

.foot-in a:hover {
    color: var(--yellow)
}

.foot-note {
    color: #8a8375;
    font-size: .88rem;
    width: 100%;
    text-align: center;
    margin-top: 24px;
    border-top: 1px solid #3a352c;
    padding-top: 20px
}

footer { padding: 70px clamp(20px, 6vw, 80px) 40px; margin-top: 60px }
.foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto 50px }
.foot-description { margin-top: 14px; color: #8a8375; max-width: 300px; line-height: 1.6 }
.foot-cols { display: flex; gap: 70px; flex-wrap: wrap }
.foot-col h4 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: #8a8375; margin-bottom: 16px }
.foot-col a { display: block; color: var(--cream); text-decoration: none; margin-bottom: 10px; font-weight: 500; transition: .2s }
.foot-col a:hover { color: var(--yellow); transform: translateX(4px) }
.foot-bottom { border-top: 1px solid #333; padding-top: 24px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #8a8375; font-size: .9rem }

@media(max-width:860px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .nav-links a:not(.nav-cta) {
        display: none
    }
}

@media(max-width:460px) {
    .row2 {
        grid-template-columns: 1fr
    }
}

/* ---------- mobile nav dropdown ---------- */
@media(max-width:900px) {
    nav {
        position: fixed
    }

    .nav-links a:not(.nav-cta) {
        display: none
    }

    .menu-btn {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border: 2px solid var(--ink);
        border-radius: 12px;
        background: var(--paper);
        cursor: none;
        box-shadow: 2px 2px 0 var(--ink);
        margin-left: 8px
    }

    .menu-btn span {
        width: 18px;
        height: 2px;
        background: var(--ink);
        position: relative;
        display: block
    }

    .menu-btn span::before,
    .menu-btn span::after {
        content: "";
        position: absolute;
        left: 0;
        width: 18px;
        height: 2px;
        background: var(--ink)
    }

    .menu-btn span::before {
        top: -6px
    }

    .menu-btn span::after {
        top: 6px
    }

    nav.open .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: calc(100% + 10px);
        right: 16px;
        min-width: 210px;
        background: var(--paper);
        border: 2.5px solid var(--ink);
        border-radius: 16px;
        padding: 10px;
        box-shadow: 6px 6px 0 var(--ink);
        z-index: 1001;
        gap: 4px
    }

    nav.open .nav-links a {
        display: block !important;
        text-align: left
    }
}

@media(min-width:901px) {
    .menu-btn {
        display: none !important
    }
}
