/* ─── myBlitz Home — Shared Stylesheet ─── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --forest: #2d3238;
    --cedar: #8B5E3C;
    --slate: #4a5568;
    --stone: #e8e4de;
    --cream: #f7f5f1;
    --white: #ffffff;
    --black: #000000;
    --gold: #B8945A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--cream);
    color: var(--black);
    overflow-x: hidden;
}

/* ─── HEADER ─── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 80px;
    background: #000000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: background 0.4s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 52px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Push hamburger menu to far right on all views */
.menu-wrapper {
    order: 3;
}

.nav-btn:not(#menuToggle) {
    order: 1;
}

.nav-cta {
    order: 2;
}

.nav-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 18px;
    text-decoration: none;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.nav-btn:hover {
    opacity: 0.7;
}

.nav-cta {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--gold);
    border: none;
    cursor: pointer;
    padding: 12px 22px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.25s, transform 0.15s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--cedar);
    transform: translateY(-1px);
}

/* ─── DROPDOWN MENU ─── */
.menu-wrapper {
    position: relative;
}

.menu-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 280px;
    background: rgba(18, 22, 28, 0.97);
    backdrop-filter: blur(12px);
    border-top: 2px solid var(--gold);
    z-index: 2000;
    animation: fadeDown 0.2s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    padding: 16px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.menu-dropdown a:last-child {
    border-bottom: none;
}

.menu-dropdown a:hover {
    background: rgba(184, 148, 90, 0.15);
    color: var(--gold);
    padding-left: 36px;
}

.menu-wrapper.open .menu-dropdown {
    display: block;
}

/* ─── PAGE HERO (sub-pages) ─── */
.page-hero {
    position: relative;
    height: 55vh;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-top: 80px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 18, 22, 0.3) 0%, rgba(15, 18, 22, 0.75) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 48px 80px;
}

.page-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: clamp(36px, 5.5vw, 72px);
    color: var(--white);
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.page-title strong {
    font-weight: 600;
    display: block;
}

/* ─── SECTION DIVIDER ─── */
.section-divider {
    width: 56px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 32px;
}

.section-divider.left {
    margin-left: 0;
}

/* ─── INTRO BLOCK ─── */
.section-intro {
    background: var(--cream);
    text-align: center;
    padding: 100px 40px 80px;
}

.intro-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: clamp(32px, 4.5vw, 60px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.1;
    max-width: 860px;
    margin: 0 auto 32px;
}

.intro-title strong {
    font-weight: 600;
}

.intro-body {
    max-width: 680px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--slate);
}

/* ─── CARD GRID ─── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2px;
    background: var(--stone);
}

.card {
    background: var(--white);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.card:hover .card-img {
    transform: scale(1.04);
}

.card-body {
    padding: 28px 32px 32px;
}

.card-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 22px;
    letter-spacing: 0.04em;
    color: var(--black);
    margin-bottom: 10px;
}

.card-meta {
    font-size: 13px;
    color: var(--slate);
    font-weight: 400;
    line-height: 1.6;
}

.card-stats {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--stone);
}

.card-stat {
    text-align: center;
}

.card-stat-val {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--black);
}

.card-stat-label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate);
    margin-top: 2px;
}

/* ─── CTA BUTTON ─── */
.btn-gold {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    background: var(--gold);
    border: none;
    padding: 16px 44px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.btn-gold:hover {
    background: #a07840;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    background: transparent;
    border: 1.5px solid var(--black);
    padding: 14px 40px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
    background: var(--black);
    color: white;
}

/* ─── DARK STRIP ─── */
.section-dark {
    background: var(--forest);
    color: var(--white);
    text-align: center;
    padding: 90px 40px;
}

.section-dark .section-divider {
    background: var(--gold);
}

.dark-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: clamp(28px, 3.5vw, 48px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.dark-title strong {
    font-weight: 600;
    color: var(--gold);
}

.dark-body {
    max-width: 620px;
    margin: 0 auto 40px;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* ─── FORM ─── */
.form-wrap {
    max-width: 680px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate);
}

input,
select,
textarea {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--stone);
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
}

textarea {
    resize: vertical;
    min-height: 140px;
}

/* ─── GALLERY MASONRY ─── */
.gallery-grid {
    columns: 3;
    column-gap: 4px;
    padding: 4px;
}

.gallery-grid img {
    width: 100%;
    display: block;
    margin-bottom: 4px;
    break-inside: avoid;
    transition: opacity 0.3s;
}

.gallery-grid img:hover {
    opacity: 0.88;
}

/* ─── FOOTER ─── */
footer {
    background: #000000;
    border-top: 2px solid rgba(184, 148, 90, 0.4);
    padding: 0 60px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 36px 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 20px 0;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 11px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Raleway', sans-serif;
}

.footer-contact {
    font-size: 12px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Raleway', sans-serif;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-social {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.footer-social svg {
    vertical-align: middle;
}

.footer-tagline {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}

/* ─── REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
    header {
        padding: 0 20px;
        height: 68px;
    }

    .nav-btn:not(#menuToggle) {
        display: none;
    }

    .menu-wrapper {
        order: 2;
    }

    .nav-cta {
        order: 1;
        padding: 10px 16px;
        font-size: 11px;
        background: var(--cedar);
    }

    .page-hero-content {
        padding: 32px 24px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        columns: 2;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 0 24px;
    }

    .footer-top,
    .footer-bottom,
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        columns: 1;
    }
}