/* ========================================
   LA MILAGROSA BAKERY — STYLESHEET
   Bold editorial · Teal & Slate
   ======================================== */

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

:root {
    --color-teal-900: #134f4a;
    --color-teal-800: #115e59;
    --color-teal-700: #0d9488;
    --color-teal-600: #0f766e;
    --color-teal-500: #14b8a6;
    --color-teal-100: #ccfbf1;
    --color-teal-50:  #f0fdfa;
    
    --color-slate-950: #0f172a;
    --color-slate-900: #1e293b;
    --color-slate-800: #334155;
    --color-slate-700: #475569;
    --color-slate-600: #64748b;
    --color-slate-500: #94a3b8;
    --color-slate-400: #cbd5e1;
    --color-slate-300: #e2e8f0;
    --color-slate-200: #f1f5f9;
    --color-slate-100: #f8fafc;
    --color-slate-50:  #fafbfc;
    
    --color-cream:    #fefcf8;
    --color-warm:     #f5f0e8;
    --color-accent:   #0d9488;
    --color-text:     #1e293b;
    --color-text-muted: #64748b;
    --color-white:    #ffffff;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
    
    --container: 1200px;
    --header-h: 72px;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.14), 0 8px 20px rgba(15, 23, 42, 0.08);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

ul {
    list-style: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--color-teal-700);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 0.875rem;
    font-weight: 500;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 16px;
}

/* ── Typography ───────────────────────── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-teal-700);
    margin-bottom: 12px;
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-slate-900);
    margin-bottom: 24px;
}

.section-headline em {
    font-style: italic;
    color: var(--color-teal-700);
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-slate-600);
    max-width: 560px;
    line-height: 1.7;
}

/* ── Buttons ──────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-teal-700);
    color: var(--color-white);
    border-color: var(--color-teal-700);
}

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

.btn-ghost {
    background: transparent;
    color: var(--color-slate-700);
    border-color: var(--color-slate-300);
}

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

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

/* ── Header ───────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 100;
    background: rgba(254, 252, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: all var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-slate-900);
    transition: color var(--transition);
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--color-teal-700);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-slate-700);
    transition: color var(--transition);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-teal-700);
    transition: width var(--transition);
}

.main-nav a:hover {
    color: var(--color-teal-700);
}

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

.nav-cta {
    background: var(--color-teal-700);
    color: var(--color-white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

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

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

/* ── Mobile Nav Toggle ────────────────── */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 101;
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-slate-800);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger::before { top: 0; }
.hamburger::after { bottom: 0; }
.hamburger span { top: 50%; }

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

.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

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

/* ── Hero ─────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0 100px;
}

.hero-content {
    padding-right: 20px;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-teal-700);
    margin-bottom: 20px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--color-slate-950);
    margin-bottom: 28px;
}

.hero-headline em {
    font-style: italic;
    color: var(--color-teal-700);
}

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

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--color-slate-600);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-slate-900);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-slate-500);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-slate-300);
}

.hero-image {
    position: relative;
}

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

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

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

.hero-accent-box {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: var(--color-slate-900);
    color: var(--color-white);
    padding: 28px 32px;
    border-radius: var(--radius-md);
    max-width: 300px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.accent-quote {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-slate-200);
    margin-bottom: 12px;
}

.accent-source {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-teal-500);
    letter-spacing: 0.05em;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ── About ────────────────────────────── */
.about {
    padding: 100px 0;
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    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-secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-cream);
}

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

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--color-teal-700);
    color: var(--color-white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
}

.about-content .section-headline {
    margin-bottom: 24px;
}

.about-content > p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-slate-600);
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-slate-800);
}

.feature-item svg {
    color: var(--color-teal-700);
    flex-shrink: 0;
}

/* ── Specialties ──────────────────────── */
.specialties {
    padding: 100px 0;
    background: var(--color-slate-50);
}

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

.specialties .section-description {
    margin: 0 auto;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.specialty-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.specialty-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.specialty-img {
    overflow: hidden;
    height: 240px;
}

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

.specialty-card:hover .specialty-img img {
    transform: scale(1.06);
}

.specialty-content {
    padding: 28px 32px 32px;
}

.specialty-name {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-slate-900);
    margin-bottom: 10px;
}

.specialty-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-slate-600);
}

/* ── Divider Band ─────────────────────── */
.divider-band {
    background: var(--color-teal-900);
    padding: 80px 0;
    text-align: center;
}

.divider-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    color: var(--color-teal-100);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 20px;
}

.divider-source {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-teal-500);
    letter-spacing: 0.05em;
}

/* ── Gallery ──────────────────────────── */
.gallery {
    padding: 100px 0;
    background: var(--color-cream);
}

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

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

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

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

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

.gallery-item--large {
    grid-column: 1 / 6;
    grid-row: 1 / 2;
}

.gallery-item--large img {
    height: 400px;
}

.gallery-item:nth-child(2) {
    grid-column: 6 / 9;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(2) img {
    height: 190px;
}

.gallery-item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(3) img {
    height: 190px;
}

.gallery-item--wide {
    grid-column: 1 / 13;
    grid-row: 2 / 3;
}

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

/* ── Visit ────────────────────────────── */
.visit {
    padding: 100px 0;
    background: var(--color-slate-50);
}

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

.visit-info .section-headline {
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.detail-item {
    display: flex;
    gap: 16px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: var(--color-teal-50);
    border: 1px solid var(--color-teal-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-teal-700);
}

.detail-item h4 {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-slate-500);
    margin-bottom: 6px;
}

.detail-item p {
    font-size: 1rem;
    color: var(--color-slate-800);
    line-height: 1.7;
}

.detail-item a {
    color: var(--color-teal-700);
    font-weight: 500;
    transition: color var(--transition);
}

.detail-item a:hover {
    color: var(--color-teal-800);
}

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

.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: block;
}

/* ── Footer ───────────────────────────── */
.site-footer {
    background: var(--color-slate-950);
    color: var(--color-slate-400);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 16px;
}

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

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-slate-300);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--color-slate-500);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-teal-500);
}

.footer-contact p {
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer-contact a {
    color: var(--color-teal-500);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--color-teal-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: var(--color-slate-600);
}

.footer-bottom p:last-child {
    font-style: italic;
    color: var(--color-slate-500);
}

/* ── Animations ───────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── Responsive ───────────────────────── */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    
    .about-grid {
        gap: 60px;
    }
    
    .hero-accent-box {
        left: -20px;
        bottom: -20px;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0 80px;
    }
    
    .hero-content {
        padding-right: 0;
        order: 1;
    }
    
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        order: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-accent-box {
        left: auto;
        right: -10px;
        bottom: -20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(254, 252, 248, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 24px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }
    
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--color-slate-200);
        font-size: 1rem;
    }
    
    .main-nav a::after {
        display: none;
    }
    
    .main-nav .nav-cta {
        display: inline-block;
        margin-top: 16px;
        text-align: center;
        border-bottom: none;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-img-secondary {
        right: -10px;
        bottom: -20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item--large {
        grid-column: 1 / -1;
    }
    
    .gallery-item--large img {
        height: 280px;
    }
    
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3) {
        grid-column: auto;
    }
    
    .gallery-item:nth-child(2) img,
    .gallery-item:nth-child(3) img {
        height: 200px;
    }
    
    .gallery-item--wide {
        grid-column: 1 / -1;
    }
    
    .gallery-item--wide img {
        height: 220px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding-top: var(--header-h);
    }
    
    .hero-grid {
        padding: 30px 0 70px;
    }
    
    .hero-accent-box {
        position: relative;
        left: 0;
        bottom: 0;
        max-width: 100%;
        margin-top: 16px;
        border-radius: var(--radius-sm);
    }
    
    .about {
        padding: 70px 0;
    }
    
    .specialties {
        padding: 70px 0;
    }
    
    .gallery {
        padding: 70px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--large,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item--wide {
        grid-column: 1 / -1;
    }
    
    .gallery-item img {
        height: 220px !important;
    }
    
    .visit {
        padding: 70px 0;
    }
    
    .divider-band {
        padding: 60px 0;
    }
}
