/* ============================================
   La Suite — Cafetería & Bar, Narón
   Modern, airy, pastel + deep navy + warm gold
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --navy-900: #0a1628;
    --navy-800: #0f172a;
    --navy-700: #1e2d4a;
    --navy-600: #2d4a7a;
    --navy-500: #3d5a8a;
    --navy-100: #e8eef6;
    --navy-50:  #f4f7fc;

    --gold-500: #c9a84c;
    --gold-400: #d4b965;
    --gold-300: #e0cc8a;
    --gold-200: #f0e4b8;
    --gold-100: #faf5e8;

    --cream-50:  #fefdf9;
    --cream-100: #fdf8ee;
    --cream-200: #f9f3e6;
    --cream-300: #f3ecda;

    --pastel-rose:   #f5e6e0;
    --pastel-sage:   #e8efe8;
    --pastel-lav:    #ece8f5;
    --pastel-sky:    #e4eef5;

    --text-primary:   #0f172a;
    --text-secondary: #475569;
    --text-muted:     #94a3b8;
    --text-light:     #f8fafc;

    --white: #ffffff;
    --shadow-sm:  0 1px 3px rgba(10, 22, 40, 0.06), 0 1px 2px rgba(10, 22, 40, 0.04);
    --shadow-md:  0 4px 16px rgba(10, 22, 40, 0.08), 0 2px 6px rgba(10, 22, 40, 0.04);
    --shadow-lg:  0 12px 40px rgba(10, 22, 40, 0.12), 0 4px 12px rgba(10, 22, 40, 0.06);
    --shadow-xl:  0 24px 60px rgba(10, 22, 40, 0.14), 0 8px 20px rgba(10, 22, 40, 0.08);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--cream-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-gold {
    color: var(--gold-500);
}

em {
    font-style: italic;
}

/* --- Background Blobs --- */
.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.bg-blob--1 {
    width: 500px;
    height: 500px;
    background: var(--pastel-rose);
    top: -100px;
    right: -100px;
}

.bg-blob--2 {
    width: 400px;
    height: 400px;
    background: var(--pastel-sage);
    top: 40%;
    left: -80px;
}

.bg-blob--3 {
    width: 350px;
    height: 350px;
    background: var(--pastel-sky);
    bottom: 10%;
    right: 5%;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(254, 253, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--navy-800);
}

.nav__logo-icon {
    width: 36px;
    height: 36px;
    background: var(--navy-800);
    color: var(--gold-400);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    font-weight: 700;
}

.nav__logo-text {
    transition: var(--transition);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--navy-800);
    background: var(--cream-200);
}

.nav__link--cta {
    background: var(--navy-800);
    color: var(--gold-300) !important;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--navy-700);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--navy-800);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--navy-800);
    color: var(--gold-300);
}

.btn--primary:hover {
    background: var(--navy-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: transparent;
    color: var(--navy-800);
    border: 1.5px solid var(--navy-200, #c8d6e8);
}

.btn--ghost:hover {
    border-color: var(--navy-800);
    background: var(--cream-200);
}

.btn--outline {
    background: transparent;
    color: var(--navy-800);
    border: 1.5px solid var(--navy-800);
}

.btn--outline:hover {
    background: var(--navy-800);
    color: var(--gold-300);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* --- Section shared --- */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy-800);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 60px;
}

/* --- Hero --- */
.hero {
    padding: 140px 0 80px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy-800);
    margin-bottom: 24px;
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 460px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__visual {
    position: relative;
    height: 520px;
}

.hero__image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image--main {
    width: 75%;
    height: 80%;
    position: absolute;
    top: 0;
    right: 0;
}

.hero__image--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image--accent {
    width: 55%;
    height: 40%;
    position: absolute;
    bottom: 0;
    left: 0;
    border: 4px solid var(--cream-50);
}

.hero__image--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Stat Cards --- */
.hero__stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 200px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card--gold {
    background: var(--navy-800);
}

.stat-card--gold .stat-card__number,
.stat-card--gold .stat-card__label {
    color: var(--text-light);
}

.stat-card--gold .stat-card__label {
    color: var(--gold-300);
}

.stat-card__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--cream-200);
    color: var(--navy-700);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card--gold .stat-card__icon {
    background: rgba(201, 168, 76, 0.2);
    color: var(--gold-400);
}

.stat-card__number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1.2;
}

.stat-card__label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* --- About --- */
.about {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__images {
    position: relative;
    height: 560px;
}

.about__image-main {
    width: 75%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream-50);
}

.about__image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__content { max-width: 480px; }

.about__divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-200));
    border-radius: 3px;
    margin-bottom: 28px;
}

.about__text {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy-700);
}

.about__feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold-100);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- Services --- */
.services {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.service-card__img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-card__img img {
    transform: scale(1.05);
}

.service-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--navy-800);
    color: var(--gold-300);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-card__body {
    padding: 28px;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 10px;
}

.service-card__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Divider --- */
.section-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.section-divider__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cream-300), transparent);
}

.section-divider__icon {
    color: var(--gold-400);
    flex-shrink: 0;
}

/* --- Gallery --- */
.gallery {
    padding: 80px 0 100px;
    position: relative;
    z-index: 1;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.04);
}

/* --- CTA --- */
.cta {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.cta__card {
    background: var(--navy-800);
    border-radius: var(--radius-xl);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15), transparent 70%);
    pointer-events: none;
}

.cta__eyebrow { color: var(--gold-400); }

.cta__title {
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta__text {
    color: var(--navy-100);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 400px;
}

.cta__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.cta__actions .btn--primary {
    background: var(--gold-500);
    color: var(--navy-900);
}

.cta__actions .btn--primary:hover {
    background: var(--gold-400);
}

.cta__actions .btn--outline {
    border-color: var(--navy-600);
    color: var(--text-light);
}

.cta__actions .btn--outline:hover {
    background: var(--navy-700);
    border-color: var(--navy-700);
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-200));
    border-radius: 3px;
    margin-bottom: 28px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__detail {
    display: flex;
    gap: 16px;
}

.contact__detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--cream-200);
    color: var(--navy-700);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy-800);
    margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact__detail a:hover {
    color: var(--gold-500);
}

/* --- Form --- */
.contact__form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--cream-50);
    border: 1.5px solid var(--cream-300);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--gold-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-input::placeholder {
    color: var(--text-muted);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: var(--pastel-sage);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: #2d6a4f;
    font-weight: 500;
}

.form-success svg {
    color: #2d6a4f;
    flex-shrink: 0;
}

/* --- Footer --- */
.footer {
    background: var(--navy-800);
    color: var(--text-light);
    padding: 64px 0 0;
    position: relative;
    z-index: 1;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.footer__logo-mark {
    width: 36px;
    height: 36px;
    background: var(--gold-500);
    color: var(--navy-900);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-family: var(--font-display);
    font-weight: 700;
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--navy-100);
    line-height: 1.7;
    max-width: 280px;
}

.footer__links strong,
.footer__contact strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-400);
    margin-bottom: 16px;
}

.footer__links ul,
.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a,
.footer__contact a {
    font-size: 0.9rem;
    color: var(--navy-100);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--gold-300);
}

.footer__contact li {
    font-size: 0.85rem;
    color: var(--navy-100);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
}

.footer__contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gold-400);
}

.footer__bottom {
    border-top: 1px solid var(--navy-700);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--navy-500);
}

/* --- Scroll Animations --- */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__grid {
        gap: 40px;
    }

    .hero__visual {
        height: 420px;
    }

    .about__grid {
        gap: 48px;
    }

    .about__images {
        height: 440px;
    }

    .cta__card {
        padding: 48px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream-50);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        z-index: 999;
    }

    .nav__links.open {
        right: 0;
    }

    .nav__link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav__link--cta {
        margin-left: 0;
        text-align: center;
        justify-content: center;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__visual {
        height: 320px;
        order: -1;
    }

    .hero__image--main {
        width: 80%;
        height: 85%;
    }

    .hero__image--accent {
        width: 55%;
        height: 45%;
    }

    .hero__stats {
        flex-direction: column;
    }

    .stat-card {
        min-width: auto;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__images {
        height: 360px;
        order: -1;
    }

    .about__features {
        grid-template-columns: 1fr;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .cta__card {
        grid-template-columns: 1fr;
        padding: 36px;
        text-align: center;
    }

    .cta__actions {
        flex-direction: row;
        justify-content: center;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__form-wrap {
        padding: 28px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .cta__actions {
        flex-direction: column;
    }

    .cta__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- Mobile overlay --- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.4);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
