/* ===== CSS VARIABLES — RIO BODY WAX OFFICIAL BRAND ===== */
:root {
    /* Official Brand Colors */
    --plum:         #6B5B7B;   /* Dusty Plum — primary brand */
    --plum-dark:    #5A4A6A;   /* Darker plum for hover/depth */
    --plum-mid:     #8A7A9A;   /* Mid plum */
    --plum-pale:    #F0EDF4;   /* Very light plum for backgrounds */
    --sage:         #7A8E7E;   /* Sage Green — accent */
    --sage-dark:    #617368;   /* Darker sage for hover */
    --sage-light:   #9EB0A1;   /* Lighter sage */
    --sage-pale:    #EEF2EE;   /* Very light sage for backgrounds */
    --white:        #FFFFFF;   /* Crisp White */
    --bg-light:     #F7F4FA;   /* Light plum-tinted page bg */
    --text-dark:    #2C2C2C;
    --text-medium:  #5A5A5A;
    --text-light:   #767676;
    --border:       #DDD7E5;   /* Plum-tinted border */
    --shadow:       rgba(107, 91, 123, 0.18);
    --shadow-sm:    rgba(0, 0, 0, 0.08);

    /* Fonts */
    --font-condensed: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --font-script:    'Dancing Script', cursive;
    --font-body:      'Poppins', Arial, sans-serif;

    --max-width: 1200px;
    --nav-height: 80px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
    font-family: var(--font-condensed);
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.15;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
    font-family: var(--font-body);
    color: var(--text-medium);
    line-height: 1.8;
}

/* ===== UTILITIES ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding     { padding: 90px 0; }
.section-padding-sm  { padding: 60px 0; }
.text-center         { text-align: center; }
.bg-light            { background-color: var(--bg-light); }
.bg-plum             { background-color: var(--plum); }
.bg-white            { background-color: var(--white); }
.bg-dark             { background-color: #1E1A24; }

/* Sparkle accent (brand icon) */
.sparkle {
    color: var(--sage);
    font-size: 0.9em;
    line-height: 1;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 13px 36px;
    border-radius: 3px;
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}
.btn-primary:hover {
    background-color: var(--plum-dark);
    border-color: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow);
}

.btn-sage {
    background-color: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}
.btn-sage:hover {
    background-color: var(--sage-dark);
    border-color: var(--sage-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--plum);
    border-color: var(--plum);
}
.btn-outline:hover {
    background-color: var(--plum);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--plum);
    border-color: var(--white);
}
.btn-white:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

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

/* ===== LOGO IMAGE ===== */
.nav-logo {
    display: block;
    line-height: 0;
    flex-shrink: 0;
}

/* Banner logo — already has plum bg, blends into header */
.nav-logo-img {
    height: 62px;          /* slightly less than 80px header height */
    width: auto;
    max-width: 210px;
    display: block;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.nav-logo-img:hover { opacity: 0.85; }

/* On white scrolled header, show white bg box so banner logo still reads */
header.scrolled .nav-logo-img {
    background: var(--plum);
    border-radius: 5px;
    padding: 3px 8px;
    height: 56px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    display: block;
    background: var(--white);
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 14px;
}

/* ===== HEADER / NAV ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--plum);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.18);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
}

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


/* ===== NAV SOCIAL ICONS ===== */
.nav-social-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-social-icon:hover { transform: translateY(-2px); opacity: 0.85; }

.nav-social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Platform brand colors in the header */
.nav-social-icon[aria-label="Facebook"]  { color: #1877F2; }
.nav-social-icon[aria-label="Instagram"] { color: #E1306C; }
.nav-social-icon[aria-label="X"]         { color: #ffffff; }
.nav-social-icon[aria-label="Yelp"]      { color: #D32323; }

/* On scrolled (white) header, X becomes dark so it's visible */
header.scrolled .nav-social-icon[aria-label="X"] { color: #000000; }

/* ===== NAV LINKS ===== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-links a {
    color: rgba(255,255,255,0.88);
    font-family: var(--font-condensed);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s ease;
    white-space: nowrap;
}

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

header.scrolled .nav-links a {
    color: var(--text-medium);
}
header.scrolled .nav-links a:hover {
    color: var(--plum);
}

.nav-links .btn-book {
    background-color: var(--sage-dark);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 3px;
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--sage-dark);
    white-space: nowrap;
}
.nav-links .btn-book:hover {
    background-color: #4e5d54;
    border-color: #4e5d54;
    color: var(--white);
    transform: translateY(-1px);
}

header.scrolled .nav-links .btn-book {
    background-color: var(--plum);
    border-color: var(--plum);
    color: var(--white);
}
header.scrolled .nav-links .btn-book:hover {
    background-color: var(--plum-dark);
    border-color: var(--plum-dark);
}

.nav-links .ig-link {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links .ig-link svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}
header.scrolled .nav-toggle span {
    background-color: var(--plum);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(160deg, rgba(61,51,71,0.84) 0%, rgba(107,91,123,0.80) 55%, rgba(138,122,154,0.72) 100%),
        url('../assets/images/lobby-rio-body-wax-auburn.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 70px) 24px 90px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(122,142,126,0.18) 0%, transparent 70%);
}

.hero-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-sparkle {
    position: absolute;
    color: var(--sage-light);
    font-size: 1.2rem;
    opacity: 0.35;
}
.hero-sparkle:nth-child(1) { top: 15%; left: 8%;  font-size: 2rem; opacity: 0.2; }
.hero-sparkle:nth-child(2) { top: 25%; right: 10%; font-size: 1rem; }
.hero-sparkle:nth-child(3) { bottom: 30%; left: 12%; font-size: 1.5rem; opacity: 0.25; }
.hero-sparkle:nth-child(4) { bottom: 20%; right: 8%; font-size: 2rem; opacity: 0.2; }
.hero-sparkle:nth-child(5) { top: 60%; left: 5%;  font-size: 0.9rem; }
.hero-sparkle:nth-child(6) { top: 40%; right: 5%; font-size: 0.9rem; }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-condensed);
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 .script-accent {
    display: block;
    font-family: var(--font-script);
    font-size: 0.7em;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: var(--sage-light);
    line-height: 1.1;
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SECTION LABEL ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 14px;
}

/* ===== COMPLETE CARE ===== */
.complete-care { background-color: var(--white); }

.complete-care .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.complete-care h2 { margin-bottom: 24px; color: var(--plum); }
.complete-care p { font-size: 1rem; margin-bottom: 16px; }
.complete-care p strong { color: var(--plum); font-weight: 600; }

.complete-care .image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--plum-pale);
}

.complete-care .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.complete-care .image-frame::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 2px solid rgba(122,142,126,0.4);
    border-radius: 6px;
    pointer-events: none;
}

.image-placeholder {
    font-size: 5rem;
    opacity: 0.4;
    color: var(--sage);
}

/* ===== LOCATION ===== */
.location-section { background-color: var(--plum); }

.location-section .grid-location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-section h2 { color: var(--white); margin-bottom: 16px; }
.location-section p  { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 10px; }

.location-info { margin: 28px 0; }

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.location-item-icon {
    width: 38px;
    height: 38px;
    background-color: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.location-item-text {
    color: rgba(255,255,255,0.88);
    font-size: 0.975rem;
    line-height: 1.5;
}

.location-item-text strong {
    display: block;
    color: rgba(255,255,255,0.95);
    font-size: 0.75rem;
    font-family: var(--font-condensed);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.map-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    aspect-ratio: 4/3;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ===== CELEBRATION ===== */
.celebration {
    background-color: var(--bg-light);
    text-align: center;
}

.celebration h2 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    margin-bottom: 16px;
    color: var(--plum);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.celebration p {
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 32px;
}

/* ===== PILLARS ===== */
.pillars { background-color: var(--white); }

.pillars .section-header { text-align: center; margin-bottom: 56px; }
.pillars .section-header h2 { color: var(--plum); }

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Scroll-reveal — only applied to cards that start below the fold */
.will-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.will-reveal.is-visible {
    opacity: 1;
    transform: none;
}

.pillar-card {
    text-align: center;
    padding: 44px 28px;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    background-color: var(--white);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px var(--shadow);
    border-color: var(--sage-light);
}

.pillar-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--plum-pale), #DDD7E5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.75rem;
}

.pillar-card h3 { margin-bottom: 14px; font-size: 1.3rem; color: var(--plum); }
.pillar-card p  { font-size: 0.95rem; }

/* ===== TESTIMONIALS MARQUEE ===== */
.testimonials {
    background-color: var(--bg-light);
    padding: 80px 0 48px;
    overflow: hidden;
}

.testimonials .section-header { text-align: center; margin-bottom: 52px; }
.testimonials .section-header h2 { color: var(--plum); }

/* Outer mask — fades cards into bg at both edges */
.reviews-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
    );
}

/* The scrolling track — JS doubles its inner HTML for seamless loop */
.reviews-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: reviews-scroll 55s linear infinite;
    will-change: transform;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes reviews-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Individual card */
.testimonial-card {
    width: 310px;
    height: 280px;
    flex-shrink: 0;
    background-color: var(--white);
    border-radius: 10px;
    padding: 26px;
    box-shadow: 0 4px 18px var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Stars — Sage Green per brand guidelines */
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
    color: var(--sage);
    font-size: 1.1rem;
}

.review-source-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 0;           /* hides the text label */
    margin-bottom: 14px;
    flex-shrink: 0;
}

.badge-facebook { background-color: #1877F2; }
.badge-yelp     { background-color: #D32323; }
.badge-google   { background-color: #fff; border: 1px solid #E0E0E0; }

.badge-facebook svg,
.badge-yelp svg,
.badge-google svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    flex-shrink: 0;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.review-tag {
    font-family: var(--font-condensed);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--sage-dark);
    background-color: var(--sage-pale);
    padding: 3px 9px;
    border-radius: 20px;
}

/* Google badge kept for backward compat */
.google-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.google-badge .google-g {
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC05, #34A853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.google-badge span { font-size: 0.8rem; color: var(--text-light); }

.testimonial-text {
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.65;
    font-size: 0.92rem;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--plum), var(--sage));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-condensed);
    flex-shrink: 0;
}

.testimonial-name { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); }
.testimonial-location { font-size: 0.8rem; color: var(--text-light); }

/* ===== TAGLINE SECTION ===== */
.tagline-section {
    background:
        linear-gradient(160deg, rgba(61,51,71,0.92) 0%, rgba(107,91,123,0.90) 100%),
        url('../assets/images/hallway-rio-body-wax-auburn.webp') center/cover no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tagline-section::before,
.tagline-section::after {
    content: '✦';
    position: absolute;
    color: var(--sage-light);
    top: 50%;
    transform: translateY(-50%);
    font-size: 7rem;
    opacity: 0.08;
    pointer-events: none;
}
.tagline-section::before { left: 4%; }
.tagline-section::after  { right: 4%; }

.tagline-section .tagline-inner { position: relative; z-index: 1; }

.tagline-section h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 4vw, 3rem);
    max-width: 800px;
    margin: 0 auto 16px;
}

.tagline-section h2 .script-em {
    font-family: var(--font-script);
    font-weight: 700;
    color: var(--sage-light);
    font-size: 1.1em;
    text-transform: none;
    letter-spacing: 0;
}

.tagline-section p {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 32px;
}

/* ===== BENEFITS ===== */
.benefits { background-color: var(--white); }

.benefits .section-header { text-align: center; margin-bottom: 52px; }
.benefits .section-header h2 { color: var(--plum); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    padding: 36px 28px;
    background-color: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--sage);
    transition: all 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px var(--shadow);
}

.benefit-number {
    font-family: var(--font-condensed);
    font-size: 3rem;
    color: var(--border);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
}

.benefit-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--plum); }
.benefit-card p  { font-size: 0.93rem; }

/* ===== SERVICES PREVIEW ===== */
.services-preview { background-color: var(--bg-light); }

.services-preview .section-header { text-align: center; margin-bottom: 52px; }
.services-preview .section-header h2 { color: var(--plum); }

.services-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 44px;
}

.service-highlight-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 36px 26px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.service-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px var(--shadow);
    border-color: var(--sage-light);
}

.service-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-family: var(--font-condensed);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.badge-popular { background-color: var(--plum); color: var(--white); }
.badge-hot     { background-color: var(--sage); color: var(--white); }
.badge-new     { background-color: #2ECC71; color: var(--white); }

.service-highlight-card h3 { font-size: 1.4rem; margin-bottom: 8px; color: var(--plum); }

.service-price {
    font-family: var(--font-condensed);
    font-size: 2rem;
    font-weight: 700;
    color: var(--sage);
    margin-bottom: 10px;
    line-height: 1;
}

.service-highlight-card p { font-size: 0.9rem; margin-bottom: 22px; }

/* ===== FAQ ===== */
.faq-section {
    background-color: var(--bg-light);
    padding: 36px 0 32px;   /* override section-padding — keep it tight */
}

.faq-wrapper {
    width: 100%;
}

/* Question list card */
.faq-list-card {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 10px var(--shadow-sm);
    overflow: hidden;
}

.faq-q-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 18px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    -webkit-appearance: none;
    transition: background-color 0.18s ease;
}

.faq-section-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage);
    padding: 10px 18px 6px;
    border-bottom: 1px solid var(--border);
    background: #f9f7fb;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    background: var(--plum-pale);
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-medium);
    transition: max-height 0.32s ease, padding 0.32s ease;
}

.faq-answer.open {
    max-height: 600px;
    padding: 12px 18px 18px;
}

.faq-answer p { margin: 0; }


/* border-bottom now on .faq-item wrapper */

.faq-q-btn:hover { background-color: var(--plum-pale); }

.faq-q-btn.active { background-color: var(--plum); }

.faq-q-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.35;
}

.faq-q-btn.active .faq-q-text {
    color: var(--white);
    font-weight: 600;
}

.faq-chevron {
    font-size: 1.1rem;
    color: var(--plum-mid);
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.25s ease, color 0.18s ease;
}

.faq-q-btn.active .faq-chevron {
    color: var(--white);
    transform: rotate(90deg);
}

/* Answer card — slides open below the list card */
.faq-answer-card {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}

.faq-answer-card.open {
    max-height: 400px;
}

.faq-answer-card-inner {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--sage-light);
    box-shadow: 0 4px 16px var(--shadow);
    padding: 16px 20px;
    margin-top: 8px;
}

.faq-answer-heading {
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 700;
    color: var(--plum);
    margin: 0 0 8px;
}

.faq-answer-body {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

/* ===== PHOTO GALLERY ===== */
.our-space { background-color: var(--white); }
.our-space .section-header { text-align: center; margin-bottom: 44px; }
.our-space .section-header h2 { color: var(--plum); }

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== FOOTER ===== */
footer { background-color: #1E1A24; }

.footer-top {
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-logo-sub {
    font-family: var(--font-condensed);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    max-width: 250px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.social-links { display: flex; gap: 10px; }

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.social-link:hover {
    background-color: var(--sage);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-family: var(--font-condensed);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: var(--sage-light); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-icon { color: var(--sage-light); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--sage-light); }

.footer-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.6); }

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.83rem; color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
.footer-bottom-links a:hover { color: var(--sage-light); }

/* ===== SERVICES PAGE ===== */
.page-hero {
    background: linear-gradient(160deg, #3D3347 0%, var(--plum) 60%, #8A7A9A 100%);
    padding: calc(var(--nav-height) + 60px) 24px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '✦';
    position: absolute;
    left: 6%;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sage-light);
    font-size: 5rem;
    opacity: 0.1;
    pointer-events: none;
}

.page-hero::after {
    content: '✦';
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sage-light);
    font-size: 5rem;
    opacity: 0.1;
    pointer-events: none;
}

.page-hero h1 { color: var(--white); margin-bottom: 12px; }

.page-hero p {
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

.services-page { padding: 70px 0; }

.services-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 44px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 9px 26px;
    border-radius: 3px;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-medium);
    font-family: var(--font-condensed);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}
.tab-btn.active,
.tab-btn:hover {
    background-color: var(--plum);
    border-color: var(--plum);
    color: var(--white);
}

.service-category { display: none; }
.service-category.active { display: block; }

.service-category-title { font-size: 1.6rem; margin-bottom: 6px; color: var(--plum); }
.service-category-subtitle { color: var(--text-light); margin-bottom: 32px; font-size: 0.93rem; }

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 12px;
    margin-bottom: 40px;
}

.service-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease;
}
.service-item:hover {
    border-color: var(--sage);
    box-shadow: 0 6px 20px var(--shadow);
    transform: translateY(-2px);
}

.service-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--sage);
    flex-shrink: 0;
}

.service-name { font-weight: 500; font-size: 0.93rem; color: var(--text-dark); }

.wax-types-section {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 44px 36px;
    margin-bottom: 44px;
}
.wax-types-section h3 { color: var(--plum); margin-bottom: 6px; }
.wax-types-section .subtitle { color: var(--text-light); margin-bottom: 28px; font-size: 0.93rem; }

.wax-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.wax-type-card {
    background: var(--white);
    border-radius: 10px;
    padding: 26px;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}
.wax-type-card:hover {
    border-color: var(--sage);
    box-shadow: 0 8px 24px var(--shadow);
}
.wax-type-card h3,
.wax-type-card h4 { color: var(--plum); margin-bottom: 9px; font-size: 1.1rem; }
.wax-type-card p  { font-size: 0.9rem; }

/* ===== PRODUCTS PAGE ===== */
.products-page { padding: 70px 0; }

.products-section-title    { font-size: 1.8rem; margin-bottom: 6px; color: var(--plum); }
.products-section-subtitle { color: var(--text-light); margin-bottom: 32px; font-size: 0.93rem; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 56px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px var(--shadow);
    border-color: var(--sage-light);
}

.product-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--plum-pale), #DDD7E5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.product-info { padding: 22px; }

.product-category {
    font-family: var(--font-condensed);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 6px;
}

.product-name { font-size: 1.2rem; margin-bottom: 9px; color: var(--plum); }

.product-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-medium);
    margin-bottom: 18px;
}

.product-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.product-tag {
    padding: 3px 10px;
    background-color: var(--plum-pale);
    color: var(--plum-dark);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: var(--font-condensed);
    letter-spacing: 0.5px;
}

/* ===== ACCESSIBILITY ===== */

/* Screen-reader only — visually hidden but readable by assistive tech */
.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;
}

/* Inline field error messages */
.field-error {
    display: block;
    font-size: 0.83rem;
    color: #C0392B;
    margin-top: 4px;
    min-height: 1.2em;
}


/* Skip navigation link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    background: var(--plum);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 0 0 6px 6px;
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

/* Focus styles — visible for all keyboard-navigable elements */
:focus-visible {
    outline: 3px solid var(--plum);
    outline-offset: 3px;
    border-radius: 3px;
}

/* Buttons and nav links on dark backgrounds */
header :focus-visible,
.hero :focus-visible,
.tagline-section :focus-visible,
.celebration :focus-visible {
    outline-color: var(--white);
}

/* Form fields */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--plum);
    outline-offset: 0;
    border-color: var(--plum);
    box-shadow: 0 0 0 4px rgba(107, 91, 123, 0.15);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reviews-track {
        animation: none !important;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .pillars-grid, .benefits-grid, .services-highlights { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --nav-height: 68px; }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background-color: var(--plum);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .nav-links.open { display: flex; }

    header.scrolled .nav-links { background-color: var(--white); }
    header.scrolled .nav-links a { color: var(--text-dark); }

    .nav-toggle { display: flex; }

    .complete-care .grid-2,
    .location-section .grid-location { grid-template-columns: 1fr; gap: 36px; }

    .complete-care .image-frame { aspect-ratio: 3/2; }

    .pillars-grid, .benefits-grid, .services-highlights { grid-template-columns: 1fr; }
    .wax-types-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section-padding { padding: 60px 0; }
}

@media (max-width: 480px) {
    .btn { padding: 11px 22px; font-size: 0.9rem; }
    .hero { padding-bottom: 60px; }
    .services-tabs { gap: 8px; }
    .tab-btn { padding: 8px 16px; font-size: 0.85rem; }
    .nav-logo-img { height: 46px; }
}
