/* === Улучшения дизайна и шапки (Tilda-style) === */

html {
    scroll-behavior: smooth;
}

body.header-scrolled {
    padding-top: calc(76px + var(--safe-top) + 8px);
}

.site-header {
    transition: box-shadow 0.35s ease, padding 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(26, 42, 58, 0.08);
}

.site-header.is-scrolled .header-inner {
    min-height: 64px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
}

.header-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(0.65rem, 1.5vw, 1.75rem);
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-links a {
    font-size: clamp(0.78rem, 1.1vw, 0.92rem);
    white-space: nowrap;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

/* Единый размер кнопок в шапке */
.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 10.5rem;
    height: 2.75rem;
    padding: 0 1.15rem;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 999px;
    box-sizing: border-box;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 154, 91, 0.35);
}

.btn-header--outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(26, 42, 58, 0.25);
}

.btn-header--outline:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-header--primary {
    background: var(--secondary);
    color: #fff;
    border: 1px solid var(--secondary);
}

.btn-header--primary:hover {
    background: transparent;
    color: var(--secondary);
}

/* Бургер */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(26, 42, 58, 0.15);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.35s ease;
}

.burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Мобильное меню (перекрывает старые стили из index.html) */
.mobile-menu {
    position: fixed !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    width: auto !important;
    height: auto !important;
    z-index: 1500;
    padding: 0 !important;
    margin: 0;
    overflow: visible !important;
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu.active {
    transform: none !important;
    box-shadow: none !important;
}

.mobile-menu.active {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 24, 34, 0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-menu.active .mobile-menu__backdrop {
    opacity: 1;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(20rem, 88vw);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: calc(1rem + var(--safe-top, 0px)) 1.25rem 1.5rem;
    box-sizing: border-box;
    background: linear-gradient(165deg, #1a2a3a 0%, #243a4f 55%, #2d4a63 100%);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.25);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.active .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.mobile-menu__brand span {
    color: var(--secondary);
}

.mobile-menu .mobile-menu-close {
    position: static;
    top: auto;
    right: auto;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
}

.mobile-menu__nav {
    flex: 1 1 auto;
    overflow-y: auto;
}

.mobile-menu__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu__nav li {
    margin: 0;
}

.mobile-menu__nav a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a:focus-visible {
    color: var(--secondary);
    padding-left: 0.35rem;
}

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu__actions .btn-header {
    width: 100%;
    min-width: 0;
    min-height: 3rem;
}

.mobile-menu__actions .btn-header--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.mobile-menu__actions .btn-header--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

.mobile-menu__actions .btn-header--primary {
    box-shadow: 0 8px 24px rgba(194, 154, 91, 0.35);
}

/* Hero */
.hero--premium {
    position: relative;
    overflow: hidden;
    padding: 11rem 0 7rem;
}

.hero--premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(26, 42, 58, 0.92) 0%, rgba(26, 42, 58, 0.75) 45%, rgba(194, 154, 91, 0.35) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    animation: heroKenBurns 22s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes heroKenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero--premium .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.45rem 1rem;
    margin-bottom: 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: fadeUp 0.8s ease both;
}

.hero--premium h1 {
    animation: fadeUp 0.9s ease 0.1s both;
}

.hero--premium p {
    animation: fadeUp 0.9s ease 0.2s both;
}

.hero--premium .btn-hero {
    animation: fadeUp 0.9s ease 0.35s both;
    border-radius: 999px;
    padding: 1rem 2.5rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Появление при скролле */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* О компании — с фото */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 42, 58, 0.15);
    min-height: 320px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}

/* Карточки услуг с фото */
.card--service {
    padding: 0;
    overflow: hidden;
}

.card-media {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    background-color: #e8e6e1;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 42, 58, 0.5), transparent);
}

.card-body {
    padding: 2rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card--service .card-icon {
    position: absolute;
    bottom: 1rem;
    left: 1.25rem;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0;
}

/* Преимущества — иконки */
.advantage-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    background: rgba(194, 154, 91, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Модалка */
.modal-content {
    border-radius: 16px;
    border: none;
}

.recaptcha-wrap {
    margin: 0.5rem 0 1.25rem;
    min-height: 78px;
}

.recaptcha-hint {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.35rem;
}

.form-notice {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.75rem;
}

/* Плавающая кнопка «наверх» */
.back-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--secondary);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 900;
    box-shadow: 0 8px 24px rgba(194, 154, 91, 0.45);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Адаптив шапки */
@media (max-width: 1100px) {
    .header-nav {
        display: none;
    }

    .header-actions .btn-header {
        display: none !important;
    }

    #consultBtn,
    #showMapBtn {
        display: none !important;
    }

    .header-actions {
        gap: 0;
    }

    .burger,
    .mobile-menu-toggle {
        display: flex;
    }

    .header-inner {
        min-height: 64px;
    }

    .logo {
        font-size: 1.45rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 240px;
        order: -1;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        padding: 0 0.5rem;
    }

    .hero-actions .btn-hero {
        width: 100%;
        max-width: 20rem;
        margin: 0 auto;
    }

    .hero--premium {
        padding: 9rem 0 6.5rem;
    }

    .hero--premium h1 {
        font-size: clamp(1.65rem, 6vw, 2.1rem);
        padding: 0 0.5rem;
    }

    .hero--premium p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .trust-marquee__track span {
        font-size: 0.78rem;
    }

    .cta-band {
        padding: 3.5rem 1rem;
    }

    .modal-content {
        width: calc(100% - 1.5rem);
        max-width: none;
        margin: 0.75rem;
        padding: 1.35rem;
    }

    .back-to-top {
        right: 0.75rem;
        bottom: 0.75rem;
        width: 44px;
        height: 44px;
    }
}

@media (min-width: 1101px) and (max-width: 1280px) {
    .btn-header {
        min-width: 9.25rem;
        font-size: 0.82rem;
        padding: 0 0.9rem;
    }

    .nav-links {
        gap: 0.85rem;
    }
}

@media (max-width: 480px) {
    .btn-header {
        min-width: 0;
    }

    .hero--premium {
        padding: 8.5rem 0 4.5rem;
    }
}

/* === Типографика === */
body {
    font-family: 'Manrope', sans-serif;
}

.logo,
.hero h1,
.section-title,
.card-title,
.modal-content h2,
.cta-band__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Кнопки шапки — строго по центру */
.header-actions .btn-header,
.mobile-menu .btn-header,
#showMapBtn,
#consultBtn,
#showMapBtnMobile,
#consultBtnMobile {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    vertical-align: middle;
}

/* Hero: две кнопки + подсказка скролла */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.btn-hero--ghost {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.55) !important;
}

.btn-hero--ghost:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
}

.hero-scroll {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin: 1.5rem auto 0;
    padding: 0.25rem 0.5rem;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto;
    transition: opacity 0.4s ease, transform 0.25s ease, color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

/* Десктоп: справа внизу hero */
@media (min-width: 1101px) {
    .hero-scroll {
        position: absolute;
        right: clamp(1.25rem, 4vw, 3rem);
        bottom: 2rem;
        left: auto;
        top: auto;
        margin: 0;
        z-index: 50;
    }

    .hero-scroll.is-hidden {
        transform: translateY(12px);
    }

    .hero--premium {
        padding-bottom: 9rem;
    }
}

.hero-scroll:hover,
.hero-scroll:focus-visible {
    color: #fff;
}

.hero-scroll:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 4px;
    border-radius: 8px;
}

.hero-scroll.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.hero-scroll__label,
.hero-scroll__arrow {
    pointer-events: none;
}

.hero-scroll__label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    font-family: 'Manrope', sans-serif;
}

.hero-scroll__arrow {
    display: block;
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--secondary);
    border-bottom: 2px solid var(--secondary);
    transform: rotate(45deg);
    animation: scrollArrowJump 4s ease-in-out infinite;
}

@keyframes scrollArrowJump {
    0%, 72%, 100% {
        transform: rotate(45deg) translate(0, 0);
        opacity: 0.85;
    }
    8% {
        transform: rotate(45deg) translate(3px, 3px);
        opacity: 1;
    }
    16% {
        transform: rotate(45deg) translate(0, 0);
        opacity: 0.85;
    }
    24% {
        transform: rotate(45deg) translate(5px, 5px);
        opacity: 1;
    }
    32% {
        transform: rotate(45deg) translate(0, 0);
        opacity: 0.85;
    }
}

@media (max-width: 1100px) {
    .hero--premium {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 4.5rem;
    }

    .hero--premium > .container {
        width: 100%;
    }

    .hero-scroll {
        margin-top: 0.25rem;
        gap: 0;
        padding: 0.35rem;
    }

    .hero-scroll__label {
        display: none;
    }

    .hero-scroll__arrow {
        width: 16px;
        height: 16px;
        border-width: 2.5px;
    }
}

/* Сетка услуг */
.grid--services {
    align-items: stretch;
}

.card--service {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: none;
    box-shadow: 0 12px 40px rgba(26, 42, 58, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card--service:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(26, 42, 58, 0.16);
}

.card--service .card-media {
    height: 200px;
}

.card--service .card-icon {
    position: static;
    margin-bottom: 0.75rem;
    background: rgba(194, 154, 91, 0.15);
    color: var(--secondary);
}

.card-body .btn-card {
    margin-top: auto;
    align-self: flex-start;
    border-radius: 999px;
}

/* Галерея */
.visual-strip {
    padding: 4rem 0 5rem;
    background: var(--light);
}

.visual-strip__lead {
    text-align: center;
    font-size: 1.05rem;
    color: #666;
    margin: 0 0 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 160px);
    gap: 1rem;
}

.visual-grid__item {
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.visual-grid__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 40%, rgba(26, 42, 58, 0.35));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.visual-grid__item:hover {
    transform: scale(1.02);
    filter: saturate(1.1);
}

.visual-grid__item:hover::after {
    opacity: 1;
}

.visual-grid__item--wide {
    grid-column: span 2;
    grid-row: span 2;
}

.visual-grid__item--tall {
    grid-row: span 2;
}

/* Преимущества с фото */
.grid--advantages {
    align-items: stretch;
}

.card--advantage {
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    border: none;
    box-shadow: 0 10px 36px rgba(26, 42, 58, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card--advantage:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(26, 42, 58, 0.14);
}

.card-advantage-media {
    height: 140px;
    background-size: cover;
    background-position: center;
}

.card-advantage-body {
    padding: 1.75rem 2rem 2rem;
    flex: 1;
}

/* CTA */
.cta-band {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.cta-band__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    animation: heroKenBurns 28s ease-in-out infinite alternate;
}

.cta-band__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.92), rgba(194, 154, 91, 0.55));
}

.cta-band__inner {
    position: relative;
    z-index: 1;
}

.cta-band__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0 0 1rem;
    color: #fff;
}

.cta-band__text {
    max-width: 32rem;
    margin: 0 auto 2rem;
    opacity: 0.92;
    line-height: 1.65;
}

.btn-cta {
    border-radius: 999px !important;
    padding: 1rem 2.5rem !important;
    font-weight: 600;
    background: #fff !important;
    color: var(--primary) !important;
    border-color: #fff !important;
}

.btn-cta:hover {
    background: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
}

/* Контакты */
.section--contacts {
    background: var(--primary);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section--contacts::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92fd1f2?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    opacity: 0.12;
}

.section--contacts .container {
    position: relative;
    z-index: 1;
}

.section--contacts .section-title {
    color: #fff;
}

.section--contacts .section-title::after {
    background: var(--secondary);
}

/* Статистика */
.about-stats .stat-number {
    transition: transform 0.4s ease;
}

.about-stats.is-visible .stat-item:hover .stat-number {
    transform: scale(1.06);
    color: var(--secondary);
}

/* Бегущая строка доверия */
.trust-marquee {
    overflow: hidden;
    padding: 1.25rem 0;
    background: #fff;
    border-top: 1px solid rgba(26, 42, 58, 0.06);
    border-bottom: 1px solid rgba(26, 42, 58, 0.06);
}

.trust-marquee__track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.trust-marquee__track span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(26, 42, 58, 0.55);
    white-space: nowrap;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
    .visual-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .visual-grid__item--wide,
    .visual-grid__item--tall {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 180px;
    }

    .visual-grid__item {
        min-height: 140px;
    }
}

@media (max-width: 480px) {
    .visual-grid {
        grid-template-columns: 1fr;
    }

    .visual-grid__item--wide,
    .visual-grid__item--tall {
        grid-column: span 1;
    }

    .hero-scroll__label {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }

    .hero-scroll__arrow {
        width: 12px;
        height: 12px;
    }

    .mobile-menu__panel {
        width: 100%;
        max-width: 100%;
    }
}
