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

:root {
    --terracotta: #B85C38;
    --terracotta-dark: #9A4B2E;
    --terracotta-light: #D4845E;
    --sand: #F5EDE3;
    --sand-light: #FAF6F1;
    --sand-dark: #E8DDD0;
    --cream: #FFFCF8;
    --charcoal: #2C2420;
    --charcoal-light: #4A3F38;
    --warm-gray: #8A7E76;
    --warm-gray-light: #B8ADA5;
    --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.06);
    --shadow-md: 0 8px 30px rgba(44, 36, 32, 0.1);
    --shadow-lg: 0 20px 60px rgba(44, 36, 32, 0.12);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.site-wrapper {
    min-height: 100vh;
}

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

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

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 252, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 20px rgba(44, 36, 32, 0.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    z-index: 1001;
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: var(--terracotta);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal-light);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    border-radius: 2px;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--terracotta);
}

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

.nav-cta {
    background: var(--terracotta) !important;
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--terracotta-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 92, 56, 0.3);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: var(--sand-light);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(184, 92, 56, 0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(212, 132, 94, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
}

.eyebrow-line {
    width: 32px;
    height: 2px;
    background: var(--terracotta);
    border-radius: 2px;
}

.hero-headline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.headline-accent {
    color: var(--terracotta);
    font-style: italic;
}

.hero-subheadline {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--terracotta);
    color: white;
    box-shadow: 0 8px 30px rgba(184, 92, 56, 0.25);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(184, 92, 56, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--sand-dark);
}

.btn-secondary:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    transform: translateY(-3px);
}

.btn-light {
    background: white;
    color: var(--charcoal);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-dark);
}

/* Hero Images */
.hero-image-stack {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero-img-primary {
    width: 340px;
    height: 440px;
    right: 0;
    top: 40px;
    z-index: 1;
}

.hero-img-secondary {
    width: 240px;
    height: 300px;
    left: 0;
    bottom: 40px;
    z-index: 2;
    border: 6px solid var(--sand-light);
}

.hero-badge {
    position: absolute;
    bottom: 200px;
    right: -20px;
    z-index: 3;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
}

.hero-badge svg {
    color: #F59E0B;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTION COMMON ── */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* ── SERVICES ── */
.services {
    padding: 7rem 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--sand-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.4s;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184, 92, 56, 0.1);
    background: white;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(184, 92, 56, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    margin-bottom: 1.25rem;
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    background: var(--terracotta);
    color: white;
}

.service-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.service-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--terracotta);
    background: rgba(184, 92, 56, 0.08);
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    letter-spacing: 0.02em;
}

/* ── ABOUT ── */
.about {
    padding: 7rem 0;
    background: var(--sand);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    height: 650px;
}

.about-img-main {
    width: 100%;
    height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: -40px;
    width: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 5px solid var(--sand);
}

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

.about-experience {
    position: absolute;
    top: -20px;
    right: 60px;
    background: var(--terracotta);
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.exp-number {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.about-content .section-eyebrow {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    margin: 2rem 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal-light);
}

.value-item svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

.btn-about {
    margin-top: 1rem;
}

/* ── GALLERY ── */
.gallery {
    padding: 7rem 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1.25rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 36, 32, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item-tall {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 8;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
    grid-column: span 4;
}

/* ── CTA STRIP ── */
.cta-strip {
    background: var(--charcoal);
    padding: 4rem 2rem;
}

.cta-strip-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-strip-text {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: white;
    line-height: 1.3;
}

/* ── VISIT ── */
.visit {
    padding: 7rem 0;
    background: var(--sand-light);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit-info .section-eyebrow,
.visit-info .section-title {
    text-align: left;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.info-block:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
}

.info-icon {
    width: 44px;
    height: 44px;
    background: rgba(184, 92, 56, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}

.info-content strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.info-content a {
    color: var(--terracotta);
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--terracotta-dark);
    text-decoration: underline;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 450px;
}

/* ── FOOTER ── */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-brand .logo-mark {
    width: 48px;
    height: 48px;
    font-size: 0.85rem;
}

.footer-brand .logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: white;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--warm-gray-light);
    max-width: 240px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--warm-gray-light);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
}

.footer-contact a {
    font-size: 0.9rem;
    color: var(--warm-gray-light);
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: var(--warm-gray);
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── MOBILE MENU ── */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 252, 248, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

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

.mobile-nav {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav a {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--charcoal);
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--terracotta);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-subheadline {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-stack {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-img-primary {
        width: 280px;
        height: 360px;
    }

    .hero-img-secondary {
        width: 200px;
        height: 250px;
    }

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

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content .section-title,
    .about-content .section-eyebrow {
        text-align: center;
    }

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

    .about-values {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-about {
        display: flex;
        justify-content: center;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .visit-info .section-title,
    .visit-info .section-eyebrow {
        text-align: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 7rem 1.5rem 4rem;
    }

    .hero-image-stack {
        height: 380px;
    }

    .hero-img-primary {
        width: 220px;
        height: 280px;
        right: 10px;
        top: 20px;
    }

    .hero-img-secondary {
        width: 160px;
        height: 200px;
        left: 10px;
        bottom: 20px;
    }

    .hero-badge {
        display: none;
    }

    .services {
        padding: 5rem 0;
    }

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

    .about {
        padding: 5rem 0;
    }

    .about-image-wrap {
        height: 400px;
    }

    .about-img-main {
        height: 350px;
    }

    .about-img-accent {
        width: 160px;
        right: -20px;
    }

    .about-experience {
        top: -10px;
        right: 20px;
        padding: 1rem;
    }

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

    .exp-text {
        font-size: 0.65rem;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .gallery {
        padding: 5rem 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 180px);
    }

    .gallery-item-tall {
        grid-column: span 2;
        grid-row: span 1;
        height: 200px;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .cta-strip {
        padding: 3rem 1.5rem;
    }

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .visit {
        padding: 5rem 0;
    }

    .visit-map {
        height: 300px;
    }

    .section-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1.25rem 3rem;
    }

    .hero-image-stack {
        height: 300px;
    }

    .hero-img-primary {
        width: 180px;
        height: 230px;
    }

    .hero-img-secondary {
        width: 130px;
        height: 170px;
    }

    .hero-stats {
        gap: 1.25rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
    }

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

    .gallery-item-tall,
    .gallery-item-wide,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
        height: 200px;
    }
}
