/* --- FONTS --- */
@font-face {
    font-family: "Bebas Neue";
    src: url("fonts/BebasNeue-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DM Sans";
    src: url("fonts/DMSans-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DM Sans";
    src: url("fonts/DMSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DM Sans";
    src: url("fonts/DMSans-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DM Sans";
    src: url("fonts/DMSans-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DM Sans";
    src: url("fonts/DMSans-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* --- VARIABLES --- */
:root {
/*
    --color-bg:         #0e0e0e;
    --color-bg-alt:     #151515;
    --color-surface:    #1a1a1a;
    --color-border:     #2a2a2a;
    --color-accent:     #e8a020;
    --color-accent-dim: #b07a10;
    --color-accent-light:  #e8a020;
    --color-text:       #f0ece4;
    --color-muted:      #888075;
    --color-faint:      #3a3530;
    --color-nav-bg: rgba(14, 14, 14, 0.92);
    --color-hero-bg:       #0a0a0a;
    --color-hero-overlay1: rgba(10, 10, 10, 0.95);
    --color-hero-overlay2: rgba(10, 10, 10, 0.4);
    --color-hero-title:    #dddddd;
    --color-hero-sub:    #bbbbbb;
*/
/*
    --color-bg:         #f5f4f1;
    --color-bg-alt:     #edecea;
    --color-surface:    #ffffff;
    --color-border:     #d8d5d0;
    --color-accent:     #c0392b;
    --color-accent-dim: #962d22;
    --color-accent-light:  #ff6150;
    --color-text:       #1a1818;
    --color-muted:      #7a7570;
    --color-faint:      #c8c4be;
    --color-nav-bg: rgba(245, 244, 241, 0.92);
    --color-hero-bg:       #1a1a1a;
    --color-hero-overlay1: rgba(10, 10, 10, 0.85);
    --color-hero-overlay2: rgba(10, 10, 10, 0.2);
    --color-hero-title:    #dddddd;
    --color-hero-sub:    #bbbbbb;
*/

    --color-bg:         #f2f4f7;
    --color-bg-alt:     #e8ebf0;
    --color-surface:    #ffffff;
    --color-border:     #cdd2da;
    --color-accent:     #1b4f8a;
    --color-accent-dim: #133a66;
    --color-accent-light:  #00c3ff;
    --color-text:       #151c28;
    --color-muted:      #6b7585;
    --color-faint:      #bfc5d0;
    --color-nav-bg: rgba(242, 244, 247, 0.92);
    --color-hero-bg:       #0f1923;
    --color-hero-overlay1: rgba(15, 25, 35, 0.88);
    --color-hero-overlay2: rgba(15, 25, 35, 0.2);
    --color-hero-title:    #dddddd;
    --color-hero-sub:    #bbbbbb;

    --font-display: "Bebas Neue", sans-serif;
    --font-body:    "DM Sans", sans-serif;

    --nav-height: 72px;
    --section-pad: 100px;
    --container: 1160px;
    --radius: 3px;

    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* --- UTILITY --- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    letter-spacing: 0.04em;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 56px;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--color-accent);
    margin-top: 16px;
}

/* --- BUTTON --- */
.btn {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: var(--color-bg);
    background: var(--color-accent);
    padding: 14px 36px;
    border-radius: var(--radius);
    border: 2px solid var(--color-accent);
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.btn:hover {
    background: transparent;
    color: var(--color-accent);
}

.btn--outline {
    background: transparent;
    color: var(--color-accent);
}

.btn--outline:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

.btn__icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: -2px;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    background: var(--color-nav-bg);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

.nav__logo{
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.nav__logo-img{
    height: 40px;
    position: relative;
    bottom: 3px;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: var(--color-text);
    transition: color var(--transition);
    position: relative;
    top: 3px;
}

.nav__logo-text:hover {
    color: var(--color-accent);
}

.nav__links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav__links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-muted);
    transition: color var(--transition);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--transition);
}

.nav__links a:hover {
    color: var(--color-text);
}

.nav__links a:hover::after {
    width: 100%;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
    background-color: var(--color-hero-bg);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, var(--color-hero-overlay1) 40%, var(--color-hero-overlay2) 100%),
        url('images/hero.jpeg') center / cover no-repeat;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--color-bg);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 20px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 9vw, 8rem);
    letter-spacing: 0.03em;
    line-height: 0.95;
    color: var(--color-hero-title);
    margin-bottom: 28px;
    max-width: 900px;
}

.hero__sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-hero-sub);
    max-width: 500px;
    margin-bottom: 44px;
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--section-pad) 0;
    background: var(--color-bg-alt);
}

.services__grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 48px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 40px 48px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition), background var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--color-accent);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.service-card:hover {
    background: var(--color-bg);
    border-color: var(--color-accent);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card__number {
    font-family: var(--font-display);
    font-size: 4.5rem;
    letter-spacing: 0.04em;
    color: var(--color-accent);
    opacity: 0.25;
    line-height: 1;
    flex-shrink: 0;
    transition: opacity var(--transition);
    user-select: none;
}

.service-card:hover .service-card__number {
    opacity: 0.6;
}

.service-card__body h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1;
}

.service-card__body p {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.7;
    max-width: 560px;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--section-pad) 0;
    background: var(--color-bg);
}

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

.about__image {
    position: relative;
}

.about__image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.about__image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--color-accent);
    transform: translate(12px, 12px);
    z-index: -1;
    transition: transform var(--transition);
}

.about__image:hover::before {
    transform: translate(18px, 18px);
}

.about__text p {
    font-size: 1rem;
    color: var(--color-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about__text p:last-of-type {
    margin-bottom: 48px;
}

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

.stat {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat:hover::before {
    transform: scaleX(1);
}

.stat:hover {
    border-color: var(--color-accent);
}

.stat__number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    letter-spacing: 0.04em;
    color: var(--color-accent);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}

.stat__label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
    display: block;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: var(--section-pad) 0;
    background: var(--color-bg-alt);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    background: var(--color-surface);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) brightness(0.9);
    transition: transform 0.4s ease, filter 0.4s ease;
    loading: lazy;
}

.gallery__item:hover img {
    transform: scale(1.06);
    filter: grayscale(0%) brightness(1);
}

.gallery__item__overlay {
    position: absolute;
    inset: 0;
    background: var(--color-accent);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__item__overlay svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.gallery__item:hover .gallery__item__overlay {
    opacity: 0.15;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox__img-wrap {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__img-wrap img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    border-radius: var(--radius);
    user-select: none;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
}

.lightbox__close {
    top: 24px;
    right: 32px;
    font-size: 1.8rem;
}

.lightbox__prev,
.lightbox__next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    padding: 0 24px;
}

.lightbox__prev { left: 0; }
.lightbox__next { right: 0; }

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    color: var(--color-accent-light);
}

.lightbox__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--section-pad) 0;
    background: var(--color-bg);
}

.contact__feedback {
    font-size: 0.9rem;
    padding: 12px 0;
    display: none;
}

.contact__feedback.success { color: #2e7d32; display: block; }
.contact__feedback.error   { color: #c62828; display: block; }

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: start;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__form input,
.contact__form textarea {
    width: 100%;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px;
    outline: none;
    transition: border-color var(--transition);
    resize: vertical;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
    color: var(--color-muted);
}

.contact__form input:focus,
.contact__form textarea:focus {
    border-color: var(--color-accent);
}

.contact__form textarea {
    min-height: 160px;
}

.contact__info {
    padding-top: 8px;
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact__info-item .icon {
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact__info-item strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 4px;
}

.contact__info-item span {
    font-size: 0.95rem;
    color: var(--color-text);
}

.contact__toast {
    position: fixed;
    top: 40px;
    right: 40px;
    left: auto;
    transform: translateY(-10px);
    background: #07a107;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 16px 32px;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    z-index: 999;
}

.contact__toast.active {
    opacity: 1;
    transform: translateY(0);
}

.contact__info-item a {
    color: var(--color-text);
    transition: color var(--transition);
}

.contact__info-item a:hover {
    color: var(--color-accent);
}

.contact__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #080808;
    border-top: 1px solid var(--color-border);
    padding: 40px 0;
}

.footer .container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer p {
    font-size: 0.85rem;
    color: var(--color-faint);
}

.footer__links {
    display: flex;
    gap: 32px;
}

.footer__links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-faint);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--color-accent-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- TABLET (max 1024px) --- */
@media (max-width: 1024px) {

    :root {
        --section-pad: 80px;
    }

    /* Nav */
    .nav__links,
    .nav > .btn {
        display: none;
    }

    .nav__toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 4px;
    }

    .nav__toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--color-text);
        transition: transform var(--transition), opacity var(--transition);
    }

    /* Hero */
    .hero::before {
        background:
            linear-gradient(to bottom, var(--color-hero-overlay1) 40%, var(--color-hero-overlay2) 100%),
            url('images/hero.jpeg') center / cover no-repeat;
    }

    .hero__title {
        font-size: clamp(3.5rem, 10vw, 6rem);
    }

    /* About */
    .about__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image {
        order: -1;
    }

    .about__image img {
        height: 400px;
    }

    .about__text p:last-of-type {
        margin-bottom: 32px;
    }

    /* Contact */
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Gallery */
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* --- MOBILE (max 768px) --- */
@media (max-width: 768px) {

    :root {
        --section-pad: 64px;
    }

    /* Mobile nav open state — toggled via JS */
    .nav.open .nav__links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--color-nav-bg);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid var(--color-border);
        padding: 32px;
        gap: 28px;
        align-items: flex-start;
        z-index: 99;
    }

    .nav.open .nav__links a {
        font-size: 1.1rem;
    }

    /* Hero */
    .hero {
        align-items: flex-end;
        padding-bottom: 100px;
    }

    .hero__title {
        font-size: clamp(3rem, 13vw, 4.5rem);
    }

    .hero__sub {
        font-size: 1rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__actions .btn {
        width: 100%;
        text-align: center;
    }

    /* Services */
    .service-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 28px 24px;
    }

    .service-card__number {
        font-size: 3rem;
    }

    /* About stats */
    .about__stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .stat {
        padding: 20px 16px;
    }

    .stat__number {
        font-size: 2.2rem;
    }

    /* Gallery */
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact toast */
    .contact__toast {
        top: 20px;
        right: 16px;
        left: 16px;
        text-align: center;
        white-space: normal;
    }

    /* Footer */
    .footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

}

.nav__mobile-actions {
    display: none;
    align-items: center;
    gap: 16px;
}

.nav__mobile-call {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius);
    background: var(--color-accent);
    color: var(--color-bg);
    transition: background var(--transition);
}

.nav__mobile-call:hover {
    background: var(--color-accent-dim);
}

.nav__mobile-call .btn__icon {
    margin: 0;
}

@media (max-width: 1024px) {
    .nav__mobile-actions {
        display: flex;
    }
}

/* --- TOUCH DEVICES --- */
@media (hover: none) {
    .btn:hover {
        background: var(--color-accent);
        color: var(--color-bg);
    }

    .btn--outline {
        color: #ffffff;
        border-color: #ffffff;
    }

    .btn--outline:hover {
        background: transparent;
        color: #ffffff;
    }
}

/* ============================================
   MAP
   ============================================ */
.map {
    padding: 0 0 var(--section-pad) 0;
    width: 100%;
}

.map iframe {
    width: 100%;
    height: 800px;
    border: 0;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}

.map iframe:hover {
    filter: grayscale(0%);
}

/* --- SMALL MOBILE (max 480px) --- */
@media (max-width: 480px) {

    .container {
        padding: 0 20px;
    }

    .nav {
        padding: 0 20px;
    }

    /* About stats — stack vertically */
    .about__stats {
        grid-template-columns: 1fr;
    }

    .stat {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .stat__number {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    /* Gallery */
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }

    /* Section title smaller */
    .section-title {
        font-size: clamp(2.2rem, 10vw, 2.8rem);
        margin-bottom: 36px;
    }

    .nav__logo-img {
        height: 32px;
    }

    .nav__logo-text {
        font-size: 1.4rem;
    }

    .nav__mobile-call {
        gap: 8px;
        height: 32px;
        padding: 12px 8px;
        font-size: 14px;
    }

    .btn__icon {
        width: 14px;
        height: 14px;
        vertical-align: middle;
        margin-right: 4px;
        margin-bottom: -2px;
    }

    .map iframe {
        width: 100%;
        height: 360px;
        border: 0;
        display: block;
        filter: grayscale(20%);
        transition: filter 0.4s ease;
    }
    
    .contact__info-item {
        margin-bottom: 16px;
    }

    .contact {
        padding: var(--section-pad) 0 20px 0;
        background: var(--color-bg);
    }
}

@media (max-width: 380px) {
    .btn__icon {
        display: none;
    }
}