/* ── Public Layout: Header, Nav, Footer, Booking Stepper ── */

body { margin: 0; background: #f8f8f8; display: flex; flex-direction: column; min-height: 100vh; }
.pub-main { flex: 1; }

/* ── Public type overrides ── */
.pub-header, .pub-header * { font-family: 'Inter', system-ui, sans-serif; }

/* ── Public Header (sticky wrapper) ── */
.pub-header {
    position: sticky; top: 0; z-index: 200;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 1px 0 rgba(0,0,0,0.4);
}

/* ── Public Nav ── */
.pub-nav {
    padding: 0 2.5rem;
    height: 68px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}
.pub-nav-brand {
    display: flex; align-items: center; gap: .7rem;
    color: #fff; text-decoration: none;
}
.pub-nav-brand .brand-text {
    display: flex; flex-direction: column;
}
.pub-nav-logo {
    width: 55px; height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.05);
}

.pub-nav-brand .brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem; font-weight: 600; line-height: 1;
    color: #fff; letter-spacing: .01em;
}
.pub-nav-brand .brand-tagline {
    font-size: .6rem; font-weight: 500; color: #ccc;
    letter-spacing: .1em; text-transform: uppercase; margin-top: 1px;
}

/* ── Dynamic Island ── */
.pub-nav-island {
    display: flex; align-items: center; gap: 0;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    padding: 4px;
    transition: box-shadow .3s;
}
.pub-nav-island:has(.island-btn.active) {
    box-shadow: 0 0 0 1px rgba(255,255,255,.2), 0 4px 24px rgba(255,255,255,.06);
}
.island-btn {
    display: flex; align-items: center;
    padding: .34rem .95rem; border-radius: 999px;
    border: none; background: transparent;
    color: #888; font-size: .78rem; font-weight: 500;
    cursor: pointer; white-space: nowrap;
    transition: background .2s, color .2s, transform .15s;
    font-family: 'Playfair Display', Georgia, serif; letter-spacing: .02em;
    text-decoration: none;
}
.island-btn:hover { color: #fff; }
.island-btn.active {
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    transform: scale(1.04);
    box-shadow: 0 2px 12px rgba(255,255,255,.15);
}
/* Island placeholder when no categories (non-index pages) */
.island-placeholder {
    padding: .34rem 1.2rem;
    color: #888; font-size: .75rem;
    letter-spacing: .04em;
}

.pub-nav-right {
    display: flex; align-items: center; gap: 1.25rem;
    justify-content: flex-end;
}
.pub-nav-link {
    color: #888; font-size: .82rem;
    text-decoration: none; transition: color .15s;
    font-weight: 450; letter-spacing: .02em;
    font-family: 'Playfair Display', Georgia, serif;
}
.pub-nav-link:hover { color: #fff; }
.pub-nav-link--photographer {
    color: #666;
    border-left: 1px solid rgba(255,255,255,.1);
    padding-left: 1.25rem;
    font-size: .76rem;
    opacity: .75;
}
.pub-nav-link--photographer:hover { opacity: 1; color: #fff; }
.pub-nav-btn {
    padding: .42rem 1.1rem; border-radius: 8px;
    background: #000000; color: #fff;
    font-size: .8rem; font-weight: 600;
    text-decoration: none; transition: all 0.3s ease;
    letter-spacing: .02em;
    font-family: 'Playfair Display', Georgia, serif;
}
.pub-nav-btn:hover { background: #1e1e1e; color: #fff; transform: translateY(-2px); letter-spacing: .04em; }

/* ── Footer ── */
.pub-footer {
    background: #000000;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 3.5rem 2rem 2.5rem;
    text-align: center;
}
.pub-footer-brand {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff; font-weight: 600; font-size: 1.2rem;
    margin-bottom: .35rem; letter-spacing: .02em;
}
.pub-footer-tagline { color: rgba(255,255,255,.3); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 1.75rem; }
.pub-footer-links { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.pub-footer-link  { color: rgba(255,255,255,.35); font-size: .78rem; text-decoration: none; transition: color .15s; letter-spacing: .01em; }
.pub-footer-link:hover { color: #fff; }
.pub-footer-divider { width: 32px; height: 1px; background: rgba(255,255,255,.12); margin: 0 auto 1rem; }
.pub-footer-copy  { color: rgba(255,255,255,.18); font-size: .72rem; }

/* ── Mobile island strip (below nav, hidden by default) ── */
.pub-nav-island-strip {
    display: none;
}

/* ── Mobile nav collapse ── */
@media (max-width: 640px) {
    .pub-nav {
        grid-template-columns: 1fr auto;
        grid-template-areas: "brand right";
        padding: 0 1.5rem;
        height: 72px;
    }
    .pub-nav-brand { grid-area: brand; }
    .pub-nav-logo { margin-top: 20px; }
    .pub-nav-island { display: none; }
    .pub-nav-right { grid-area: right; gap: .5rem; }
    .pub-nav-link  { display: none; }
    .pub-nav-link--photographer { display: none; }
    .pub-nav-island-strip {
        display: flex;
        align-items: center;
        gap: 0;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        border-top: 1px solid rgba(255,255,255,.08);
        padding: 6px 1rem;
        background: #0a0a0a;
    }
    .pub-nav-island-strip::-webkit-scrollbar { display: none; }
    .pub-nav-island-strip:empty { display: none; }
}

/* ── Booking stepper ── */
.booking-stepper-bar {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}
.booking-stepper {
    max-width: 1000px; margin: 0 auto;
    padding: .85rem 1.5rem;
    display: flex; align-items: center; justify-content: center;
    gap: 0;
}
.bstep {
    display: flex; align-items: center; gap: .5rem;
    font-size: .77rem; font-weight: 500; color: #999;
    white-space: nowrap;
}
.bstep-circle {
    width: 26px; height: 26px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .68rem; font-weight: 700; flex-shrink: 0;
    border: 1.5px solid #dddddd;
    background: #f5f5f5; color: #999;
    transition: all .2s;
}
.bstep.done .bstep-circle {
    background: #e0e0e0; border-color: #ccc; color: #555;
}
.bstep.active .bstep-circle {
    background: #000; border-color: #000; color: #fff;
}
.bstep.active { color: #121212; font-weight: 700; }
.bstep.done   { color: #666; }
.bstep-label  { letter-spacing: .01em; }
.bstep-connector {
    flex: 1; height: 1.5px; background: #e5e5e5;
    min-width: 2rem; max-width: 5rem; margin: 0 .5rem;
}
.bstep-connector.done-connector { background: #ccc; }
@media (max-width: 480px) {
    .bstep-label { display: none; }
    .bstep-connector { min-width: 1rem; max-width: 2.5rem; }
}
