:root {
    --ip-cream: #f7f0e4;
    --ip-warm: #fbf7ef;
    --ip-ink: #191817;
    --ip-muted: #6f675f;
    --ip-gold: #c99a4a;
    --ip-gold-dark: #a97824;
    --ip-soft-line: rgba(25, 24, 23, .12);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ip-ink);
    background: #fff;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: all .25s ease;
}

.ip-serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    letter-spacing: -.03em;
}

.py-lg-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-warm {
    background: var(--ip-warm);
}

/*
|--------------------------------------------------------------------------
| Navigation
|--------------------------------------------------------------------------
*/

.ip-nav {
    padding: 1rem 0;
    background: rgba(255, 250, 242, .82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.45);
}

.ip-brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -.04em;
    color: var(--ip-ink) !important;
}

.ip-brand span {
    color: var(--ip-gold-dark);
}

.nav-link {
    font-weight: 600;
    color: rgba(25,24,23,.72) !important;
}

.nav-link:hover {
    color: var(--ip-ink) !important;
}

/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.ip-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #1d1a17;
}

.ip-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(18,15,12,.84) 0%,
            rgba(18,15,12,.58) 38%,
            rgba(18,15,12,.14) 72%
        ),
        radial-gradient(
            circle at 76% 36%,
            rgba(255,206,126,.24),
            transparent 28%
        ),
        url('../img/hero-london-couple.jpg') center center / cover no-repeat;
    transform: scale(1.02);
}

.ip-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: #f2c77f;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 800;
}

.ip-kicker::before {
    content: '';
    width: 34px;
    height: 1px;
    background: currentColor;
    opacity: .8;
}

.ip-kicker.dark {
    color: var(--ip-gold-dark);
}

.ip-hero h1 {
    color: #fff;
    line-height: .95;
}

.ip-hero-copy {
    color: rgba(255,255,255,.86);
    max-width: 650px;
}

/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
*/

.btn-gold {
    background: var(--ip-gold);
    border-color: var(--ip-gold);
    color: #17130d;
    font-weight: 800;
}

.btn-gold:hover {
    background: #d8aa5a;
    border-color: #d8aa5a;
    color: #17130d;
}

/*
|--------------------------------------------------------------------------
| Step Cards
|--------------------------------------------------------------------------
*/

.ip-step-card {
    background: #fff;
    border: 1px solid var(--ip-soft-line);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(25,24,23,.07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.ip-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(25,24,23,.10);
}

.ip-step-number {
    color: var(--ip-gold-dark);
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: 1rem;
}

.ip-step-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: .75rem;
}

.ip-step-card p {
    color: var(--ip-muted);
    margin-bottom: 0;
}

/*
|--------------------------------------------------------------------------
| Photo Collage
|--------------------------------------------------------------------------
*/

.ip-photo-collage {
    position: relative;
    min-height: 580px;
    isolation: isolate;
}

.ip-photo-collage::before {
    content: '';
    position: absolute;
    width: 72%;
    height: 72%;
    left: -7%;
    bottom: -5%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(201,154,74,.20), transparent 68%);
    z-index: -1;
}

.ip-photo {
    position: absolute;
    overflow: hidden;
    border-radius: 34px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 35px 80px rgba(25,24,23,.16);
    border: 8px solid #fff;
}

.ip-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 46%, rgba(18,15,12,.58) 100%),
        radial-gradient(circle at 82% 12%, rgba(255,218,156,.20), transparent 32%);
    pointer-events: none;
}

.ip-photo-large {
    inset: 0 12% 8% 0;
    background-image: url('../img/feeling-main.jpg');
    background-position: 55% center;
}

.ip-photo-small {
    width: 42%;
    height: 35%;
    right: 0;
}

.ip-photo-small.one {
    top: 9%;
    background-image: url('../img/feeling-laughter.jpg');
}

.ip-photo-small.two {
    bottom: 0;
    background-image: url('../img/feeling-card.jpg');
}

.ip-photo-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: calc(100% - 2rem);
    padding: .55rem .85rem;
    border-radius: 999px;
    background: rgba(255,250,242,.88);
    color: var(--ip-ink);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .03em;
    box-shadow: 0 14px 35px rgba(0,0,0,.16);
    backdrop-filter: blur(10px);
}

/*
|--------------------------------------------------------------------------
| Trust Section
|--------------------------------------------------------------------------
*/

.ip-trust {
    background: #181613;
    color: #fff;
}

.ip-trust strong {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    margin-bottom: .35rem;
}

.ip-trust span {
    color: rgba(255,255,255,.68);
}

/*
|--------------------------------------------------------------------------
| CTA / Footer
|--------------------------------------------------------------------------
*/

.ip-cta {
    max-width: 760px;
}

.ip-footer {
    background: #fff;
    border-top: 1px solid var(--ip-soft-line);
}

.footer-brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -.04em;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 991.98px) {
    .display-1 {
        font-size: 4.2rem;
    }

    .ip-photo-collage {
        min-height: 500px;
    }
}

@media (max-width: 575.98px) {
    .display-1 {
        font-size: 3.25rem;
    }

    .ip-hero {
        min-height: 760px;
    }

    .ip-photo-collage {
        min-height: 430px;
    }

    .ip-photo-large {
        inset: 0 0 26% 0;
    }

    .ip-photo-small {
        width: 50%;
        height: 28%;
    }
}