/* Self-hosted fonts (Fontshare) */
@font-face {
    font-family: 'Melodrama';
    src: url('assets/fonts/Melodrama-Medium.woff2') format('woff2'),
         url('assets/fonts/Melodrama-Medium.woff') format('woff');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    src: url('assets/fonts/Nunito-Regular.woff2') format('woff2'),
         url('assets/fonts/Nunito-Regular.woff') format('woff');
    font-weight: 400; font-style: normal; font-display: swap;
}

/* CSS Reset & Variable Definitions */
:root {
    --bg-dark: #f7f0e6;      /* warm ivory page */
    --bg-card: #fffdf9;      /* warm white card */
    --blush: #e0b3aa;        /* soft rose accent */
    --blush-soft: #f6e7e1;   /* pale blush wash */
    --gold: #b0823f;         /* antique honey gold */
    --gold-hover: #8f6931;
    --gold-rgb: 176, 130, 63;
    --text-primary: #2e241c; /* warm dark brown */
    --text-secondary: #6f6055;
    --text-muted: #7a6a5a;   /* AA-tuned on cream */
    --glass-border: rgba(120, 90, 60, 0.16);
    --transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Nunito', system-ui, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Melodrama', Georgia, serif;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

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

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

/* Reusable Components & Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.grid-2-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

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

.gold {
    color: var(--gold);
}

.gold-gradient {
    color: var(--gold);
    display: inline-block;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 32px 0 rgba(120, 85, 45, 0.10);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: 'Melodrama', Georgia, serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--gold);
    color: #fffdf9;
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.4);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--gold);
    color: #fffdf9;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(90, 62, 34, 0.22);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background-color: rgba(90, 62, 34, 0.06);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Tags */
.section-tag {
    color: var(--gold);
    font-family: 'Melodrama', Georgia, serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(247, 240, 230, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(90, 62, 34, 0.06);
    transition: var(--transition);
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-logo-img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-gold {
    color: var(--gold);
}

.logo-icon {
    font-size: 1.3rem;
    animation: float 3s ease-in-out infinite;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

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

/* Menu Toggle Button (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: var(--bg-dark);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.mobile-link {
    font-size: 1.6rem;
    font-family: 'Melodrama', Georgia, serif;
    font-weight: 500;
    color: var(--text-primary);
}

.mobile-link:hover {
    color: var(--gold);
}

.mobile-link.btn {
    font-size: 1.05rem;
    margin-top: 8px;
    padding: 14px 34px;
}

.mobile-extra {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 14px;
}
.mobile-extra .rule { width: 60px; height: 2px; background: var(--gold); opacity: 0.5; }
.mobile-socials { display: flex; gap: 22px; }
.mobile-socials a { color: var(--text-primary); font-size: 1.5rem; transition: var(--transition); }
.mobile-socials a:hover { color: var(--gold); transform: translateY(-2px); }
.mobile-phone { font-family: 'Melodrama', serif; font-size: 1.2rem; color: var(--text-primary); letter-spacing: 0.02em; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 3.8rem;
    max-width: 900px;
    margin: 0 auto 20px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 35px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 253, 249, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(90, 62, 34, 0.06);
    padding: 20px;
    border-radius: 12px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.info-item i {
    font-size: 1.3rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-content .lead {
    font-size: 1.15rem;
    color: var(--text-primary);
}

.features-list {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    gap: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(var(--gold-rgb), 0.1);
    border: 1px solid rgba(var(--gold-rgb), 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Honeycomb Grid Visual */
.honeycomb-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hexagon-wrapper {
    width: 280px;
    height: 320px;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--gold);
    padding: 3px; /* border effect */
}

.hexagon-wrapper.offset {
    margin-top: -80px;
}

.hexagon {
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-size: cover;
    background-position: center;
}

.hexagon.gold-bg {
    background: linear-gradient(135deg, var(--gold) 0%, #a67c00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.hex-text {
    color: #fffdf9;
}

.hex-text .number {
    font-family: 'Melodrama', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.hex-text .label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Services & Pricing Estimator */
.services-section {
    padding: 100px 0;
    background: var(--blush-soft);
}

.pricing-wrapper {
    align-items: stretch;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background-color: rgba(90, 62, 34, 0.06);
    border: 1px solid rgba(90, 62, 34, 0.12);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background-color: rgba(90, 62, 34, 0.07);
}

/* Services List */
.service-list-card h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(90, 62, 34, 0.06);
    padding-bottom: 15px;
}

.service-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-name {
    font-weight: 600;
}

.service-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 350px;
}

/* Before / After Slider Section */
.before-after-section {
    padding: 100px 0;
}

.comparison-slider-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.comparison-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 560 / 700;
}

.comparison-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* We clip the before image */
.img-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; /* starting value */
    height: 100%;
    overflow: hidden;
}

.img-before-wrapper img {
    width: 800px; /* match the container dimensions */
    max-width: none;
}

/* Drag Handle */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 100%;
    transform: translateX(-50%);
    cursor: ew-resize;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.handle-line {
    width: 3px;
    height: 100%;
    background-color: var(--gold);
    box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.6);
}

.handle-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--bg-dark);
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    font-size: 0.8rem;
    transition: var(--transition);
}

.handle-arrow.left {
    transform: translateX(-15px);
}

.handle-arrow.right {
    transform: translateX(15px);
}

.slider-handle:hover .handle-arrow {
    background-color: var(--gold);
    color: #fffdf9;
}

/* Testimonials / Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: rgba(247, 235, 230, 0.6);
}

.reviews-carousel-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.reviews-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    min-height: 220px;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.review-card.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-family: 'Melodrama', Georgia, serif;
    font-weight: 600;
    font-size: 1.05rem;
}

.reviewer-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(90, 62, 34, 0.22);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--gold);
    width: 25px;
    border-radius: 10px;
}

/* Contact & Map Section */
.contact-section {
    padding: 100px 0;
}

.contact-info-column h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info-column p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.info-block-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    display: flex;
    gap: 20px;
}

.info-block i {
    font-size: 1.5rem;
    color: var(--gold);
    width: 30px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.info-block h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-block p {
    color: var(--text-primary);
    margin: 0;
}

.info-block .desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.map-container {
    margin-top: 40px;
    padding: 20px;
}

.map-placeholder {
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.map-placeholder h4 {
    margin-bottom: 5px;
}

.map-placeholder p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Form Styling */
.booking-form-container h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.booking-form-container p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.payment-alert {
    display: flex;
    gap: 12px;
    background: rgba(255, 170, 0, 0.05);
    border: 1px solid rgba(255, 170, 0, 0.15);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.payment-alert i {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Footer Section */
.main-footer {
    background-color: #f1e7d9;
    border-top: 1px solid rgba(90, 62, 34, 0.05);
    padding: 60px 0;
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo-img {
    height: 85px;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.footer-tagline {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(90, 62, 34, 0.05);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: var(--gold);
    color: #fffdf9;
    box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.3);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(90, 62, 34, 0.06);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Keyframe Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

.bounce {
    animation: bounce 2s infinite;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-visual {
        order: -1;
    }
    
    .honeycomb-container {
        flex-direction: row;
        justify-content: center;
    }
    
    .hexagon-wrapper.offset {
        margin-top: 0;
        margin-left: -40px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .hero-info-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .grid-2-small {
        grid-template-columns: 1fr;
    }
}

/* ===== Improvements: Google-verified reviews, map, WhatsApp FAB ===== */

/* Google verified summary badge */
.google-summary {
    display: inline-flex; align-items: center; gap: 14px;
    margin: 0 auto 40px; padding: 14px 26px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    text-decoration: none; color: var(--text-primary);
    width: fit-content;
    transition: var(--transition);
}
.reviews-carousel-wrapper > .google-summary,
.reviews-section .google-summary { display: flex; }
.google-summary:hover { border-color: var(--gold); transform: translateY(-2px); }
.gs-g { width: 26px; height: 26px; flex-shrink: 0; }
.gs-score { display: flex; align-items: center; gap: 8px; }
.gs-score strong { font-family: 'Melodrama', Georgia, serif; font-size: 1.5rem; }
.gs-stars { color: var(--gold); letter-spacing: 2px; }
.gs-meta { color: var(--text-secondary); font-size: 0.9rem; }

.reviews-cta { margin-top: 36px; }

/* Google Maps embed */
.map-container {
    margin-top: 28px; border-radius: 16px; overflow: hidden;
    border: 1px solid var(--glass-border); min-height: 300px;
    box-shadow: 0 8px 32px 0 rgba(120, 85, 45, 0.10);
}
.map-container iframe {
    display: block; width: 100%; height: 100%; min-height: 300px; border: 0;
    filter: contrast(1.02);
}

/* Floating WhatsApp */
.whatsapp-fab {
    position: fixed; bottom: 24px; right: 24px; z-index: 900;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; color: #fff;
    display: grid; place-items: center; font-size: 1.7rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.whatsapp-fab:hover { transform: scale(1.08); color: #fff; }

@media (max-width: 640px) {
    .google-summary { flex-wrap: wrap; justify-content: center; text-align: center; }
    .whatsapp-fab { width: 52px; height: 52px; font-size: 1.5rem; bottom: 18px; right: 18px; }
}

/* ===== Reviews verified layout ===== */
.review-head {
    display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.reviewer-avatar {
    width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
    display: grid; place-items: center;
    font-family: 'Melodrama', serif; font-size: 1.4rem; color: #fffdf9;
    background: var(--gold);
}
.reviewer-id { display: flex; flex-direction: column; line-height: 1.25; margin-right: auto; }
.reviewer-id .reviewer-name { font-weight: 700; color: var(--text-primary); font-size: 1rem; }
.reviewer-id .reviewer-meta { color: var(--text-muted); font-size: 0.8rem; }
.reviewer-g { width: 22px; height: 22px; flex-shrink: 0; }
.review-card .review-stars { margin-bottom: 12px; }
.review-card .review-text { font-size: 1.05rem; line-height: 1.6; }

/* Hero polish */
.hero h1 { letter-spacing: -0.01em; }
.hero-actions .btn-primary { font-size: 1.05rem; padding: 14px 32px; }

/* ===== Why Queen Bee card (replaces price estimator) ===== */
.why-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin: 22px 0 28px; }
.why-list li { display: flex; align-items: flex-start; gap: 14px; }
.why-list li i { color: var(--gold); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.why-list li span { color: var(--text-secondary); line-height: 1.5; }
.why-card h3 { font-size: 1.5rem; }

/* ===== Mobile refinements ===== */
.hero { min-height: 100svh; }

@media (max-width: 768px) {
    .container { width: 92%; }
    .about-section, .services-section, .before-after-section,
    .reviews-section, .contact-section { padding: 60px 0; }
    .section-header { margin-bottom: 34px; }
    .section-header h2 { font-size: 1.9rem; }
    .glass-panel { padding: 24px; }
    .grid-2 { gap: 32px; }
    .review-card .review-text { font-size: 1rem; }
    .hero-info-grid { gap: 12px; }
    .info-item { flex-direction: row; justify-content: center; }
    .map-container, .map-container iframe { min-height: 240px; }
    .honeycomb-container { transform: scale(0.85); }
}

@media (max-width: 480px) {
    .hero { padding-top: 92px; }
    .hero h1 { font-size: 2rem; line-height: 1.15; }
    .hero p { font-size: 1rem; }
    .section-header h2 { font-size: 1.65rem; }
    .glass-panel { padding: 20px; border-radius: 14px; }
    .reviewer-avatar { width: 40px; height: 40px; font-size: 1.2rem; }
    .review-card .review-text { font-size: 0.98rem; }
    .gs-score strong { font-size: 1.3rem; }
    .gs-meta { font-size: 0.82rem; }
    .service-list .service-name { font-size: 1rem; }
    .whatsapp-fab { bottom: 16px; right: 16px; }
}

/* ===== Reorder: centered booking form + footer legal/credit ===== */
#agendamento .booking-form-container { max-width: 640px; margin: 0 auto; }
#agendamento .form-intro { text-align: center; color: var(--text-secondary); margin-bottom: 8px; }

.footer-links { display: flex; justify-content: center; align-items: center; gap: 10px; margin: 18px 0 6px; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); font-size: 0.88rem; }
.footer-links a:hover { color: var(--gold); }
.footer-links .sep { color: var(--text-muted); }
.footer-credit { margin-top: 6px; color: var(--text-muted); font-size: 0.85rem; }
.footer-credit a { color: var(--gold); }
.footer-credit a:hover { color: var(--gold-hover); }

/* ===== A11y: visible keyboard focus ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.menu-toggle:focus-visible,
.dot:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ===== Método section ===== */
.method-section { padding: 100px 0; background: var(--blush-soft); }
.method-quote {
    max-width: 760px; margin: 0 auto 56px; text-align: center;
    font-family: 'Melodrama', Georgia, serif; font-style: italic;
    font-size: 1.6rem; line-height: 1.5; color: var(--text-primary);
}
.method-steps {
    max-width: var(--container-width); margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.method-step { text-align: center; }
.method-num {
    font-family: 'Melodrama', Georgia, serif; font-size: 2.4rem;
    color: var(--gold); opacity: 0.55; display: block; margin-bottom: 10px;
}
.method-step h3 { font-size: 1.4rem; margin-bottom: 10px; }
.method-step p { color: var(--text-secondary); max-width: 34ch; margin: 0 auto; }
@media (max-width: 768px) {
    .method-section { padding: 60px 0; }
    .method-quote { font-size: 1.3rem; margin-bottom: 40px; }
    .method-steps { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Legal pages ===== */
.main-header.is-static { position: static; background: var(--bg-card); }
.legal-page { padding: 60px 0 80px; max-width: 820px; margin: 0 auto; }
.legal-page h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 8px; }
.legal-updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 36px; }
.legal-page h2 { font-size: 1.3rem; margin: 32px 0 10px; }
.legal-page p { color: var(--text-secondary); max-width: 70ch; margin-bottom: 6px; }
.legal-note { margin-top: 40px; padding: 16px 20px; background: var(--blush-soft); border-radius: 12px; font-size: 0.9rem; color: var(--text-muted); }
