:root {
    --canvas: #FAFAF7;
    --surface: #F1EEE7;
    --ink: #181817;
    --ink-muted: #6C6A64;
    --line: #E6E2D8;
    --coral: #F2542D;
    --coral-deep: #D3401D;
    --coral-accessible: #C23B1B;
    --mint: #2F9E88;
    --sunflower: #F2B134;
    --radius: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--canvas);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, .display {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.marker {
    font-family: 'Caveat', cursive;
    font-weight: 700;
}

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

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

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

section {
    position: relative;
}

.alt {
    background: var(--surface);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--coral-deep);
    color: #fff;
}

.btn-primary:hover {
    background: var(--coral-accessible);
}

.btn-ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--ink);
}

.btn-ghost:hover {
    border-color: var(--ink);
}

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--coral-accessible);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

/* sticker / tape badge */
.sticker {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 18px;
    background: var(--sunflower);
    color: #3A2A00;
    padding: 5px 16px 7px;
    border-radius: 6px;
    transform: rotate(-3deg);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.sticker.mint {
    background: var(--mint);
    color: var(--ink);
}

.sticker.coral {
    background: var(--coral);
    color: #fff;
}

/* ---- SKIP LINK ---- */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    z-index: 1000;
    background: var(--ink);
    color: #fff;
    padding: 10px 18px;
    border-radius: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    transition: top .15s ease;
}

.skip-link:focus {
    top: 0;
}

/* ---- NAV ---- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 247, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

nav > .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 19px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-muted);
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 16px;
    height: 1.6px;
    background: var(--ink);
    position: relative;
}

.menu-toggle span::before, .menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 16px;
    height: 1.6px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span::before {
    top: -5px;
}

.menu-toggle span::after {
    top: 5px;
}

.menu-toggle[aria-expanded="true"] span {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
    transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
    transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    background: var(--canvas);
    border-bottom: 1px solid transparent;
    transition: max-height .25s ease, border-color .25s ease;
}

.mobile-menu.open {
    max-height: 320px;
    border-bottom-color: var(--line);
}

.mobile-menu .wrap {
    display: flex;
    flex-direction: column;
    padding: 8px 32px 20px;
}

.mobile-menu a {
    font-size: 15.5px;
    font-weight: 500;
    color: var(--ink);
    padding: 13px 0;
    border-top: 1px solid var(--line);
}

.mobile-menu a:first-child {
    border-top: none;
}

@media (max-width: 760px) {
    nav > .wrap {
        height: 64px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .logo {
        gap: 8px;
        font-size: 16px;
        white-space: nowrap;
    }

    .logo-mark {
        width: 30px;
        height: 30px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        flex-shrink: 0;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 420px) {
    nav .btn-primary {
        padding: 10px 16px;
        font-size: 13.5px;
    }

    .mobile-menu .wrap {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ---- photo-card component (abstract "photo") ---- */
.photo-card {
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 34px -12px rgba(24, 24, 23, 0.28);
    background-size: cover;
}

.pc-1 {
    background: linear-gradient(150deg, #F2B4A0, #F2542D);
}

.pc-2 {
    background: linear-gradient(150deg, #BFE3DA, #2F9E88);
}

.pc-3 {
    background: linear-gradient(150deg, #FBE3A8, #F2B134);
}

.pc-4 {
    background: linear-gradient(150deg, #D9D4E8, #8B7FB0);
}

.pc-5 {
    background: linear-gradient(150deg, #F2C6D0, #D9506B);
}

.pc-6 {
    background: linear-gradient(150deg, #C9DDF2, #4E7FB0);
}

footer {
    border-top: 1px solid var(--line);
    padding: 44px 0;
}

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

footer .foot-links {
    display: flex;
    gap: 26px;
    font-size: 13px;
    color: var(--ink-muted);
}

footer .foot-links a:hover {
    color: var(--ink);
}

.copyright {
    font-size: 13px;
    color: var(--ink-muted);
}

.section-head {
    max-width: 600px;
    margin-bottom: 52px;
}

.section-head h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    margin-bottom: 14px;
}

.section-head p {
    color: var(--ink-muted);
    font-size: 16.5px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .btn {
        transition: none;
    }
}
