/* ============================================
   GENTLEMEN'S QUARTERS — Custom Styles
   ============================================ */

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

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a2e23;
    background-color: #faf8f4;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

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

.section {
    padding: 100px 0;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a5c2e;
    background: #eef5f1;
    border: 1px solid #d3e3d8;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: #082511;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #3d5a48;
    line-height: 1.7;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 92, 46, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    background: rgba(250, 248, 244, 0.96);
    box-shadow: 0 4px 24px rgba(8, 37, 17, 0.07);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-mark {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #082511;
    background: #1a5c2e;
    color: #faf8f4;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.nav-logo-text {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.05rem;
    color: #082511;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2d4a38;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
    background: #eef5f1;
    color: #082511;
}

.nav-cta-btn {
    background: #1a5c2e;
    color: #faf8f4 !important;
    border-radius: 10px;
    padding: 10px 20px;
    margin-left: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: background 0.2s ease, transform 0.15s ease;
}

.nav-cta-btn:hover {
    background: #124622;
    color: #faf8f4 !important;
    transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: #eef5f1;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #1a2e23;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, #082511 0%, #124622 25%, #1a5c2e 50%, #337342 75%, #52905c 100%);
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(82, 144, 92, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(26, 92, 46, 0.5) 0%, transparent 55%),
        radial-gradient(ellipse 90% 70% at 50% 50%, rgba(4, 19, 9, 0.4) 0%, transparent 70%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    padding: 120px 24px 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(250, 248, 244, 0.12);
    border: 1px solid rgba(250, 248, 244, 0.2);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #d3e3d8;
    letter-spacing: 0.04em;
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: #a7c7ae;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 400;
    line-height: 1.12;
    color: #faf8f4;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-title-accent {
    font-style: italic;
    color: #a7c7ae;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    color: #d3e3d8;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 44px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

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

.hero-stat-num {
    display: block;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.35rem;
    color: #faf8f4;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: #a7c7ae;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(167, 199, 174, 0.3);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
    color: #faf8f4;
    line-height: 0;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    text-decoration: none;
    padding: 14px 28px;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: #1a5c2e;
    color: #faf8f4;
    box-shadow: 0 4px 16px rgba(26, 92, 46, 0.25);
}

.btn-primary:hover {
    background: #124622;
    box-shadow: 0 8px 24px rgba(26, 92, 46, 0.3);
    color: #faf8f4;
}

.btn-outline-light {
    background: transparent;
    color: #faf8f4;
    border: 1.5px solid rgba(250, 248, 244, 0.4);
}

.btn-outline-light:hover {
    background: rgba(250, 248, 244, 0.1);
    border-color: rgba(250, 248, 244, 0.7);
    color: #faf8f4;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 0.95rem;
    border-radius: 14px;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 16px;
}

/* --- Services --- */
.services {
    background: #faf8f4;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(26, 92, 46, 0.07);
    box-shadow: 0 2px 12px rgba(8, 37, 17, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(8, 37, 17, 0.1);
}

.service-card-img {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(8, 37, 17, 0.25) 100%);
}

.service-card-icon {
    position: absolute;
    bottom: -22px;
    left: 24px;
    width: 44px;
    height: 44px;
    background: #1a5c2e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #faf8f4;
    box-shadow: 0 4px 12px rgba(26, 92, 46, 0.3);
    z-index: 1;
}

.service-card-body {
    padding: 36px 24px 28px;
}

.service-card-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    color: #082511;
    margin-bottom: 10px;
}

.service-card-desc {
    font-size: 0.9rem;
    color: #3d5a48;
    line-height: 1.7;
}

/* --- About --- */
.about {
    background: #eef5f1;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(8, 37, 17, 0.12);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(8, 37, 17, 0.15);
    border: 5px solid #eef5f1;
}

.about-img-secondary img {
    width: 300px;
    height: 380px;
    object-fit: cover;
    display: block;
}

.about-img-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: #1a5c2e;
    border-radius: 20px;
    opacity: 0.08;
    z-index: -1;
}

.about-content {
    max-width: 520px;
}

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

.about-text {
    font-size: 1rem;
    color: #3d5a48;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-value-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #1a5c2e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #faf8f4;
}

.about-value strong {
    display: block;
    font-size: 0.95rem;
    color: #082511;
    margin-bottom: 2px;
}

.about-value-desc {
    font-size: 0.88rem;
    color: #5a7d68;
}

/* --- Gallery --- */
.gallery {
    background: #faf8f4;
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 20px;
    background: linear-gradient(to top, rgba(8, 37, 17, 0.75) 0%, transparent 100%);
    color: #faf8f4;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

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

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

/* --- Contact --- */
.contact {
    background: #082511;
    color: #faf8f4;
}

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

.contact .section-tag {
    background: rgba(167, 199, 174, 0.15);
    border-color: rgba(167, 199, 174, 0.3);
    color: #a7c7ae;
}

.contact .section-title {
    color: #faf8f4;
    text-align: left;
}

.contact-text {
    font-size: 1rem;
    color: #a7c7ae;
    line-height: 1.75;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(250, 248, 244, 0.05);
    border: 1px solid rgba(250, 248, 244, 0.08);
    border-radius: 16px;
    transition: background 0.2s ease;
}

.contact-detail:hover {
    background: rgba(250, 248, 244, 0.08);
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #1a5c2e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #faf8f4;
}

.contact-detail-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a7c7ae;
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 0.95rem;
    color: #faf8f4;
    line-height: 1.5;
}

.contact-detail-value a {
    color: #faf8f4;
}

.contact-detail-value a:hover {
    color: #a7c7ae;
}

/* --- Contact Form --- */
.contact-form-wrap {
    background: rgba(250, 248, 244, 0.05);
    border: 1px solid rgba(250, 248, 244, 0.1);
    border-radius: 24px;
    padding: 40px;
}

.contact-form-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: #faf8f4;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 0.9rem;
    color: #a7c7ae;
    margin-bottom: 32px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #d3e3d8;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(250, 248, 244, 0.07);
    border: 1px solid rgba(250, 248, 244, 0.15);
    border-radius: 12px;
    color: #faf8f4;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.92rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
}

.form-input::placeholder {
    color: #5a7d68;
}

.form-input:focus {
    border-color: #7aad85;
    background: rgba(250, 248, 244, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height="12" viewBox="0 0 24 24" fill="none" stroke='%23a7c7ae' stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: #1a2e23;
    color: #faf8f4;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(167, 199, 174, 0.15);
    border: 1px solid rgba(167, 199, 174, 0.3);
    border-radius: 12px;
    color: #a7c7ae;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 20px;
}

.form-success.show {
    display: flex;
}

/* --- Map --- */
.map-section {
    background: #eef5f1;
}

.map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(8, 37, 17, 0.08);
}

/* --- Footer --- */
.footer {
    background: #041309;
    color: #a7c7ae;
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(250, 248, 244, 0.07);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-mark {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.05rem;
    color: #faf8f4;
    background: #1a5c2e;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
}

.footer-logo-text {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1rem;
    color: #faf8f4;
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.75;
    color: #7aad85;
    max-width: 280px;
}

.footer-heading {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1rem;
    color: #faf8f4;
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.88rem;
    color: #7aad85;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #faf8f4;
}

.footer-address {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #7aad85;
    font-style: normal;
    margin-bottom: 12px;
}

.footer-phone,
.footer-email {
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.footer-phone a,
.footer-email a {
    color: #a7c7ae;
    transition: color 0.2s ease;
}

.footer-phone a:hover,
.footer-email a:hover {
    color: #faf8f4;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 28px 0;
    font-size: 0.8rem;
    color: #52905c;
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Hidden state for reveal elements — applied via JS for progressive enhancement */
@media (prefers-reduced-motion: no-preference) {
    .reveal-hidden {
        opacity: 0;
        transform: translateY(24px);
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 244, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid rgba(26, 92, 46, 0.08);
        box-shadow: 0 12px 32px rgba(8, 37, 17, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-cta-btn {
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }

    .hero-content {
        padding: 100px 20px 80px;
    }

    .hero-stats {
        gap: 20px;
    }

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

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

    .about-img-secondary {
        right: 0;
        bottom: -24px;
    }

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

    .about-content {
        max-width: 100%;
    }

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

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

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

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

    .gallery-item,
    .gallery-item--wide {
        height: 240px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-wrap {
        padding: 28px;
    }

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

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

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

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

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

    .gallery-item,
    .gallery-item--wide {
        height: 220px;
    }
}
