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

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

body {
    font-family: 'HelveticaNowDisplay', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #111;
    background: #fff;
    line-height: 1.5;
}

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

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

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

/* ==========================================
   HEADER
   ========================================== */
.site-header {
    background: #111;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    background: #ddd;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: stretch;
}

.hero-image {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.hero-image img {
    position: absolute;
    width: 70%;
    bottom: -10%;
    right: -10%;
    max-width: 570px;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 48px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: bold;
    color: #111;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.05;
}

.hero-text h2 {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: bold;
    color: #111;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-text p {
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    font-weight: bold;
    color: #333;
    max-width: 400px;
    line-height: 1.4;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #111;
    color: #fff;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: #ddd;
}

/* Wrappers */
.footer .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

.footer .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Header / title */
.footer .h4.header {
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
}

/* Separator */
.footer .separator {
    height: 1px;
    background: rgba(255,255,255,0.2);
}

/* Two-column contact grid */
.footer .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px 32px;
}

/* Sales rep card */
.footer .sales-rep {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
}

.footer .sales-rep .name {
    font-weight: bold;
    font-size: 1rem;
}

.footer .sales-rep .region {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.65;
    margin-bottom: 4px;
}

/* Icon before phone/email */
.footer .phone a::before,
.footer .email a::before {
    font-family: "core-icons";
    display: inline-block;
    margin-right: 6px;
    opacity: 0.7;
}

.footer .phone a::before { content: '\e804'; }
.footer .email a::before { content: '\e801'; }

/* Centre wrapper (L'Oréal support) */
.footer .centre-wrapper .content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer .centre-wrapper .content p {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Socials row */
.footer .socials-wrapper {
    padding-top: 0;
    padding-bottom: 32px;
}

.footer .socials-wrapper .separator {
    display: none;
}

.footer .socials {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer .socials li a.button.icon-only {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
}

.footer .socials li a.button.icon-only:hover {
    background: #fff;
    border-color: #fff;
}

.footer .socials li a.button.icon-only:hover .icon {
    color: #111;
}

.footer .socials .icon {
    font-size: 1rem;
    color: #fff;
    line-height: 1;
}

.footer .socials .icon.i-telegram {
    font-size: 1.6rem;
}

/* License / copyright row */
.footer .license-wrapper {
    padding-top: 16px;
    padding-bottom: 24px;
}

.footer .copyright {
    font-size: 0.75rem;
    opacity: 0.5;
    letter-spacing: 0.04em;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (min-width: 640px) {
    .footer .content {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        min-height: 480px;
    }

    .hero-text {
        padding: 80px 24px;
    }

    .hero-image img {
        width: 70%;
        bottom: -10%;
        right: 0%;
    }
}
