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

:root {
    --navy: #0A1628;
    --navy-light: #132038;
    --navy-mid: #1A2D4A;
    --gold: #C8A45E;
    --gold-light: #D4B76A;
    --gold-pale: #F5E6C8;
    --cream: #FAF6F0;
    --cream-dark: #F0EBE0;
    --white: #FFFFFF;
    --text-dark: #0A1628;
    --text-mid: #3D5A80;
    --text-light: #6B8AB0;
    --text-muted: #9BB0C8;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--navy);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-size: 0.875rem;
}
.skip-link:focus {
    top: var(--space-sm);
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 246, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    transition: var(--transition-base);
}

.site-header.scrolled {
    background: rgba(250, 246, 240, 0.97);
    box-shadow: 0 1px 20px rgba(10, 22, 40, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--navy);
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.logo-mark {
    color: var(--gold);
}

.logo-light {
    color: var(--white);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: 0.01em;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.nav-menu a:hover {
    color: var(--navy);
}

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

.nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    transition: background var(--transition-fast), transform var(--transition-fast) !important;
}

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

.nav-cta:hover {
    background: var(--navy-light);
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.hamburger {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition-base);
    transform-origin: center;
}

.hamburger:nth-child(2) {
    width: 70%;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: rotate(-45deg);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background: var(--cream);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(200, 164, 94, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-2xl) 0;
}

.hero-content {
    padding-right: var(--space-lg);
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: var(--space-lg);
}

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

.hero-description {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-mid);
    max-width: 480px;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero-trust {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-light);
}

.trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* HERO IMAGES */
.hero-image-col {
    position: relative;
    height: 700px;
}

.hero-image-main {
    width: 100%;
    height: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(10, 22, 40, 0.15);
}

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

.hero-image-accent {
    position: absolute;
    bottom: 0;
    left: -15%;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.12);
    border: 4px solid var(--cream);
}

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

.accent-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--navy);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.accent-badge-number {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.accent-badge-text {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 22, 40, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid rgba(10, 22, 40, 0.2);
}

.btn-ghost:hover {
    border-color: var(--navy);
    background: rgba(10, 22, 40, 0.04);
}

.btn-light {
    background: var(--white);
    color: var(--navy);
}

.btn-light:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* MARQUEE */
.marquee-section {
    background: var(--navy);
    padding: var(--space-md) 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.marquee-dot {
    color: var(--gold) !important;
    font-size: 0.625rem !important;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-xl);
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.section-title .accent {
    color: var(--gold);
    font-style: italic;
}

.section-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-mid);
}

/* SERVICES */
.services {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid rgba(10, 22, 40, 0.04);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.08);
    border-color: rgba(200, 164, 94, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover::before {
    opacity: 1;
}

.service-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: rgba(200, 164, 94, 0.15);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(200, 164, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-mid);
}

/* ABOUT */
.about {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-images {
    position: relative;
    height: 620px;
}

.about-img-main {
    width: 75%;
    height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
}

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

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.1);
    border: 4px solid var(--white);
}

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

.about-stat {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    background: var(--navy);
    color: var(--white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.2);
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
}

.about-content {
    padding: var(--space-md) 0;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: var(--space-md);
}

.about-values {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.value-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-sm);
    align-items: start;
}

.value-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    padding-top: 0.25rem;
}

.value-divider {
    display: none;
}

.value-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-mid);
}

/* EDITORIAL BANNER */
.editorial-banner {
    background: var(--navy);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.editorial-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(200, 164, 94, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.editorial-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
}

.editorial-quote {
    position: relative;
}

.quote-mark {
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: var(--space-md);
}

.editorial-quote blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    color: var(--white);
    letter-spacing: -0.01em;
}

.editorial-cta-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
}

/* GALLERY */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

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

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

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

.gallery-item--tall {
    grid-column: span 5;
    height: 500px;
}

.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
    height: 240px;
}

.gallery-item--wide {
    grid-column: span 7;
    height: 240px;
}

/* VISIT */
.visit {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.visit-info {
    padding: var(--space-xl) 0;
}

.contact-details {
    margin: var(--space-xl) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(200, 164, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-value {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-value:hover {
    color: var(--gold);
}

.btn-map {
    margin-top: var(--space-md);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.08);
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
}

/* FOOTER */
.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 300px;
    margin-top: var(--space-sm);
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-col a,
.footer-col span {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* MOBILE NAV OVERLAY */
.nav-menu.mobile-open {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.nav-menu.mobile-open.open {
    opacity: 1;
    visibility: visible;
}

.nav-menu.mobile-open li {
    text-align: center;
}

.nav-menu.mobile-open a {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--navy);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

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

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

    .hero-image-main {
        height: 420px;
    }

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

    .about-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-images {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .editorial-banner-inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .gallery-item--tall {
        grid-column: span 6;
        height: 350px;
    }

    .gallery-item--wide {
        grid-column: span 6;
        height: 350px;
    }

    .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
        grid-column: span 4;
        height: 200px;
    }

    .visit-layout {
        grid-template-columns: 1fr;
    }

    .visit-map {
        height: 350px;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: flex;
    }

    .nav-menu.desktop {
        /* default desktop behavior */
    }

    .nav-menu.mobile {
        display: none;
    }

    .nav-menu.mobile.open {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-xl);
    }

    .hero-image-col {
        display: none;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 8vw, 3.25rem);
    }

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

    .service-card {
        padding: var(--space-md);
    }

    .about-images {
        height: 350px;
    }

    .about-img-main {
        height: 300px;
        width: 80%;
    }

    .about-img-secondary {
        width: 55%;
    }

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

    .gallery-item--tall,
    .gallery-item--wide {
        grid-column: span 2;
        height: 250px;
    }

    .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
        grid-column: span 1;
        height: 180px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

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

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    .section-title {
        font-size: 1.875rem;
    }

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

    .gallery-item--tall,
    .gallery-item--wide {
        grid-column: span 1;
        height: 220px;
    }

    .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
        grid-column: span 1;
        height: 180px;
    }
}
