/**
 * Hair Atelier Paris — Main Stylesheet
 * Mobile-first, minimaliste, haut de gamme.
 *
 * Palette :
 *   --ha-noir:   #111111
 *   --ha-gold:   #C6A75E
 *   --ha-cream:  #F8F6F2
 *   --ha-white:  #FFFFFF
 *   --ha-gray:   #666666
 *   --ha-light:  #E8E4DD
 */

/* ═══════════════════════════════════════════
   0. CUSTOM PROPERTIES
   ═══════════════════════════════════════════ */
:root {
    --ha-noir: #111111;
    --ha-gold: #C6A75E;
    --ha-gold-light: #D4BA78;
    --ha-gold-dark: #A8893F;
    --ha-cream: #F8F6F2;
    --ha-white: #FFFFFF;
    --ha-gray: #666666;
    --ha-gray-light: #999999;
    --ha-light: #E8E4DD;
    --ha-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --ha-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ha-radius: 4px;
    --ha-radius-lg: 8px;
    --ha-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    --ha-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --ha-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ha-container: 1200px;
    --ha-banner-height: 40px;
}

/* ═══════════════════════════════════════════
   0b. DEMO BANNER
   ═══════════════════════════════════════════ */
.ha-demo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: #E8722A;
    color: #fff;
    height: var(--ha-banner-height);
    display: flex;
    align-items: center;
}

.ha-demo-banner .ha-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ha-demo-banner span {
    font-family: var(--ha-font-body);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.3;
}

.ha-demo-banner strong {
    font-weight: 700;
}

@media (max-width: 640px) {
    :root {
        --ha-banner-height: 50px;
    }

    .ha-demo-banner span {
        font-size: 0.7rem;
    }
}

/* ═══════════════════════════════════════════
   1. RESET & BASE
   ═══════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body.ha-body {
    font-family: var(--ha-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ha-noir);
    background-color: var(--ha-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--ha-gold);
    text-decoration: none;
    transition: color var(--ha-transition);
}

a:hover,
a:focus-visible {
    color: var(--ha-gold-dark);
}

/* ═══════════════════════════════════════════
   2. TYPOGRAPHY
   ═══════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ha-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ha-noir);
    margin: 0 0 0.5em;
}

.ha-section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: 0.25em;
}

.ha-section-subtitle {
    font-family: var(--ha-font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 300;
    color: var(--ha-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.ha-gold-line {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--ha-gold);
    margin: 0.75rem auto 1.5rem;
}

/* ═══════════════════════════════════════════
   3. LAYOUT
   ═══════════════════════════════════════════ */
.ha-container {
    width: 100%;
    max-width: var(--ha-container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.ha-section {
    padding: 4rem 0;
}

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

.ha-section--noir {
    background-color: var(--ha-noir);
    color: var(--ha-white);
}

.ha-section--noir h2,
.ha-section--noir h3 {
    color: var(--ha-white);
}

.ha-section--noir .ha-section-subtitle {
    color: var(--ha-light);
}

.ha-grid {
    display: grid;
    gap: 2rem;
}

.ha-grid--2 { grid-template-columns: 1fr; }
.ha-grid--3 { grid-template-columns: 1fr; }
.ha-grid--4 { grid-template-columns: 1fr; }

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

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

    .ha-section {
        padding: 6rem 0;
    }
}

/* ═══════════════════════════════════════════
   4. BUTTONS
   ═══════════════════════════════════════════ */
.ha-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ha-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border: 2px solid transparent;
    border-radius: var(--ha-radius);
    cursor: pointer;
    transition: all var(--ha-transition);
    text-decoration: none;
    line-height: 1;
}

.ha-btn--gold {
    background: var(--ha-gold);
    color: var(--ha-white);
    border-color: var(--ha-gold);
}

.ha-btn--gold:hover,
.ha-btn--gold:focus-visible {
    background: var(--ha-gold-dark);
    border-color: var(--ha-gold-dark);
    color: var(--ha-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(198, 167, 94, 0.35);
}

.ha-btn--outline {
    background: transparent;
    color: var(--ha-gold);
    border-color: var(--ha-gold);
}

.ha-btn--outline:hover,
.ha-btn--outline:focus-visible {
    background: var(--ha-gold);
    color: var(--ha-white);
    transform: translateY(-2px);
}

.ha-btn--noir {
    background: var(--ha-noir);
    color: var(--ha-white);
    border-color: var(--ha-noir);
}

.ha-btn--noir:hover,
.ha-btn--noir:focus-visible {
    background: transparent;
    color: var(--ha-noir);
    transform: translateY(-2px);
}

.ha-btn--white {
    background: var(--ha-white);
    color: var(--ha-noir);
    border-color: var(--ha-white);
}

.ha-btn--white:hover,
.ha-btn--white:focus-visible {
    background: transparent;
    color: var(--ha-white);
    transform: translateY(-2px);
}

.ha-btn--sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════════
   5. HEADER
   ═══════════════════════════════════════════ */
.ha-header {
    position: fixed;
    top: var(--ha-banner-height);
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all var(--ha-transition);
}

.ha-header--scrolled {
    border-bottom-color: var(--ha-light);
    box-shadow: var(--ha-shadow);
}

.ha-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--ha-container);
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
}

.ha-header__logo {
    font-family: var(--ha-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ha-noir);
    text-decoration: none;
    line-height: 1;
}

.ha-header__logo span {
    color: var(--ha-gold);
}

/* Desktop nav */
.ha-nav {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ha-nav a {
    font-family: var(--ha-font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ha-noir);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
}

.ha-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ha-gold);
    transition: width var(--ha-transition);
}

.ha-nav a:hover::after,
.ha-nav a:focus-visible::after,
.ha-nav a.active::after {
    width: 100%;
}

.ha-nav__cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

/* Mobile burger */
.ha-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.ha-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ha-noir);
    transition: all var(--ha-transition);
}

.ha-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ha-burger.active span:nth-child(2) {
    opacity: 0;
}

.ha-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.ha-mobile-menu {
    position: fixed;
    top: var(--ha-banner-height);
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: calc(100vh - var(--ha-banner-height));
    background: var(--ha-white);
    z-index: 999;
    padding: 5rem 2rem 2rem;
    transition: right var(--ha-transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.ha-mobile-menu.active {
    right: 0;
}

.ha-mobile-menu__overlay {
    position: fixed;
    top: var(--ha-banner-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ha-transition);
}

.ha-mobile-menu__overlay.active {
    opacity: 1;
    visibility: visible;
}

.ha-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ha-mobile-menu li {
    border-bottom: 1px solid var(--ha-light);
}

.ha-mobile-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ha-noir);
}

.ha-mobile-menu a:hover {
    color: var(--ha-gold);
}

.ha-mobile-menu__cta {
    margin-top: 1.5rem;
}

.ha-mobile-menu__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--ha-noir);
}

@media (min-width: 960px) {
    .ha-nav {
        display: flex;
    }

    .ha-burger,
    .ha-mobile-menu,
    .ha-mobile-menu__overlay {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════
   6. HERO
   ═══════════════════════════════════════════ */
.ha-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--ha-noir);
}

.ha-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.55;
    transition: transform 10s ease-out;
}

.ha-hero:hover .ha-hero__bg {
    transform: scale(1.03);
}

.ha-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(17, 17, 17, 0.3) 0%,
        rgba(17, 17, 17, 0.6) 100%
    );
}

.ha-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.25rem;
    max-width: 800px;
}

.ha-hero__tag {
    display: inline-block;
    font-family: var(--ha-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ha-gold);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(198, 167, 94, 0.4);
    border-radius: 30px;
}

.ha-hero__title {
    font-family: var(--ha-font-heading);
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--ha-white);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.ha-hero__title em {
    font-style: italic;
    color: var(--ha-gold);
}

.ha-hero__desc {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.ha-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.ha-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.ha-hero__scroll span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.ha-hero__scroll span::after {
    content: '';
    display: block;
    width: 4px;
    height: 8px;
    background: var(--ha-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: ha-scroll-bounce 1.5s infinite;
}

@keyframes ha-scroll-bounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

/* ═══════════════════════════════════════════
   7. CARDS
   ═══════════════════════════════════════════ */
.ha-card {
    background: var(--ha-white);
    border-radius: var(--ha-radius-lg);
    overflow: hidden;
    box-shadow: var(--ha-shadow);
    transition: all var(--ha-transition);
}

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

.ha-card__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.ha-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ha-transition);
}

.ha-card:hover .ha-card__img img {
    transform: scale(1.05);
}

.ha-card__body {
    padding: 1.5rem;
}

.ha-card__title {
    font-family: var(--ha-font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.ha-card__text {
    font-size: 0.9rem;
    color: var(--ha-gray);
    line-height: 1.6;
}

.ha-card__price {
    font-family: var(--ha-font-heading);
    font-size: 1.1rem;
    color: var(--ha-gold);
    font-weight: 700;
    margin-top: 0.75rem;
}

/* Service card variant */
.ha-service-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--ha-white);
    border-radius: var(--ha-radius-lg);
    box-shadow: var(--ha-shadow);
    transition: all var(--ha-transition);
}

.ha-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ha-shadow-lg);
}

.ha-service-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ha-cream);
    color: var(--ha-gold);
}

.ha-service-card__title {
    font-family: var(--ha-font-heading);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.ha-service-card__text {
    font-size: 0.9rem;
    color: var(--ha-gray);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   8. PRICING TABLE
   ═══════════════════════════════════════════ */
.ha-pricing {
    width: 100%;
}

.ha-pricing__group {
    margin-bottom: 2.5rem;
}

.ha-pricing__group-title {
    font-family: var(--ha-font-heading);
    font-size: 1.4rem;
    color: var(--ha-noir);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--ha-gold);
    margin-bottom: 1.25rem;
}

.ha-pricing__item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--ha-light);
}

.ha-pricing__name {
    font-weight: 500;
    font-size: 0.95rem;
}

.ha-pricing__dots {
    flex: 1;
    margin: 0 0.75rem;
    border-bottom: 1px dotted var(--ha-light);
    height: 1px;
    align-self: center;
}

.ha-pricing__price {
    font-family: var(--ha-font-heading);
    font-weight: 700;
    color: var(--ha-gold);
    font-size: 1.05rem;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════
   9. REVIEWS / TESTIMONIALS
   ═══════════════════════════════════════════ */
.ha-review {
    background: var(--ha-white);
    border-radius: var(--ha-radius-lg);
    padding: 2rem;
    box-shadow: var(--ha-shadow);
    position: relative;
}

.ha-review::before {
    content: '\201C';
    font-family: var(--ha-font-heading);
    font-size: 4rem;
    color: var(--ha-gold);
    opacity: 0.3;
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
    line-height: 1;
}

.ha-review__stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.75rem;
    color: var(--ha-gold);
}

.ha-review__text {
    font-size: 0.95rem;
    color: var(--ha-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.ha-review__author {
    font-weight: 600;
    font-size: 0.9rem;
}

.ha-review__date {
    font-size: 0.8rem;
    color: var(--ha-gray-light);
}

/* ═══════════════════════════════════════════
   10. GALLERY
   ═══════════════════════════════════════════ */
.ha-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .ha-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}

@media (min-width: 960px) {
    .ha-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.ha-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--ha-radius);
    aspect-ratio: 1;
}

.ha-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ha-transition);
}

.ha-gallery__item:hover img {
    transform: scale(1.08);
}

.ha-gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.4), transparent);
    opacity: 0;
    transition: opacity var(--ha-transition);
}

.ha-gallery__item:hover::after {
    opacity: 1;
}

/* ═══════════════════════════════════════════
   11. FORMS
   ═══════════════════════════════════════════ */
.ha-form {
    max-width: 640px;
    margin: 0 auto;
}

.ha-form__row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ha-form__row--2 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .ha-form__row--2 {
        grid-template-columns: 1fr 1fr;
    }
}

.ha-form__group {
    display: flex;
    flex-direction: column;
}

.ha-form__label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ha-noir);
    margin-bottom: 0.35rem;
}

.ha-form__label .required {
    color: #c0392b;
}

.ha-form__input,
.ha-form__select,
.ha-form__textarea {
    font-family: var(--ha-font-body);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--ha-light);
    border-radius: var(--ha-radius);
    background-color: var(--ha-white);
    color: var(--ha-noir);
    transition: border-color var(--ha-transition), box-shadow var(--ha-transition);
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.ha-form__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.ha-form__select option {
    color: var(--ha-noir);
    background: var(--ha-white);
    padding: 0.5rem;
}

/* Override Astra select styles */
body.ha-body select.ha-form__select,
body.ha-body .ha-form select {
    font-family: var(--ha-font-body) !important;
    font-size: 0.95rem !important;
    color: var(--ha-noir) !important;
    background-color: var(--ha-white) !important;
    border: 1px solid var(--ha-light) !important;
    border-radius: var(--ha-radius) !important;
    height: auto !important;
    line-height: 1.5 !important;
    padding: 0.75rem 2.5rem 0.75rem 1rem !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 12px !important;
}

body.ha-body select.ha-form__select:focus {
    border-color: var(--ha-gold) !important;
    box-shadow: 0 0 0 3px rgba(198, 167, 94, 0.15) !important;
    outline: none !important;
}

.ha-form__input:focus,
.ha-form__select:focus,
.ha-form__textarea:focus {
    outline: none;
    border-color: var(--ha-gold);
    box-shadow: 0 0 0 3px rgba(198, 167, 94, 0.15);
}

.ha-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.ha-form__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.ha-form__submit {
    margin-top: 1rem;
}

.ha-form__message {
    padding: 1rem 1.25rem;
    border-radius: var(--ha-radius);
    margin-top: 1rem;
    font-size: 0.9rem;
    display: none;
}

.ha-form__message--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.ha-form__message--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ═══════════════════════════════════════════
   12. WHY US / FEATURES
   ═══════════════════════════════════════════ */
.ha-feature {
    text-align: center;
    padding: 1.5rem;
}

.ha-feature__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ha-cream);
    color: var(--ha-gold);
}

.ha-section--noir .ha-feature__icon {
    background: rgba(198, 167, 94, 0.15);
}

.ha-feature__title {
    font-family: var(--ha-font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.ha-feature__text {
    font-size: 0.9rem;
    color: var(--ha-gray);
    line-height: 1.6;
}

.ha-section--noir .ha-feature__text {
    color: var(--ha-light);
}

/* ═══════════════════════════════════════════
   13. CTA SECTION
   ═══════════════════════════════════════════ */
.ha-cta {
    text-align: center;
    padding: 5rem 1.25rem;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ha-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.8);
}

.ha-cta__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.ha-cta__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--ha-white);
    margin-bottom: 1rem;
}

.ha-cta__text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.ha-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ═══════════════════════════════════════════
   14. INFO SECTION (About, Map, etc.)
   ═══════════════════════════════════════════ */
.ha-info-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

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

.ha-info-grid--reverse .ha-info-grid__text {
    order: 1;
}

@media (min-width: 768px) {
    .ha-info-grid--reverse .ha-info-grid__text {
        order: -1;
    }
}

.ha-info-grid__img {
    border-radius: var(--ha-radius-lg);
    overflow: hidden;
}

.ha-info-grid__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.ha-info-grid__text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.25rem;
}

.ha-info-grid__text p {
    color: var(--ha-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════
   15. HOURS / CONTACT INFO
   ═══════════════════════════════════════════ */
.ha-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ha-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--ha-light);
    font-size: 0.9rem;
}

.ha-hours__day {
    font-weight: 500;
}

.ha-hours__time {
    color: var(--ha-gray);
}

.ha-hours li:last-child {
    border-bottom: none;
}

.ha-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ha-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
}

.ha-contact-info__icon {
    flex-shrink: 0;
    width: 20px;
    color: var(--ha-gold);
    margin-top: 0.15rem;
}

/* ═══════════════════════════════════════════
   16. MAP
   ═══════════════════════════════════════════ */
.ha-map {
    border-radius: var(--ha-radius-lg);
    overflow: hidden;
    box-shadow: var(--ha-shadow);
}

.ha-map iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: none;
}

@media (min-width: 768px) {
    .ha-map iframe {
        height: 450px;
    }
}

/* ═══════════════════════════════════════════
   17. FOOTER
   ═══════════════════════════════════════════ */
.ha-footer {
    background: var(--ha-noir);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.ha-footer__grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

@media (min-width: 960px) {
    .ha-footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.ha-footer__logo {
    font-family: var(--ha-font-heading);
    font-size: 1.5rem;
    color: var(--ha-white);
    margin-bottom: 1rem;
    display: block;
}

.ha-footer__logo span {
    color: var(--ha-gold);
}

.ha-footer__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.ha-footer__social {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ha-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--ha-transition);
}

.ha-footer__social a:hover {
    background: var(--ha-gold);
    border-color: var(--ha-gold);
    color: var(--ha-white);
}

.ha-footer__title {
    font-family: var(--ha-font-heading);
    font-size: 1rem;
    color: var(--ha-white);
    margin-bottom: 1rem;
}

.ha-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ha-footer__links li {
    margin-bottom: 0.5rem;
}

.ha-footer__links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--ha-transition);
}

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

.ha-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════════
   18. STICKY CTA (Mobile)
   ═══════════════════════════════════════════ */
.ha-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    background: var(--ha-white);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--ha-light);
}

@media (min-width: 960px) {
    .ha-sticky-cta {
        display: none;
    }
}

.ha-sticky-cta__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background var(--ha-transition);
}

.ha-sticky-cta__btn--rdv {
    background: var(--ha-gold);
    color: var(--ha-white);
}

.ha-sticky-cta__btn--rdv:hover {
    background: var(--ha-gold-dark);
    color: var(--ha-white);
}

.ha-sticky-cta__btn--tel {
    background: var(--ha-noir);
    color: var(--ha-white);
}

.ha-sticky-cta__btn--tel:hover {
    background: #222;
    color: var(--ha-white);
}

/* ═══════════════════════════════════════════
   19. PAGE HERO (inner pages)
   ═══════════════════════════════════════════ */
.ha-page-hero {
    background: var(--ha-noir);
    padding: calc(8rem + var(--ha-banner-height)) 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ha-page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.ha-page-hero__content {
    position: relative;
    z-index: 2;
}

.ha-page-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ha-white);
    margin-bottom: 0.5rem;
}

.ha-page-hero__subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    font-weight: 300;
}

.ha-page-hero .ha-gold-line {
    margin-top: 1rem;
}

/* ═══════════════════════════════════════════
   20. BREADCRUMB
   ═══════════════════════════════════════════ */
.ha-breadcrumb {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.ha-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.ha-breadcrumb a:hover {
    color: var(--ha-gold);
}

.ha-breadcrumb span {
    margin: 0 0.35rem;
}

/* ═══════════════════════════════════════════
   21. INSTAGRAM MOCK
   ═══════════════════════════════════════════ */
.ha-instagram__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.ha-instagram__handle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ha-noir);
}

.ha-instagram__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
}

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

.ha-instagram__item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--ha-radius);
}

.ha-instagram__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ha-transition);
}

.ha-instagram__item:hover img {
    transform: scale(1.08);
}

/* ═══════════════════════════════════════════
   22. ANIMATIONS — Scroll reveal
   ═══════════════════════════════════════════ */
.ha-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.ha-reveal--delay-1 { transition-delay: 0.1s; }
.ha-reveal--delay-2 { transition-delay: 0.2s; }
.ha-reveal--delay-3 { transition-delay: 0.3s; }
.ha-reveal--delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   23. UTILITY
   ═══════════════════════════════════════════ */
.ha-text-center { text-align: center; }
.ha-text-gold { color: var(--ha-gold); }
.ha-text-gray { color: var(--ha-gray); }
.ha-mt-1 { margin-top: 1rem; }
.ha-mt-2 { margin-top: 2rem; }
.ha-mt-3 { margin-top: 3rem; }
.ha-mb-1 { margin-bottom: 1rem; }
.ha-mb-2 { margin-bottom: 2rem; }
.ha-mb-3 { margin-bottom: 3rem; }
.ha-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ═══════════════════════════════════════════
   24. MENTIONS LEGALES / TEXT PAGES
   ═══════════════════════════════════════════ */
.ha-legal {
    padding: 2rem 0 4rem;
}

.ha-legal h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.ha-legal h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.ha-legal p,
.ha-legal li {
    font-size: 0.95rem;
    color: var(--ha-gray);
    line-height: 1.8;
}

.ha-legal ul {
    padding-left: 1.5rem;
    margin: 0.75rem 0;
}

/* ═══════════════════════════════════════════
   25. RESPONSIVE PADDING bottom for sticky CTA
   ═══════════════════════════════════════════ */
@media (max-width: 959px) {
    body.ha-body {
        padding-bottom: 60px;
    }

    /* Scroll indicator above sticky CTA on mobile */
    .ha-hero__scroll {
        bottom: 5rem;
    }
}

/* ═══════════════════════════════════════════
   25b. SKIP LINK (Accessibility)
   ═══════════════════════════════════════════ */
.ha-skip-link:focus {
    position: fixed;
    top: calc(var(--ha-banner-height) + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    width: auto;
    height: auto;
    padding: 0.75rem 1.5rem;
    clip: auto;
    white-space: normal;
    overflow: visible;
    background: var(--ha-gold);
    color: var(--ha-white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--ha-radius);
    box-shadow: var(--ha-shadow-lg);
}

/* ═══════════════════════════════════════════
   25c. FAQ DETAILS/SUMMARY
   ═══════════════════════════════════════════ */
details summary svg {
    transition: transform 0.3s ease;
}

details[open] > summary svg {
    transform: rotate(180deg);
}

/* ═══════════════════════════════════════════
   25d. BACK TO TOP BUTTON
   ═══════════════════════════════════════════ */
.ha-back-to-top {
    position: fixed;
    bottom: 5rem;
    right: 1.25rem;
    z-index: 800;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ha-gold);
    color: var(--ha-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--ha-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--ha-transition);
}

.ha-back-to-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ha-back-to-top:hover {
    background: var(--ha-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--ha-shadow-lg);
}

@media (min-width: 960px) {
    .ha-back-to-top {
        bottom: 2rem;
        right: 2rem;
    }
}

/* ═══════════════════════════════════════════
   25e. LUNCH BREAK SEPARATOR (time slots)
   ═══════════════════════════════════════════ */
.ha-time-slots__break {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--ha-gray-light);
    padding: 0.25rem 0;
}

.ha-time-slots__break::before,
.ha-time-slots__break::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ha-light);
}

/* ═══════════════════════════════════════════
   26. PRINT
   ═══════════════════════════════════════════ */
@media print {
    .ha-header,
    .ha-sticky-cta,
    .ha-hero__scroll,
    .ha-footer__social,
    .ha-demo-banner,
    .ha-back-to-top {
        display: none !important;
    }

    .ha-hero {
        min-height: auto;
        padding: 2rem 0;
    }

    body.ha-body {
        padding-bottom: 0;
    }
}
