:root {
    --dust-grey:     #d8d2c8;
    --soft-linen:    #f5f1e8;
    --khaki-beige:   #b8a58f;
    --deep-mocha:    #3b302a;
    --carbon-black:  #252422;
    --camel:         #b89b72;
    --camel-dark:    #9c805a;
    --camel-light:   #d8c6a9;

    --burgundy:       #722f37;
    --burgundy-dark:  #4f2028;

    --text:   var(--deep-mocha);
    --gray:   rgba(59, 48, 42, 0.75);
    --border: var(--dust-grey);
}

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

@font-face {
    font-family: 'Amsterdam Four';
    src: url('./fonts/Amsterdam\ Four_ttf\ 400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--soft-linen);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: rgba(245, 241, 232, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--deep-mocha);
    letter-spacing: 0.02em;
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 0.65rem 1.6rem;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.18s;
    white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: var(--camel);
    color: var(--deep-mocha);
    border: 2px solid var(--camel);
}

.btn-primary:hover {
    background: var(--camel-light);
    border-color: var(--camel-light);
}

.btn-hero {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    padding: 0.8rem 2.25rem;
    backdrop-filter: blur(4px);
}

.btn-hero:hover {
    background: #fff;
    color: var(--burgundy);
    border-color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--deep-mocha);
    border: 2px solid var(--deep-mocha);
    font-size: 0.875rem;
}

.btn-outline:hover {
    background: rgba(184, 155, 114, 0.16);
}

.insta-strip .btn-outline {
    color: var(--camel);
    border-color: var(--camel);
}

/* ── HERO ── */
.hero {
    min-height: 100svh;
    background:
        linear-gradient(160deg, var(--carbon-black) 0%, var(--deep-mocha) 45%, var(--khaki-beige) 80%, var(--camel) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7rem 2rem 5rem;
}

.hero-content { max-width: 640px; }

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245, 241, 232, 0.6);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Maharlika', 'Playfair Display', serif;
    font-size: clamp(3rem, 9vw, 5.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.05;
    margin-bottom: -0.8rem;
}

.hero-ilusalong {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    margin-bottom: 1.5rem;
}

.hero-ilusalong .stripe {
    width: 100%;
    height: 1px;
    background: rgba(245, 241, 232, 0.5);
}

.hero-ilusalong span:not(.stripe) {
    font-family: 'Maharlika', 'Playfair Display', serif;
    font-size: 1.05rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(245, 241, 232, 0.85);
}

.hero-by {
    font-family: 'Amsterdam Four', 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: rgba(245, 241, 232, 0.8);
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
}

.hero-sub {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    color: rgba(245, 241, 232, 0.65);
    margin-bottom: 2.75rem;
}

/* ── SHARED SECTION ── */
.section { padding: 5.5rem 2rem; }

.container { max-width: 1100px; margin: 0 auto; }

.label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--deep-mocha);
    font-weight: 500;
    margin-bottom: 0.65rem;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 400;
    color: var(--deep-mocha);
    line-height: 1.2;
    margin-bottom: 1.75rem;
}

/* ── ÉPANOUIR (salon brand) ── */
.epanouir { background: var(--dust-grey); }

.epanouir-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.epanouir-logo {
    width: 100%;
    max-width: 240px;
    height: auto;
    aspect-ratio: 1 / 1;
    display: block;
    margin: 0.5rem 0 1.75rem;
    border-radius: 18px;
}

.epanouir p {
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.85;
}

.salon-photos-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.salon-photo {
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--camel) 0%, var(--khaki-beige) 50%, var(--dust-grey) 100%);
    box-shadow: inset 0 0 0 1px rgba(184, 155, 114, 0.35);
    transition: transform 0.3s, box-shadow 0.3s;
}

.salon-photo:hover {
    transform: scale(1.02);
    box-shadow:
        inset 0 0 0 1px rgba(184, 155, 114, 0.35),
        0 12px 36px rgba(59, 48, 42, 0.2);
}

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

/* ── ABOUT ── */
.about { background: var(--soft-linen); }

.about-inner { text-align: center; }

.about p {
    max-width: 580px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.85;
    text-align: left;
}

.about p + p { margin-top: 1.25rem; }

/* ── TEAM ── */

.team-card p { margin-bottom: 0.25rem; }

.team-card .btn { margin-top: 0.75rem; }

/* ── SERVICES ── */

.services { background: var(--dust-grey); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.service-card {
    background: var(--soft-linen);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
    box-shadow: 0 16px 48px rgba(59, 48, 42, 0.12);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 1.3rem;
    color: var(--camel);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-mocha);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.65;
}

.services-cta {
    margin-top: 2.5rem;
    text-align: center;
}

/* ── GALLERY ── */
.gallery { background: var(--dust-grey); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--camel) 0%, var(--khaki-beige) 50%, var(--dust-grey) 100%);
    box-shadow: inset 0 0 0 1px rgba(184, 155, 114, 0.35);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow:
        inset 0 0 0 1px rgba(184, 155, 114, 0.35),
        0 12px 36px rgba(59, 48, 42, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(12%) sepia(6%) contrast(1.04);
    transition: filter 0.4s;
}

.gallery-item:hover img {
    filter: grayscale(0%) sepia(0%) contrast(1.04);
}

/* ── INSTAGRAM STRIP ── */
.insta-strip {
    background: var(--carbon-black);
    padding: 4rem 2rem;
}

.insta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.insta-label {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.insta-accounts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.insta-account {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.insta-handle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--camel);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.2;
}

.insta-handle:hover { color: #fff; }

/* ── REVIEWS ── */
.reviews { background: var(--soft-linen); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem 1.75rem;
}

.stars {
    color: var(--camel);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.1rem;
}

.review-card blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    quotes: none;
}

.review-card cite {
    font-size: 0.78rem;
    color: var(--gray);
    letter-spacing: 0.05em;
    font-style: normal;
}

/* ── BRANDS ── */
.brands { background: var(--soft-linen); }

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.brand-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: box-shadow 0.25s, transform 0.25s;
}

.brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 48, 42, 0.12);
}

.brand-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ── RENTAL ── */
.rental { background: var(--dust-grey); }

.rental-inner { text-align: center; }

.rental p {
    max-width: 560px;
    margin: 0 auto 1.75rem;
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.85;
}

.rental p.rental-owner {
    font-size: 0.82rem;
    color: var(--gray);
    margin-top: -0.75rem;
}

/* ── CONTACT ── */
.contact { background: var(--dust-grey); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 1rem;
    align-items: stretch;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-row h3 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-mocha);
    margin-bottom: 0.35rem;
}

.contact-row p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.65;
}

.contact-row a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-row a:hover { color: var(--camel-dark); }

.contact-map {
    min-height: 280px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--soft-linen);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
    display: block;
}

.map-consent-note {
    max-width: 260px;
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
    background: var(--carbon-black);
    padding: 4.5rem 2rem 3rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
}

.footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 400;
}

.footer-sub {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1rem;
}

.footer .btn-primary { margin-bottom: 1.5rem; }

.footer-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.82rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--camel); }

.footer-links span { color: rgba(255, 255, 255, 0.2); }

.footer-legal {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-legal p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover { color: var(--camel); }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

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

    .nav-inner { padding: 1rem 1.25rem; }

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

    .section { padding: 3.75rem 1.25rem; }

    .services-grid { gap: 1rem; }

    .hero { padding: 6rem 1.5rem 4rem; }

    .insta-accounts { flex-direction: column; gap: 2rem; }
}

@media (max-width: 400px) {
    .gallery-grid { gap: 0.625rem; }

    .epanouir-logo { max-width: 190px; }
}

/* ── FOCUS STATES ── */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--burgundy);
    outline-offset: 3px;
    border-radius: 4px;
}

.hero a:focus-visible,
.hero button:focus-visible {
    outline-color: #fff;
}

.footer a:focus-visible,
.footer button:focus-visible,
.insta-strip a:focus-visible,
.insta-strip button:focus-visible {
    outline-color: var(--camel);
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
