@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap');

:root {
    --primary: #1a3a52;
    --secondary: #f4a460;
    --primary-dark: #12283a;
    --sky: #4da6c7;
    --accent: var(--secondary);
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --bg-light: #12283a; /* Darker navy for alternating sections */
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--primary);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e6934f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(244, 164, 96, 0.3);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 0.7rem 0;
}

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

.logo img {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 55px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--secondary);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 1.5rem;
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 75vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    padding-top: 112px; /* Clears fixed header on desktop */
}

/* Background picture fills the section */
.hero-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Dark gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(18, 40, 58, 0.7) 0%,
        rgba(26, 58, 82, 0.9) 100%
    );
    z-index: 1;
}

/* Hero content sits above overlay */
.hero-body {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero {
        height: 65vh;
        min-height: 500px;
        padding-top: 95px;
    }
    .hero-logo {
        height: 140px;
        margin-bottom: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        height: 100svh;
        min-height: 500px;
        padding-top: 80px;
    }
    .hero-img { object-position: center 30%; }
    .hero-logo {
        height: 110px;
        margin-bottom: 1.2rem;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    height: 180px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
    transition: var(--transition);
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--sky);
}

/* Facilities Section */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.facility-card {
    background: #fdfdfd;
    color: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid var(--secondary);
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.facility-card h3 {
    color: var(--primary) !important;
}

.facility-card p {
    color: #6c757d !important;
}

.facility-img {
    height: 250px;
    overflow: hidden;
}

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

.facility-card:hover .facility-img img {
    transform: scale(1.1);
}

.facility-info {
    padding: 1.5rem;
}

.facility-info h3 {
    margin-bottom: 0.5rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 3rem 2rem;
    background: #fdfdfd;
    color: #1a1a1a;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-bottom: 4px solid var(--secondary);
}

.service-card h3 {
    color: var(--primary) !important;
}

.service-card p {
    color: #6c757d !important;
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

/* Schedule Section */
.schedule-box {
    background: var(--bg-light);
    color: var(--white);
    padding: 4rem;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.schedule-info h2 {
    color: var(--white);
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.team-card {
    background: #fdfdfd;
    color: #1a1a1a;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid var(--secondary);
    box-shadow: var(--shadow);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: #ffffff;
}

.team-card h3 {
    color: var(--primary) !important;
}

.team-card p {
    color: var(--secondary) !important;
}

.team-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.team-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.team-card p {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #fdfdfd;
    color: #1a1a1a;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--secondary);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.review-card .review-text {
    color: #6c757d !important;
}

.review-card .review-author {
    color: var(--primary) !important;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.review-author {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary);
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .contact-grid, .schedule-box {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .logo img {
        height: 55px;
    }
    
    header {
        padding: 0.6rem 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Watermark Section Overlay */
.watermark-bg {
    position: relative;
    overflow: hidden;
}

.watermark-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: url('assets/logo_bn.png') no-repeat center;
    background-size: contain;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.watermark-bg > * {
    position: relative;
    z-index: 1;
}

.service-icon img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Sponsors Section */
.sponsors-section {
    padding: 80px 0;
    background-color: transparent;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.sponsor-card {
    background: #fdfdfd;
    color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid var(--secondary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sponsor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.sponsor-card h3 {
    color: var(--primary) !important;
}

.sponsor-card p {
    color: #6c757d !important;
}

.sponsor-logo-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sponsor-logo-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.sponsor-fallback-text {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    font-size: 1.2rem;
}

.sponsor-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    min-height: 3rem;
}

.sponsor-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer Sponsors */
.footer-sponsors {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-sponsors-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.footer-sponsors-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-sponsor-img-wrapper {
    background: var(--white);
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.footer-sponsor-link:hover .footer-sponsor-img-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.footer-sponsor-img-wrapper img {
    max-height: 100%;
    max-width: 120px;
    object-fit: contain;
}

.footer-sponsor-text {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    color: var(--white);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 58, 82, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 3rem;
    border-radius: 25px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    animation: modalIn 0.4s ease-out;
}

@keyframes modalIn {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
}

.modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.modal-header h3 {
    font-size: 2rem;
}

.modal-body p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Mobile Header Badge */
.mobile-badge {
    display: none;
    background: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .mobile-badge {
        display: flex;
        margin-right: 1rem;
    }
    
    .mobile-badge img {
        height: 20px;
        width: auto;
    }
    
    .mobile-badge span {
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--primary);
    }
    
    .footer-sponsors-list {
        gap: 2rem;
    }
    
    footer {
        padding-bottom: 80px; /* Space for sticky booking button */
    }
}

/* ---- Language Switcher ---- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-right: 0.5rem;
}

.lang-btn {
    background: none;
    border: 1.5px solid transparent;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    border-color: var(--secondary);
    color: var(--secondary);
}

.lang-sep {
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .lang-switcher {
        position: static;
        margin-left: auto;
        margin-right: 1.5rem;
    }
}

/* ---- Contact Items as Links ---- */
a.contact-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border-radius: 12px;
    padding: 0.75rem;
    margin: -0.75rem;
    transition: var(--transition);
}

a.contact-item:hover {
    background: rgba(244, 164, 96, 0.08);
    transform: translateX(6px);
}

a.contact-item h4 {
    color: var(--primary);
}

a.contact-item p {
    color: var(--text-muted);
}

a.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 0.15rem;
}

/* ---- WhatsApp Floating Button ---- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--secondary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(244, 164, 96, 0.4);
}

/* ---- Sticky Mobile CTA ---- */
.sticky-cta-mobile {
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        padding: 1rem 1.5rem;
        background: linear-gradient(to top, rgba(26,58,82,0.98) 60%, transparent);
    }

    .sticky-cta-mobile .btn {
        width: 100%;
        text-align: center;
        font-size: 1rem;
        padding: 1rem;
    }

    /* Avoid overlap with sticky CTA */
    .whatsapp-float {
        bottom: 90px;
    }
}

/* ---- Form Status ---- */
.form-status {
    grid-column: span 2;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
}

.form-status.success {
    background: rgba(163, 215, 0, 0.15);
    color: #4a7c00;
    border: 1px solid #a3d700;
    display: block;
}

.form-status.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
    display: block;
}

/* ---- Legal Modals ---- */
.modal-legal {
    max-height: 85vh;
    overflow-y: auto;
}

.legal-body h4 {
    color: var(--primary);
    font-size: 1rem;
    margin: 1.5rem 0 0.5rem;
    border-left: 3px solid var(--secondary);
    padding-left: 0.75rem;
}

.legal-body h4:first-of-type {
    margin-top: 0;
}

.legal-update {
    background: #fff8e1;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: #7a5800;
    margin-bottom: 1.5rem !important;
}

.legal-download {
    margin-top: 2rem;
    text-align: center;
}

.legal-download .btn i {
    margin-right: 0.5rem;
}

.rules-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.rules-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.rules-list li i {
    color: var(--accent);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* ---- Contact Cards (sin formulario) ---- */
.contact-card {
    text-decoration: none;
    color: #1a1a1a;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: #fdfdfd;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border-bottom: 4px solid var(--secondary);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
    background: #ffffff;
}

.contact-card i {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.contact-card h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-card p {
    color: #6c757d !important;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

/* ---- Hero mobile focus fix ---- */
@media (max-width: 768px) {
    .hero {
        background-position: center top;
    }
}
