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

:root {
    --cream: #F5F0EB;
    --taupe: #D4C8BC;
    --charcoal: #3C3C3C;
    --rose: #C4A98B;
    --white: #FFFFFF;
    --brown-deep: #2C2420;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --section-padding: clamp(4rem, 8vw, 8rem);
    --container-max: 1280px;
    --transition-smooth: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    scroll-behavior: smooth;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

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

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

button {
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

ul,
ol {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.25rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--taupe);
    box-shadow: 0 2px 20px rgba(60, 60, 60, 0.06);
    padding: 0.875rem 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.navbar-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    white-space: nowrap;
}

.navbar-logo .logo-v {
    font-size: 1.65rem;
    color: var(--rose);
    font-weight: 900;
    display: inline-block;
    transform: translateY(1px);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.navbar-links a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    position: relative;
    padding-bottom: 4px;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--rose);
    transition: width 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-links a:hover::after {
    width: 100%;
}

.navbar-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-icons button {
    background: none;
    color: var(--charcoal);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.navbar-icons button:hover {
    background: rgba(196, 169, 139, 0.15);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 0.5rem;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 80%;
    max-width: 360px;
    height: 100dvh;
    background: var(--white);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu a {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    padding: 1rem 0;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(212, 200, 188, 0.3);
    transition: var(--transition-fast);
}

.mobile-menu a:hover {
    color: var(--rose);
    padding-left: 0.5rem;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 36, 32, 0.4);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 400ms ease;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* ===== HERO ===== */
.hero {
    height: 100dvh;
    background-color: var(--taupe);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 3.25rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--charcoal);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    will-change: transform, opacity;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.75rem);
    color: var(--charcoal);
    opacity: 0.8;
    margin-top: 1.5rem;
    will-change: transform, opacity;
}

.hero-cta {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 1.1rem 2.75rem;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 1rem;
    transition: var(--transition-smooth);
    will-change: transform, opacity;
}

.hero-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(60, 60, 60, 0.25);
    color: var(--white);
}
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}
.hero-cta-group .hero-cta {
    margin-top: 0;
}
.hero-cta--phone {
    background: #c4a882;
    border: 2px solid #c4a882;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero-cta--phone:hover {
    background: #a8906a;
    color: var(--white);
    border-color: #a8906a;
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--section-padding) 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.35rem);
    text-align: center;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 3rem;
}

/* ===== INTRO ===== */
.intro {
    background-color: var(--cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.intro-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--charcoal);
    opacity: 0.85;
}

.intro-image {
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.intro-image:hover img {
    transform: scale(1.03);
}

/* ===== SERVICES ===== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--taupe);
    border-radius: 1.5rem;
    padding: 2.25rem;
    position: relative;
    transition: var(--transition-smooth);
    will-change: transform;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(196, 169, 139, 0.2);
}

.service-card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--rose);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card-price {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--rose);
    margin-bottom: 0.75rem;
}

.service-card-price .old-price {
    text-decoration: line-through;
    color: var(--charcoal);
    opacity: 0.45;
    font-weight: 400;
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.service-card-desc {
    font-size: 0.925rem;
    line-height: 1.7;
    opacity: 0.75;
    flex: 1;
}

.service-card-duration {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--rose);
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.service-card-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border: 1.5px solid var(--charcoal);
    background: transparent;
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.825rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: color 400ms ease;
    text-align: center;
    z-index: 1;
    align-self: flex-start;
}

.service-card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--charcoal);
    transition: left 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.service-card-btn:hover {
    color: var(--white);
}

.service-card-btn:hover::before {
    left: 0;
}

/* ===== TEAM ===== */
.team {
    background: var(--cream);
}

/* team-grid: see section 21 below for authoritative styles */

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

.team-photo-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 2rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.team-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.team-photo-wrapper:hover img {
    transform: scale(1.05);
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-name::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--rose);
    margin: 0.6rem auto 0;
}

.team-role {
    font-size: 0.875rem;
    opacity: 0.6;
    margin-top: 0.75rem;
    font-weight: 400;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    min-height: 200px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 800ms ease;
}

.testimonial-item.active {
    opacity: 1;
    position: relative;
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--taupe);
    opacity: 0.4;
    line-height: 0.5;
    margin-bottom: 1rem;
    user-select: none;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.25rem, 3vw, 2rem);
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.testimonial-author {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--taupe);
    opacity: 0.4;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    /* Enlarge touch target to 44px without changing visual size */
    padding: 17px;
    background-clip: content-box;
    box-sizing: content-box;
}

.testimonial-dot.active {
    opacity: 1;
    background: var(--rose);
    transform: scale(1.2);
}

/* ===== CTA / GIFT CARD ===== */
.cta-section {
    background: var(--taupe);
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 1rem;
    transition: var(--transition-smooth);
}

.cta-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(60, 60, 60, 0.25);
    color: var(--white);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--cream);
}

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

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item svg {
    flex-shrink: 0;
    color: var(--rose);
    margin-top: 3px;
}

.contact-info-label {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    font-size: 0.925rem;
    opacity: 0.75;
    line-height: 1.65;
}

.contact-direction-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--rose);
    transition: var(--transition-fast);
}

.contact-direction-link:hover {
    gap: 0.75rem;
}

.contact-map {
    border-radius: 1.5rem;
    overflow: hidden;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== FOOTER ===== */
footer, .site-footer, #footer, .footer {
    border-radius: 0 !important;
}

.footer {
    background: var(--brown-deep);
    color: var(--cream);
    border-radius: 0;
    padding: 3rem 0 0;
    margin-top: -1px;
}

/* --- Simplified footer: centered single-column layout --- */
.footer-brand-centered {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-nav-simple {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-nav-simple a {
    color: var(--cream);
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition-fast);
    text-decoration: none;
    padding: 0.25rem 0;
}

.footer-nav-simple a:hover {
    opacity: 1;
    color: var(--rose);
}

.footer-social-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-social-centered a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    opacity: 0.65;
    transition: var(--transition-fast);
    min-width: 44px;
    min-height: 44px;
}

.footer-social-centered a:hover {
    opacity: 1;
    color: var(--rose);
}

.footer-bottom-simple {
    text-align: center;
    border-top: 1px solid rgba(196, 169, 139, 0.3);
    padding: 1.25rem 0;
    margin-bottom: 1rem;
}

.footer-copyright-line {
    font-size: 0.8rem;
    opacity: 0.5;
    margin: 0;
}

.footer-cta-centered {
    text-align: center;
    padding-bottom: 2rem;
}

.footer-reserve-btn {
    display: inline-block;
    background: var(--rose);
    color: var(--white);
    padding: 0.85rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 0.5rem !important;
    transition: background 0.3s ease, transform 0.2s ease;
}

.footer-reserve-btn:hover {
    background: #b89a7c;
    color: var(--white);
    transform: translateY(-1px);
}

/* Legacy grid classes (kept for backward compat if referenced elsewhere) */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    text-align: center;
}

.footer-col--brand,
.footer-col--links,
.footer-col--contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-contact-info {
    text-align: center;
}

.footer-contact-item {
    justify-content: center;
}

.footer-social {
    justify-content: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .logo-v {
    color: var(--rose);
    font-weight: 900;
    font-size: 1.65rem;
}

.footer-desc {
    font-size: 0.9rem;
    opacity: 0.65;
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--rose);
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    opacity: 0.65;
    padding: 0.4rem 0;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 0.35rem;
}

.footer-newsletter {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 0.5rem;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(245, 240, 235, 0.25);
    border-radius: 0.75rem 0 0 0.75rem;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.875rem;
    outline: none;
    transition: var(--transition-fast);
}

.footer-newsletter input::placeholder {
    color: rgba(245, 240, 235, 0.4);
}

.footer-newsletter input:focus {
    border-color: var(--rose);
}

.footer-newsletter button {
    padding: 0.85rem 1.5rem;
    background: var(--rose);
    color: var(--white);
    font-size: 0.825rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 0 0.75rem 0.75rem 0;
    transition: var(--transition-fast);
}

.footer-newsletter button:hover {
    background: #b89a7c;
}

.footer-bottom {
    border-top: 1px solid rgba(196, 169, 139, 0.3);
    padding: 1.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer-bottom-icons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-bottom-icons svg {
    opacity: 0.5;
    transition: var(--transition-fast);
    cursor: pointer;
}

.footer-bottom-icons svg:hover {
    opacity: 1;
    color: var(--rose);
}

.footer-bottom-icons a {
    display: flex;
}

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

    .team-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    .navbar-links,
    .navbar-icons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .intro-image {
        order: -1;
        aspect-ratio: 16/10;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        padding: 0 1rem;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {

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

/* ===== WP Admin Bar Fix ===== */
body.admin-bar .navbar {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .navbar {
        top: 46px;
    }
}
/* Admin Bar Adjustments */
body.admin-bar .navbar {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar .navbar {
        top: 46px;
    }
}

/* Reservation Modal */
.reservation-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(60, 60, 60, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.reservation-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.reservation-modal-content {
    background-color: var(--cream);
    padding: 3rem;
    border-radius: 4px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.reservation-modal-overlay.open .reservation-modal-content {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--charcoal);
    cursor: pointer;
}

.modal-title {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.modal-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--taupe);
    margin-bottom: 2rem;
}

.reservation-form .form-group {
    margin-bottom: 1.5rem;
}

.reservation-form label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.reservation-form input,
.reservation-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--taupe);
    background-color: transparent;
    border-radius: 2px;
    font-family: var(--font-body);
    color: var(--charcoal);
}

.reservation-form input:focus,
.reservation-form select:focus {
    outline: none;
    border-color: var(--rose);
}

.submit-res-btn {
    width: 100%;
    background-color: var(--charcoal);
    color: var(--cream);
    padding: 1rem;
    border: none;
    border-radius: 2px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-res-btn:hover {
    background-color: var(--taupe);
}

/* ==========================================================================
   EXTENDED STYLES — Inner Pages, Components & Utilities
   Added for multi-page WordPress theme support
   ========================================================================== */

/* ===== 1. NAVBAR CTA BUTTON ===== */
.navbar-cta-btn {
    display: inline-block;
    background: var(--charcoal);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.navbar-cta-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(60, 60, 60, 0.22);
    color: var(--white);
}

/* ===== 2. NAVBAR HAMBURGER (updated class) ===== */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 0.5rem;
    cursor: pointer;
    border: none;
}

.navbar-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.navbar-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

.navbar-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.navbar-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* ===== 3. MOBILE MENU COMPONENTS ===== */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 200, 188, 0.3);
    margin-bottom: 1.5rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    color: var(--charcoal);
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.mobile-menu-close:hover {
    background: rgba(196, 169, 139, 0.15);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu-nav a {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    padding: 1rem 0;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(212, 200, 188, 0.3);
    transition: var(--transition-fast);
}

.mobile-menu-nav a:hover {
    color: var(--rose);
    padding-left: 0.5rem;
}

.mobile-menu-cta {
    display: block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 0.75rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.mobile-menu-cta:hover {
    background: var(--brown-deep);
    color: var(--white);
}

/* ===== 4. PAGE HEADER (inner pages) ===== */
.page-header {
    padding: calc(var(--section-padding) + 4rem) 0 var(--section-padding);
    background: var(--taupe);
    text-align: center;
}

.page-header-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.page-header-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--charcoal);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== 5. BREADCRUMBS ===== */
.breadcrumbs {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.breadcrumbs a {
    transition: var(--transition-fast);
}

.breadcrumbs a:hover {
    color: var(--rose);
}

.breadcrumbs .separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.breadcrumbs .current {
    font-weight: 500;
}

/* ===== 6. HERO SCROLL INDICATOR ===== */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
    opacity: 0.6;
    transition: opacity 300ms ease;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.hero-scroll-indicator .scroll-line {
    width: 1px;
    height: 32px;
    background: var(--charcoal);
}

.hero-scroll-indicator .scroll-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    color: var(--charcoal);
}

/* ===== 7. TRUST BAR ===== */
.trust-bar {
    padding: 3rem 0;
    background: var(--white);
    border-top: 1px solid var(--taupe);
    border-bottom: 1px solid var(--taupe);
}

.trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-bar-item {
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal);
}

.trust-bar-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--rose);
    opacity: 0.5;
    flex-shrink: 0;
}

/* ===== 8. SECTION LINK BUTTON ===== */
.section-link-wrap {
    text-align: center;
}

.section-link-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 0.9rem 2.25rem;
    border: 1.5px solid var(--charcoal);
    color: var(--charcoal);
    border-radius: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 400ms ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.section-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--charcoal);
    transition: left 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.section-link-btn:hover {
    color: var(--white);
}

.section-link-btn:hover::before {
    left: 0;
}

/* ===== 9. CONSULTATION HIGHLIGHT CARD (services page) ===== */
.consultation-highlight {
    background: linear-gradient(135deg, rgba(196, 169, 139, 0.15), rgba(212, 200, 188, 0.2));
}

.consultation-card {
    background: var(--white);
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid var(--taupe);
    max-width: 900px;
    margin: 0 auto;
}

.consultation-badge {
    display: inline-block;
    background: #6B8F71;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.9rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.consultation-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.consultation-text {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 650px;
}

.consultation-cta {
    display: inline-block;
    padding: 1.1rem 2.75rem;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 1rem;
    transition: var(--transition-smooth);
}

.consultation-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(60, 60, 60, 0.25);
    color: var(--white);
}

/* ===== 10. SERVICE DETAIL CARDS (services page) ===== */
.service-detail-card {
    background: var(--white);
    border: 1px solid var(--taupe);
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
    display: grid;
    grid-template-columns: minmax(0, 300px) 1fr;
    gap: 2.5rem;
    align-items: start;
}

.service-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(196, 169, 139, 0.18);
}

.service-detail-header {
    display: block; /* No longer flex */
}

.service-detail-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-title-block {
    text-align: left;
}

.service-detail-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-detail-badge {
    display: inline-block;
    background: var(--rose);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.service-detail-price {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--rose);
    display: block;
    margin-bottom: 0.5rem;
}

.service-detail-old-price {
    text-decoration: line-through;
    color: var(--charcoal);
    opacity: 0.45;
    font-weight: 400;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.service-detail-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.7;
}

.service-detail-body {
    margin-top: 0;
}

.service-detail-description {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }

    .service-detail-image {
        aspect-ratio: 16/9;
    }
}

.service-features-list {
    margin-top: 1.5rem;
}

.service-features-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-list li {
    font-size: 0.9rem;
    padding-left: 0;
    position: relative;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-features-list li::before {
    display: none;
}

.service-features-list li .feature-check-icon {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--charcoal, #3C3C3C);
}

.service-faq {
    margin-top: 2rem;
    border-top: 1px solid var(--taupe);
    padding-top: 1.5rem;
}

.service-faq details {
    border-bottom: 1px solid rgba(212, 200, 188, 0.4);
}

.service-faq summary {
    font-weight: 600;
    cursor: pointer;
    padding: 0.75rem 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
}

.service-faq summary::-webkit-details-marker {
    display: none;
}

.service-faq summary::after {
    content: "+";
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--rose);
    transition: transform 300ms ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.service-faq details[open] summary::after {
    transform: rotate(45deg);
}

.service-faq details p {
    padding: 0.5rem 0 1rem;
    opacity: 0.75;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ===== 11. BUTTON STYLES (reusable) ===== */
.btn-primary {
    display: inline-block;
    padding: 1.1rem 2.75rem;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(60, 60, 60, 0.25);
    color: var(--white);
}

.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1.5px solid var(--charcoal);
    background: transparent;
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 400ms ease;
    z-index: 1;
}

.btn-secondary::before,
.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--charcoal);
    transition: left 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn-secondary:hover,
.btn-outline:hover {
    color: var(--white);
}

.btn-secondary:hover::before,
.btn-outline:hover::before {
    left: 0;
}

/* ===== 12. ABOUT PAGE STYLES ===== */

/* About Story */
.about-story {
    background: var(--cream);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-text {
    font-size: 1.05rem;
    line-height: 1.85;
    opacity: 0.85;
}

.about-story-text p {
    margin-bottom: 1.25rem;
}

.about-story-image {
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--taupe);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 169, 139, 0.15);
}

.value-icon {
    height: 3rem;
    color: var(--rose);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: auto;
    height: 100%;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-desc {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* Team Featured */
.team-featured {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid var(--taupe);
    align-items: center;
}

.team-featured-photo {
    aspect-ratio: 3/4;
    border-radius: 1.5rem;
    overflow: hidden;
}

.team-featured-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-featured-badge {
    display: inline-block;
    background: var(--rose);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
}

.team-featured-name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-featured-role {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--rose);
    margin-bottom: 1.25rem;
}

.team-featured-bio {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.team-featured-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.team-featured-specialties span {
    display: inline-block;
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    border: 1px solid var(--taupe);
    border-radius: 2rem;
    color: var(--charcoal);
    font-weight: 500;
}

/* Team Other Grid */
.team-other-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--taupe);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 169, 139, 0.15);
}

.team-card .team-photo-wrapper {
    max-width: 200px;
    margin: 0 auto 1.5rem;
}

.team-card-specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.team-card-specialties span {
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
    border: 1px solid var(--taupe);
    border-radius: 2rem;
    opacity: 0.7;
}

/* About Stats */
.about-stats {
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--rose);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* About CTA */
.about-cta {
    text-align: center;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* ===== 13. RESERVER PAGE STYLES ===== */
.reserver-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
}

.reserver-main {
    /* main booking content */
}

.reserver-sidebar {
    position: sticky;
    top: 6rem;
}

.reserver-info-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--taupe);
    margin-bottom: 1.5rem;
}

.reserver-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reserver-cta-primary {
    display: block;
    width: 100%;
    padding: 1.1rem 2rem;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
    margin-bottom: 1rem;
}

.reserver-cta-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(60, 60, 60, 0.25);
    color: var(--white);
}

.reserver-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border: 1.5px solid var(--charcoal);
    border-radius: 1rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    text-align: center;
}

.reserver-phone:hover {
    background: var(--charcoal);
    color: var(--white);
}

.reserver-services-list {
    list-style: none;
    padding: 0;
}

.reserver-services-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(212, 200, 188, 0.4);
    font-size: 0.9rem;
}

.reserver-services-list li:last-child {
    border-bottom: none;
}

.reserver-services-list .service-name {
    font-weight: 500;
}

.reserver-services-list .service-price {
    color: var(--rose);
    font-weight: 600;
    white-space: nowrap;
}

/* ===== 14. CONTACT PAGE STYLES ===== */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid var(--taupe);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.85rem 1.15rem;
    border: 1px solid var(--taupe);
    border-radius: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--charcoal);
    background: transparent;
    outline: none;
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(196, 169, 139, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.7;
}

.contact-form .form-submit-btn {
    display: inline-block;
    padding: 1.1rem 2.75rem;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
}

.contact-form .form-submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(60, 60, 60, 0.25);
}

.contact-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--taupe);
    color: var(--charcoal);
    transition: var(--transition-fast);
}

.contact-social-links a:hover {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

/* ===== 15. PROMOTION PAGE STYLES ===== */
.promo-featured {
    background: linear-gradient(135deg, rgba(196, 169, 139, 0.12), rgba(212, 200, 188, 0.18));
    border: 2px solid var(--rose);
    border-radius: 2rem;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.promo-badge {
    display: inline-block;
    background: #C25B56;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    animation: pulse-badge 2s ease-in-out infinite;
}

.promo-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.promo-text {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    max-width: 650px;
}

.promo-price {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--rose);
    margin-bottom: 1.5rem;
}

.promo-price .promo-old-price {
    text-decoration: line-through;
    color: var(--charcoal);
    opacity: 0.4;
    font-size: 0.55em;
    font-weight: 400;
    margin-left: 0.75rem;
}

.promo-includes {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.promo-includes li {
    font-size: 0.95rem;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.promo-includes li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #6B8F71;
    font-weight: 700;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.promo-card {
    background: var(--white);
    border: 1px solid var(--taupe);
    border-radius: 1.5rem;
    padding: 2.25rem;
    transition: var(--transition-smooth);
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(196, 169, 139, 0.2);
}

.promo-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.promo-card-price {
    font-weight: 700;
    color: var(--rose);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.promo-card-desc {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.7;
}

/* ===== 16. REALISATIONS PAGE STYLES ===== */

/* Rating Highlight */
.rating-highlight {
    text-align: center;
    padding: 2rem 0;
}

.rating-stars {
    font-size: 2rem;
    color: #D4A843;
    letter-spacing: 0.25rem;
    margin-bottom: 0.5rem;
}

.rating-score {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.1;
}

.rating-label {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 0.5rem;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--taupe);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 169, 139, 0.15);
}

.testimonial-card-quote {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--taupe);
    opacity: 0.5;
    line-height: 0.5;
    margin-bottom: 1rem;
    user-select: none;
}

.testimonial-card-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.testimonial-card-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rose);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-card-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-card-date {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-placeholder {
    aspect-ratio: 4/3;
    background: rgba(212, 200, 188, 0.2);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
    padding: 1.5rem;
    border: 1px dashed var(--taupe);
}

/* ===== 17. BLOG MAGAZINE STYLES ===== */

/* -- Blog Hero Section -- */
.blog-hero {
    background-color: var(--cream);
    padding: 2rem 0 3rem;
}

.blog-hero .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.blog-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.blog-hero__image {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--cream, #f5f0eb);
}

.blog-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.blog-hero__image .blog-hero__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-hero__placeholder {
    background: linear-gradient(135deg, var(--taupe) 0%, var(--rose) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.blog-hero__category {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rose);
    margin-bottom: 0.75rem;
    text-decoration: none;
}

.blog-hero__category:hover {
    opacity: 0.8;
}

.blog-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.3;
    margin: 0 0 1rem;
}

.blog-hero__title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-hero__title a:hover {
    color: var(--rose);
}

.blog-hero__excerpt {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 1.25rem;
}

.blog-hero__meta {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--charcoal);
    opacity: 0.5;
    margin-bottom: 1.25rem;
}

.blog-hero__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--rose);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-hero__link:hover {
    opacity: 0.8;
}

/* -- Category Filter Bar -- */
.blog-categories {
    padding: 3rem 0 1.5rem;
    border-bottom: 1px solid var(--taupe);
    margin-bottom: 3rem;
}

.blog-categories .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-filter a {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--charcoal);
    opacity: 0.7;
    text-decoration: none;
    border: 1px solid var(--taupe);
    border-radius: 2rem;
    transition: var(--transition-fast);
}

.category-filter a:hover,
.category-filter a.active {
    background-color: var(--rose);
    border-color: var(--rose);
    color: var(--white);
    opacity: 1;
}

/* -- Blog Magazine Grid -- */
.blog-magazine {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.blog-magazine .section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin: 0 0 2rem;
}

.blog-magazine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* -- Blog Magazine Card -- */
.blog-mag-card {
    background: var(--white);
    border: 1px solid var(--taupe);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-mag-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(61, 48, 40, 0.08);
}

.blog-mag-card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--cream, #f5f0eb);
}

.blog-mag-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 400ms ease;
}

.blog-mag-card:hover .blog-mag-card__image img {
    transform: scale(1.05);
}

.blog-mag-card__image .blog-mag-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--taupe) 0%, var(--rose) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
}

.blog-mag-card__cat {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 2rem;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--rose);
    text-decoration: none;
}

.blog-mag-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.blog-mag-card__title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.4;
    margin: 0 0 0.625rem;
}

.blog-mag-card__title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-mag-card__title a:hover {
    color: var(--rose);
}

.blog-mag-card__excerpt {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--charcoal);
    opacity: 0.6;
    margin: 0 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-mag-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-mag-card__date {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--charcoal);
    opacity: 0.5;
}

.blog-mag-card__read {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--rose);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-mag-card__read:hover {
    opacity: 0.8;
}

/* -- Blog CTA Banner -- */
.blog-cta-banner {
    max-width: 1140px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.blog-cta-inner {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--brown-deep) 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--white);
}

.blog-cta-inner h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--white);
}

.blog-cta-inner p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1.5rem;
}

.blog-cta-inner .btn-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--rose);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: var(--transition-fast);
}

.blog-cta-inner .btn-cta:hover {
    opacity: 0.9;
}

/* -- Blog Responsive -- */
@media (max-width: 900px) {
    .blog-magazine-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .blog-magazine-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

/* WordPress the_posts_pagination() wraps links in .nav-links */
.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    border: 1px solid var(--taupe);
    transition: var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.blog-pagination .page-numbers:hover {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

.blog-pagination .page-numbers.current {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
}

.blog-pagination .page-numbers.dots {
    border: none;
    pointer-events: none;
}

/* ===== 18. SINGLE POST STYLES ===== */
.single-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.single-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--rose);
    margin-bottom: 1rem;
}

.single-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.single-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.6;
    flex-wrap: wrap;
}

.single-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.single-featured-image {
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 2rem;
    overflow: hidden;
}

.single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Entry Content */
.entry-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.025rem;
    line-height: 1.85;
    color: var(--charcoal);
}

.entry-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.entry-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
    line-height: 1.85;
}

.entry-content ul,
.entry-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style: revert;
}

.entry-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.entry-content blockquote {
    border-left: 3px solid var(--rose);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.85;
}

.entry-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    border-radius: 1rem;
}

.entry-content a {
    color: var(--rose);
    transition: var(--transition-fast);
}

.entry-content a:hover {
    text-decoration: underline;
}

/* Post Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--taupe);
}

.post-tag {
    display: inline-block;
    font-size: 0.8rem;
    padding: 0.35rem 0.9rem;
    border: 1px solid var(--taupe);
    border-radius: 2rem;
    color: var(--charcoal);
    font-weight: 500;
    transition: var(--transition-fast);
}

.post-tag:hover {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

/* Author Box */
.author-box {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    border: 1px solid var(--taupe);
    align-items: center;
}

.author-box-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-box-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-box-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-box-bio {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* Navigation prev/next des articles */
.post-navigation {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--taupe, #D4C8BC);
}

.post-navigation__links {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.post-navigation__link {
    display: block;
    flex: 1;
    text-decoration: none;
    color: var(--charcoal, #3C3C3C);
    transition: var(--transition-fast);
}

.post-navigation__link:hover {
    color: var(--rose, #C4A98B);
}

.post-navigation__link--prev {
    text-align: left;
}

.post-navigation__link--next {
    text-align: right;
}

.post-navigation__link--placeholder {
    flex: 1;
}

.post-navigation__label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 0.25rem;
}

.post-navigation__title {
    display: block;
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1rem;
    font-weight: 500;
    color: inherit;
    line-height: 1.4;
}

/* Related Posts */
.related-posts {
    margin-top: 4rem;
}

.related-posts-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ===== 19. 404 PAGE STYLES ===== */
.error-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.error-404-inner {
    max-width: 600px;
    margin: 0 auto;
}

.error-number {
    font-family: var(--font-display);
    font-size: 10rem;
    font-weight: 900;
    opacity: 0.1;
    color: var(--taupe);
    line-height: 1;
    margin-bottom: -1rem;
}

.error-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.error-text {
    max-width: 500px;
    margin: 0 auto;
    opacity: 0.7;
    line-height: 1.7;
    font-size: 1rem;
}

.error-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* ===== 20. RESPONSIVE — All new styles ===== */

/* ---- 1200px breakpoint — prevent cramped 5-col cards ---- */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---- 1024px breakpoint ---- */
@media (max-width: 1024px) {

    /* Values grid: 3 → 2 */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Stats grid: 4 → 2 */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Team other grid: 3 → 2 */
    .team-other-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Promo grid: 2 → 1 */
    .promo-grid {
        grid-template-columns: 1fr;
    }

    /* Team grid: keep 3 columns on tablets */
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---- 768px breakpoint ---- */
@media (max-width: 768px) {

    /* Page header padding */
    .page-header {
        padding: calc(var(--section-padding) + 2.5rem) 0 var(--section-padding);
    }

    /* Navbar CTA — hide on mobile */
    .navbar-cta-btn {
        display: none;
    }

    /* Navbar hamburger — show on mobile */
    .navbar-hamburger {
        display: flex;
    }

    /* Values grid: 2 → 1 */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Stats grid stays 2 on mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Team featured: 2-col → 1-col, photo first */
    .team-featured {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .team-featured-photo {
        order: -1;
        max-height: 400px;
    }

    /* Team other grid: 2 → 1 */
    .team-other-grid {
        grid-template-columns: 1fr;
    }

    /* Blog grid: 2 → 1 */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Reserver grid: 2 → 1 */
    .reserver-grid {
        grid-template-columns: 1fr;
    }

    .reserver-sidebar {
        position: static;
    }

    /* Contact page grid: 2 → 1 */
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery grid: 3 → 2 */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About story grid: 2 → 1 */
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-story-image {
        order: -1;
        aspect-ratio: 16/10;
    }

    /* Service features: 2-col → 1-col */
    .service-features-list ul {
        grid-template-columns: 1fr;
    }

    /* About CTA buttons: row → column */
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Error number: smaller */
    .error-number {
        font-size: 6rem;
    }

    .error-title {
        font-size: 1.75rem;
    }

    /* Related posts: 3 → 1 */
    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    /* Trust bar: stack items on mobile */
    .trust-bar-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-bar-dot {
        display: none;
    }

    /* Promo grid: 2 → 1 (already set at 1024, reinforce) */
    .promo-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials grid: 2 → 1 */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Post navigation: stack on mobile */
    .post-navigation__links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .post-navigation__link--next {
        text-align: left;
    }

    /* Consultation card padding */
    .consultation-card {
        padding: 2rem;
    }

    /* Promo featured padding */
    .promo-featured {
        padding: 2rem;
    }

    /* Service detail card padding */
    .service-detail-card {
        padding: 1.75rem;
    }

    /* Author box stack */
    .author-box {
        flex-direction: column;
        text-align: center;
    }

    /* Team grid for homepage: 3 → 1 */
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Error buttons stack */
    .error-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ---- 480px breakpoint — small phones ---- */
@media (max-width: 480px) {

    /* Stats grid: 2 → 1 on very small screens */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Service features list: 2-col → 1-col */
    .service-features-list ul {
        grid-template-columns: 1fr;
    }

    /* Tighter section padding */
    .page-header {
        padding: calc(var(--section-padding) + 1.5rem) 0 calc(var(--section-padding) * 0.75);
    }

    /* Footer newsletter: stack input + button */
    .footer-newsletter {
        flex-direction: column;
    }
    .footer-newsletter input {
        border-radius: 0.75rem;
    }
    .footer-newsletter button {
        border-radius: 0.75rem;
        width: 100%;
    }

    /* Reduce card padding */
    .service-detail-card {
        padding: 1.25rem;
    }

    .value-card {
        padding: 1.5rem;
    }
}

/* ===== 21. TEAM GRID UPDATE — 3 members ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* ===== 22. V2 FIXES ===== */

/* --- Nav link spacing (walker outputs <li><a> properly) --- */
.navbar-links-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-links-list li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-links-list li a.nav-link {
    text-decoration: none;
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.navbar-links-list li a.nav-link:hover {
    color: var(--rose);
}

.navbar-links-list li.current-menu-item a.nav-link {
    color: var(--rose);
}

/* --- Desktop Dropdown Sub-menus --- */
.navbar-links-list li {
    position: relative;
}

.navbar-links-list .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 8px 30px rgba(44,36,32,.12);
    border-radius: .75rem;
    padding: .75rem 0;
    min-width: 240px;
    z-index: 1001;
    list-style: none;
    margin: 0;
}

.navbar-links-list li:hover > .sub-menu {
    display: block;
}

.navbar-links-list .sub-menu li {
    margin: 0;
    padding: 0;
}

.navbar-links-list .sub-menu li a.nav-link {
    display: block;
    padding: .6rem 1.5rem;
    font-size: .875rem;
    white-space: nowrap;
    color: var(--charcoal, #3d3028);
    transition: background .2s, color .2s;
}

.navbar-links-list .sub-menu li a.nav-link:hover {
    background: var(--bg-warm, #faf7f4);
    color: var(--rose, #c4a882);
}

/* Arrow indicator for parent items with children */
.navbar-links-list > li.menu-item-has-children > a.nav-link::after {
    content: " \25BE";
    font-size: .65rem;
    margin-left: .25rem;
    opacity: .5;
}

/* --- Footer social icons --- */
.footer-social {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    opacity: 0.65;
    transition: var(--transition-fast);
    min-width: 44px;
    min-height: 44px;
}

.footer-social a:hover {
    opacity: 1;
    color: var(--rose);
}

/* --- Footer contact info --- */
.footer-contact-info {
    font-style: normal;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.65;
    line-height: 1.6;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: var(--cream);
    transition: var(--transition-fast);
}

.footer-contact-item a:hover {
    color: var(--rose);
    opacity: 1;
}

/* --- Footer hours: each on its own line --- */
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.footer-hours span {
    display: block;
}

/* --- Footer rating --- */
.footer-rating {
    font-size: 0.85rem;
    opacity: 0.65;
}

.footer-rating-stars {
    color: #FFD700;
    font-weight: 600;
}

/* --- Text justify for body paragraphs --- */
.intro-text,
.about-text p,
.footer-desc,
.service-detail-desc p,
.blog-content p,
.post-body p,
.page-content p,
.contact-text p,
.promo-description p {
    text-align: justify;
}

/* --- Services page bottom CTA alignment --- */
.services-bottom-cta {
    text-align: center;
    padding: 4rem 0;
}

.services-bottom-cta h2 {
    margin-bottom: 0.75rem;
}

.services-bottom-cta p {
    margin-bottom: 2rem;
    text-align: center;
}

.services-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.services-bottom-links .btn-primary,
.services-bottom-links .btn-secondary {
    min-width: 220px;
    text-align: center;
    padding: 1rem 2rem;
}

/* --- Consultation card text overflow fix --- */
.consultation-card {
    overflow: hidden;
}

.consultation-text {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* --- Footer links list (ensure vertical layout) --- */
.footer-links-list {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    list-style: none;
}

/* --- Mobile menu fixes --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--white);
    z-index: 10001;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}

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

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--taupe);
}

.mobile-menu-close {
    background: none;
    color: var(--charcoal);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-nav-list li {
    list-style: none;
}

.mobile-nav-list a {
    display: block;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(212, 200, 188, 0.3);
    transition: var(--transition-fast);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mobile-nav-list a:hover {
    background: var(--cream);
    color: var(--rose);
    padding-left: 2rem;
}

/* --- Mobile accordion sub-menus --- */
.mobile-nav-list .sub-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--cream, #f5f0eb);
}

.mobile-nav-list .sub-menu.is-open {
    display: block;
}

.mobile-nav-list .sub-menu a {
    padding-left: 2.5rem;
    font-size: .9rem;
    border-bottom-color: transparent;
    color: var(--charcoal, #3d3028);
    opacity: .85;
}

.mobile-nav-list .sub-menu a:hover {
    opacity: 1;
    padding-left: 3rem;
}

/* Arrow toggle for parent items with children in mobile */
.mobile-nav-list li.menu-item-has-children > a .mobile-arrow {
    margin-left: auto;
    transition: transform .25s;
    font-size: .7rem;
    opacity: .6;
}

.mobile-nav-list li.menu-item-has-children.is-open > a .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-menu-cta {
    padding: 1.5rem;
}

.navbar-cta-btn--mobile {
    display: block;
    width: 100%;
    text-align: center;
}

/* --- Hamburger button visible on mobile --- */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.navbar-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar-hamburger {
        display: flex;
    }

    .navbar-cta-btn:not(.navbar-cta-btn--mobile) {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .services-bottom-links {
        flex-direction: column;
        align-items: stretch;
    }

    .services-bottom-links .btn-primary,
    .services-bottom-links .btn-secondary {
        min-width: unset;
    }
}

/* --- Simplified footer mobile tweaks --- */
@media (max-width: 768px) {
    .footer-nav-simple {
        gap: 0.4rem 1rem;
    }
    .footer-nav-simple a {
        font-size: 0.85rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    .footer-social-centered a {
        min-width: 44px;
        min-height: 44px;
    }
    .footer-reserve-btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* --- Sticky mobile CTA bar (single canonical implementation) --- */
@media (max-width: 768px) {
    .mobile-sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: var(--charcoal, #2C2420);
        padding: 0.75rem 1rem;
        text-align: center;
        box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    }

    .mobile-sticky-cta a {
        display: block;
        background: var(--rose, #C4A98B);
        color: var(--white, #fff);
        text-decoration: none;
        padding: 0.875rem 2rem;
        border-radius: 0.5rem;
        font-weight: 600;
        font-size: 0.9375rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        min-height: 44px;
    }

    /* Bottom padding so sticky CTA doesn't overlap content */
    body {
        padding-bottom: 70px;
    }
}

/* ==========================================================================
   SECTION 11 — Footer Directions Button
   ========================================================================== */

.footer-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.65rem 1.5rem;
    background: var(--rose);
    color: var(--white);
    border-radius: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease;
}

.footer-directions-btn:hover,
.footer-directions-btn:focus {
    background: var(--brown-deep);
    color: var(--white);
    transform: translateY(-1px);
    text-decoration: none;
}

.footer-directions-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ==========================================================================
   SECTION 11 — Text Justify for Body Paragraphs
   ========================================================================== */

.page-content p,
.entry-content p,
.section-content p,
.about-story p,
.service-detail-description p,
.blog-content p,
.single-post .entry-content p {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

/* Disable justify on small screens — narrow columns create ugly word-spacing */
@media (max-width: 600px) {
    .page-content p,
    .entry-content p,
    .section-content p,
    .about-story p,
    .service-detail-description p,
    .blog-content p,
    .single-post .entry-content p {
        text-align: left;
    }
}

/* ===== SERVICES SECTION TITLE CENTERING ===== */
.services .section-title,
.services .section-subtitle {
    text-align: center;
}

/* ===== MOBILE STICKY CTA =====
   NOTE: Unified into single .mobile-sticky-cta block above (matches footer.php
   markup). Old duplicate .sticky-mobile-cta / .mobile-sticky-cta pair removed. */

/* ==========================================================================
   18. LANDING PAGE STYLES (Épilation Laser + HydraFacial Beaubien)
   ========================================================================== */

.landing-hero {
    background: linear-gradient(135deg, #2C2420 0%, #3C3C3C 100%);
    color: #F5F0EB;
    padding: 5rem 0;
    text-align: center;
}
.landing-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.landing-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
}
.landing-hero .cta-btn {
    display: inline-block;
    background: var(--color-accent, #C4A98B);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}
.landing-hero .cta-btn:hover {
    background: #b39578;
}
.landing-section {
    padding: 4rem 0;
}
.landing-section:nth-child(even) {
    background: var(--color-cream, #F5F0EB);
}
.landing-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.landing-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--color-dark, #2C2420);
    margin-bottom: 1.5rem;
    text-align: center;
}
.landing-section p {
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--color-medium, #3C3C3C);
}
.landing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.landing-feature {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.landing-feature h3 {
    font-family: 'Playfair Display', serif;
    color: var(--color-dark, #2C2420);
    margin-bottom: 0.5rem;
}
.landing-faq {
    max-width: 800px;
    margin: 0 auto;
}
.landing-faq details {
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}
.landing-faq summary {
    font-weight: 600;
    cursor: pointer;
    color: var(--color-dark, #2C2420);
    font-size: 1.05rem;
}
.landing-faq details p {
    margin-top: 0.75rem;
}
.landing-cta-section {
    background: var(--color-dark, #2C2420);
    color: #F5F0EB;
    padding: 4rem 0;
    text-align: center;
}
.landing-cta-section h2 {
    color: #F5F0EB;
}
.landing-cta-section .cta-btn {
    display: inline-block;
    background: var(--color-accent, #C4A98B);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin: 0.5rem;
}
.landing-breadcrumbs {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: #888;
}
.landing-breadcrumbs a {
    color: var(--color-accent, #C4A98B);
    text-decoration: none;
}
.landing-testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--color-accent, #C4A98B);
}
.landing-testimonial .stars {
    color: var(--color-accent, #C4A98B);
    margin-bottom: 0.5rem;
}

/* Landing page steps (HydraFacial) */
.landing-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    counter-reset: step;
}
.landing-step {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    counter-increment: step;
}
.landing-step::before {
    content: counter(step);
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--color-accent, #C4A98B);
    margin-bottom: 0.5rem;
}
.landing-step h3 {
    font-family: 'Playfair Display', serif;
    color: var(--color-dark, #2C2420);
    margin-bottom: 0.5rem;
}

/* Landing comparison table (HydraFacial) */
.landing-comparison {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.landing-comparison th {
    background: var(--color-dark, #2C2420);
    color: #F5F0EB;
    padding: 1rem;
    text-align: left;
}
.landing-comparison td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}
.landing-comparison tr:last-child td {
    border-bottom: none;
}
.landing-comparison .winner {
    color: var(--color-accent, #C4A98B);
    font-weight: 600;
}

/* HydraFacial-specific: comparison wrapper */
.landing-comparison {
    max-width: 800px;
    margin: 2rem auto;
}
.landing-comparison table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.landing-comparison th {
    background: var(--color-dark, #2C2420);
    color: #F5F0EB;
    padding: 1rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}
.landing-comparison td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
    text-align: center;
}
.landing-comparison tr:last-child td {
    border-bottom: none;
}
.landing-comparison td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--color-dark, #2C2420);
}

/* HydraFacial-specific: step-by-step flex layout */
.landing-steps {
    counter-reset: step-counter;
    max-width: 700px;
    margin: 2rem auto;
}
.landing-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}
.landing-step-number {
    counter-increment: step-counter;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--color-accent, #C4A98B);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
}
.landing-step-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--color-dark, #2C2420);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}
.landing-step-content p {
    margin-bottom: 0;
    text-align: left;
}

/* Landing page mobile */
@media (max-width: 768px) {
    .landing-hero h1 {
        font-size: 1.8rem;
    }
    .landing-features,
    .landing-steps {
        grid-template-columns: 1fr;
    }
    .landing-section p {
        text-align: left;
    }
    .landing-comparison {
        overflow-x: auto;
    }
}

/* =====================================================================
   19. CONTACT PAGE
   ===================================================================== */
.contact-header {
    background-color: #faf7f4;
    padding: 4rem 0 3rem;
    text-align: center;
}
.contact-header .breadcrumbs {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #a89585;
    margin-bottom: 1.5rem;
}
.contact-header .breadcrumbs a {
    color: #a89585;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-header .breadcrumbs a:hover {
    color: #6b5b4e;
}
.contact-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #3d3028;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}
.contact-header .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: #8a7b6b;
    font-weight: 300;
}
.contact-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: stretch;
}
.contact-map {
    display: flex;
    flex-direction: column;
}
.contact-map iframe {
    flex: 1;
    min-height: 400px;
    border-radius: 1rem;
}
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #f0ebe5;
}
.contact-info-item:first-child {
    padding-top: 0;
}
.contact-info-item .icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #faf7f4;
    border-radius: 0.5rem;
    flex-shrink: 0;
    color: #c4a882;
}
.contact-info-item .info-content {
    flex: 1;
}
.contact-info-item .info-label {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #3d3028;
    margin: 0 0 0.375rem;
}
.contact-info-item .info-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #6b5b4e;
    margin: 0;
}
.contact-info-item .info-value a {
    color: #6b5b4e;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info-item .info-value a:hover {
    color: #c4a882;
}
.contact-info-item .hours-detail {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #6b5b4e;
    margin: 0;
}
.contact-info-item .hours-detail .closed {
    color: #a89585;
}
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid #e8e0d8;
    border-radius: 0.5rem;
    color: #6b5b4e;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.social-link:hover {
    background-color: #c4a882;
    border-color: #c4a882;
    color: #fff;
}
.link-directions-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background-color: #faf7f4;
    border: 1px solid #e8e0d8;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #3d3028;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.link-directions-contact:hover {
    background-color: #f0ebe5;
    border-color: #c4a882;
}
.link-directions-contact svg {
    color: #c4a882;
}
.contact-map {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(61, 48, 40, 0.06);
}
.contact-form-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #ede7e0;
}
.contact-form-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #3d3028;
    margin: 0 0 0.5rem;
    text-align: center;
}
.contact-form-section .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #8a7b6b;
    text-align: center;
    margin-bottom: 2.5rem;
}
.contact-form {
    max-width: 640px;
    margin: 0 auto;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group--full {
    grid-column: 1 / -1;
}
.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #3d3028;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.form-group label .required {
    color: #c4a882;
    margin-left: 0.125rem;
}
.form-group input,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #3d3028;
    padding: 0.875rem 1rem;
    border: 1px solid #e8e0d8;
    border-radius: 0.5rem;
    background-color: #fff;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bfb3a5;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #c4a882;
    box-shadow: 0 0 0 3px rgba(196, 168, 130, 0.12);
}
.form-group textarea {
    resize: vertical;
    min-height: 140px;
}
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.125rem 2rem;
    background-color: #c4a882;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 0.5rem;
}
.btn-submit:hover {
    background-color: #b09672;
    transform: translateY(-1px);
}
.form-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #a89585;
    text-align: center;
    margin-top: 1.25rem;
    line-height: 1.6;
}
.form-note a {
    color: #c4a882;
    text-decoration: none;
    font-weight: 500;
}
.form-note a:hover {
    color: #b09672;
}

/* =====================================================================
   20. RÉSERVER PAGE
   ===================================================================== */
.reserver-header {
    background-color: #faf7f4;
    padding: 4rem 0 3rem;
    text-align: center;
}
.reserver-header .breadcrumbs {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #a89585;
    margin-bottom: 1.5rem;
}
.reserver-header .breadcrumbs a {
    color: #a89585;
    text-decoration: none;
    transition: color 0.3s ease;
}
.reserver-header .breadcrumbs a:hover {
    color: #6b5b4e;
}
.reserver-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #3d3028;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}
.reserver-header .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: #8a7b6b;
    font-weight: 300;
}
.reserver-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.reserver-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: stretch;
}
@media (max-width: 768px) {
    .reserver-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
.booking-options h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #3d3028;
    margin: 0 0 1.25rem;
}
.booking-options .description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #6b5b4e;
    margin-bottom: 2rem;
}
.btn-book-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.125rem 2rem;
    background-color: #c4a882;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-book-primary:hover {
    background-color: #b09672;
    transform: translateY(-1px);
}
.btn-book-primary svg {
    margin-right: 0.625rem;
    flex-shrink: 0;
}
.booking-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.75rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #a89585;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.booking-divider::before,
.booking-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #e8e0d8;
}
.phone-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid #e8e0d8;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}
.phone-cta:hover {
    border-color: #c4a882;
    background-color: #faf7f4;
}
.phone-cta svg {
    color: #c4a882;
    flex-shrink: 0;
}
.phone-cta span {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #3d3028;
    font-weight: 500;
}
.booking-process {
    margin-top: 2.5rem;
    padding: 1.75rem;
    background-color: #faf7f4;
    border-radius: 0.75rem;
}
.booking-process h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #3d3028;
    margin: 0 0 1rem;
}
.booking-process ol {
    list-style: none;
    counter-reset: steps;
    padding: 0;
    margin: 0;
}
.booking-process ol li {
    counter-increment: steps;
    position: relative;
    padding-left: 2.25rem;
    margin-bottom: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6b5b4e;
}
.booking-process ol li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0.05em;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #c4a882;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.booking-process ol li:last-child {
    margin-bottom: 0;
}
.info-card {
    background-color: #fff;
    border: 1px solid #ede7e0;
    border-radius: 1rem;
    padding: 2.25rem;
    box-shadow: 0 2px 20px rgba(61, 48, 40, 0.04);
}
.info-card-section {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f0ebe5;
}
.info-card-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.info-card-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #3d3028;
    margin: 0 0 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.info-card-section h3 svg {
    color: #c4a882;
    flex-shrink: 0;
}
.hours-table {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
}
.hours-table tr td {
    padding: 0.375rem 0;
    color: #6b5b4e;
}
.hours-table tr td:first-child {
    font-weight: 500;
    color: #3d3028;
    padding-right: 1rem;
}
.hours-table tr td:last-child {
    text-align: right;
}
.info-card-section .address-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6b5b4e;
    margin: 0 0 0.75rem;
}
.link-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #c4a882;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.link-directions:hover {
    color: #b09672;
}
.services-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #ede7e0;
    width: 100%;
    text-align: center;
}
.services-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #3d3028;
    margin: 0 auto 0.5rem;
    text-align: center;
    max-width: 100%;
}
.services-section .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #8a7b6b;
    text-align: center;
    margin: 0 auto 2.5rem;
    max-width: 100%;
}
.services-list {
    max-width: 700px;
    margin: 0 auto;
}
.service-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.125rem 1.25rem;
    border-bottom: 1px solid #f0ebe5;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 0.375rem;
}
.service-row:first-child {
    border-top: 1px solid #f0ebe5;
}
.service-row:hover {
    background-color: #faf7f4;
}
.service-row .service-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #3d3028;
    font-weight: 500;
    flex: 1;
    text-align: center;
    min-width: 0;
}
.service-row .service-price {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #c4a882;
    font-weight: 600;
    white-space: nowrap;
    flex: 1;
    text-align: center;
}
.service-row .service-arrow {
    color: #c4a882;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-row:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}
.bottom-note {
    text-align: center;
    margin-top: 3.5rem;
    padding: 2rem;
    background-color: #faf7f4;
    border-radius: 0.75rem;
}
.bottom-note p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #6b5b4e;
    margin: 0;
}
.bottom-note a {
    color: #c4a882;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.bottom-note a:hover {
    color: #b09672;
}

/* =====================================================================
   21. PROMOTIONS PAGE
   ===================================================================== */
.promo-header {
    background-color: #faf7f4;
    padding: 4rem 0 3rem;
    text-align: center;
}
.promo-header .breadcrumbs {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #a89585;
    margin-bottom: 1.5rem;
}
.promo-header .breadcrumbs a {
    color: #a89585;
    text-decoration: none;
    transition: color 0.3s ease;
}
.promo-header .breadcrumbs a:hover {
    color: #6b5b4e;
}
.promo-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #3d3028;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}
.promo-header .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: #8a7b6b;
    font-weight: 300;
}
.promo-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.featured-promo {
    position: relative;
    background-color: #fff;
    border: 1px solid #ede7e0;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(61, 48, 40, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
@media (max-width: 768px) {
    .featured-promo {
        grid-template-columns: 1fr;
    }
}
.featured-promo-visual {
    background: linear-gradient(135deg, #f5ede5 0%, #ebe0d4 50%, #e0d3c5 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    min-height: 320px;
    position: relative;
}
.featured-promo-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border: 1px solid rgba(196, 168, 130, 0.25);
    border-radius: 50%;
}
.promo-badge {
    display: inline-block;
    background-color: #c4a882;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}
.featured-price-block {
    text-align: center;
    position: relative;
    z-index: 1;
}
.featured-price-old {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #a89585;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}
.featured-price-new {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: #3d3028;
    line-height: 1;
}
.featured-price-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #8a7b6b;
    margin-top: 0.5rem;
    letter-spacing: 0.03em;
}
.featured-price-saving {
    display: inline-block;
    background-color: #d4edda;
    color: #155724;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.3125rem 0.875rem;
    border-radius: 2rem;
    margin-top: 0.75rem;
    letter-spacing: 0.02em;
}
.featured-promo-details {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 768px) {
    .featured-promo-details {
        padding: 2rem 1.5rem 2.5rem;
    }
}
.featured-promo-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #3d3028;
    margin: 0 0 0.875rem;
}
.featured-promo-details .promo-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #6b5b4e;
    margin: 0 0 1.75rem;
}
.included-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #3d3028;
    line-height: 1.5;
}
.included-list li svg {
    color: #c4a882;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.btn-promo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background-color: #c4a882;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}
.btn-promo-cta:hover {
    background-color: #b09672;
    transform: translateY(-1px);
}
.featured-fine-print {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #a89585;
    margin-top: 1.25rem;
    line-height: 1.6;
    font-style: italic;
}
.other-promos-section {
    margin-top: 4rem;
}
.other-promos-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #3d3028;
    margin: 0 0 2rem;
    text-align: center;
}
.promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 960px) {
    .promos-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .promos-grid {
        grid-template-columns: 1fr;
    }
}
.promo-card {
    background-color: #fff;
    border: 1px solid #ede7e0;
    border-radius: 1rem;
    padding: 2.25rem;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}
.promo-card:hover {
    box-shadow: 0 4px 24px rgba(61, 48, 40, 0.08);
    transform: translateY(-2px);
}
.promo-card-badge {
    display: inline-block;
    background-color: #faf7f4;
    color: #c4a882;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3125rem 0.75rem;
    border-radius: 0.25rem;
    border: 1px solid #ede7e0;
    margin-bottom: 1.25rem;
    align-self: flex-start;
}
.promo-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3125rem;
    font-weight: 600;
    color: #3d3028;
    margin: 0 0 0.75rem;
}
.promo-card .promo-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #6b5b4e;
    margin: 0 0 1.75rem;
    flex: 1;
}
.btn-promo-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    background-color: transparent;
    color: #c4a882;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #c4a882;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    align-self: flex-start;
}
.btn-promo-secondary:hover {
    background-color: #c4a882;
    color: #fff;
}
.promo-card-badge-popular {
    background-color: #c4a882;
    color: #fff;
    border-color: #c4a882;
}
.promo-card-featured {
    border-color: #c4a882;
    box-shadow: 0 2px 16px rgba(196, 168, 130, 0.15);
}
.promo-card-prices {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.promo-card-price-old {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #9e8878;
    text-decoration: line-through;
}
.promo-card-price-new {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c4a882;
}
.promo-card-saving {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b8f71;
    background: #eef5ef;
    border-radius: 0.25rem;
    padding: 0.1rem 0.4rem;
}
.promo-bottom-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2.5rem 2rem;
    background-color: #faf7f4;
    border-radius: 1rem;
}
.promo-bottom-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #6b5b4e;
    margin: 0 0 1.5rem;
    line-height: 1.7;
}
.promo-bottom-cta .btn-promo-cta {
    align-self: center;
}

/* ===== SERVICE PILLAR + DETAIL TEMPLATES ===== */

/* --- Pillar Hero --- */
.service-pillar-header { background: var(--bg-warm, #faf7f4); }
.service-pillar-h1 { max-width: 800px; margin: 0 auto; }
.service-pillar-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

/* --- Pillar Intro --- */
.service-pillar-content h2 { font-family: var(--font-display); margin-top: 2rem; }
.service-pillar-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.service-pillar-content li { margin-bottom: 0.5rem; line-height: 1.7; }

/* --- Services Grid --- */
.service-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.service-pillar-grid--compact { grid-template-columns: repeat(3, 1fr); }
.service-pillar-card {
    background: #fff;
    border: 1px solid var(--taupe, #ede7e0);
    border-radius: 1rem;
    overflow: hidden;
    transition: box-shadow .25s, transform .2s;
    display: flex;
    flex-direction: column;
}
.service-pillar-card:hover { box-shadow: 0 4px 20px rgba(61,48,40,.08); transform: translateY(-2px); }
.service-pillar-card-image img { width: 100%; height: 180px; object-fit: cover; display: block; }
.service-pillar-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.service-pillar-card-title { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: .5rem; }
.service-pillar-card-title a { color: var(--charcoal, #3d3028); text-decoration: none; }
.service-pillar-card-title a:hover { color: var(--rose, #c4a882); }
.service-pillar-card-meta { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: .75rem; }
.service-price { font-weight: 700; color: var(--rose, #c4a882); font-size: .95rem; }
.service-duration {
    font-size: .8rem;
    color: #9e8878;
    background: #faf7f4;
    border: 1px solid #ede7e0;
    border-radius: 1rem;
    padding: .15rem .6rem;
}
.service-pillar-card-desc { font-size: .9rem; color: #6b5b4e; line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.service-pillar-card-actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: auto; }
.btn--sm { padding: .5rem 1rem; font-size: .8rem; }

/* --- Process Steps --- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.process-step { text-align: center; }
.process-step-number {
    width: 48px; height: 48px;
    background: var(--rose, #c4a882);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; font-weight: 700;
    margin: 0 auto 1rem;
}
.process-step h3 { font-family: var(--font-display); font-size: 1rem; margin-bottom: .5rem; }
.process-step p { font-size: .875rem; color: #6b5b4e; line-height: 1.6; }

/* --- FAQ Accordion --- */
.faq-accordion { display: flex; flex-direction: column; gap: .75rem; }
.faq-item details { border: 1px solid var(--taupe, #ede7e0); border-radius: .75rem; overflow: hidden; }
.faq-question {
    padding: 1.25rem 1.5rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #faf7f4;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.25rem; font-weight: 300; color: var(--rose, #c4a882); flex-shrink: 0; margin-left: 1rem; }
details[open] .faq-question::after { content: '−'; }
.faq-answer { padding: 1.25rem 1.5rem; font-size: .95rem; line-height: 1.7; color: #6b5b4e; }

/* --- Related Services --- */
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0 2rem;
}
.related-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #3C3C3C;
    border: 1px solid rgba(0,0,0,0.04);
}
.related-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #3C3C3C;
}
.related-service-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}
.related-service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2C2420;
    line-height: 1.3;
}
.related-service-card:hover .related-service-title {
    color: #C4A98B;
}

/* --- Pillar CTA --- */
.service-pillar-cta { background: var(--bg-warm, #faf7f4); text-align: center; }
.service-cta-inner { max-width: 600px; margin: 0 auto; }
.service-cta-inner h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.service-cta-inner p { color: #6b5b4e; margin-bottom: 2rem; }
.service-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.service-cta-tel { margin-top: 1.5rem; font-size: .95rem; color: #9e8878; }
.service-cta-tel a { color: var(--rose, #c4a882); }
.service-cta-address { margin-top: 1rem; font-size: .875rem; color: #9e8878; }

/* --- Service Detail --- */
.service-detail-header { background: var(--bg-warm, #faf7f4); }
.service-detail-quick-info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}
.service-quick-badge {
    background: #fff;
    border: 1px solid var(--taupe, #ede7e0);
    border-radius: .75rem;
    padding: .5rem 1rem;
    text-align: center;
}
.badge-label { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; color: #9e8878; }
.badge-value { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--rose, #c4a882); }
.service-detail-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.service-detail-image-section { padding: 2rem 0 0; }
.service-detail-featured-image { width: 100%; max-height: 500px; object-fit: cover; border-radius: 1rem; }
.service-detail-content h2 { font-family: var(--font-display); margin-top: 2rem; }
.service-detail-back { margin-top: 2rem; }
.link-back { color: var(--rose, #c4a882); text-decoration: none; font-size: .9rem; }
.link-back:hover { text-decoration: underline; }
.contraindications-box {
    background: #fff9f0;
    border: 1px solid #f0d9b5;
    border-radius: 1rem;
    padding: 1.5rem 2rem;
}
.contraindications-box h3 { font-family: var(--font-display); margin-bottom: 1rem; }

/* --- Page Merci --- */
.merci-hero { background: var(--bg-warm, #faf7f4); text-align: center; min-height: 60vh; display: flex; align-items: center; }
.merci-hero-inner { max-width: 600px; margin: 0 auto; padding: 4rem 1rem; }
.merci-ornament { margin-bottom: 2rem; }
.merci-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: .05em;
    margin-bottom: 1.5rem;
}
.merci-subtitle { font-size: 1.15rem; line-height: 1.7; color: #6b5b4e; margin-bottom: 1.5rem; }
.merci-immediate { font-size: 1rem; color: #9e8878; margin-bottom: 2rem; }
.merci-phone { color: var(--rose, #c4a882); text-decoration: none; }
.merci-hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.merci-services { background: #fff; }
.merci-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.merci-service-card {
    border: 1px solid var(--taupe, #ede7e0);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--charcoal, #3d3028);
    transition: background .2s, box-shadow .2s;
}
.merci-service-card:hover { background: #faf7f4; box-shadow: 0 4px 16px rgba(196,168,130,.15); }
.merci-service-icon { font-size: 2rem; margin-bottom: 1rem; }
.merci-service-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: .5rem; }
.merci-service-card p { font-size: .875rem; color: #6b5b4e; line-height: 1.6; }
.merci-info { background: var(--bg-warm, #faf7f4); text-align: center; }
.merci-address { font-size: .95rem; color: #6b5b4e; line-height: 1.8; }

/* --- Consultation Page --- */
.consultation-header { background: var(--bg-warm, #faf7f4); }
.consultation-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.consultation-what { background: #fff; }
.consultation-what-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}
.consultation-what-text h2 { font-family: var(--font-display); margin-bottom: 1.5rem; }
.consultation-what-text p { color: #6b5b4e; line-height: 1.8; margin-bottom: 1rem; }
.consultation-what-features { display: flex; flex-direction: column; gap: 1.5rem; }
.consultation-feature { display: flex; gap: 1rem; align-items: flex-start; }
.consultation-feature-icon { font-size: 1.5rem; flex-shrink: 0; }
.consultation-feature h3 { font-family: var(--font-display); font-size: 1rem; margin-bottom: .25rem; }
.consultation-feature p { font-size: .875rem; color: #6b5b4e; }
.consultation-expert { background: var(--bg-warm, #faf7f4); }
.consultation-expert-inner { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.consultation-expert-img { width: 100%; border-radius: 1rem; }
.consultation-expert-info h2 { font-family: var(--font-display); margin-bottom: .5rem; }
.consultation-expert-role { color: var(--rose, #c4a882); font-size: .9rem; margin-bottom: 1.5rem; }
.consultation-expert-info p { color: #6b5b4e; line-height: 1.8; margin-bottom: 1rem; }
.consultation-expert-specialties { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.consultation-expert-specialties span {
    background: #fff;
    border: 1px solid var(--taupe, #ede7e0);
    border-radius: 2rem;
    padding: .3rem .8rem;
    font-size: .8rem;
    color: #6b5b4e;
}
.consultation-for-who { background: #fff; }
.consultation-reasons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.consultation-reason { display: flex; gap: 1rem; align-items: flex-start; }
.reason-check { color: var(--rose, #c4a882); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; margin-top: .15rem; }
.consultation-reason p { font-size: .95rem; color: #6b5b4e; line-height: 1.6; }

/* === MOBILE — SERVICE PAGES === */
@media (max-width: 960px) {
    .service-pillar-grid,
    .service-pillar-grid--compact { grid-template-columns: repeat(2, 1fr); }
    .related-services-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .consultation-what-grid { grid-template-columns: 1fr; gap: 2rem; }
    .consultation-expert-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .service-pillar-grid,
    .service-pillar-grid--compact { grid-template-columns: 1fr; }
    .service-pillar-hero-ctas,
    .service-detail-hero-ctas,
    .consultation-hero-ctas,
    .merci-hero-ctas,
    .service-cta-buttons { flex-direction: column; align-items: stretch; }
    .service-pillar-hero-ctas .btn,
    .service-detail-hero-ctas .btn,
    .consultation-hero-ctas .btn,
    .merci-hero-ctas .btn,
    .service-cta-buttons .btn { text-align: center; }
    .related-services-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .related-service-card { padding: 1.5rem 1rem; }
    .process-steps { grid-template-columns: 1fr; }
    .merci-services-grid { grid-template-columns: 1fr; }
    .consultation-reasons { grid-template-columns: 1fr; }
    .service-detail-quick-info { gap: .75rem; }
    .faq-question { padding: 1rem 1.25rem; font-size: .95rem; min-height: 44px; }
    .faq-answer { padding: 1rem 1.25rem; }
    .merci-hero { min-height: 55vh; }
}


/* ===== SERVICES HUB PAGE — CATEGORIES GRID ===== */
.services-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.services-category-card {
    border: 1px solid var(--taupe, #ede7e0);
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    color: var(--charcoal, #3d3028);
    transition: box-shadow .25s, transform .2s;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.services-category-card:hover { box-shadow: 0 6px 24px rgba(196,168,130,.2); transform: translateY(-3px); }
.services-category-card--featured { border-color: var(--rose, #c4a882); background: linear-gradient(135deg, #faf7f4 0%, #fff 100%); }
.services-category-image img { width: 100%; height: 160px; object-fit: cover; display: block; }
.services-category-info { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.services-category-title { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: .5rem; }
.services-category-desc { font-size: .875rem; color: #6b5b4e; line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.services-category-cta { font-size: .8rem; font-weight: 600; color: var(--rose, #c4a882); text-transform: uppercase; letter-spacing: .06em; }
.services-category-card:hover .services-category-cta { color: var(--charcoal, #3d3028); }

@media (max-width: 960px) { .services-categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .services-categories-grid { grid-template-columns: 1fr; }
    .services-category-image img { height: 130px; }
}

/* === BUG-6 FIX: CTA Button Spacing === */
.cta-buttons,
.service-cta-buttons,
.service-pillar-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== PHASE 4: MOBILE-FIRST FIXES ===== */

/* 1. Hero max-height on mobile */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 400px;
    }
    .hero-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
    .hero-tagline {
        margin-top: 1rem;
    }
    .hero-cta {
        margin-top: 1.5rem;
        padding: 0.9rem 2rem;
    }
}

/* 2. Touch targets — min 44px on all interactive elements */
@media (max-width: 768px) {
    .btn,
    a.btn,
    .service-pillar-card-actions a,
    .service-card-btn,
    .btn-book-primary,
    .btn-promo-secondary,
    .phone-cta,
    .team-hub-card-btn,
    .section-link-btn,
    .cta-btn,
    .hero-cta {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    /* Footer links spacing */
    .footer-nav a,
    .footer-social a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    /* Breadcrumb links */
    .breadcrumbs a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    /* Service detail quick-info badges stack better */
    .service-detail-quick-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* 3. Ensure body text never below 16px on mobile */
@media (max-width: 768px) {
    .intro-text,
    .service-pillar-content p,
    .service-detail-content p,
    .entry-content p,
    .consultation-what-text p,
    .consultation-reason p,
    .consultation-expert-info p {
        font-size: 1rem;
        line-height: 1.75;
    }
}

/* 4. Non-.page-header headers: add extra top padding for fixed nav */
.contact-header,
.reserver-header,
.promo-header {
    padding-top: calc(4rem + 3rem); /* 4rem original + 3rem for fixed navbar */
}
/* .team-hub-header padding handled in page-equipe.php inline styles */
@media (max-width: 768px) {
    .contact-header,
    .reserver-header,
    .promo-header {
        padding-top: calc(3rem + 3rem);
    }
    /* .team-hub-header mobile padding handled in page-equipe.php */
}

/* 5. Blog article header — missing styles */
.article-header {
    background: var(--bg-warm, #faf7f4);
    padding: calc(var(--section-padding) + 4rem) 0 var(--section-padding);
    text-align: center;
}
.article-header__categories {
    margin-bottom: 1rem;
}
.article-header__category-badge {
    display: inline-block;
    background: var(--rose, #c4a882);
    color: #fff;
    padding: 0.3rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
}
.article-header__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--charcoal, #3d3028);
    max-width: 800px;
    margin: 0 auto 1.25rem;
    line-height: 1.25;
}
.article-header__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #9e8878;
    margin-bottom: 2rem;
}
.article-header__separator {
    opacity: 0.5;
}
.article-header__image {
    max-width: 900px;
    margin: 0 auto;
}
.article-header__thumbnail {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
}
.article-body {
    background: #fff;
}
.container--narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.entry-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--charcoal, #3c3c3c);
}
.entry-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
}
.entry-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
}
.entry-content p {
    margin-bottom: 1.25rem;
}
.entry-content ul, .entry-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.entry-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.entry-content a {
    color: var(--rose, #c4a882);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.entry-content a:hover {
    color: var(--charcoal, #3d3028);
}
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
}
.entry-content table {
    width: 100%;
    margin: 1.5rem auto;
    border-collapse: collapse;
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.entry-content table th,
.entry-content table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--taupe, #ede7e0);
    font-size: 0.95rem;
    line-height: 1.6;
}
.entry-content table th {
    background: var(--bg-warm, #faf7f4);
    font-weight: 600;
    color: var(--charcoal, #3d3028);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.entry-content table tr:last-child td {
    border-bottom: none;
}
.entry-content table tr:hover td {
    background: var(--bg-warm, #faf7f4);
}
@media (max-width: 768px) {
    .entry-content table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .entry-content table th,
    .entry-content table td {
        padding: 0.6rem 0.75rem;
        white-space: nowrap;
    }
}
.entry-content blockquote {
    border-left: 3px solid var(--rose, #c4a882);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--bg-warm, #faf7f4);
    border-radius: 0 0.5rem 0.5rem 0;
    font-style: italic;
    color: #6b5b4e;
}
@media (max-width: 768px) {
    .article-header {
        padding: calc(var(--section-padding) + 2rem) 0 2rem;
    }
    .article-header__title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
    .article-header__thumbnail {
        border-radius: 0.5rem;
        max-height: 300px;
    }
    .entry-content {
        font-size: 1rem;
    }
}

/* ===== TÂCHE 4 — Team cards equal height, button pinned to bottom (/equipe/) ===== */
.team-hub-card {
    display: flex;
    flex-direction: column;
}
.team-hub-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.team-hub-card-btn {
    margin-top: auto;
}

/* ===== TÂCHE 5 — Center hero CTAs on /services/consultation-gratuite/ ===== */
.consultation-hero-ctas {
    justify-content: center;
}

/* ===== TÂCHE 6 — Features list spacing on /services/consultation-gratuite/ ===== */
.consultation-what-features {
    margin-top: 3rem;
    padding-top: 0.5rem;
}
@media (max-width: 960px) {
    .consultation-what-features {
        margin-top: 0;
        padding-top: 0;
    }
}

/* ===== TÂCHE 10 — Merci page: Reviews section ===== */
.merci-reviews {
    background: var(--cream, #faf8f5);
}
.merci-reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.merci-review-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.merci-review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.merci-review-stars {
    color: #f4b400;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}
.merci-review-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #444;
    flex: 1;
    margin-bottom: 1rem;
}
.merci-review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    border-top: 1px solid #f0ebe4;
    padding-top: 0.75rem;
}
.merci-review-author strong {
    color: var(--charcoal, #2b2b2b);
}
.merci-review-source {
    font-size: 0.75rem;
    color: #999;
    background: #f5f5f5;
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
}
.merci-reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Reviews responsive */
@media (max-width: 1024px) {
    .merci-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .merci-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== TÂCHE 10 — Merci page: Avant/Après section ===== */
.merci-avant-apres {
    background: #fff;
}
.merci-aa-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.merci-aa-tab {
    background: transparent;
    border: 2px solid var(--rose, #c4a882);
    color: var(--rose, #c4a882);
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.merci-aa-tab:hover {
    background: rgba(196, 168, 130, 0.1);
}
.merci-aa-tab.active {
    background: var(--rose, #c4a882);
    color: #fff;
}
.merci-aa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.merci-aa-card {
    text-align: center;
}
.merci-aa-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.merci-aa-img-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #e8e0d8 0%, #d4c8b8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #8a7a6a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.merci-aa-img-after {
    background: linear-gradient(135deg, #f5efe8 0%, #e8dfd4 100%);
    border: 2px solid var(--rose, #c4a882);
}
.merci-aa-arrow {
    font-size: 1.5rem;
    color: var(--rose, #c4a882);
    font-weight: bold;
}
.merci-aa-caption {
    font-size: 0.88rem;
    color: #666;
    font-style: italic;
}
.merci-aa-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Avant/Après responsive */
@media (max-width: 768px) {
    .merci-aa-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .merci-aa-img-placeholder {
        width: 120px;
        height: 120px;
    }
}
