/* ========================================
   The French Beauty MK — Stylesheet
   Deep Navy + Warm Gold · Minimalist
   ======================================== */

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

:root {
    --navy-900: #0A1628;
    --navy-800: #0F1F3D;
    --navy-700: #162A4A;
    --navy-600: #1D3557;
    --gold-500: #C8A44E;
    --gold-400: #D4B45E;
    --gold-300: #E0C470;
    --gold-200: #F0DB9A;
    --cream-50: #FAFAF8;
    --cream-100: #F5F4F0;
    --cream-200: #EDECE6;
    --gray-50: #F8F8F6;
    --gray-100: #F2F2EF;
    --gray-200: #E5E5E0;
    --gray-300: #D4D4CF;
    --gray-400: #A8A8A0;
    --gray-500: #787870;
    --gray-600: #52524C;
    --gray-700: #3A3A36;
    --gray-800: #242420;
    --white: #FFFFFF;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--gray-700);
    background-color: var(--cream-50);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.nav.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--navy-900);
}

.nav__logo-mark {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold-500);
    line-height: 1;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

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

.nav__link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-600);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-500);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--navy-900);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--navy-900);
    padding: 10px 24px;
    transition: var(--transition);
}

.nav__cta:hover {
    background: var(--gold-500);
    color: var(--navy-900);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--navy-900);
    transition: var(--transition);
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 14px 32px;
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.btn--primary {
    background: var(--navy-900);
    color: var(--white);
    border-color: var(--navy-900);
}

.btn--primary:hover {
    background: var(--navy-700);
    border-color: var(--navy-700);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--navy-900);
    border-color: var(--navy-900);
}

.btn--ghost:hover {
    background: var(--navy-900);
    color: var(--white);
}

.btn--ghost-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn--ghost-light:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 0.75rem;
}

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

/* ── Section Shared ── */
.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--navy-900);
    margin-bottom: 20px;
}

.section-line {
    width: 48px;
    height: 1px;
    background: var(--gold-500);
    margin-bottom: 32px;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 72px;
    background: var(--cream-50);
    position: relative;
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    flex: 1;
    padding-bottom: 80px;
}

.hero__eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 24px;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--navy-900);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero__subhead {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-600);
    max-width: 480px;
    margin-bottom: 40px;
}

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

.hero__details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero__detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}

.hero__detail svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    overflow: hidden;
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 40%;
    border: 1px solid var(--gold-200);
    z-index: -1;
}

.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.hero__scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ── Services ── */
.services {
    padding: 120px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header .section-line {
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    padding: 40px 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: var(--gold-200);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.06);
}

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

.service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    margin-bottom: 24px;
    color: var(--gold-500);
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: var(--gold-500);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--navy-900);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.service-card__link {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy-900);
    position: relative;
    padding-bottom: 2px;
}

.service-card__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card__link:hover::after {
    transform: scaleX(1);
}

/* ── About ── */
.about {
    padding: 120px 0;
    background: var(--cream-50);
}

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

.about__image-col {
    position: relative;
}

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

.about__image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 32px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.85), transparent);
}

.about__overlay-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.4;
}

.about__content {
    padding: 20px 0;
}

.about__body {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.about__value {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about__value-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold-500);
    line-height: 1;
    padding-top: 4px;
}

.about__value-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.about__value-desc {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray-500);
}

/* ── Gallery ── */
.gallery {
    padding: 120px 0 100px;
    background: var(--white);
}

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

.gallery__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery__item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 2; }
.gallery__item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
.gallery__item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery__item:nth-child(4) { grid-column: 1 / 5; grid-row: 2 / 3; }
.gallery__item:nth-child(5) { grid-column: 5 / 9; grid-row: 2 / 3; }
.gallery__item:nth-child(6) { grid-column: 9 / 13; grid-row: 2 / 3; }

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--gold-500);
    padding-bottom: 4px;
}

/* ── CTA ── */
.cta {
    padding: 120px 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(200, 164, 78, 0.08);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(200, 164, 78, 0.06);
    border-radius: 50%;
}

.cta__inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta__eyebrow {
    color: var(--gold-500);
}

.cta__title {
    color: var(--white);
    margin-bottom: 24px;
}

.cta__text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 48px;
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Contact ── */
.contact {
    padding: 120px 0;
    background: var(--cream-50);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact__detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact__detail svg {
    color: var(--gold-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.contact__detail-value {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--navy-900);
    line-height: 1.6;
}

.contact__detail-value a {
    color: var(--navy-900);
    border-bottom: 1px solid var(--gray-200);
    transition: border-color var(--transition);
}

.contact__detail-value a:hover {
    border-color: var(--gold-500);
}

.contact__map {
    margin-top: 32px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.contact__form-col {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--navy-900);
    margin-bottom: 32px;
}

.form__group {
    margin-bottom: 24px;
}

.form__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--navy-900);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-200);
    outline: none;
    transition: border-color var(--transition);
}

.form__input::placeholder {
    color: var(--gray-300);
}

.form__input:focus {
    border-bottom-color: var(--gold-500);
}

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

.form__textarea {
    resize: vertical;
    min-height: 80px;
}

.form__success {
    text-align: center;
    padding: 48px 24px;
}

.form__success svg {
    color: var(--gold-500);
    margin-bottom: 16px;
}

.form__success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.form__success p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    background: var(--navy-900);
    color: var(--white);
    padding: 80px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 64px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer__logo-mark {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold-500);
}

.footer__logo-text,
.footer__tagline {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer__heading {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 20px;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__nav a {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer__nav a:hover {
    color: var(--white);
}

.footer__address {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    font-style: normal;
}

.footer__address a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer__address a:hover {
    color: var(--gold-500);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
}

/* ── Scroll Animations (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }
    .reveal-delay-6 { transition-delay: 0.6s; }
}

/* ── Mobile Menu ── */
@media (max-width: 900px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 250, 248, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid var(--gray-200);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav__links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__link {
        font-size: 0.85rem;
    }

    .nav__cta {
        margin-top: 8px;
    }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero__subhead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__details {
        align-items: center;
    }

    .hero__image {
        max-width: 480px;
        margin: 0 auto;
    }

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

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

    .about__image-col img {
        height: 480px;
    }

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

    .gallery__item:nth-child(1) { grid-column: 1 / 2; grid-row: auto; }
    .gallery__item:nth-child(2) { grid-column: 2 / 3; grid-row: auto; }
    .gallery__item:nth-child(3) { grid-column: 1 / 2; grid-row: auto; }
    .gallery__item:nth-child(4) { grid-column: 2 / 3; grid-row: auto; }
    .gallery__item:nth-child(5) { grid-column: 1 / 2; grid-row: auto; }
    .gallery__item:nth-child(6) { grid-column: 2 / 3; grid-row: auto; }

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

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

    .footer__col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding-top: 72px;
    }

    .hero__container {
        padding-bottom: 60px;
    }

    .hero__headline {
        font-size: 2rem;
    }

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

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

    .services {
        padding: 80px 0;
    }

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

    .service-card {
        padding: 32px 24px;
    }

    .about {
        padding: 80px 0;
    }

    .gallery {
        padding: 80px 0 60px;
    }

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

    .gallery__item:nth-child(n) {
        grid-column: 1 / -1;
    }

    .cta {
        padding: 80px 0;
    }

    .cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .contact {
        padding: 80px 0;
    }

    .contact__form-col {
        padding: 28px 20px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__col:first-child {
        grid-column: auto;
    }

    .footer__bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
