/* ===================================
   Golden Palace — Asian Market & Deli
   Stylesheet
===================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-charcoal: #2C2C2C;
    --color-charcoal-light: #3D3D3D;
    --color-coral: #E86A50;
    --color-coral-dark: #D4573F;
    --color-coral-light: #F28973;
    --color-cream: #FFF8F5;
    --color-cream-dark: #FFF0EA;
    --color-warm-gray: #F5F0EC;
    --color-text: #2C2C2C;
    --color-text-light: #6B6B6B;
    --color-white: #FFFFFF;
    --color-border: #EDE5DF;

    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 44, 44, 0.08);
    --shadow-lg: 0 8px 40px rgba(44, 44, 44, 0.12);
    --shadow-coral: 0 4px 20px rgba(232, 106, 80, 0.25);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* ---------- Skip Link ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--color-coral);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 200;
    font-weight: 600;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 16px;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--color-charcoal);
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--color-text-light);
    max-width: 560px;
    line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-coral);
    color: var(--color-white);
    box-shadow: var(--shadow-coral);
}

.btn--primary:hover {
    background: var(--color-coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 106, 80, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--color-charcoal);
    border: 2px solid var(--color-border);
}

.btn--ghost:hover {
    border-color: var(--color-coral);
    color: var(--color-coral);
}

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

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 248, 245, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(255, 248, 245, 0.97);
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--color-charcoal);
}

.logo__text {
    letter-spacing: -0.01em;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    padding: 8px 16px;
    border-radius: 50px;
    transition: all var(--transition);
}

.nav__link:hover {
    color: var(--color-coral);
    background: rgba(232, 106, 80, 0.08);
}

.nav__link--cta {
    background: var(--color-coral);
    color: var(--color-white);
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--color-coral-dark);
    color: var(--color-white);
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.nav-toggle:hover {
    background: rgba(232, 106, 80, 0.08);
}

.nav-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    padding: 120px 0 0;
    background: var(--color-cream);
    overflow: hidden;
}

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

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: 20px;
}

.hero__eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--color-coral);
    border-radius: 2px;
}

.hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-charcoal);
    margin-bottom: 24px;
}

.hero__headline br {
    display: none;
}

.hero__description {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-text-light);
    background: var(--color-white);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.badge svg {
    color: var(--color-coral);
}

/* Hero Image */
.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--color-coral);
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
}

.hero__image-dots {
    position: absolute;
    bottom: -16px;
    left: -16px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.hero__image-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-coral);
    opacity: 0.6;
}

.hero__image-dots span:nth-child(2) {
    opacity: 0.4;
    width: 8px;
    height: 8px;
}

.hero__image-dots span:nth-child(3) {
    opacity: 0.2;
    width: 6px;
    height: 6px;
}

/* Hero Wave */
.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--color-warm-gray);
}

.hero__wave svg {
    width: 100%;
    height: 80px;
}

/* ========== PRODUCTS ========== */
.products {
    padding: 80px 0 100px;
    background: var(--color-warm-gray);
}

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

.section-header .section-description {
    margin: 0 auto;
}

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

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(24px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card__image {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__body {
    padding: 24px;
}

.product-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.product-card__desc {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========== DELI ========== */
.deli {
    padding: 100px 0;
    background: var(--color-cream);
}

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

.deli__image-side {
    position: relative;
}

.deli__image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.deli__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.deli__floating-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.deli__floating-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-charcoal);
}

.deli__floating-card span {
    font-size: 0.82rem;
    color: var(--color-text-light);
}

.deli__content {
    padding: 16px 0;
}

.deli__content .section-description {
    margin-bottom: 32px;
}

.deli__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.deli__features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--color-text);
}

.deli__features-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 106, 80, 0.1);
    border-radius: 50%;
    color: var(--color-coral);
}

/* ========== ABOUT ========== */
.about {
    padding: 100px 0;
    background: var(--color-warm-gray);
}

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

.about__image-stack {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about__image-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-white);
}

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

.about__experience {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--color-coral);
    color: var(--color-white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-coral);
}

.about__experience-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
}

.about__experience-text {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.3;
}

.about__content {
    padding: 16px 0;
}

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

.about__values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}

.value-item {
    display: flex;
    gap: 16px;
}

.value-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 106, 80, 0.08);
    border-radius: var(--radius-md);
}

.value-item strong {
    display: block;
    font-size: 1rem;
    color: var(--color-charcoal);
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ========== VISIT ========== */
.visit {
    padding: 100px 0;
    background: var(--color-cream);
}

.visit__header {
    text-align: center;
    margin-bottom: 56px;
}

.visit__header .section-description {
    margin: 0 auto;
}

.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

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

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--color-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.info-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 106, 80, 0.08);
    border-radius: var(--radius-md);
}

.info-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 4px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.info-card a {
    color: var(--color-coral);
    font-weight: 500;
    transition: color var(--transition);
}

.info-card a:hover {
    color: var(--color-coral-dark);
}

.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.visit__map-link {
    display: block;
    position: relative;
}

.visit__map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.visit__map-link:hover .visit__map-image {
    transform: scale(1.03);
}

.visit__map-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-white);
    color: var(--color-charcoal);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.visit__map-link:hover .visit__map-overlay {
    background: var(--color-coral);
    color: var(--color-white);
}

/* ========== CONTACT ========== */
.contact {
    padding: 100px 0;
    background: var(--color-charcoal);
    color: var(--color-white);
}

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

.contact .section-eyebrow {
    color: var(--color-coral-light);
}

.contact .section-title {
    color: var(--color-white);
}

.contact__description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.contact__quick-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition);
}

.contact__quick-link:hover {
    color: var(--color-coral-light);
}

.contact__quick-link svg {
    flex-shrink: 0;
}

.contact__quick-link a {
    color: inherit;
}

.contact__quick-link a:hover {
    color: var(--color-coral-light);
}

/* Form */
.contact__form-wrapper {
    background: var(--color-charcoal-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.form-input,
.form-textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--color-coral);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(232, 106, 80, 0.15);
}

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

/* Success message */
.contact__success {
    text-align: center;
    padding: 40px 20px;
}

.contact__success-icon {
    margin: 0 auto 16px;
    color: #2D6A4F;
}

.contact__success-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 8px;
}

.contact__success-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--color-charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

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

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__link-group h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer__link-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link-group a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer__link-group a:hover {
    color: var(--color-coral-light);
}

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

.footer__bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero__container {
        gap: 32px;
    }

    .deli__container,
    .about__container,
    .contact__inner,
    .visit__grid {
        gap: 40px;
    }

    .about__image-secondary {
        right: -16px;
        bottom: -20px;
    }

    .deli__floating-card {
        right: -12px;
        bottom: -16px;
    }
}

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

    /* Header */
    .nav-toggle {
        display: flex;
        z-index: 110;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--color-cream);
        padding: 90px 32px 32px;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 100;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .nav__link {
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        font-size: 1rem;
    }

    .nav__link--cta {
        margin-left: 0;
        text-align: center;
        margin-top: 12px;
    }

    /* Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 99;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Hero */
    .hero {
        padding: 100px 0 0;
    }

    .hero__container {
        grid-template-columns: 1fr;
        padding-bottom: 60px;
    }

    .hero__headline br {
        display: block;
    }

    .hero__image {
        order: -1;
    }

    .hero__image-wrapper {
        border-radius: var(--radius-lg);
    }

    .hero__image-dots {
        bottom: -10px;
        left: -10px;
    }

    .hero__wave svg {
        height: 50px;
    }

    /* Products */
    .products {
        padding: 60px 0 80px;
    }

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

    /* Deli */
    .deli {
        padding: 60px 0;
    }

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

    .deli__floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        display: inline-flex;
    }

    /* About */
    .about {
        padding: 60px 0;
    }

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

    .about__image-stack {
        max-width: 400px;
    }

    .about__image-secondary {
        width: 50%;
        right: -12px;
        bottom: -16px;
    }

    .about__experience {
        left: -12px;
        top: -12px;
    }

    /* Visit */
    .visit {
        padding: 60px 0;
    }

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

    /* Contact */
    .contact {
        padding: 60px 0;
    }

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

    .contact__form-wrapper {
        padding: 28px;
    }

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

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .hero__badges {
        flex-direction: column;
    }

    .badge {
        width: 100%;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .contact__form-wrapper {
        padding: 20px;
    }
}
