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

:root {
    --green-dark: #1B4332;
    --green-mid: #2D6A4F;
    --green-light: #40916C;
    --green-pale: #52B788;
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --warm: #D4A574;
    --warm-dark: #B8865A;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.08);
    --shadow-md: 0 8px 30px rgba(27, 67, 50, 0.12);
    --shadow-lg: 0 20px 60px rgba(27, 67, 50, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

em {
    font-style: italic;
    color: var(--green-mid);
}

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

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--green-dark);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 500;
}

.skip-link:focus {
    top: 1rem;
}

/* Geometric shapes */
.geo-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
}

.geo-shape--1 {
    width: 600px;
    height: 600px;
    background: var(--green-dark);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.geo-shape--2 {
    width: 400px;
    height: 400px;
    background: var(--warm);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 20%;
    left: -100px;
}

.geo-shape--3 {
    width: 300px;
    height: 300px;
    background: var(--green-light);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -100px;
    right: 10%;
}

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

.site-header.scrolled {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    z-index: 1001;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.site-header.scrolled .logo-text {
    color: var(--green-dark);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.site-header.scrolled .hamburger {
    background: var(--green-dark);
}

.site-header.scrolled .hamburger::before,
.site-header.scrolled .hamburger::after {
    background: var(--green-dark);
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

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

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

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

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
}

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

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

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

.site-header.scrolled .nav-menu a {
    color: var(--text-mid);
}

.site-header.scrolled .nav-menu a:hover {
    color: var(--green-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn--primary {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
}

.btn--primary:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--nav {
    background: var(--warm);
    color: var(--white);
    border-color: var(--warm);
    padding: 0.625rem 1.5rem;
    font-size: 0.85rem;
}

.btn--nav:hover {
    background: var(--warm-dark);
    border-color: var(--warm-dark);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27, 67, 50, 0.82) 0%,
        rgba(27, 67, 50, 0.65) 40%,
        rgba(45, 106, 79, 0.5) 70%,
        rgba(27, 67, 50, 0.7) 100%
    );
}

.hero-geo {
    position: absolute;
    pointer-events: none;
}

.hero-geo.geo-1 {
    width: 500px;
    height: 500px;
    background: var(--warm);
    opacity: 0.12;
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.hero-geo.geo-2 {
    width: 300px;
    height: 300px;
    background: var(--green-pale);
    opacity: 0.1;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    bottom: 10%;
    right: 15%;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 8rem 0 4rem;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 165, 116, 0.2);
    border: 1px solid rgba(212, 165, 116, 0.4);
    color: var(--warm);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title em {
    color: var(--warm);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.hero-info-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.hero-info-item a:hover {
    color: var(--warm);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

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

/* Section labels */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-dark);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--warm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--green-dark);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

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

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

/* Intro */
.intro {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

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

.intro-visual {
    position: relative;
}

.intro-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-img-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--warm);
    opacity: 0.3;
    border-radius: 50%;
    bottom: -40px;
    right: -40px;
    z-index: -1;
}

.intro-text p {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.intro-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--green-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm);
}

/* Menu section */
.menu-section {
    padding: 7rem 0;
    background: var(--green-dark);
    position: relative;
    overflow: hidden;
}

.menu-geo {
    position: absolute;
    pointer-events: none;
}

.menu-geo--1 {
    width: 400px;
    height: 400px;
    background: var(--green-mid);
    border-radius: 50%;
    top: -150px;
    left: -100px;
    opacity: 0.3;
}

.menu-geo--2 {
    width: 250px;
    height: 250px;
    background: var(--warm);
    opacity: 0.08;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    bottom: -50px;
    right: 5%;
}

.menu-section .section-label {
    color: var(--warm);
}

.menu-section .section-label::before {
    background: var(--warm);
}

.menu-section .section-title {
    color: var(--white);
}

.menu-section .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.menu-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 165, 116, 0.3);
}

.menu-card-visual {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.menu-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-visual img {
    transform: scale(1.08);
}

.menu-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--warm);
    color: var(--white);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.menu-card-body {
    padding: 1.5rem;
}

.menu-card-title {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.menu-card-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.menu-disclaimer {
    color: var(--white);
}

/* Experience */
.experience {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

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

.experience-content p {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experience-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.exp-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--warm);
    line-height: 1;
    min-width: 40px;
    opacity: 0.6;
}

.exp-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.25rem;
}

.exp-desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.experience-visual {
    position: relative;
}

.exp-img-grid {
    display: grid;
    gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
}

.exp-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.exp-img--1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.exp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Gallery */
.gallery {
    padding: 7rem 0;
    background: var(--cream);
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

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

.gallery-item--tall {
    grid-column: span 4;
    grid-row: span 2;
    height: 100%;
    min-height: 660px;
}

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

/* CTA Banner */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27, 67, 50, 0.9) 0%,
        rgba(45, 106, 79, 0.85) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-content .section-label {
    color: var(--warm);
    justify-content: center;
}

.cta-content .section-label::before {
    background: var(--warm);
}

.cta-content .section-title {
    color: var(--white);
    margin-bottom: 1.25rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

/* Visit */
.visit {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

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

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.visit-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--green-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm);
}

.visit-detail strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 0.25rem;
}

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

.visit-detail a:hover {
    color: var(--green-mid);
}

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

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

/* Footer */
.site-footer {
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm);
    margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--warm);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

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

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

/* Mobile menu */
@media (max-width: 1023px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--green-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu a {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.1rem;
    }

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

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    .hero-content {
        padding: 7rem 0 3rem;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .intro-grid,
    .experience-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .intro-visual {
        order: -1;
    }

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

    .gallery-item--wide {
        grid-column: span 12;
        height: 260px;
    }

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

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

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

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 639px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

    .intro-features {
        grid-template-columns: 1fr;
    }

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

    .gallery-item--tall {
        grid-column: span 12;
        min-height: 260px;
    }

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

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

    .footer-brand {
        grid-column: span 1;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .exp-img-grid {
        grid-template-columns: 1fr;
    }

    .exp-img--1 {
        grid-column: span 1;
        grid-row: span 1;
    }
}
