/* Base typography & layout */
body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1f2933;
    background-color: #f5f7fa;
    margin: 0;
}

h1, h2, h3, h4 {
    font-weight: 600;
    color: #111827;
    letter-spacing: 0.01em;
}

p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.98rem;
}

.page-wrapper {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 3.5rem 0;
}

.section--tight {
    padding: 2.5rem 0;
}

.section--alt {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

/* Header & footer */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
}

.site-header__brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #e5e7eb;
    text-decoration: none;
}

.site-header__logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.site-header__logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-header__brand-title {
    font-size: 0.98rem;
    font-weight: 600;
}

.site-header__brand-sub {
    font-size: 0.75rem;
    color: #9ca3af;
}

.site-nav {
    display: flex;
    gap: 1rem;
}

.site-nav__link {
    font-size: 0.86rem;
    color: #d1d5db;
    text-decoration: none;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
}

.site-nav__link:hover {
    background-color: rgba(148, 163, 184, 0.12);
}

.site-nav__link.is-active {
    background-color: rgba(37, 99, 235, 0.18);
    color: #e5e7eb;
}

.site-header__cta .btn--sm {
    padding: 0.4rem 1.1rem;
    font-size: 0.82rem;
}

.site-footer {
    margin-top: 3rem;
    background-color: #020617;
    color: #ffffff;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    padding: 3rem 1.5rem 2rem;
}

.site-footer__col {
    display: flex;
    flex-direction: column;
}

.site-footer__brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.site-footer__text {
    margin: 0.25rem 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #ffffff;
}

.site-footer__text.text-white {
    color: #ffffff;
}

.site-footer__text a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer__text a:hover {
    color: #e5e7eb;
}

.site-footer__heading {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
}

.site-footer__links a:hover {
    color: #e5e7eb;
}

.site-footer__bottom {
    border-top: 1px solid rgba(55, 65, 81, 0.9);
    padding: 0.7rem 0;
}

.site-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #ffffff;
}

/* Flash message */
.flash {
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.flash--success {
    background-color: #ecfdf5;
    color: #166534;
    border-bottom: 1px solid #bbf7d0;
}

/* Hero (home) */
.hero {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.hero__content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero__left {
    color: #111827;
}

.hero__title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    font-weight: 700;
    color: #111827;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

/* Page heroes (inner pages) */
.page-hero {
    position: relative;
    min-height: 260px;
    max-height: 340px;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.4), rgba(3, 7, 18, 0.9));
    mix-blend-mode: multiply;
}

.page-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2.8rem 1.5rem 2.7rem;
}

.page-hero__eyebrow {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

.page-hero__title {
    font-size: 2.05rem;
    margin-bottom: 0.4rem;
}

.page-hero__subtitle {
    max-width: 640px;
    font-size: 0.95rem;
    opacity: 0.92;
}

.page-hero--about .page-hero__bg {
    background-image: url("https://images.pexels.com/photos/3861964/pexels-photo-3861964.jpeg");
    background-position: center;
    background-size: cover;
    filter: blur(2px);
}

.page-hero__title--white {
    color: #ffffff !important;
}

.page-hero__subtitle--white {
    color: #ffffff !important;
    opacity: 1 !important;
    font-size: 1.1rem;
    line-height: 1.7;
}

.section-header__title--large {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mission-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mission-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.section--light {
    background-color: #f8f9fa;
}

.why-choose-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.why-choose-grid {
    margin-top: 2.5rem;
}

.card--why-choose {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: #ffffff;
}

.card--why-choose .card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.card--why-choose .card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
}

.card--why-choose .card__text {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.section--blue {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
}

.location-section {
    text-align: center;
    padding: 3rem 1.5rem;
}

.location-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.location-text {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.8;
    margin: 0.75rem 0;
    opacity: 0.95;
}

.page-hero--services .page-hero__bg {
    background-image: url("https://images.pexels.com/photos/1181345/pexels-photo-1181345.jpeg");
}

.page-hero--products .page-hero__bg {
    background-image: url("https://images.pexels.com/photos/1181671/pexels-photo-1181671.jpeg");
    background-position: center;
    background-size: cover;
    filter: blur(2px);
}

.page-hero__text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero__subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

.page-hero--contact .page-hero__bg {
    background-image: url("https://images.pexels.com/photos/210647/pexels-photo-210647.jpeg");
    background-position: center;
    background-size: cover;
    filter: blur(2px);
}

.contact-main {
    background-color: #f8f9fa;
}

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

.contact-info-column,
.contact-form-column {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
    border-color: #d1d5db;
}

.contact-card__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    border-radius: 0.5rem;
}

.contact-card__content {
    flex: 1;
}

.contact-card__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.contact-card__text {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.contact-card__text a {
    color: #2563eb;
    text-decoration: none;
}

.contact-card__text a:hover {
    text-decoration: underline;
}

.contact-form {
    margin-top: 2rem;
}

.contact-form .field {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background-color: #ffffff;
    color: #111827;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.btn--submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn--submit span {
    font-size: 1.1rem;
}

/* Grid & cards */
.grid {
    display: grid;
    gap: 1.75rem;
}

.grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid--5 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.card--dense {
    padding: 1.25rem 1.5rem;
}

.card--service {
    text-align: center;
    padding: 2rem 1.5rem;
}

.card--product {
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.card--feature {
    text-align: center;
    padding: 1.75rem 1.25rem;
}

.card__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.card__text {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.card__image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: #f3f4f6;
}

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

.card--product .card__title {
    padding: 1rem 1.5rem 0.5rem;
    margin-bottom: 0;
}

.card--product .card__text {
    padding: 0 1.5rem 1.5rem;
}

.card__meta {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7280;
    margin-bottom: 0.4rem;
}

.icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.55rem;
}

/* Section headers */
.section-header {
    margin-bottom: 2.5rem;
}

.section-header--center {
    text-align: center;
}

.section-header__eyebrow {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    color: #6b7280;
    margin-bottom: 0.4rem;
}

.section-header__title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.section-header__subtitle {
    max-width: 640px;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.section-header__subtitle--center {
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Split layout */
.split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

/* Media blocks */
.media-block {
    border-radius: 0.9rem;
    background: radial-gradient(circle at top left, #1d4ed8, #020617);
    min-height: 220px;
    position: relative;
    overflow: hidden;
}

.media-block__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.88;
}

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
}

.product-card__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__content {
    padding: 1.75rem;
}

.product-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.product-card__description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-card__list li {
    font-size: 0.9rem;
    color: #4b5563;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.product-card__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.2rem;
}

.rental-grid {
    margin-top: 2rem;
}

.card--rental {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.card--rental .card__title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.card--rental .card__text {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 1rem;
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.cta-section__content {
    flex: 1;
}

.cta-section__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.cta-section__description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.cta-section__action {
    flex-shrink: 0;
}

/* Clients section */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 120px;
}

.client-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* filter: grayscale(100%);
    opacity: 0.7; */
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Contact layouts */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.25rem;
}

.contact-form {
    background: #ffffff;
    border-radius: 0.9rem;
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.contact-form .field {
    margin-bottom: 0.85rem;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #374151;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    padding: 0.55rem 0.7rem;
    font-size: 0.9rem;
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
}

.map-shell {
    border-radius: 0.9rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.35);
    min-height: 400px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

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

.contact-strip {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
}

.contact-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2.5rem 0;
}

.contact-strip__text {
    flex: 1;
    min-width: 300px;
}

.contact-strip__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    line-height: 1.4;
}

.contact-strip__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-width: 1px;
    border-style: solid;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.45);
}

.btn-outline {
    background-color: transparent;
    color: #1d4ed8;
    border-color: rgba(148, 163, 184, 0.9);
}

.btn-outline:hover {
    background-color: rgba(37, 99, 235, 0.05);
    border-color: #2563eb;
}

.btn-white {
    background-color: #ffffff;
    color: #2563eb;
    border-color: transparent;
}

.btn-white:hover {
    background-color: #f3f4f6;
    transform: translateY(-1px);
}

.btn--phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn--phone::before {
    content: "📞";
    font-size: 1rem;
}

/* Responsive tweaks */
@media (max-width: 900px) {
    .hero {
        padding: 2.5rem 0;
    }

    .hero__content {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .site-header__inner {
        gap: 0.75rem;
    }

    .site-nav {
        display: none;
    }

    .split {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-row,
    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-info-column,
    .contact-form-column {
        padding: 1.75rem;
    }

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

    .cta-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .cta-section__action {
        width: 100%;
    }

    .cta-section__action .btn {
        width: 100%;
    }

    .site-footer__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

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

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

    .contact-strip__inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-strip__actions {
        justify-content: center;
        width: 100%;
    }

    .site-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 600px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .grid--5,
    .grid--4,
    .grid--3 {
        grid-template-columns: 1fr;
    }
}

