/*
* איצאב מתכות - עיצוב דף הבית
* גרסה: 1.0
* תאריך: 06/04/2025
*/

/* === Hero === */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
    opacity: 1;
    transform: none;
    padding: 0 5%;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.hero-content {
    color: var(--light-text);
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.hero h2,
.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

/* === PAS Sections === */
.pas-section {
    padding: 5rem 0;
}

.pas-section h2 {
    font-size: var(--text-2xl);
    margin-bottom: 1.5rem;
}

/* === Split panel (PAS + image) === */
.split-panel__inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    text-align: start;
}

.split-panel--reverse .split-panel__inner {
    direction: ltr;
}

.split-panel--reverse .split-panel__content {
    direction: rtl;
}

.ltr .split-panel--reverse .split-panel__content {
    direction: ltr;
}

.split-panel__media {
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    min-height: 480px;
    aspect-ratio: auto;
}

.split-panel__media picture,
.split-panel__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    border-radius: 16px;
}

.split-panel .testimonial-card {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    text-align: start;
}

#problem {
    background-color: var(--light-gray);
}

#agitate {
    background-color: var(--light-text);
}

#solve {
    background-color: var(--bg-color);
}

/* === Stat band === */
.stat-band {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 4rem 0;
}

.stat-band__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
}

.stat-label {
    font-size: clamp(1.4rem, 1.5vw, 1.8rem);
    color: var(--light-gray);
    font-weight: 400;
}

@media (prefers-reduced-motion: no-preference) {
    .stat-band {
        animation: none;
    }
}

/* === Showcase bento grid === */
.showcase {
    background-color: var(--light-text);
    padding: 6rem 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
    grid-auto-flow: dense;
}

.bento-tile {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 180px;
}

.bento-tile picture,
.bento-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bento-tile--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-tile:nth-child(5) {
    grid-row: span 2;
}

.showcase-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: var(--light-text);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bento-tile:hover .showcase-caption {
    opacity: 1;
    transform: translateY(0);
}

.showcase-caption strong {
    display: block;
    font-size: 1.6rem;
    font-family: var(--font-display);
}

.showcase-caption span {
    font-size: 1.2rem;
    opacity: 0.9;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card blockquote {
    border: none;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-card footer {
    font-weight: 600;
    color: var(--primary-color);
}

/* === שירותים === */
.services {
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

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

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid rgba(33, 37, 41, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(33, 37, 41, 0.04),
        0 6px 20px rgba(33, 37, 41, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    padding: 0;
    text-align: start;
}

.service-card__badge {
    position: absolute;
    top: 1rem;
    inset-inline-start: 1rem;
    z-index: 2;
    padding: 0.35rem 0.75rem;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--dark-color);
    background-color: var(--primary-color);
    border-radius: 4px;
}

.service-card__thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.service-card--featured .service-card__thumb {
    aspect-ratio: 16 / 9;
    min-height: 240px;
}

.services-grid--featured .service-card:not(.service-card--featured) .service-card__thumb {
    aspect-ratio: 16 / 11;
    min-height: 200px;
}

.service-card__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(33, 37, 41, 0.35) 0%, transparent 45%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.service-card:hover .service-card__thumb::after {
    opacity: 1;
}

.service-card__thumb picture,
.service-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.service-card:hover .service-card__thumb img {
    transform: scale(1.04);
}

.service-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.25rem 1.5rem 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.service-card--featured .service-card__body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.service-card .service-title {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    line-height: var(--leading-tight);
    color: var(--dark-color);
}

.service-card--featured .service-title {
    font-size: var(--text-2xl);
}

.service-card p {
    margin: 0;
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-muted);
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(192, 159, 128, 0.35);
    box-shadow:
        0 4px 12px rgba(33, 37, 41, 0.06),
        0 16px 32px rgba(33, 37, 41, 0.1);
}

@media (prefers-reduced-motion: reduce) {
    .service-card:hover {
        transform: none;
    }

    .service-card:hover .service-card__thumb img {
        transform: none;
    }

    .service-card__thumb::after {
        display: none;
    }
}

/* === אודות === */
.about {
    background-color: var(--light-text);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-text {
    flex: 1;
}

.about-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
}

.about-images__primary,
.about-images__secondary {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-images__primary {
    grid-row: span 2;
    min-height: 520px;
}

.about-images picture,
.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 180px;
}

.about-image {
    flex: 1;
    max-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 10px var(--primary-color);
}

.about-description p {
    margin-bottom: 2rem;
}

/* === תהליך העבודה === */
.process {
    background-color: var(--light-bg);
}

.process-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: start;
}

.process-showcase {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--dark-color);
    box-shadow:
        0 1px 2px rgba(33, 37, 41, 0.04),
        0 12px 32px rgba(33, 37, 41, 0.1);
}

.process-showcase picture,
.process-showcase img {
    display: block;
    width: 100%;
    min-height: 480px;
    object-fit: cover;
}

.process-showcase__caption {
    padding: 1rem 1.25rem;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--light-gray);
    background: linear-gradient(135deg, var(--dark-color) 0%, #343a40 100%);
    border-top: 2px solid var(--primary-color);
}

.process-steps-list,
.process-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: process-step;
}

.process-step {
    display: grid;
    grid-template-columns: 3.2rem 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    background: none;
    box-shadow: none;
    text-align: start;
    transition: background-color 0.2s ease;
}

.process-step:first-child {
    padding-top: 0;
}

.process-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.process-step__marker {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 0.15rem;
}

.process-step__marker::after {
    content: '';
    position: absolute;
    top: 2.6rem;
    bottom: -1.5rem;
    width: 2px;
    background-color: var(--light-gray);
}

.process-step:last-child .process-step__marker::after {
    display: none;
}

.step-number {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--dark-color);
    background-color: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.process-step__body {
    min-width: 0;
}

.process-step-title {
    display: block;
    margin-bottom: 0.4rem;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    line-height: var(--leading-tight);
    color: var(--dark-color);
}

.process-step p {
    margin: 0;
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-muted);
    max-width: var(--prose-max);
}

@media (prefers-reduced-motion: no-preference) {
    .process-step:hover {
        background-color: rgba(192, 159, 128, 0.04);
        margin-inline: -1rem;
        padding-inline: 1rem;
        border-radius: 8px;
    }

    .process-step:hover .step-number {
        background-color: var(--primary-color);
    }
}

/* === יתרונות === */
.benefits {
    background-color: var(--dark-color);
    color: var(--light-text);
}

.benefits .section-title {
    color: var(--light-text);
}

.benefits .section-title::after {
    background-color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.benefit-card {
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--light-text);
}

.benefit-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(192, 159, 128, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.benefit-card p {
    color: var(--light-gray);
}

.benefits .benefit-title {
    color: var(--light-text);
}

.benefit-icon {
    font-size: 3.6rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* === גלריה מקוצרת === */
.gallery-preview {
    background-color: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-grid.gallery-masonry {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    grid-auto-flow: dense;
}

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

.gallery-grid.gallery-masonry .gallery-item:not(.gallery-item--wide) {
    grid-row: span 1;
}

.gallery-item picture,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-grid.gallery-masonry > .gallery-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-grid.gallery-masonry > .gallery-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === Image effects (parallax, reveal, bento) === */
.parallax-media {
    will-change: transform;
}

.image-reveal {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.7s ease;
}

.image-reveal.revealed {
    clip-path: inset(0 0 0 0);
}

.bento-grid > *,
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.bento-grid > *.revealed,
.stagger-children > *.revealed {
    opacity: 1;
    transform: translateY(0);
}

.image-hover-zoom {
    overflow: hidden;
}

.image-hover-zoom img {
    transition: transform 0.4s ease;
}

.image-hover-zoom:hover img {
    transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
    .parallax-media {
        transform: none !important;
    }

    .image-reveal,
    .bento-grid > *,
    .stagger-children > *,
    .gallery-grid.gallery-masonry > .gallery-item {
        clip-path: none;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .image-hover-zoom:hover img {
        transform: none;
    }
}

@media screen and (max-width: 992px) {
    .gallery-grid.gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-text);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-cta {
    text-align: center;
    margin-top: 4rem;
}

/* === המלצות לקוחות === */
.testimonials {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 8rem 0;
}

.testimonials .section-title {
    color: var(--light-text);
}

.testimonials .section-title::after {
    background-color: var(--secondary-color);
}

.testimonial-slide {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4rem;
    margin: 2rem 0;
    display: none;
    /* כל הסליידים מוסתרים בתחילה */
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.8rem;
}

.author-name {
    font-weight: 600;
    text-align: left;
    font-size: 1.6rem;
}

.rtl .author-name {
    text-align: right;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.prev-testimonial,
.next-testimonial {
    background-color: transparent;
    border: 1px solid var(--light-text);
    color: var(--light-text);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin: 0 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
}

/* === שאלות נפוצות === */
.faq {
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-text);
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.8rem;
}

.faq-icon {
    font-size: 1.8rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    visibility: hidden;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 500px;
    visibility: hidden;
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

/* === צור קשר === */
.contact,
#contact {
    background-color: var(--dark-color);
    color: var(--bg-color);
}

#contact h2,
#contact .section-title,
#contact .section-subtitle,
#contact p {
    color: var(--bg-color);
}

#contact .section-title::after {
    background-color: var(--primary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5rem;
}

.info-icon {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-left: 1.5rem;
}

.info-text h3,
.info-label,
.footer-heading {
    color: var(--bg-color);
}

.contact-form {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid var(--light-gray);
    background-color: #343a40;
    color: var(--bg-color);
    font-family: var(--font-body);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #adb5bd;
}

.contact-form .form-group label {
    color: var(--light-gray);
}

/* === מפה === */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === Responsive === */
@media screen and (max-width: 992px) {
    .split-panel__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-panel--reverse .split-panel__inner {
        direction: inherit;
    }

    .split-panel__media {
        order: -1;
        min-height: auto;
        aspect-ratio: 4 / 3;
    }

    .split-panel__media picture,
    .split-panel__media img {
        min-height: auto;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .bento-tile--featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .about-content {
        flex-direction: column;
    }

    .about-images {
        order: -1;
        max-width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .about-images__primary {
        min-height: 360px;
    }

    .stat-band__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

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

    .process-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-showcase {
        position: static;
    }

    .process-showcase picture,
    .process-showcase img {
        min-height: 280px;
    }
}

@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 3.6rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .testimonial-slide {
        padding: 2rem;
    }
}


/* Hero subtitle */
.hero-subtitle {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Service, benefit and gallery item titles */
.service-title, .benefit-title, .gallery-item-title {
    display: block;
    margin-bottom: 1rem;
    font-size: var(--text-xl);
    font-weight: 500;
    font-family: var(--font-display);
    color: var(--dark-color);
}

/* About subtitle */
.about-subtitle {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* FAQ question text */
.faq-question-text {
    display: block;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Contact info label */
.info-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Footer heading */
.footer-heading {
    display: block;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1.6rem;
}

.form-group textarea {
    resize: vertical;
}

.info-item {
    display: flex;
    margin-bottom: 3rem;
}

.ltr .info-icon {
    margin-left: 0;
    margin-right: 1.5rem;
}

.info-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2,
    .hero-subtitle {
        font-size: 1rem;
    }

    .about-content {
        flex-direction: column;
    }

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

    .gallery-grid.gallery-masonry .gallery-item {
        grid-row: span 1;
        height: 250px;
    }

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

    .stat-band__inner {
        grid-template-columns: 1fr 1fr;
    }

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

    .process-step {
        grid-template-columns: 2.8rem 1fr;
        gap: 1rem;
    }

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

    .about-images__primary {
        grid-row: span 1;
        min-height: 280px;
    }

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

    .bento-tile--featured,
    .bento-tile:nth-child(5) {
        grid-column: span 1;
        grid-row: span 1;
    }
}