:root {
    --dark:      #2c2c25;
    --muted:     #6a6a6a;
    --gold:      #d4af37;
    --gold-dark: #b8942d;
    --white:     #ffffff;
    --bg-light:  #faf9f5;
}

.video-hero > .video-hero__background,
.video-hero > .video-hero__overlay,
.video-hero > .video-hero__content {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* ============================================================
   SECTION 2 — FOCUS AREAS
   Grid: 1 → 2 → 3 → 5
   ============================================================ */
.nf-focus {
    padding: 40px 16px;
    background: var(--white);
    text-align: center;
}

.nf-focus h2 {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
}

.nf-intro {
    max-width: 780px;
    margin: 0 auto 32px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.nf-focus-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.nf-focus-card {
    background: var(--bg-light);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 14px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nf-focus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(212,175,55,0.15);
    border-color: var(--gold);
}

.nf-focus-icon { color: var(--gold); font-size: 1.4rem; flex-shrink: 0; }

.nf-focus-card p {
    color: var(--dark);
    font-weight: 600;
    line-height: 1.5;
    font-size: 0.98rem;
    text-align: center;
    margin: 0;
}

/* Divider */
.nf-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 16px;
}

.nf-divider span:not(.nf-divider-diamond) {
    flex: 1; height: 1px;
    background: linear-gradient(to right, transparent, rgba(212,175,55,0.5));
}

.nf-divider span:last-child {
    background: linear-gradient(to left, transparent, rgba(212,175,55,0.5));
}

.nf-divider-diamond { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }

/* ============================================================
   SECTION 3 — VISIT
   ============================================================ */
.nf-visit {
    padding: 40px 16px;
    background: var(--bg-light);
    text-align: center;
}

.nf-visit h2 {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
}

.nf-visit p {
    max-width: 640px;
    margin: 0 auto 28px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.nf-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.25s ease;
}

.nf-btn:hover { background: var(--gold-dark); }

/* ============================================================
   BREAKPOINTS
   ============================================================ */

@media (min-width: 480px) {
    .nf-focus-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .nf-focus         { padding: 56px 24px; }
    .nf-visit         { padding: 56px 24px; }
    .nf-focus-grid    { grid-template-columns: repeat(3, 1fr); }
    .nf-intro         { margin-bottom: 48px; }
}

@media (min-width: 1200px) {
    .nf-focus         { padding: 80px 40px; }
    .nf-visit         { padding: 80px 40px; }
    .nf-focus-grid    { grid-template-columns: repeat(5, 1fr); gap: 24px; }
    .nf-focus-card    { padding: 36px 24px; }
}
