/* ============================================
   ARTEO LUXURY - Global Stylesheet
   Theme: Black & White (minimal grey)
   Fonts: Futura Bold (titles), Poppins (body)
   ============================================ */

@font-face {
    font-family: 'Futura Bold';
    src: local('Futura Bold'), local('Futura-Bold'), local('Futura PT Bold');
    font-weight: 700;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: #000;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Futura Bold', 'Poppins';
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.3rem; }

p {
    font-family: 'Poppins';
    font-weight: 300;
    color: #333;
    line-height: 1.8;
}

/* ---------- Navigation ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 40px;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: 'Poppins';
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #000;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #000;
    color: #fff;
    font-family: 'Poppins';
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    border: 2px solid #000;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #fff;
    color: #000;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: #000;
    font-family: 'Poppins';
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0;
    border: 1px solid #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background: #000;
    color: #fff;
}

/* ---------- Home Hero ---------- */
.home-page .navbar {
    position: absolute;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.home-page .navbar.scrolled {
    position: fixed;
    background: #000;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.home-page .nav-logo img {
    filter: brightness(0) invert(1);
}

.home-page .nav-links a {
    color: #fff;
}

.home-page .nav-links a::after {
    background: #fff;
}

.home-page .hamburger span {
    background: #fff;
}

.home-page .btn-cta {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.home-page .btn-cta:hover {
    background: transparent;
    color: #fff;
}

.home-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 130px 48px 150px;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.62) 40%, rgba(0,0,0,0.34) 72%, rgba(0,0,0,0.22) 100%),
        linear-gradient(0deg, rgba(0,0,0,0.74) 0%, rgba(0,0,0,0.1) 48%),
        url("https://drive.google.com/thumbnail?id=1p-aJ0sgceHlKonoTM0yVuZf_KtMpoiVO&sz=w1600") center / cover no-repeat;
}

.home-hero-content {
    width: min(1050px, 72vw);
    position: relative;
    z-index: 2;
}

.home-hero h1 {
    color: #fff;
    font-size: clamp(3.4rem, 7.2vw, 8.8rem);
    line-height: 0.98;
    max-width: 1120px;
    text-transform: none;
    margin-bottom: 42px;
}

.home-hero p {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.15rem, 1.8vw, 2rem);
    line-height: 1.8;
    max-width: 760px;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 52px;
}

.hero-primary,
.hero-secondary {
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 34px;
    font-family: 'Poppins';
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-primary {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.hero-primary::after {
    content: ' ->';
}

.hero-primary:hover {
    background: transparent;
    color: #fff;
}

.hero-secondary {
    border: 1px solid rgba(255, 255, 255, 0.48);
    color: #fff;
    background: rgba(0, 0, 0, 0.16);
    text-transform: none;
    font-size: 1rem;
}

.hero-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.hero-call-card {
    position: absolute;
    right: 48px;
    bottom: 118px;
    z-index: 2;
    width: min(390px, calc(100vw - 96px));
    padding: 32px 38px;
    background: rgba(0, 0, 0, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-call-card:hover {
    transform: translateY(-4px);
    border-color: #fff;
}

.hero-call-card span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-call-card strong {
    display: block;
    font-family: 'Poppins';
    font-size: clamp(1.55rem, 2.4vw, 2.35rem);
    font-weight: 400;
    line-height: 1;
}

.hero-stats {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.2);
}

.hero-stat {
    min-height: 118px;
    padding: 26px 46px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stat:last-child {
    border-right: 0;
}

.hero-stat strong {
    display: block;
    color: #fff;
    font-family: 'Futura Bold', 'Poppins';
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1;
    margin-bottom: 12px;
}

.hero-stat span {
    color: rgba(255, 255, 255, 0.72);
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

/* ---------- Data Points Bar ---------- */
.data-bar {
    background: #000;
    padding: 40px 20px;
}

.data-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.data-item {
    padding: 10px;
}

.data-number {
    font-family: 'Futura Bold', 'Poppins';
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.data-label {
    font-family: 'Poppins';
    font-size: 0.75rem;
    font-weight: 400;
    color: #d8d8d8;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* ---------- Marquee ---------- */
.marquee-wrapper {
    padding: 60px 0;
    background: #f5f5f5;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: calc(380px * 30);
    animation: marquee-scroll 60s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.image-container {
    width: 350px;
    height: 500px;
    margin: 0 15px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-380px * 15)); }
}

/* ---------- Section Styling ---------- */
.section {
    padding: 100px 20px;
}

.section-dark {
    background: #000;
    color: #fff;
}

.section-light {
    background: #fff;
    color: #000;
}

.section-grey {
    background: #f7f7f7;
    color: #000;
}

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

.section-header h2 {
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: #aaa;
}

/* ---------- Services ---------- */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    color: #000;
    font-family: 'Futura Bold', 'Poppins';
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0;
}

.service-card h3 {
    font-family: 'Futura Bold', 'Poppins';
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
}

.section-dark .service-card {
    background: #111;
    border-color: #222;
}

.section-dark .service-card p {
    color: #aaa;
}

/* ---------- Intro / About Teaser ---------- */
.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: #444;
}

.btn-outline {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 40px;
    border: 2px solid #000;
    color: #000;
    font-family: 'Poppins';
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

/* ---------- Contact Section ---------- */
.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-item {
    margin-bottom: 35px;
}

.contact-info-item h3 {
    font-family: 'Futura Bold', 'Poppins';
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 8px;
}

.contact-info-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-form {
    background: #f5f5f5;
    padding: 50px;
    border-radius: 0;
}

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

.form-group label {
    display: block;
    font-family: 'Poppins';
    font-size: 0.7rem;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: 'Poppins';
    font-size: 0.95rem;
    color: #000;
    background: #fff;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #000;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    font-family: 'Poppins';
    font-size: 0.8rem;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #fff;
    color: #000;
}

/* ---------- Gallery ---------- */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 28px;
    font-family: 'Poppins';
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.gallery-overlay p {
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 4px;
}

/* ---------- Page Hero ---------- */
.page-hero {
    height: 40vh;
    min-height: 300px;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.page-hero h1 {
    color: #fff;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 12px;
}

.page-hero p {
    color: #d8d8d8;
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* ---------- About Page ---------- */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.value-item h3 {
    font-family: 'Futura Bold', 'Poppins';
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 12px;
    font-size: 1rem;
}

.value-item p {
    font-size: 0.9rem;
    color: #666;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

/* ---------- Room Page ---------- */
.room-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.room-intro p {
    font-size: 1.05rem;
    color: #555;
}

/* ---------- Footer ---------- */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 40px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #888;
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.8;
}

.footer-brand img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    font-family: 'Futura Bold', 'Poppins';
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 24px;
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 0;
}

/* ---------- Lightbox ---------- */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    font-family: 'Poppins';
    font-weight: 300;
}

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .home-hero {
        align-items: flex-start;
        padding-top: 130px;
    }

    .home-hero-content {
        width: 100%;
    }

    .hero-call-card {
        right: 32px;
        bottom: 128px;
    }

    .hero-stat {
        padding: 24px 28px 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .home-page .navbar {
        padding: 0 20px;
    }

    .home-page .nav-links {
        background: #000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .home-page .nav-links .mobile-actions {
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .home-hero {
        min-height: 100svh;
        padding: 118px 24px 340px;
        align-items: flex-start;
        background-position: center;
    }

    .home-hero h1 {
        font-size: clamp(2.75rem, 13vw, 4.9rem);
        margin-bottom: 24px;
    }

    .home-hero p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .home-hero-actions {
        margin-top: 34px;
        gap: 14px;
    }

    .hero-primary,
    .hero-secondary {
        width: 100%;
        min-height: 58px;
    }

    .hero-call-card {
        left: 24px;
        right: 24px;
        bottom: 186px;
        width: auto;
        padding: 24px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stat {
        min-height: 92px;
        padding: 20px 24px;
    }

    .hero-stat:nth-child(2) {
        border-right: 0;
    }

    .hero-stat strong {
        font-size: 1.9rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 40px 20px;
        gap: 24px;
        border-bottom: 1px solid #e5e5e5;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .nav-links .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-top: 20px;
        border-top: 1px solid #e5e5e5;
        width: 100%;
    }

    .data-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

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

    .contact-form {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .page-hero h1 {
        font-size: 2rem;
        letter-spacing: 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section {
        padding: 60px 20px;
    }
}

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

    .data-number {
        font-size: 2rem;
    }
}

/* ---------- Extra mobile fixes (small screens) ---------- */
@media (max-width: 420px) {
    :root {
        --safe-top: env(safe-area-inset-top);
    }

    .home-hero {
        padding: 90px 12px 140px;
        min-height: 100svh;
        box-sizing: border-box;
    }

    .home-hero h1 {
        font-size: clamp(1.8rem, 6.5vw, 2.6rem);
        line-height: 1.15;
        margin-bottom: 18px;
    }

    /* Make the call card flow naturally instead of absolute on very small screens */
    .hero-call-card {
        position: static;
        right: auto;
        left: auto;
        bottom: auto;
        width: calc(100% - 32px);
        margin: 14px 16px;
        padding: 14px;
        transform: none;
    }

    /* Ensure hero stats don't overflow and can scroll if needed */
    .hero-stats {
        position: static;
        display: flex;
        gap: 10px;
        padding: 12px 16px 28px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: none;
    }

    .hero-stat {
        min-width: 130px;
        padding: 12px 14px;
        border-right: 0;
    }

    /* Tame large paddings and grid gaps site-wide */
    .section, .section-light, .section-dark, .section-grey {
        padding: 40px 12px;
    }

    .gallery-grid, .services-grid, .values-grid {
        gap: 18px;
    }

    .nav-links a { font-size: 0.85rem; }
    .hamburger span { width: 20px; }
}
