/* ============================================================
   FUSION BRUSHWORK - Luxury Theme
   Palette: Deep Plum, Rich Aubergine, Mauve Velvet, Warm Ivory,
   Soft Blush Beige, Antique Gold, Royal Maroon, Dusty Rose.
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
    --royal-maroon: #8B0A1E;
    --royal-maroon-hover: #6a0717;
    --antique-gold: #D4AF37;
    --dusty-rose: #B76E79;
    --warm-ivory: #F7F4EF;
    --soft-beige: #F1D9C6;
    --deep-plum: #2D1B33;
    --rich-aubergine: #4A2545;
    --mauve-velvet: #7C3B5E;
    --charcoal: var(--deep-plum);
    --deep-footer: #0E0E10;
    --black: #000;
    --footer-link: #B0AEA6;
    --copyright: #666;
    --dark-card: var(--rich-aubergine);
    --white: #fff;

    --primary: var(--royal-maroon);
    --primary-dark: var(--royal-maroon-hover);
    --primary-soft: rgba(139, 10, 30, 0.10);
    --primary-mid: rgba(139, 10, 30, 0.22);
    --gold: var(--antique-gold);
    --gold-soft: rgba(212, 175, 55, 0.30);
    --blush: var(--dusty-rose);
    --bg: var(--warm-ivory);
    --bg-soft: var(--soft-beige);
    --bg-card: var(--warm-ivory);
    --text: var(--charcoal);
    --text-soft: var(--charcoal);
    --muted: rgba(45, 27, 51, 0.72);
    --muted-lite: rgba(45, 27, 51, 0.54);
    --border: rgba(212, 175, 55, 0.42);
    --border-soft: rgba(212, 175, 55, 0.30);
    --shadow: 0 22px 60px rgba(45, 27, 51, 0.12);
    --shadow-soft: 0 14px 38px rgba(45, 27, 51, 0.10);
    --radius: 18px;
    --radius-sm: 10px;
    --container: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    background: var(--warm-ivory);
    color: var(--charcoal);
    overflow-x: hidden;
    letter-spacing: 0;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video, iframe { max-width: 100%; display: block; border: 0; }
button, input, textarea, select {
    font: inherit;
    letter-spacing: 0;
}
textarea { resize: vertical; min-height: 140px; }
p, li, input, textarea, select, button, .site-nav a, .btn, .pill, .eyebrow, .brand-copy small {
    font-family: "Inter", "Poppins", Arial, sans-serif;
}
p { line-height: 1.75; }
h1, h2, h3, h4, .brand-copy strong {
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    color: var(--charcoal);
    font-weight: 600;
    letter-spacing: 0;
}

.container { width: var(--container); margin: 0 auto; }
.section { padding: 88px 0; }
.section-dark { background: var(--soft-beige); }
.page-shell { background: var(--warm-ivory); }
.page-loader {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: center;
    background: var(--deep-plum);
    color: var(--warm-ivory);
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.30);
    border-top-color: var(--antique-gold);
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.bg-orb { display: none; }

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    padding: 18px 0;
    /*background: var(--deep-plum);*/
    /* border-bottom: 1px solid rgba(212, 175, 55, 0.36); */
}
.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 1px;
    /* background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.50), transparent); */
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--deep-plum);
    border-color: rgba(212, 175, 55, 0.40);
    box-shadow: none;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-logo {
    display: block;
    width: auto;
    height: 80px;
    max-width: 220px;
    object-fit: contain;
}
.brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.50);
    color: var(--antique-gold);
    font-family: "Cinzel", "Cormorant Garamond", serif;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.brand-copy strong,
.brand-copy small { display: block; }
.brand-copy strong { color: var(--warm-ivory); }
.brand-copy small {
    color: var(--antique-gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.68rem;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}
.site-nav a {
    color: var(--warm-ivory);
    transition: color 0.3s ease;
}
.site-nav a.active,
.site-nav a:hover { color: var(--antique-gold); }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--warm-ivory);
    margin: 5px 0;
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 24px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
    font-weight: 600;
}
.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(247, 244, 239, 0.28), transparent 80%);
    transform: translateX(-130%);
    transition: transform 0.7s ease;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(45, 27, 51, 0.18);
}
.btn:hover::after { transform: translateX(130%); }
.btn-gold {
    background: var(--royal-maroon);
    color: var(--warm-ivory);
    box-shadow: 0 12px 30px rgba(139, 10, 30, 0.28);
}
.btn-gold:hover { background: var(--royal-maroon-hover); }
.btn-outline {
    background: transparent;
    color: var(--deep-plum);
    border-color: var(--deep-plum);
}
.btn-outline:hover {
    background: var(--deep-plum);
    color: var(--warm-ivory);
    border-color: var(--deep-plum);
}
.btn.small {
    padding: 10px 18px;
    font-size: 0.92rem;
}

.hero-section {
    min-height: calc(100vh - 104px);
    display: flex;
    align-items: center;
    padding: 48px 0 72px;
    background: var(--warm-ivory);
}
.hero-grid,
.about-split,
.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
}
.eyebrow {
    display: inline-block;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--antique-gold);
    font-size: 0.74rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.hero-title {
    font-size: clamp(2.9rem, 7vw, 5.8rem);
    line-height: 0.98;
    margin: 0 0 18px;
}
.hero-copy p,
.page-hero p,
.section-head p {
    color: var(--charcoal);
    max-width: 60ch;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.hero-card {
    overflow: hidden;
    border-color: rgba(212, 175, 55, 0.42);
}
.hero-card img {
    width: 100%;
    min-height: 540px;
    object-fit: cover;
}
.hero-visual { position: relative; }
.floating-stat {
    position: absolute;
    right: -20px;
    bottom: 24px;
    padding: 18px 20px;
    background: var(--antique-gold);
    color: var(--charcoal);
    border-color: rgba(212, 175, 55, 0.50);
    animation: floatSoft 5s ease-in-out infinite;
}
.floating-stat strong {
    display: block;
    color: var(--charcoal);
    font-size: 2rem;
}

.section-head { margin-bottom: 30px; }
.section-head.center { text-align: center; }
.section-head h2,
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin: 0 0 14px;
}
.service-grid,
.blog-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card,
.blog-card,
.gallery-card,
.testimonial-card,
.contact-panel,
.article-body {
    overflow: hidden;
}
.service-card,
.blog-card,
.gallery-card,
.testimonial-card,
.portfolio-note,
.contact-quick-card,
.services-hero-notes div,
.contact-panel,
.reel-card {
    position: relative;
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.35s ease;
}
.service-card:hover,
.blog-card:hover,
.gallery-card:hover,
.testimonial-card:hover,
.portfolio-note:hover,
.contact-quick-card:hover,
.services-hero-notes div:hover,
.contact-panel:hover,
.reel-card:hover {
    box-shadow: 0 26px 64px rgba(45, 27, 51, 0.18);
    border-color: rgba(212, 175, 55, 0.50);
}
.service-card img,
.blog-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover img,
.blog-card:hover img,
.gallery-card:hover img { transform: scale(1.06); }
.card-body { padding: 22px; }
.pill {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--royal-maroon);
    color: var(--warm-ivory);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}
.card-meta strong { color: var(--antique-gold); }
.card-meta a,
.blog-card a {
    color: var(--royal-maroon);
    font-family: "Inter", "Poppins", Arial, sans-serif;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}
.card-meta a:hover,
.blog-card a:hover { border-bottom-color: var(--antique-gold); }

.page-home .hero-home {
    position: relative;
    padding-top: 60px;
}
.page-home .hero-home::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: rgba(212, 175, 55, 0.45);
}
.home-services-section {
    background: var(--rich-aubergine);
    color: var(--warm-ivory);
}
.home-services-section .section-head h2,
.home-services-section h3 { color: var(--warm-ivory); }
.home-services-section .eyebrow,
.home-services-section .card-meta strong { color: var(--antique-gold); }
.home-services-section .service-card {
    background: var(--warm-ivory);
    border-color: rgba(212, 175, 55, 0.36);
    border-top: 3px solid var(--antique-gold);
    box-shadow: none;
}
.home-services-section .service-card h3 { color: var(--deep-plum); }
.home-services-section .service-card p { color: var(--rich-aubergine); }
.home-services-section .service-card .card-meta strong { color: var(--royal-maroon); }
.home-services-section .pill {
    background: var(--royal-maroon);
    color: var(--warm-ivory);
}
.home-services-section .card-meta a { color: var(--royal-maroon); }

.parallax-section {
    background: var(--soft-beige);
    color: var(--charcoal);
}
.parallax-section .section-head h2,
.parallax-section h3 { color: var(--charcoal); }
.reel-card {
    overflow: hidden;
    background: var(--warm-ivory);
    border-color: rgba(183, 110, 121, 0.42);
    box-shadow: 0 22px 50px rgba(183, 110, 121, 0.22);
}
.reel-card iframe,
.reel-card video {
    width: 100%;
    height: 440px;
    object-fit: cover;
}
.reel-card-media {
    position: relative;
    overflow: hidden;
}
.reel-card-media img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}
.reel-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 13px 20px;
    border-radius: 999px;
    background: var(--dusty-rose);
    color: var(--white);
    border: 1px solid rgba(183, 110, 121, 0.50);
    box-shadow: 0 18px 40px rgba(183, 110, 121, 0.28);
    cursor: pointer;
    font-family: "Inter", "Poppins", Arial, sans-serif;
    font-weight: 700;
}
.reel-meta { padding: 16px 18px 20px; }

.home-story-band {
    background: var(--mauve-velvet);
    color: var(--warm-ivory);
}
.home-story-band h2,
.home-story-band h3,
.home-story-band .about-copy p,
.home-story-band .testimonial-card p { color: var(--warm-ivory); }
.home-story-band .eyebrow { color: var(--antique-gold); }
.home-story-band .btn-outline {
    color: var(--warm-ivory);
    border-color: var(--warm-ivory);
}
.home-story-band .btn-outline:hover {
    background: var(--warm-ivory);
    color: var(--royal-maroon);
}
.testimonial-stack {
    display: grid;
    gap: 18px;
}
.testimonial-card {
    padding: 26px;
    background: transparent;
    border-color: rgba(212, 175, 55, 0.40);
    border-radius: var(--radius);
    box-shadow: none;
}
.testimonial-card::before {
    content: "❝";
    display: block;
    color: var(--antique-gold);
    font-size: 3.3rem;
    line-height: 0.7;
}
.testimonial-card p {
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    padding-bottom: 16px;
}
.testimonial-card strong { color: var(--soft-beige); }

.home-journal-section {
    background: var(--warm-ivory);
    color: var(--charcoal);
}
.home-journal-section .section-head {
    position: relative;
}
.home-journal-section .section-head::after {
    content: "";
    display: block;
    width: 96px;
    height: 2px;
    margin-top: 16px;
    background: var(--antique-gold);
}
.before-after-grid { grid-template-columns: repeat(4, 1fr); }
.gallery-card { position: relative; }
.gallery-card .overlay span,
.overlay-label {
    background: var(--dusty-rose);
    color: var(--white);
}
.overlay,
.overlay-label {
    position: absolute;
    inset: auto 0 0;
    padding: 18px;
    background: rgba(45, 27, 51, 0.78);
    color: var(--warm-ivory);
}
.overlay span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    font-family: "Inter", "Poppins", Arial, sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
}
.overlay h3 { color: var(--warm-ivory); }

.page-home main > .section:last-of-type {
    background: var(--rich-aubergine);
    color: var(--warm-ivory);
}
.page-home main > .section:last-of-type .section-head h2,
.page-home main > .section:last-of-type h3 { color: var(--warm-ivory); }
.page-home main > .section:last-of-type .blog-card {
    background: var(--warm-ivory);
    border-color: rgba(212, 175, 55, 0.36);
    box-shadow: none;
}
.page-home main > .section:last-of-type .pill {
    background: var(--antique-gold);
    color: var(--deep-plum);
}
.page-home main > .section:last-of-type .blog-card h3 { color: var(--deep-plum); }
.page-home main > .section:last-of-type .blog-card p { color: var(--rich-aubergine); }
.page-home main > .section:last-of-type .blog-card a { color: var(--royal-maroon); }
.page-home main > .section:last-of-type .blog-card a:hover {
    color: var(--royal-maroon);
    border-bottom-color: var(--antique-gold);
}

.page-hero { padding: 88px 0 32px; }
.services-hero-grid,
.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: center;
}
.services-hero-notes,
.contact-quick-cards {
    display: grid;
    gap: 14px;
    padding: 22px;
}
.services-hero-notes div,
.contact-quick-card,
.portfolio-note {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 18px;
    background: var(--warm-ivory);
    border: 1px solid rgba(212, 175, 55, 0.30);
}
.contact-quick-card strong,
.services-hero-notes strong,
.portfolio-note strong { color: var(--royal-maroon); }
.page-services .services-catalogue,
.page-works .works-gallery-section,
.page-contact .contact-section { background: var(--soft-beige); }
.page-services .service-card:nth-child(4n+1),
.page-blogs .blog-card:nth-child(odd) { transform: translateY(18px); }
.page-services .service-card:nth-child(4n+2) { border-radius: 32px 18px 28px 18px; }
.page-services .service-card {
    background: var(--warm-ivory);
    border-top: 3px solid var(--antique-gold);
}
.page-services .service-price { color: var(--royal-maroon); }
.page-works .works-hero,
.page-contact .contact-hero,
.page-blogs .blogs-hero {
    background: var(--warm-ivory);
}
.portfolio-intro-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.page-works .masonry-item:nth-child(3n+2) { transform: translateY(24px); }
.masonry-grid {
    columns: 3 280px;
    column-gap: 24px;
}
.masonry-item {
    break-inside: avoid;
    margin-bottom: 24px;
    overflow: hidden;
}
.masonry-item button,
.gallery-card,
.service-card,
.blog-card,
.portfolio-note,
.contact-quick-card { width: 100%; }
.masonry-item img { width: 100%; height: auto; }
.lightbox-trigger,
.lightbox-close,
.modal-close {
    background: transparent;
    border: 0;
    color: var(--warm-ivory);
    cursor: pointer;
}
.page-blogs .blogs-hero { text-align: center; }
.journal-section {
    background: var(--rich-aubergine);
    color: var(--warm-ivory);
}
.journal-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: start;
}
.journal-sidebar {
    position: sticky;
    top: 120px;
    padding: 24px;
    background: var(--rich-aubergine);
    border-color: rgba(212, 175, 55, 0.36);
}
.journal-sidebar h3,
.journal-sidebar p { color: var(--warm-ivory); }
.journal-section .blog-card h3 { color: var(--deep-plum); }
.journal-section .blog-card p { color: var(--rich-aubergine); }
.journal-search {
    display: grid;
    margin-top: 18px;
}
.journal-section .blog-card {
    background: var(--warm-ivory);
    border-color: rgba(212, 175, 55, 0.36);
}
.journal-section .pill {
    background: var(--antique-gold);
    color: var(--deep-plum);
}

.filter-bar,
.blog-search {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px;
    align-items: center;
    margin-bottom: 28px;
}
.filter-bar,
.blog-search,
.contact-panel,
.article-body {
    background: var(--warm-ivory);
    border-color: rgba(212, 175, 55, 0.30);
}
.filter-btn {
    background: var(--warm-ivory);
    color: var(--charcoal);
    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
    font-family: "Inter", "Poppins", Arial, sans-serif;
    font-weight: 700;
}
.filter-btn.active {
    background: var(--royal-maroon);
    color: var(--warm-ivory);
}
.filter-btn:hover {
    border-color: var(--antique-gold);
    color: var(--royal-maroon);
}
.pricing-toggle {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--charcoal);
    font-family: "Inter", "Poppins", Arial, sans-serif;
}

.blog-search input,
.blog-search select,
.newsletter-form input,
.contact-form input,
.contact-form textarea,
.booking-form input {
    width: 100%;
    background: var(--warm-ivory);
    color: var(--charcoal);
    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 18px;
    padding: 14px 16px;
}
.blog-search input:focus,
.blog-search select:focus,
.newsletter-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.booking-form input:focus {
    outline: 2px solid var(--antique-gold);
    outline-offset: 0;
    border-color: var(--antique-gold);
}
.newsletter-form,
.contact-form,
.booking-form {
    display: grid;
    gap: 14px;
}
.form-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.booking-form .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-form textarea { grid-column: 1 / -1; }
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    gap: 10px;
}
.contact-panel { padding: 26px; }
.contact-panel h2 { color: var(--royal-maroon); }
.map-embed iframe {
    width: 100%;
    min-height: 320px;
    border-radius: 18px;
}
.article-layout { max-width: 920px; }
.article-cover {
    width: 100%;
    margin-bottom: 22px;
    border-radius: 18px;
    overflow: hidden;
}
.article-body {
    padding: 26px;
    line-height: 1.9;
}

.swiper { overflow: hidden; }
.swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.swiper-slide { min-width: 0; }
.reel-card iframe,
.reel-card video,
.hero-card img,
.article-cover,
.gallery-card img { border-radius: inherit; }

.site-footer {
    padding: 46px 0 0;
    background: var(--deep-footer);
    border-top: 3px solid var(--royal-maroon);
    color: var(--footer-link);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 24px;
    padding-bottom: 28px;
}
.site-footer h3,
.site-footer h4 { color: var(--warm-ivory); }
.site-footer h3 + p { color: var(--footer-link); }
.site-footer h3::after {
    content: "Luxury Beauty Studio";
    display: block;
    margin-top: 8px;
    color: var(--antique-gold);
    font-family: "Inter", "Poppins", Arial, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--footer-link);
}
.site-footer a { transition: color 0.3s ease; }
.site-footer a:hover { color: var(--antique-gold); }
.site-footer .btn-outline {
    background: var(--royal-maroon);
    color: var(--warm-ivory);
    border-color: var(--royal-maroon);
}
.site-footer .btn-outline:hover {
    background: var(--royal-maroon-hover);
    border-color: var(--royal-maroon-hover);
}
.footer-bottom {
    width: 100%;
    max-width: none;
    padding: 18px max(16px, calc((100vw - 1180px) / 2));
    background: var(--black);
    color: var(--copyright);
}
.footer-bottom p {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.scroll-top,
.whatsapp-float {
    position: fixed;
    right: 18px;
    z-index: 250;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    font-family: "Inter", "Poppins", Arial, sans-serif;
    font-weight: 800;
}
.scroll-top {
    bottom: 88px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    background: var(--antique-gold);
    color: var(--charcoal);
    border: 1px solid rgba(212, 175, 55, 0.50);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
.whatsapp-float {
    bottom: 22px;
    /* background: var(--royal-maroon); */
    color: var(--warm-ivory);
    border: 0;
}

.alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 14px;
}
.alert.success {
    background: rgba(212, 175, 55, 0.30);
    color: var(--charcoal);
}
.alert.error {
    background: rgba(139, 10, 30, 0.12);
    color: var(--royal-maroon);
}
.modal,
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.70);
    padding: 20px;
    z-index: 400;
}
.modal.active,
.lightbox.active { display: flex; }
.modal-dialog,
.lightbox-content {
    width: min(640px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: 28px;
    position: relative;
    background: var(--warm-ivory);
    color: var(--charcoal);
}
.modal-dialog h3 { color: var(--charcoal); }
.modal-close,
.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 2rem;
    color: var(--royal-maroon);
}
.lightbox-content img,
.lightbox-content iframe,
.lightbox-content video {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 18px;
}

[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}
.site-nav.open { animation: navDrop 0.35s ease; }
@keyframes floatSoft {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -14px, 0); }
}
@keyframes navDrop {
    from { opacity: 0; transform: translateY(-14px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1200px) {
    .container { width: min(1120px, calc(100% - 32px)); }
    .hero-grid {
        grid-template-columns: 1fr 0.9fr;
        gap: 28px;
    }
    .before-after-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .section { padding: 72px 0; }
    .nav-wrap { padding: 12px 14px; }
    .site-nav { gap: 16px; }
    .service-grid,
    .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-title { font-size: clamp(2.7rem, 7vw, 4.6rem); }
    .hero-card img { min-height: 460px; }
    .reel-card-media img { height: 380px; }
    .swiper-wrapper { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .portfolio-intro-grid,
    .services-hero-grid,
    .contact-hero-grid,
    .about-split { gap: 22px; }
}
@media (max-width: 980px) {
    .site-header { padding: 12px 0; }
    .nav-wrap {
        align-items: center;
        gap: 12px;
    }
    .nav-actions { margin-left: auto; }
    .nav-actions .btn { padding: 12px 18px; }
    .site-nav {
        position: fixed;
        inset: 84px 16px auto;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        padding: 16px;
        display: none;
        background: var(--deep-plum);
        border: 1px solid rgba(212, 175, 55, 0.40);
        border-radius: 24px;
        box-shadow: 0 18px 46px rgba(45, 27, 51, 0.22);
    }
    .site-nav.open { display: flex; }
    .site-nav a {
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(247, 244, 239, 0.06);
    }
    .menu-toggle { display: block; }
    .hero-grid,
    .about-split,
    .contact-grid,
    .footer-grid,
    .service-grid,
    .blog-grid,
    .gallery-grid,
    .before-after-grid { grid-template-columns: 1fr 1fr; }
    .masonry-grid { columns: 2 240px; }
    .journal-sidebar { position: static; }
    .form-grid,
    .booking-form .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
    .hero-grid,
    .about-split,
    .contact-grid,
    .services-hero-grid,
    .contact-hero-grid,
    .portfolio-intro-grid,
    .journal-layout { grid-template-columns: 1fr; }
    .hero-section {
        min-height: auto;
        padding: 30px 0 54px;
    }
    .hero-copy { order: 1; }
    .hero-visual { order: 2; }
    .floating-stat {
        right: 14px;
        bottom: 14px;
    }
}
@media (max-width: 720px) {
    .container { width: min(100% - 24px, 720px); }
    .section { padding: 56px 0; }
    .page-hero { padding: 54px 0 14px; }
    .hero-grid,
    .about-split,
    .contact-grid,
    .service-grid,
    .blog-grid,
    .gallery-grid,
    .before-after-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .nav-wrap { padding: 10px 12px; }
    .brand {
        gap: 10px;
        min-width: 0;
    }
    .brand-mark {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        flex-shrink: 0;
    }
    .brand-logo {
        height: 54px;
        max-width: 132px;
    }
    .brand-copy strong {
        font-size: 0.98rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 130px;
    }
    .brand-copy small { display: none; }
    .nav-actions { gap: 8px; }
    .nav-actions .btn {
        padding: 10px 14px;
        font-size: 0.84rem;
    }
    .site-nav { inset: 76px 12px auto; }
    .site-nav a { font-size: 0.95rem; }
    .hero-title {
        font-size: clamp(2.25rem, 11vw, 3.4rem);
        line-height: 1.02;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .btn,
    .hero-actions a { width: 100%; }
    .hero-card img { min-height: 340px; }
    .floating-stat {
        position: static;
        margin-top: 14px;
        text-align: center;
    }
    .reel-card iframe,
    .reel-card video,
    .reel-card-media img { height: 320px; }
    .swiper-wrapper { grid-template-columns: 1fr; }
    .card-body,
    .testimonial-card,
    .contact-panel,
    .article-body,
    .modal-dialog,
    .lightbox-content { padding: 20px; }
    .card-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    .filter-bar,
    .blog-search {
        padding: 14px;
        gap: 10px;
    }
    .pricing-toggle {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
    }
    .masonry-grid { columns: 1; }
    .map-embed iframe { min-height: 260px; }
    .scroll-top,
    .whatsapp-float {
        width: 48px;
        height: 48px;
        right: 12px;
    }
    .scroll-top { bottom: 74px; }
    .whatsapp-float { bottom: 16px; }

    .whatsapp-float img {
        width: 26px;
        height: 26px;
        object-fit: contain;
    }
    .page-services .service-card:nth-child(4n+1),
    .page-works .masonry-item:nth-child(3n+2),
    .page-blogs .blog-card:nth-child(odd) { transform: none; }
    .service-card:hover,
    .blog-card:hover,
    .gallery-card:hover,
    .testimonial-card:hover,
    .portfolio-note:hover,
    .contact-quick-card:hover,
    .services-hero-notes div:hover,
    .contact-panel:hover,
    .reel-card:hover { transform: none; }
}
@media (max-width: 540px) {
    .hero-section { padding-top: 22px; }
    .section-head h2,
    .page-hero h1 { font-size: clamp(1.9rem, 9vw, 2.7rem); }
    .eyebrow {
        letter-spacing: 0.16em;
        font-size: 0.68rem;
    }
    .footer-grid { gap: 18px; }
    .newsletter-form { gap: 10px; }
}
