/* ================================================
   MAISON ÉLISE — Ultra-Luxury Hair Salon
   Inspired by Salon 64 editorial design
   ================================================ */

:root {
    /* Cream / charcoal / gold */
    --cream: #f5f0ea;
    --cream-dark: #ebe5dc;
    --offwhite: #faf8f5;
    --white: #ffffff;
    --charcoal: #1a1a1a;
    --charcoal-light: #2d2d2d;
    --gray-warm: #8a8580;
    --gray-medium: #b5afa8;
    --gray-light: #d4cec7;
    --gold: #b8973c;
    --gold-light: #d4b668;

    /* Fonts */
    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Inter', -apple-system, sans-serif;

    /* Layout */
    --container: 1200px;
    --nav-h: 64px;
    --radius: 4px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background: var(--offwhite);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

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

/* ================================================
   ANNOUNCE BAR
   ================================================ */
.announce-bar {
    background: var(--charcoal);
    text-align: center;
    padding: 10px 20px;
}

.announce-bar p {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
}

.announce-bar a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--offwhite);
    border-bottom: 1px solid var(--gray-light);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--charcoal);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
    transition: color 0.2s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--charcoal);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-divider {
    color: var(--gray-light);
    font-weight: 200;
}

.nav-link-cta {
    padding: 8px 20px;
    border: 1px solid var(--charcoal);
    transition: all 0.3s;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--charcoal);
    color: var(--white);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all 0.3s;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--offwhite);
    display: flex;
    flex-direction: column;
    padding: 40px 32px;
    gap: 0;
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-nav a {
    padding: 16px 0;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    border-bottom: 1px solid var(--gray-light);
}

.mobile-nav .btn {
    margin-top: 32px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    border-bottom: none;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
    border: 1px solid var(--charcoal);
}

.btn-dark:hover {
    background: var(--charcoal-light);
}

.btn-white {
    background: var(--white);
    color: var(--charcoal);
    border: 1px solid var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

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

.btn-full {
    width: 100%;
}

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    height: 90vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
}

.hero-image-wrap {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.12);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(26, 26, 26, 0.1) 0%,
            rgba(26, 26, 26, 0.3) 50%,
            rgba(26, 26, 26, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 80px;
}

@media (max-width: 640px) {
    .hero-overlay {
        padding: 40px 24px;
    }
}

.hero-content {
    color: var(--white);
}

.hero-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    margin-bottom: 16px;
    opacity: 0.7;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
}

.hero-arrow {
    position: absolute;
    bottom: 40px;
    right: 80px;
    color: var(--white);
    opacity: 0.6;
    animation: arrowBounce 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@media (max-width: 640px) {
    .hero-arrow {
        right: 24px;
        bottom: 24px;
    }
}

/* ================================================
   SECTIONS
   ================================================ */
.section {
    padding: 100px 0;
}

@media (max-width: 640px) {
    .section {
        padding: 64px 0;
    }
}

.section-cream {
    background: var(--cream);
}

.section-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-warm);
    margin-bottom: 24px;
}

.section-label.center {
    text-align: center;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.5);
}

.editorial-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 32px;
}

.editorial-heading em {
    font-style: italic;
    font-weight: 300;
}

.editorial-heading.center {
    text-align: center;
}

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

.divider-line {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    height: 1px;
    background: var(--gray-light);
}

/* ================================================
   EDITORIAL ABOUT BLOCK
   ================================================ */
.editorial-block {
    max-width: 900px;
    padding: 40px 0;
}

/* ================================================
   GALLERY
   ================================================ */
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

.gallery-arrows {
    display: flex;
    gap: 16px;
}

.arrow-btn {
    width: 48px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    opacity: 0.5;
    transition: opacity 0.2s;
}

.arrow-btn:hover {
    opacity: 1;
}

.gallery-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: hidden;
}

@media (max-width: 640px) {
    .gallery-track {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.gallery-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.6s ease;
}

.gallery-slide:hover img {
    transform: scale(1.03);
}

.slide-caption {
    margin-top: 12px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--gray-warm);
    letter-spacing: 0.04em;
}

/* ================================================
   SERVICES
   ================================================ */
.services-layout {
    display: grid;
    gap: 64px;
}

@media (min-width: 768px) {
    .services-layout {
        grid-template-columns: 1fr 1.5fr;
        gap: 80px;
    }
}

.services-text {
    font-size: 0.92rem;
    color: var(--gray-warm);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-group {
    margin-bottom: 40px;
}

.service-category {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-light);
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.88rem;
    color: var(--charcoal-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.service-price {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-warm);
    white-space: nowrap;
    margin-left: 16px;
}

/* ================================================
   TEAM
   ================================================ */
.team-header {
    margin-bottom: 56px;
}

.team-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    text-align: center;
}

.team-img-wrap {
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 20px;
    aspect-ratio: 3/4;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.05);
}

.team-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.82rem;
    color: var(--gray-warm);
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

/* ================================================
   REVIEWS
   ================================================ */
.reviews-grid {
    display: grid;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--offwhite);
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-light);
}

.review-quote {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 0.5;
    color: var(--gold);
    margin-bottom: 20px;
}

.review-text {
    font-size: 0.88rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.review-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* ================================================
   BOOK CTA
   ================================================ */
.book-cta {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.book-cta-bg {
    position: absolute;
    inset: 0;
}

.book-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cta-content {
    text-align: center;
    max-width: 600px;
    padding: 0 24px;
}

.book-cta-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.book-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-layout {
    display: grid;
    gap: 64px;
}

@media (min-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-list {
    margin: 32px 0;
}

.contact-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.88rem;
    color: var(--charcoal-light);
    line-height: 1.7;
}

.contact-label {
    font-weight: 500;
    color: var(--gray-warm);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-row a {
    color: var(--charcoal);
    transition: color 0.2s;
}

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

.social-links {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.social-link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-warm);
    position: relative;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--charcoal);
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--charcoal);
    transition: width 0.3s;
}

.social-link:hover::after {
    width: 100%;
}

/* Contact form */
.contact-form {
    background: var(--cream);
    padding: 48px 36px;
    border-radius: var(--radius);
}

@media (max-width: 640px) {
    .contact-form {
        padding: 32px 24px;
    }
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 32px;
    text-align: center;
}

.form-input {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-light);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--charcoal);
    outline: none;
    margin-bottom: 8px;
    transition: border-color 0.3s;
}

.form-input::placeholder {
    color: var(--gray-medium);
}

.form-input:focus {
    border-bottom-color: var(--charcoal);
}

select.form-input {
    appearance: none;
    cursor: pointer;
    border-radius: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a8580' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
    font-family: var(--font-sans);
}

.contact-form .btn {
    margin-top: 24px;
}

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

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.78rem;
    max-width: 250px;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 0;
    font-size: 0.72rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 640px) {
    .hero {
        height: 70vh;
    }

    .book-cta {
        height: 380px;
    }

    .gallery-track {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}