/* index9 — Training & Church Seminars preview (red / silver / black) */

:root {
    --deep-red: #8B0000;
    --bright-red: #a52a2a;
    --silver: #c0c0c0;
    --silver-light: #e8e8e8;
    --silver-dark: #8a8a8a;
    --black: #000000;
    --charcoal: #111111;
    --off-black: #1a1a1a;
    --white: #ffffff;
    --text-muted: #5c5c5c;
    --gradient-hero: linear-gradient(135deg, #000 0%, #1a1a1a 40%, #3d0000 70%, #8B0000 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a0000 100%);
    --gradient-silver: linear-gradient(135deg, #f5f5f5 0%, #c0c0c0 50%, #a0a0a0 100%);
    --shadow-red: rgba(139, 0, 0, 0.35);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--off-black);
    background: var(--white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Preview banner */
.preview-banner {
    background: var(--gradient-silver);
    color: var(--charcoal);
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 2px solid var(--deep-red);
    position: relative;
    z-index: 1001;
}

.preview-banner strong {
    color: var(--deep-red);
}

/* Header — matches original index layout */
.header {
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--silver);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo-image {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--silver-light);
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--deep-red);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    padding: 0.5rem 0.65rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-item:hover,
.nav-item.active {
    color: var(--silver-light);
    background: rgba(139, 0, 0, 0.25);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--silver);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero */
.hero-wrap {
    background: var(--gradient-hero);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139, 0, 0, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero {
    min-height: calc(100vh - 36px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 120px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(192, 192, 192, 0.3);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 420px;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(139,0,0,0.25) 100%);
}

.hero-light-rays {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 80%, rgba(139,0,0,0.2) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    text-align: left;
    color: var(--white);
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--silver);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--silver-light) 0%, var(--silver) 40%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: none;
    letter-spacing: 0;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--silver-light);
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 520px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.9rem 1.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--deep-red);
    color: var(--white);
    border-color: var(--deep-red);
}

.btn-primary:hover {
    background: var(--bright-red);
    border-color: var(--bright-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow-red);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-red);
    border-color: var(--deep-red);
}

.btn-secondary:hover {
    background: var(--deep-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow-red);
}

/* Secondary on dark backgrounds (hero, seminars) */
.hero .btn-secondary,
.section-dark .btn-secondary,
.contact-section .btn-secondary {
    color: var(--white);
    border-color: var(--silver);
}

.hero .btn-secondary:hover,
.section-dark .btn-secondary:hover,
.contact-section .btn-secondary:hover {
    background: rgba(192, 192, 192, 0.15);
    color: var(--white);
    box-shadow: none;
}

/* Sections */
.main-content {
    background: var(--white);
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--silver-light);
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-dark .section-title {
    color: var(--silver-light);
}

.section-subtitle {
    text-align: center;
    color: var(--deep-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-red), var(--silver));
    margin: 1rem auto 0;
}

.section-dark .section-title::after {
    background: linear-gradient(90deg, var(--silver), var(--deep-red));
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 820px;
    margin: 0 auto 1.25rem;
    text-align: center;
}

.section-dark .lead-text {
    color: rgba(255, 255, 255, 0.85);
}

/* Training levels */
.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.level-card {
    background: var(--white);
    border: 1px solid rgba(192, 192, 192, 0.6);
    border-top: 4px solid var(--deep-red);
    border-radius: 8px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.level-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow-red);
}

.level-card h3 {
    color: var(--deep-red);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.level-card .level-duration {
    font-size: 0.8rem;
    color: var(--silver-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.level-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.pricing-box {
    text-align: center;
    background: var(--charcoal);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 480px;
    border: 2px solid var(--silver-dark);
}

.pricing-box .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--silver-light);
    margin: 0.5rem 0;
}

.pricing-box .price-note {
    color: var(--silver);
    font-size: 0.95rem;
}

.text-center {
    text-align: center;
}

/* Seminars section */
.seminars-container {
    position: relative;
}

.seminars-header {
    margin-bottom: 2.5rem;
}

.seminars-panel {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow:
        0 0 0 2px rgba(192, 192, 192, 0.2),
        0 0 24px rgba(139, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.seminars-panel::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--silver-dark) 45%, var(--deep-red) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.seminars-panel > * {
    position: relative;
    z-index: 1;
}

.seminars-panel--mass {
    margin-top: 0.5rem;
}

.seminars-panel-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--silver);
    text-align: center;
    margin-bottom: 1.5rem;
}

.seminars-panel-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin: -0.5rem auto 1.5rem;
    line-height: 1.75;
    max-width: 720px;
}

.seminars-panel-note strong {
    color: var(--silver-light);
}

.seminar-grid {
    display: grid;
    gap: 1.25rem;
}

.seminar-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.seminar-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 820px;
    margin: 0 auto;
}

.seminar-card {
    position: relative;
    background: linear-gradient(160deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-radius: 10px;
    padding: 1.65rem 1.5rem 1.5rem;
    border: 1px solid rgba(192, 192, 192, 0.22);
    box-shadow:
        inset 0 0 0 1px rgba(139, 0, 0, 0.15),
        0 8px 28px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.seminar-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-red), var(--silver), var(--deep-red));
    opacity: 0.85;
}

.seminar-card:hover {
    transform: translateY(-4px);
    border-color: rgba(192, 192, 192, 0.45);
    box-shadow:
        inset 0 0 0 1px rgba(139, 0, 0, 0.35),
        0 14px 36px rgba(139, 0, 0, 0.2);
}

.seminar-card--featured {
    border-color: rgba(192, 192, 192, 0.4);
    box-shadow:
        inset 0 0 0 1px rgba(139, 0, 0, 0.3),
        0 0 20px rgba(139, 0, 0, 0.15),
        0 8px 28px rgba(0, 0, 0, 0.35);
}

.seminar-card--featured::after {
    height: 4px;
    opacity: 1;
}

.seminar-duration {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--silver-light);
    background: rgba(139, 0, 0, 0.35);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 4px;
    padding: 0.25rem 0.55rem;
    margin-bottom: 0.85rem;
}

.seminar-card h3 {
    color: var(--silver-light);
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

.seminar-card .seminar-price {
    color: #e8a0a0;
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.seminar-body {
    margin-top: 0.25rem;
}

.seminar-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 0.85rem;
}

.seminar-points {
    list-style: none;
    margin: 0;
    padding: 0;
}

.seminar-points li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.55;
}

.seminar-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--deep-red);
    box-shadow: 0 0 6px rgba(139, 0, 0, 0.6);
}

.seminar-points li:last-child {
    margin-bottom: 0;
}

.seminar-price-unit {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--silver);
    font-family: var(--font-body);
}

.seminar-minimum {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--silver);
    margin-bottom: 0.65rem;
    font-weight: 600;
}

.seminars-cta {
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .seminar-grid--three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .seminars-panel {
        padding: 1.25rem;
    }

    .seminar-grid--two {
        grid-template-columns: 1fr;
    }
}

/* Compact payment section */
.pay-section {
    padding: 3rem 0;
    background: var(--white);
}

.pay-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0 auto 1.75rem;
    line-height: 1.6;
}

.pay-note strong {
    color: var(--deep-red);
}

.pay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 720px;
    margin: 0 auto;
}

.pay-card {
    text-align: center;
    padding: 1.25rem 1rem;
    background: var(--silver-light);
    border: 1px solid rgba(192, 192, 192, 0.6);
    border-top: 3px solid var(--deep-red);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pay-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--shadow-red);
}

.pay-icon {
    font-size: 1.75rem;
    color: var(--deep-red);
    margin-bottom: 0.5rem;
}

.pay-card h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--charcoal);
    margin-bottom: 0.85rem;
}

.btn-sm {
    padding: 0.55rem 1rem;
    font-size: 0.75rem;
    width: 100%;
}

.pay-extra-link {
    display: block;
    margin-top: 0.65rem;
    font-size: 0.72rem;
    color: var(--deep-red);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.pay-extra-link:hover {
    text-decoration: underline;
    color: var(--bright-red);
}

.cta-pair {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.text-center .cta-pair {
    margin-top: 0;
}

@media (max-width: 600px) {
    .pay-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}

/* Resource section */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.resource-card {
    background: var(--white);
    border: 1px solid rgba(192, 192, 192, 0.6);
    border-top: 4px solid var(--deep-red);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
    overflow-wrap: break-word;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow-red);
}

.resource-icon {
    font-size: 1.5rem;
    color: var(--deep-red);
    margin-bottom: 0.75rem;
}

.resource-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-card > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.resource-links {
    list-style: none;
    border-top: 1px solid rgba(192, 192, 192, 0.4);
    padding-top: 0.75rem;
}

.resource-links li {
    margin-bottom: 0.4rem;
    min-width: 0;
}

.resource-links a {
    color: var(--deep-red);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    max-width: 100%;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
    transition: color 0.2s ease;
}

.resource-links a::before {
    content: '\f1c1';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    opacity: 0.7;
    flex-shrink: 0;
    margin-top: 0.2em;
}

.resource-links a:hover {
    color: var(--bright-red);
    text-decoration: underline;
}


/* Scripture section */
.scripture-intro {
    margin-bottom: 0.5rem;
}

.scripture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.scripture-card {
    background: var(--white);
    padding: 2rem 1.75rem 1.5rem;
    border-radius: 8px;
    border-top: 3px solid var(--deep-red);
    border-left: 1px solid rgba(192, 192, 192, 0.5);
    border-right: 1px solid rgba(192, 192, 192, 0.5);
    border-bottom: 1px solid rgba(192, 192, 192, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    margin: 0;
}

.scripture-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--deep-red);
    opacity: 0.2;
    position: absolute;
    top: 0.35rem;
    left: 1rem;
    line-height: 1;
}

.scripture-card p {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
    padding-top: 1.25rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    margin: 0;
}

.scripture-card cite {
    display: block;
    margin-top: 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--deep-red);
}

@media (max-width: 768px) {
    .scripture-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact form */
.contact-section {
    background: var(--gradient-dark);
    color: var(--white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--silver);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(192, 192, 192, 0.4);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-red);
    background: rgba(255, 255, 255, 0.12);
}

.form-group select option {
    background: var(--charcoal);
    color: var(--white);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--silver);
    text-align: center;
    padding: 2.5rem 1rem;
    border-top: 2px solid var(--deep-red);
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--silver-light);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.footer-location {
    font-size: 0.9rem;
    color: var(--silver-dark);
}

.footer-copyright {
    margin-top: 1.25rem;
    font-size: 0.8rem;
    color: var(--silver-dark);
}


/* Mobile */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 120px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-visual {
        order: 2;
        min-height: 280px;
    }

    .hero-visual img {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .header {
        top: 0;
    }

    .preview-banner {
        display: none;
    }

    .hero-wrap {
        margin-top: 0;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        padding: 1rem;
        border-top: 1px solid var(--deep-red);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 0.85rem;
    }

    .logo-image {
        width: 60px;
        height: 60px;
    }

    .logo-title {
        font-size: 0.9rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }
}
