/* ==========================================================================
   BEAUTY SALON PREMIUM - MODERN LUXURY & PROFESSIONAL SALON STYLES
   ========================================================================== */

/* --- Typography System (High Readability & Strong Contrast) --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--salon-text);
    margin-top: 0;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Headings Contrast & Hierarchies */
h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.6rem;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

h3 {
    font-size: 1.65rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 14px;
}

h4 {
    font-size: 1.3rem;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Body Text Readability */
p {
    margin-top: 0;
    margin-bottom: 1.4rem;
    color: #3a2e26; /* Dark Espresso for high contrast readability */
    font-size: 1.125rem; /* 18px */
    line-height: 1.75;
    font-weight: 400;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #2b211b;
    font-weight: 500;
}

a {
    color: var(--salon-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--salon-accent-hover);
}

/* --- Container & Utilities --- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Eyebrow Badge */
.home-section__eyebrow {
    display: inline-block;
    padding: 6px 18px;
    background: var(--salon-accent-light);
    color: var(--salon-accent);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(181, 101, 118, 0.25);
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--salon-border);
    transition: all var(--transition-normal);
}

#header.is-scrolled {
    padding: 12px 40px;
    box-shadow: var(--salon-shadow-sm);
    background: rgba(255, 255, 255, 0.98);
}

.site-branding {
    display: flex;
    align-items: center;
}

#logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#logo {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--salon-text);
    margin: 0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

#logo span {
    color: var(--salon-accent);
}

/* Header Quick Phone Hotline */
.header-hotline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--salon-accent);
    margin-right: 20px;
}

.header-hotline span {
    color: var(--salon-muted);
    font-weight: 500;
    font-size: 0.88rem;
}

/* Navigation Menu */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--salon-text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 8px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--salon-gradient-primary);
    transition: width var(--transition-fast);
    border-radius: 2px;
}

.main-nav a:hover::after,
.main-nav .current_page_item > a::after,
.main-nav .current-menu-item > a::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav .current_page_item > a,
.main-nav .current-menu-item > a {
    color: var(--salon-accent);
}

/* Header Booking CTA Button */
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    background: var(--salon-gradient-primary);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(181, 101, 118, 0.38);
    transition: all var(--transition-fast);
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(181, 101, 118, 0.48);
    color: #ffffff !important;
}

/* Mobile Toggle Icon */
#show-menu {
    display: none;
    width: 42px;
    height: 42px;
    cursor: pointer;
    background: var(--salon-bg-alt);
    border-radius: 12px;
    padding: 9px;
    transition: background var(--transition-fast);
}

#show-menu:hover {
    background: var(--salon-accent-light);
}

#mobile-drawer {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 28px 32px;
    box-shadow: var(--salon-shadow-md);
    border-bottom: 3px solid var(--salon-accent);
    z-index: 999;
}

#mobile-drawer.is-open {
    display: block;
}

#mobile-drawer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobile-drawer li {
    padding: 14px 0;
    border-bottom: 1px solid var(--salon-border);
}

#mobile-drawer a {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--salon-text);
}

/* ==========================================================================
   HOMEPAGE SECTIONS WITH BACKGROUND IMAGES
   ========================================================================== */

/* Hero Section with Rich Background Image */
.home-hero {
    position: relative;
    padding: 120px 24px 130px;
    background: linear-gradient(rgba(20, 14, 10, 0.65), rgba(20, 14, 10, 0.82)), url('../images/background/landscape-1.webp') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.home-hero__inner {
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home-hero .home-hero__eyebrow {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.home-hero h1 {
    font-size: 4rem;
    color: #ffffff;
    max-width: 950px;
    margin: 0 auto 24px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.home-hero p.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 760px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.home-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.home-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.home-hero__cta--primary {
    background: var(--salon-gradient-primary);
    color: #ffffff !important;
    box-shadow: 0 10px 28px rgba(181, 101, 118, 0.45);
}

.home-hero__cta--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(181, 101, 118, 0.6);
}

.home-hero__cta--gold {
    background: linear-gradient(135deg, #d4a373 0%, #be8e5f 100%);
    color: #ffffff !important;
    box-shadow: 0 10px 28px rgba(212, 163, 115, 0.45);
}

.home-hero__cta--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(212, 163, 115, 0.6);
}

.home-hero__cta--ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.home-hero__cta--ghost:hover {
    background: #ffffff;
    color: var(--salon-text) !important;
    border-color: #ffffff;
    transform: translateY(-3px);
}

.home-hero__highlights {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.home-hero__highlights li {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-hero__highlights li::before {
    content: '✦';
    color: var(--salon-gold);
    font-size: 1.2rem;
}

/* Professional Commitment Bar (4 Standards) */
.commitment-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--salon-border);
    box-shadow: var(--salon-shadow-sm);
    padding: 24px 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
}

.commitment-icon {
    width: 48px;
    height: 48px;
    background: var(--salon-bg-alt);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--salon-accent);
    flex-shrink: 0;
}

.commitment-text strong {
    display: block;
    font-size: 1.05rem;
    color: var(--salon-text);
    margin-bottom: 2px;
}

.commitment-text span {
    font-size: 0.88rem;
    color: var(--salon-muted);
}

/* Stats Section */
.home-section--stats {
    max-width: 1150px;
    margin: -50px auto 80px;
    position: relative;
    z-index: 10;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.home-stat {
    background: #ffffff;
    padding: 36px 28px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--salon-shadow-md);
    border: 1px solid var(--salon-border);
    transition: transform var(--transition-normal);
}

.home-stat:hover {
    transform: translateY(-6px);
}

.home-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--salon-accent);
    line-height: 1;
    margin-bottom: 10px;
}

.home-stat span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--salon-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Section Headings */
.home-section {
    padding: 80px 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.home-section__heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}

.home-section__heading h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.home-section__heading h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--salon-gold);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* Services Cards Grid with High Quality Thumbnails */
.home-grid--cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--salon-shadow-sm);
    border: 1px solid var(--salon-border);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--salon-shadow-lg);
    border-color: rgba(181, 101, 118, 0.35);
}

.service-card__img {
    height: 230px;
    overflow: hidden;
    position: relative;
}

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

.service-card:hover .service-card__img img {
    transform: scale(1.08);
}

.service-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--salon-accent);
}

.service-card__body {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card__body h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-card__body p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--salon-border);
}

.service-card__price {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--salon-accent);
}

/* Feature Split Section with Rich Image Background */
.home-section--split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    background: linear-gradient(rgba(255, 253, 250, 0.9), rgba(255, 253, 250, 0.93)), url('../images/background/landscape-2.webp') center/cover no-repeat;
    border-radius: 32px;
    padding: 72px 64px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: var(--salon-shadow-md);
    border: 1px solid var(--salon-border);
}

.home-feature h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.home-feature__list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}

.home-feature__list li {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2b211b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-feature__list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--salon-accent);
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

.home-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 44px 36px;
    border-radius: 28px;
    box-shadow: var(--salon-shadow-md);
    border: 1px solid var(--salon-border);
    text-align: center;
}

.home-panel h3 {
    font-size: 1.7rem;
    margin-bottom: 16px;
    color: var(--salon-accent);
}

/* Master Stylists & Experts Showcase Grid */
.home-grid--team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.stylist-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--salon-shadow-sm);
    border: 1px solid var(--salon-border);
    transition: transform var(--transition-normal);
    text-align: center;
}

.stylist-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--salon-shadow-md);
}

.stylist-card__img {
    height: 260px;
    overflow: hidden;
}

.stylist-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stylist-card:hover .stylist-card__img img {
    transform: scale(1.06);
}

.stylist-card__body {
    padding: 24px 20px;
}

.stylist-card__body h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.stylist-card__body .role {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--salon-accent);
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Testimonials Section */
.home-grid--testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.home-testimonial {
    background: #ffffff;
    padding: 44px;
    border-radius: 28px;
    box-shadow: var(--salon-shadow-sm);
    border: 1px solid var(--salon-border);
    margin: 0;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.75;
    color: #2b211b;
    position: relative;
}

.home-testimonial::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 5.5rem;
    position: absolute;
    top: 12px;
    left: 28px;
    color: var(--salon-accent-light);
    line-height: 1;
    z-index: 0;
}

.home-testimonial cite {
    display: block;
    margin-top: 24px;
    font-style: normal;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--salon-accent);
    font-family: var(--font-body);
}

/* CTA Booking Section with Image Background */
.home-section--cta {
    background: linear-gradient(rgba(20, 14, 10, 0.75), rgba(20, 14, 10, 0.86)), url('../images/background/landscape-2.webp') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    border-radius: 32px;
    padding: 90px 36px;
    margin-top: 40px;
    box-shadow: var(--salon-shadow-lg);
}

.home-section--cta h2 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.home-section--cta p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.25rem;
    max-width: 680px;
    margin: 0 auto 40px;
}

/* Recent Articles Grid */
.home-section--content .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 36px;
}

.post-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--salon-shadow-sm);
    border: 1px solid var(--salon-border);
    transition: transform var(--transition-normal);
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--salon-shadow-md);
}

.post-card__thumb {
    height: 220px;
    overflow: hidden;
}

.post-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card__thumb img {
    transform: scale(1.06);
}

.post-card__body {
    padding: 28px;
}

.post-card__meta {
    font-size: 0.88rem;
    color: var(--salon-muted);
    margin-bottom: 10px;
    font-weight: 600;
}

.post-card__title {
    font-size: 1.4rem;
    margin-bottom: 14px;
    line-height: 1.35;
}

.post-card__title a {
    color: var(--salon-text);
}

.post-card__title a:hover {
    color: var(--salon-accent);
}

/* ==========================================================================
   PAGE TEMPLATES (SERVICES, ABOUT, CONTACT)
   ========================================================================== */
.page-header {
    background: linear-gradient(rgba(255, 253, 250, 0.88), rgba(255, 253, 250, 0.94)), url('../images/background/landscape-1.webp') center/cover no-repeat;
    padding: 80px 24px;
    text-align: center;
    border-bottom: 1px solid var(--salon-border);
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.25rem;
    max-width: 680px;
    margin: 0 auto;
}

/* Service Page Card List */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 80px;
}

.service-item-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--salon-shadow-sm);
    border: 1px solid var(--salon-border);
    transition: transform var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-item-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--salon-shadow-md);
}

.service-item-card__img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-item-card__body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-item-card__body h3 {
    font-size: 1.55rem;
    margin-bottom: 14px;
}

.service-item-card__body p {
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Contact Page Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
}

.contact-info-card {
    background: var(--salon-bg-alt);
    padding: 44px;
    border-radius: 28px;
    border: 1px solid var(--salon-border);
}

.contact-info-card h3 {
    font-size: 1.7rem;
    margin-bottom: 28px;
    color: var(--salon-accent);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-detail-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--salon-text);
    margin-bottom: 4px;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 44px;
    border-radius: 28px;
    box-shadow: var(--salon-shadow-md);
    border: 1px solid var(--salon-border);
}

.contact-form-wrapper h3 {
    font-size: 1.7rem;
    margin-bottom: 24px;
}

.contact-form-wrapper label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--salon-text);
    margin-bottom: 6px;
    display: block;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 1.5px solid rgba(43, 33, 27, 0.18);
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    border-color: var(--salon-accent);
    box-shadow: 0 0 0 4px rgba(181, 101, 118, 0.15);
}

.contact-form-wrapper input[type="submit"] {
    background: var(--salon-gradient-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    padding: 18px 40px;
    transition: transform var(--transition-fast);
}

.contact-form-wrapper input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(181, 101, 118, 0.45);
}

/* ==========================================================================
   FOOTER & MOBILE STICKY FLOATING CONTACT BAR
   ========================================================================== */
footer {
    background: var(--salon-text);
    color: #f7f0eb;
    padding: 80px 0 36px;
    margin-top: 80px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 52px;
    margin-bottom: 56px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--salon-gold);
    border-radius: 2px;
}

.footer-col p {
    color: #d1c2b7;
    font-size: 1.05rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #d1c2b7;
    font-size: 1.05rem;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--salon-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p.copy {
    color: #a39286;
    font-size: 0.95rem;
    margin: 0;
}

/* Mobile Floating Contact Sticky Bar (Zalo / Call Hotline / Booking) */
#mobile-contact-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 10px 16px;
    border-top: 1px solid var(--salon-border);
}

.mobile-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 10px;
    align-items: center;
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
}

.mobile-contact-btn--call {
    background: #2e7d32;
}

.mobile-contact-btn--zalo {
    background: #0068ff;
}

.mobile-contact-btn--book {
    background: var(--salon-gradient-primary);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.2rem; }
    .home-hero h1 { font-size: 3.2rem; }
    .commitment-grid { grid-template-columns: repeat(2, 1fr); }
    .home-grid--cards,
    .services-grid,
    .home-section--content .posts-grid { grid-template-columns: repeat(2, 1fr); }
    .home-grid--team { grid-template-columns: repeat(2, 1fr); }
    .home-section--split { grid-template-columns: 1fr; padding: 48px 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    #header { padding: 14px 20px; }
    .main-nav#desktop-menu,
    .header-hotline { display: none; }
    #show-menu { display: flex; }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.95rem; }
    .home-hero { padding: 80px 20px 90px; }
    .home-hero h1 { font-size: 2.5rem; }
    .home-hero p.hero-subtitle { font-size: 1.1rem; }

    .commitment-grid { grid-template-columns: 1fr; }
    .home-section--stats { grid-template-columns: 1fr; margin-top: -30px; }
    .home-grid--cards,
    .services-grid,
    .home-grid--testimonials,
    .home-grid--team,
    .home-section--content .posts-grid { grid-template-columns: 1fr; }

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

    /* Enable Mobile Sticky Contact Bar */
    #mobile-contact-bar { display: block; }
    body { padding-bottom: 60px; }
}
