﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cream: #e8f4fb;
    --warm-white: #f4f9fd;
    --bark: #13294b;
    --clay: #4b9cd3;
    --sage: #7bafd4;
    --dust: #9ec8e8;
    --ink: #1a3a5c;
    --bg-light: #f4f8ff;
    --bg-dark: #dbe8ff;
    --text-main: #1a1a1a;
    --text-muted: #4a4a4a;
    --accent: #3a6cff;
    --card-shadow: 0 8px 20px rgba(0,0,0,0.08);
    --radius: 14px;
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--warm-white);
    color: var(--ink);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

    /* ─── GRAIN OVERLAY ─── */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 1000;
        opacity: 0.45;
    }

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(75,156,211,0.12);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #13294b;
}
    
.nav-logo a {
        color: inherit;
        text-decoration: none;
    }

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

    .nav-links a {
        font-size: 0.72rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #13294b;
        text-decoration: none;
        opacity: 0.6;
        transition: opacity 0.3s;
    }

        .nav-links a:hover {
            opacity: 1;
        }

/* ─── HERO ─── */
.hero {
    min-height: 70vh;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    position: relative;
    overflow: hidden;
    margin-top: 58px;
}

.hero-left {
    background: #4b9cd3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3.5rem 3rem 4rem;
    position: relative;
    overflow: hidden;
}

    .hero-left::before {
        content: '';
        position: absolute;
        top: -20%;
        left: -10%;
        width: 80%;
        height: 80%;
        border-radius: 50%;
        background: radial-gradient(ellipse, rgba(75,156,211,0.2) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0;
    margin-bottom: 1rem;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.0;
    color: #ffffff;
    margin-bottom: 0.3rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

    .hero-name em {
        font-style: italic;
        color: #e8f4fb;
    }

.hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-top: 1.2rem;
    margin-bottom: 2rem;
    max-width: 22rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.6);
    padding-bottom: 0.4rem;
    width: fit-content;
    transition: gap 0.3s, color 0.3s;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

    .hero-cta:hover {
        gap: 1.6rem;
        color: #e8f4fb;
    }

    .hero-cta::after {
        content: '→';
    }

.hero-right {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-photo-collage {
    position: relative;
    width: 100%;
    height: 420px;
}

.pic {
    position: absolute;
    width: 180px;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

    .pic:hover {
        transform: scale(1.05) rotate(0deg);
        z-index: 10;
    }

.p1 {
    top: 20px;
    left: 10px;
    transform: rotate(-4deg);
}

.p2 {
    top: 60px;
    left: 150px;
    transform: rotate(3deg);
}

.p3 {
    top: 10px;
    left: 300px;
    transform: rotate(-2deg);
}

.p4 {
    top: 140px;
    left: 260px;
    transform: rotate(5deg);
}

.p5 {
    top: 200px;
    left: 40px;
    transform: rotate(-6deg);
}

.p6 {
    top: 260px;
    left: 180px;
    transform: rotate(4deg);
}

.p7 {
    top: 220px;
    left: 330px;
    transform: rotate(-3deg);
}

.p8 {
    top: 100px;
    left: 420px;
    transform: rotate(2deg);
}

.hero-instagram {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(19,41,75,0.85);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: background 0.3s;
}

    .hero-instagram:hover {
        background: var(--clay);
    }

    .hero-instagram span {
        font-size: 0.65rem;
        letter-spacing: 0.15em;
        color: var(--cream);
    }

.ig-icon {
    width: 16px;
    height: 16px;
    fill: var(--dust);
}

/* ─── ABOUT STRIP ─── */
.about-strip {
    background: var(--cream);
    padding: 2.5rem 5rem;
    display: flex;
    align-items: center;
    gap: 5rem;
    border-top: 1px solid rgba(75,156,211,0.15);
}

.about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--bark);
    line-height: 1.5;
    flex: 2;
}

.about-text {
    font-size: 0.85rem;
    line-height: 1.9;
    color: rgba(19,41,75,0.65);
    flex: 1;
    border-left: 1px solid var(--dust);
    padding-left: 2.5rem;
}

/* ─── PACKAGES ─── */
.packages-section {
    padding: 4rem 1.5rem;
    max-width: 1100px;
    margin: auto;
    color: var(--text-main);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.section-subtext {
    max-width: 650px;
    margin: 0.5rem auto 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

/* ─── PACKAGE CARDS ─── */
.package-card {
    background: var(--bg-light);
    padding: 1.6rem;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

    .package-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    }

    .package-card.featured {
        background: var(--bg-dark);
        border: 2px solid var(--accent);
    }

.pkg-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    font-size: 0.72rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.pkg-name {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.pkg-price {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.pkg-desc {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

.pkg-divider {
    border: none;
    border-top: 1px solid #cfd8ea;
    margin: 0.8rem 0;
}

.pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    flex: 1; /* pushes button to bottom */
}

.pkg-feature {
    margin-bottom: 0.4rem;
    font-size: 0.88rem;
    color: var(--text-main);
}

/* ─── BOOK BUTTON ─── */
.pkg-book {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    text-align: center;
}

    .pkg-book:hover {
        background: #2f57d6;
    }

/* ─── ADD-ONS CARD ─── */
.addons-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2rem;
    padding: 1.2rem 2rem;
    background: transparent;
    border: 1px solid rgba(75,156,211,0.2);
    box-shadow: none;
    border-radius: var(--radius);
}

    .addons-card .pkg-name {
        margin-bottom: 0;
        white-space: nowrap;
    }

    .addons-card .addons-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem 2rem;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .addons-card .addon-item {
        border-bottom: none;
        font-size: 0.82rem;
        color: rgba(19,41,75,0.6);
        padding: 0;
    }

/* ─── PROCESS ─── */
.process-section {
    background: #deeef8;
    padding: 4rem 5rem;
}

.process-header {
    margin-bottom: 3rem;
}

.process-section .section-title {
    color: var(--bark);
}

    .process-section .section-title em {
        color: var(--clay);
    }

.process-section .section-label {
    color: var(--clay);
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(75,156,211,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .process-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 28px rgba(0,0,0,0.12);
    }

.process-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--clay);
    opacity: 0.8;
    display: block;
    margin-bottom: 0.8rem;
}

.process-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--bark);
    margin-bottom: 0.6rem;
}

.process-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(19,41,75,0.6);
}

/* ─── BOOKING ─── */
.booking-section {
    padding: 3rem 5rem;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: start;
}

.booking-info .section-title {
    margin-bottom: 1rem;
}

.booking-info p {
    font-size: 0.85rem;
    line-height: 1.9;
    color: rgba(19,41,75,0.6);
    max-width: 28rem;
    margin-bottom: 0;
    margin: 0.5rem 0 0.75rem;
}

/* ─── DEPOSIT BLOCK ─── */
.deposit-block {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(75,156,211,0.15);
}

.deposit-label {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 0.75rem;
    display: block;
}

.deposit-note {
    font-size: 0.78rem;
    color: rgba(19,41,75,0.5);
    line-height: 1.7;
    max-width: 24rem;
    margin-bottom: 1rem;
}

.deposit-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.deposit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.75rem 1.4rem;
    transition: transform 0.2s, opacity 0.2s;
}

    .deposit-btn:hover {
        transform: translateY(-1px);
        opacity: 0.88;
    }

    .deposit-btn:active {
        transform: translateY(0);
    }

    .deposit-btn.venmo {
        background: #3d95ce;
        color: #fff;
    }

    .deposit-btn.paypal {
        background: #003087;
        color: #fff;
    }

    .deposit-btn svg {
        width: 14px;
        height: 14px;
        fill: currentColor;
        flex-shrink: 0;
    }

/* ─── CALENDLY WIDGET ─── */
.calendly-wrap {
    overflow: hidden;
    height: 595px;
}

.calendly-inline-widget {
    min-width: unset;
    width: 118%;
    height: 700px;
    border: 1px solid rgba(75,156,211,0.15);
    transform: scale(0.85);
    transform-origin: top left;
}

/* ─── FOOTER ─── */
footer {
    background: #13294b;
    padding: 2.5rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--cream);
    opacity: 0.5;
}

.footer-copy {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(245,240,232,0.25);
}

.footer-ig {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--dust);
    opacity: 0.7;
    transition: opacity 0.3s;
}

    .footer-ig:hover {
        opacity: 1;
    }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s, transform 0.7s;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    nav {
        padding: 1.2rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero {
        grid-template-columns: 1fr;
        margin-top: 52px;
    }

    .hero-left {
        min-height: 55vh;
        padding: 3rem 2rem 2.5rem;
    }

    .hero-right {
        min-height: 45vw;
    }

    .about-strip {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .about-text {
        border-left: none;
        border-top: 1px solid var(--dust);
        padding-left: 0;
        padding-top: 1.5rem;
    }

    .packages-section {
        padding: 3rem 1.5rem;
    }

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

    .addons-card {
        grid-column: 1;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

        .addons-card .addons-list {
            flex-direction: column;
            gap: 0.4rem;
        }

    .process-section {
        padding: 3rem 1.5rem;
    }

    .process-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }

    .booking-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        gap: 2rem;
    }

    .calendly-wrap {
        height: 680px;
    }

    .calendly-inline-widget {
        width: 118%;
        height: 800px;
        transform: scale(0.85);
        transform-origin: top left;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .footer-credit {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
        color: rgba(245,240,232,0.3);
    }

        .footer-credit a {
            color: var(--dust);
            text-decoration: none;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

            .footer-credit a:hover {
                opacity: 1;
            }
}
