/* NAB2 Barber Shop — Public Landing Page */
:root {
    --gold: #d4af37;
    --gold-light: #f0d78c;
    --gold-dark: #a8892e;
    --red: #c41e3a;
    --yellow: #ffc107;
    --black: #0a0a0a;
    --black-soft: #141414;
    --black-card: #1a1a1a;
    --gray: #8a8a8a;
    --gray-light: #c4c4c4;
    --white: #ffffff;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    --header-h: 80px;
    --radius: 12px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--gray-light);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* Loader */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: opacity 0.6s, visibility 0.6s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { width: 120px; animation: pulse 1.5s ease-in-out infinite; }
.loader-ring {
    width: 48px; height: 48px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }

/* Header */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand img { height: 52px; width: auto; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gray-light);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: var(--black) !important;
    padding: 0.55rem 1.25rem !important;
    border-radius: 50px;
    font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 26px; height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: calc(var(--header-h) + 3rem) 2rem 4rem;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 60%; height: 80%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--gold); }
.hero-desc {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 480px;
    margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline:hover { background: rgba(212, 175, 55, 0.1); }
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
}
.hero-stats span { font-size: 0.85rem; color: var(--gray); }
.hero-visual {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
}
.hero-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 100%;
}
.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    z-index: 4;
    pointer-events: none;
}

/* Hero carousel — explicit height so absolute slides work on mobile */
.hero-image-wrap.hero-carousel {
    aspect-ratio: 4 / 5;
    min-height: 380px;
    max-height: 85vh;
}
.hero-carousel-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.9s ease, transform 1.2s ease;
    z-index: 0;
    visibility: hidden;
}
.hero-carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
    visibility: visible;
}
.hero-carousel-slide img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}
.hero-carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    z-index: 3;
    padding: 0.35rem 0.6rem;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    max-width: calc(100% - 2rem);
    overflow-x: auto;
    scrollbar-width: none;
}
.hero-carousel-dots::-webkit-scrollbar { display: none; }
.hero-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition), transform var(--transition), width var(--transition);
}
.hero-carousel-dot:hover { background: rgba(212, 175, 55, 0.7); }
.hero-carousel-dot.active {
    background: var(--gold);
    width: 22px;
    border-radius: 4px;
}
.hero-carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 3;
}
.hero-carousel-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.1s linear;
}
.hero-carousel.is-paused .hero-carousel-progress span {
    transition: none;
}
@media (prefers-reduced-motion: reduce) {
    .hero-carousel-slide { transition: opacity 0.3s ease; transform: none; }
    .hero-carousel-slide.active { transform: none; }
}
.hero-float-card {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: auto;
    z-index: 5;
    max-width: calc(100% - 2rem);
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow);
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hero-float-card i { color: var(--gold); font-size: 1.5rem; }
.hero-float-card strong { color: var(--white); font-size: 0.95rem; }
.hero-float-card span { font-size: 0.8rem; color: var(--gray); }

/* Sections */
.section {
    padding: 6rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}
.section-header p { color: var(--gray); }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}
.about-images img {
    border-radius: var(--radius);
    object-fit: cover;
    width: 100%;
    height: 220px;
}
.about-images img:first-child { grid-row: span 2; height: 100%; min-height: 360px; }
.about-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
}
.about-content p { margin-bottom: 1.25rem; color: var(--gray); }
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--black-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.about-feature i { color: var(--gold); font-size: 1.25rem; margin-top: 2px; }
.about-feature strong { color: var(--white); display: block; font-size: 0.95rem; }
.about-feature span { font-size: 0.85rem; color: var(--gray); }

/* Services */
.services-section { background: var(--black-soft); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}
.service-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px; height: 56px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.service-icon i { color: var(--gold); font-size: 1.4rem; }
.service-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--gray); }

/* Branches */
.branches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.branch-card {
    background: var(--black-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}
.branch-card:hover { border-color: rgba(212, 175, 55, 0.3); }
.branch-card img { width: 100%; height: 200px; object-fit: cover; }
.branch-card-body { padding: 1.5rem; }
.branch-card h3 { color: var(--white); font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.branch-card p { font-size: 0.9rem; color: var(--gray); }

/* Gallery */
.gallery-section { background: var(--black-soft); padding-bottom: 6rem; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--gold); font-size: 0.85rem; font-weight: 500; }

/* Blog preview */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: var(--black-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.2);
}
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.blog-card h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 0.9rem; color: var(--gray); margin-bottom: 1rem; }
.read-more {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.read-more:hover { gap: 0.6rem; }

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(196, 30, 58, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin: 0 2rem 6rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.cta-banner p { color: var(--gray); margin-bottom: 1.5rem; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.contact-info-item i {
    width: 48px; height: 48px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.contact-info-item strong { color: var(--white); display: block; margin-bottom: 0.25rem; }
.contact-form {
    background: var(--black-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 0.4rem;
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--black-soft);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-alert {
    padding: 0.85rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.form-alert.success { background: rgba(40, 167, 69, 0.15); color: #5dd879; border: 1px solid rgba(40, 167, 69, 0.3); }
.form-alert.error { background: rgba(196, 30, 58, 0.15); color: #ff6b7a; border: 1px solid rgba(196, 30, 58, 0.3); }

/* Blog page */
.page-hero {
    padding: calc(var(--header-h) + 4rem) 2rem 3rem;
    text-align: center;
    background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 0.75rem;
}
.page-hero p { color: var(--gray); max-width: 560px; margin: 0 auto; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img { max-height: 90vh; max-width: 90vw; border-radius: 8px; }
.lightbox-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

/* Footer */
.site-footer {
    background: var(--black-soft);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4rem 2rem 0;
}
.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-brand img { height: 70px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; color: var(--gray); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 40px; height: 40px;
    background: var(--black-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--black); }
.footer-links h4,
.footer-hours h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.footer-links li { margin-bottom: 0.6rem; font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }
.footer-links i { color: var(--gold); margin-right: 0.5rem; width: 16px; }
.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--gray);
}
.footer-hours li span:last-child { color: var(--gray-light); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
}
.footer-credit { margin-top: 0.25rem; font-size: 0.8rem; opacity: 0.7; }

.back-to-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 48px; height: 48px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); }

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        gap: 2rem;
        padding-top: calc(var(--header-h) + 1.5rem);
    }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; flex-wrap: wrap; }
    .hero-visual {
        order: -1;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 0.5rem;
        display: block;
    }
    .hero-image-wrap.hero-carousel {
        min-height: 340px;
        max-height: 65vh;
        aspect-ratio: 4 / 5;
    }
    .about-grid, .contact-grid, .branches-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero { padding-left: 1.25rem; padding-right: 1.25rem; }
    .hero-image-wrap.hero-carousel {
        min-height: 300px;
        max-height: 55vh;
        border-radius: 16px;
    }
    .hero-image-wrap::before { border-radius: 16px; }
    .hero-carousel-dots {
        bottom: 0.75rem;
        max-width: calc(100% - 1.5rem);
    }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: var(--header-h); left: 0; right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
    }
    .nav-menu.open { transform: translateY(0); opacity: 1; }
    .about-images { grid-template-columns: 1fr; }
    .about-images img:first-child { grid-row: auto; min-height: 220px; }
    .about-features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-float-card {
        left: 0.75rem;
        bottom: 3.5rem;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    .hero-float-card i { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .hero-image-wrap.hero-carousel {
        min-height: 280px;
        aspect-ratio: 3 / 4;
    }
    .hero h1 { font-size: 2.25rem; }
    .hero-stats { gap: 1.25rem; }
    .hero-stats strong { font-size: 1.5rem; }
}

/* Hero always visible — do not wait for scroll reveal */
.hero-visual.reveal,
.hero-content.reveal {
    opacity: 1;
    transform: none;
}
