/* ============================================
   Ball's Cafe — Clean Minimalist Design
   Palette: Midnight Blue + Mint
   ============================================ */

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

:root {
    --midnight: #0a1628;
    --midnight-light: #132038;
    --midnight-mid: #1a2d4a;
    --mint: #7ecba1;
    --mint-light: #a8dbbf;
    --mint-pale: #e2f5ea;
    --cream: #f7f5f2;
    --cream-dark: #eeebe6;
    --white: #ffffff;
    --text-primary: #0a1628;
    --text-secondary: #3d5a80;
    --text-muted: #6b8ab0;
    --text-light: #9bb5d0;
    --line: rgba(10, 22, 40, 0.08);
    --line-strong: rgba(10, 22, 40, 0.15);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-primary);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* ---------- Utility ---------- */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1.25rem;
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.section-lead {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 480px;
}

.text-mint {
    color: var(--mint);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 0;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--midnight);
    color: var(--white);
    border: 1px solid var(--midnight);
}

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

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
    border-color: var(--midnight);
    color: var(--midnight);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(247, 245, 242, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--midnight);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--midnight);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--mint);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--midnight);
}

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

.nav-phone {
    color: var(--mint) !important;
    font-weight: 400;
}

.nav-phone:hover {
    color: var(--mint-light) !important;
}

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

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--midnight);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

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

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

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

/* ---------- Mobile Menu ---------- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

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

.mobile-menu-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--midnight);
    padding: 1rem 0;
    display: block;
    transition: color 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--ease-out);
}

.mobile-menu.active .mobile-menu-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu-divider {
    width: 40px;
    height: 1px;
    background: var(--line-strong);
    margin: 1.5rem auto;
}

.mobile-menu-phone {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--mint);
    letter-spacing: 0.05em;
    display: block;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--ease-out) 0.3s;
}

.mobile-menu.active .mobile-menu-phone {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-address {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    display: block;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--ease-out) 0.35s;
}

.mobile-menu.active .mobile-menu-address {
    transform: translateY(0);
    opacity: 1;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 3rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

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

.hero-tag {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-tag-line {
    width: 40px;
    height: 1px;
    background: var(--mint);
}

.hero-headline {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.headline-line {
    display: block;
    font-size: clamp(2.25rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    color: var(--midnight);
}

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

.hero-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.hero-meta-item {
    flex: 1;
}

.meta-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.meta-value, .meta-link {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-primary);
}

.meta-link {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.meta-link:hover {
    color: var(--mint);
}

.hero-meta-sep {
    width: 1px;
    height: 32px;
    background: var(--line-strong);
    flex-shrink: 0;
    margin: 0 1.5rem;
}

/* Hero Image */
.hero-image-col {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out);
}

.hero-img-wrapper:hover img {
    transform: scale(1.03);
}

.hero-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--mint);
    z-index: -1;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--line-strong);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--mint);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* ---------- Divider ---------- */
.section-divider {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.divider-line {
    width: 100%;
    height: 1px;
    background: var(--line);
}

/* ---------- About ---------- */
.about {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.about-left {
    position: sticky;
    top: 120px;
}

.about-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.about-right {
    padding-top: 1rem;
}

.about-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.stat-item {
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--midnight);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.stat-sep {
    width: 1px;
    height: 48px;
    background: var(--line-strong);
    flex-shrink: 0;
    margin: 0 2rem;
}

.about-image-block {
    grid-column: 1 / -1;
    overflow: hidden;
    margin-top: 2rem;
}

.about-image-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out);
}

.about-image-block:hover img {
    transform: scale(1.02);
}

/* ---------- Menu ---------- */
.menu {
    padding: 6rem 3rem 8rem;
    background: var(--midnight);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mint), transparent);
    opacity: 0.4;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-header {
    text-align: center;
    margin-bottom: 5rem;
}

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

.menu-header .section-headline {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.menu-header .section-lead {
    color: var(--text-light);
    margin: 0 auto;
}

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

.menu-card {
    background: var(--midnight-light);
    border: 1px solid rgba(126, 203, 161, 0.1);
    padding: 2.5rem;
    transition: all 0.4s var(--ease-out);
}

.menu-card:hover {
    border-color: rgba(126, 203, 161, 0.3);
    transform: translateY(-4px);
}

.menu-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(126, 203, 161, 0.1);
}

.menu-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
    flex-shrink: 0;
}

.menu-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.menu-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu-item-name {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--white);
}

.menu-item-desc {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--text-muted);
}

.menu-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(126, 203, 161, 0.08);
}

.menu-footer p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
    font-style: italic;
}

/* ---------- Gallery ---------- */
.gallery {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out);
}

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

.gallery-item--tall {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}

.gallery-item--tall img {
    height: 100%;
    min-height: 560px;
}

.gallery-item:not(.gallery-item--tall) img {
    height: 280px;
}

.gallery-item--wide {
    grid-column: 7 / 13;
}

.gallery-item--wide img {
    height: 280px;
}

/* ---------- Visit ---------- */
.visit {
    padding: 8rem 3rem;
    background: var(--cream-dark);
}

.visit-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.visit-left .section-headline {
    margin-bottom: 1.5rem;
}

.visit-left .section-lead {
    margin-bottom: 3rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.detail-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.detail-value {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.6;
}

.detail-link {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.detail-link:hover {
    color: var(--mint);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--line);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--midnight);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-primary);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-strong);
    outline: none;
    transition: border-color 0.3s ease;
    resize: none;
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input:focus {
    border-bottom-color: var(--mint);
}

.form-textarea {
    line-height: 1.6;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
    gap: 1rem;
}

.form-success svg {
    color: var(--mint);
}

.form-success p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--midnight);
    padding: 5rem 3rem 2rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(126, 203, 161, 0.3);
    border-radius: 50%;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(126, 203, 161, 0.08);
}

.footer-col-title {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1rem;
}

.footer-col-text {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    white-space: pre-line;
}

.footer-link {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--mint);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
}

.footer-copy {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-muted);
}

.footer-made {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-muted);
}

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

.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; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .nav-inner {
        padding: 0 2rem;
    }

    .hero {
        padding: 72px 2rem 3rem;
    }

    .hero-grid {
        gap: 3rem;
    }

    .about {
        padding: 6rem 2rem;
    }

    .about-left {
        position: static;
    }

    .menu {
        padding: 5rem 2rem 6rem;
    }

    .gallery {
        padding: 6rem 2rem;
    }

    .visit {
        padding: 6rem 2rem;
    }

    .visit-layout {
        gap: 4rem;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 72px 1.5rem 3rem;
    }

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

    .hero-image-col {
        order: -1;
    }

    .hero-img-wrapper {
        max-height: 50vh;
    }

    .hero-img-wrapper img {
        height: 100%;
    }

    .hero-img-accent {
        display: none;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-meta-sep {
        width: 40px;
        height: 1px;
        margin: 0;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .about {
        padding: 5rem 1.5rem;
    }

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

    .about-image-block {
        grid-column: 1;
    }

    .about-image-block img {
        height: 300px;
    }

    .menu {
        padding: 4rem 1.5rem 5rem;
    }

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

    .gallery {
        padding: 4rem 1.5rem;
    }

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

    .gallery-item--tall {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .gallery-item--tall img {
        min-height: 300px;
    }

    .gallery-item--wide {
        grid-column: 1 / -1;
    }

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

    .visit {
        padding: 4rem 1.5rem;
    }

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

    .contact-form-wrapper {
        padding: 2rem;
    }

    .footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-middle {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .stat-sep {
        width: 40px;
        height: 1px;
        margin: 0;
    }

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

    .gallery-item--tall,
    .gallery-item--wide {
        grid-column: 1;
    }
}
