/* ==========================================================
   Layout: header, navigation, hero, footer
========================================================== */

/* =========================
   Header & Navigation
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 14px clamp(18px, 4vw, 62px);
    background: rgba(5, 4, 10, 0.74);
    border-bottom: 1px solid var(--border-soft);
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 950;
    letter-spacing: 0.02em;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border: 2px solid rgba(214, 168, 242, 0.46);
    border-radius: 50%;
    box-shadow: var(--glow);
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.94rem;
    font-weight: 850;
}

.nav a {
    color: var(--muted);
    text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
    color: var(--text);
}

/* Highlighted Schedule button */
.nav .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    color: #05040a !important;
    font-weight: 950;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright)) !important;
    border: 1px solid rgba(243, 214, 155, 0.6);
    box-shadow: 0 12px 28px rgba(199, 162, 122, 0.24);
    transition: all 0.2s ease;
}

.nav .nav-cta:hover {
    color: #05040a !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(199, 162, 122, 0.35);
}

.nav-toggle {
    display: none;
    color: var(--text);
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    cursor: pointer;
}

/* =========================
   Homepage Hero
========================= */

.hero {
    min-height: calc(100vh - 88px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: clamp(34px, 7vw, 86px);
    align-items: center;
}

.hero-copy h1 {
    max-width: 820px;
    margin-bottom: 22px;
}

.hero-text {
    max-width: 740px;
}

.hero-art {
    display: grid;
    place-items: center;
}

.hero-photo {
    width: min(430px, 100%);
    margin: 0 auto;
}

/* =========================
   Trust Strip
========================= */

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.trust-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 12px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 850;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
}

/* =========================
   Footer
========================= */

.site-footer {
    padding: 46px 20px;
    color: var(--muted);
    text-align: center;
    border-top: 1px solid var(--border-soft);
}

.site-footer img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    margin: 0 auto 14px;
    border-radius: 50%;
    border: 1px solid var(--border);
}