/* ============================================
   ABSOLUT LOUNGE — Style System
   Deep Navy + Warm Gold · Confident Corporate
   ============================================ */

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

:root {
    --navy-950: #0a1628;
    --navy-900: #0f1c3f;
    --navy-800: #162a52;
    --navy-700: #1e3a6e;
    --navy-600: #264a82;
    --gold-500: #c9a84c;
    --gold-400: #d4b760;
    --gold-300: #e0c97a;
    --gold-200: #ebd99e;
    --cream-50: #faf8f4;
    --cream-100: #f5f0e8;
    --cream-200: #ede5d8;
    --neutral-50: #f9fafb;
    --neutral-100: #f3f4f6;
    --neutral-200: #e5e7eb;
    --neutral-300: #d1d5db;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    --white: #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(15, 28, 63, 0.08);
    --shadow-md: 0 4px 20px rgba(15, 28, 63, 0.10);
    --shadow-lg: 0 12px 40px rgba(15, 28, 63, 0.14);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--neutral-800);
    background: var(--cream-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    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;
}

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

/* ── Typography ── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold-500);
}

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

.section-heading--light {
    color: var(--white);
}

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold-500);
    color: var(--navy-950);
    border: 2px solid var(--gold-500);
}

.btn--gold:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 28, 63, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: var(--transition);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 40px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav__logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gold-500);
    color: var(--navy-950);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav__link {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav__link--cta {
    background: var(--gold-500);
    color: var(--navy-950);
    font-weight: 600;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--gold-400);
    color: var(--navy-950);
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    margin-left: auto;
}

.nav__toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu__link:hover {
    color: var(--gold-500);
}

.mobile-menu__link--cta {
    color: var(--gold-500);
    margin-top: 8px;
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 90%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    flex: 1;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 24px;
}

.hero__eyebrow-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold-500);
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero__headline-accent {
    color: var(--gold-500);
    font-style: italic;
}

.hero__subheadline {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin-bottom: 36px;
}

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

.hero__stats {
    display: flex;
    gap: 48px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Hero visual */
.hero__visual {
    position: relative;
}

.hero__image-stack {
    position: relative;
}

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

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

.hero__image-accent {
    position: absolute;
    bottom: -32px;
    left: -48px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--navy-900);
}

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

.hero__image-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-500);
    color: var(--navy-950);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.hero__scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

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

.about__image-col {
    position: relative;
}

.about__image-col img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about__image-caption {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--neutral-500);
}

.about__text-col {
    padding: 20px 0;
}

.about__body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: 20px;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--navy-900);
    color: var(--gold-500);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.about__feature-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-900);
}

/* ══════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════ */
.products {
    padding: 120px 0;
    background: var(--white);
}

.products__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.products__lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--neutral-500);
}

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

.product-card {
    background: var(--cream-50);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--neutral-200);
}

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

.product-card__image {
    overflow: hidden;
    aspect-ratio: 520 / 380;
}

.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: 28px;
}

.product-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.product-card__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--neutral-500);
}

/* ══════════════════════════════════════
   EXPERIENCE / GALLERY
   ══════════════════════════════════════ */
.experience {
    padding: 120px 0;
    background: var(--navy-900);
}

.experience__header {
    text-align: center;
    margin-bottom: 64px;
}

.experience__header .section-heading {
    color: var(--white);
}

.experience__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item--large {
    grid-row: 1 / 3;
}

.gallery-item--wide {
    grid-column: 2;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 28, 63, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

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

.visit__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.visit__content {
    padding: 40px 0;
}

.visit__body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: 40px;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visit__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit__detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--navy-900);
    color: var(--gold-500);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.visit__detail strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.visit__detail p,
.visit__detail a {
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

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

.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

.visit__map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.contact {
    padding: 120px 0;
    background: var(--white);
}

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

.contact__info {
    padding: 20px 0;
}

.contact__body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--neutral-500);
    margin-bottom: 36px;
}

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

.contact__info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--neutral-600);
}

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

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

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

.contact__form-col {
    background: var(--cream-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--neutral-800);
    background: var(--white);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-input::placeholder {
    color: var(--neutral-400);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    margin-top: 20px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-sm);
    color: #065f46;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-success.is-visible {
    display: flex;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer__logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gold-500);
    color: var(--navy-950);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.footer__logo span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

.footer__links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

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

.footer__day {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__links li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.875rem;
}

.footer__links li span:last-child {
    color: rgba(255, 255, 255, 0.7);
}

.footer__bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

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

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

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

    .reveal.is-visible {
        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; }
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero__grid {
        gap: 40px;
    }

    .about__grid {
        gap: 48px;
    }

    .contact__grid {
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
        gap: 48px;
    }

    .hero__visual {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero__image-accent {
        left: -24px;
        bottom: -20px;
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .hero__stats {
        gap: 32px;
    }

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

    .about__text-col {
        order: -1;
    }

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

    .experience__gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--large {
        grid-row: auto;
    }

    .gallery-item--wide {
        grid-column: auto;
    }

    .gallery-item__overlay {
        opacity: 1;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .hero__grid {
        padding: 90px 20px 50px;
    }

    .hero__image-accent {
        left: -12px;
        bottom: -16px;
    }

    .hero__image-badge {
        top: -10px;
        right: -10px;
        padding: 8px 14px;
        font-size: 0.7rem;
    }

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

    .product-card__body {
        padding: 20px;
    }

    .contact__form-col {
        padding: 24px;
    }
}
