/* ============================================================
   FUSION BRUSHWORK — Brand Theme
   Primary:    #B03459  (rose-pink)
   Secondary:  #000000  (black body text)
   Background: #F8F8F8  (off-white)
   Accent bg:  #FFFFFF  (pure white cards)
   Ref:        designsbyprachi.com — clean, minimal, elegant
   ============================================================ */
:root {
    /* Palette */
    --primary:      #B03459;
    --primary-soft: rgba(176, 52, 89, 0.10);
    --primary-mid:  rgba(176, 52, 89, 0.22);
    --primary-dark: #8c2645;
    --primary-lite: #e8637e;

    /* Backgrounds */
    --bg:           #F8F8F8;
    --bg-soft:      #F2F2F2;
    --bg-card:      #FFFFFF;

    /* Text */
    --text:         #000000;
    --text-soft:    #1a1a1a;
    --muted:        #5c5c5c;
    --muted-lite:   #8a8a8a;
    --white:        #FFFFFF;

    /* Borders & Shadows */
    --border:       rgba(176, 52, 89, 0.14);
    --border-soft:  rgba(0, 0, 0, 0.07);
    --shadow:       0 8px 40px rgba(176, 52, 89, 0.10);
    --shadow-soft:  0 2px 16px rgba(0, 0, 0, 0.06);

    /* Legacy aliases — keep so PHP templates don't break */
    --gold:         #B03459;
    --gold-soft:    rgba(176, 52, 89, 0.10);
    --blush:        #fce8ed;

    /* Layout */
    --radius:       20px;
    --radius-sm:    12px;
    --container:    min(1180px, calc(100% - 32px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video, iframe { max-width: 100%; display: block; border: 0; }
button, input, textarea, select { font: inherit; }
textarea { resize: vertical; min-height: 140px; }
.page-loader {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    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 var(--primary-soft);
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.bg-orb {
    position: fixed;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: -1;
}
.orb-one { background: rgba(176, 52, 89, 0.08); top: -60px; left: -80px; }
.orb-two { background: rgba(176, 52, 89, 0.05); right: -100px; bottom: 8%; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 88px 0; }
.section-dark { background: #F2F2F2; }
.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; }
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold-soft), rgba(255,255,255,0.08));
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.brand-copy strong,
.brand-copy small { display: block; }
.brand-copy strong,
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
.brand-copy small {
    color: var(--muted);
    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(--muted); transition: color 0.3s ease; }
.site-nav a.active, .site-nav a:hover { color: var(--white); }
.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(--white);
    margin: 5px 0;
}
.btn {
    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;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
    background: linear-gradient(135deg, var(--primary-lite), var(--primary));
    color: #fff;
    box-shadow: 0 10px 24px rgba(176, 52, 89, 0.25);
}
.btn-gold:hover { box-shadow: 0 18px 30px rgba(176, 52, 89, 0.40); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.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; }
.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(--primary);
    font-size: 0.74rem;
    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(--muted); max-width: 60ch; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.hero-card { overflow: hidden; }
.hero-card img { min-height: 540px; object-fit: cover; }
.hero-visual { position: relative; }
.floating-stat { position: absolute; right: -20px; bottom: 24px; padding: 18px 20px; }
.floating-stat strong { display: block; color: var(--primary); 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 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: rgba(245, 230, 232, 0.08);
    color: var(--blush);
    font-size: 0.78rem;
    margin-bottom: 14px;
}
.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}
.card-meta strong { color: var(--primary); }
.testimonial-stack { display: grid; gap: 18px; }
.testimonial-card, .contact-panel, .article-body { padding: 26px; }
.before-after-grid { grid-template-columns: repeat(4, 1fr); }
.gallery-card { position: relative; }
.overlay, .overlay-label {
    position: absolute;
    inset: auto 0 0;
    padding: 18px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.82));
}
.reel-card { overflow: hidden; }
.reel-card iframe, .reel-card video { width: 100%; height: 440px; object-fit: cover; }
.reel-meta { padding: 16px 18px 20px; }
.page-hero { padding: 72px 0 24px; }
.filter-bar, .blog-search {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px;
    align-items: center;
    margin-bottom: 28px;
}
.filter-btn {
    background: rgba(255,255,255,0.04);
    color: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
}
.filter-btn.active { background: var(--gold); color: #111; }
.pricing-toggle { margin-left: auto; display: flex; align-items: center; gap: 8px; color: var(--muted); }
.masonry-grid { columns: 3 280px; column-gap: 24px; }
.masonry-item { break-inside: avoid; margin-bottom: 24px; overflow: hidden; }
.masonry-item img { width: 100%; height: auto; }
.lightbox-trigger, .lightbox-close, .modal-close { background: transparent; border: 0; color: var(--white); cursor: pointer; }
.blog-search input, .blog-search select, .newsletter-form input, .contact-form input, .contact-form textarea, .booking-form input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    color: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px 16px;
}
.newsletter-form, .contact-form, .booking-form { display: grid; gap: 14px; }
.form-grid { display: grid; gap: 14px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.map-embed iframe { width: 100%; min-height: 320px; border-radius: 20px; }
.article-layout { max-width: 920px; }
.article-cover { width: 100%; margin-bottom: 22px; border-radius: 24px; overflow: hidden; }
.article-body { line-height: 1.9; }
.site-footer { padding: 46px 0 28px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr; gap: 24px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; color: var(--muted); }
.footer-bottom { padding-top: 22px; color: var(--muted); }
.scroll-top, .whatsapp-float {
    position: fixed;
    right: 18px;
    z-index: 250;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.25);
    background: rgba(15,15,15,0.8);
    color: var(--white);
    backdrop-filter: blur(12px);
    cursor: pointer;
}
.scroll-top { bottom: 88px; opacity: 0; visibility: hidden; transition: 0.3s ease; }
.scroll-top.visible { opacity: 1; visibility: visible; }
.whatsapp-float { bottom: 22px; background: linear-gradient(135deg, #1ea952, #0aa03c); border: 0; }
.alert { padding: 14px 16px; border-radius: 16px; margin-bottom: 14px; }
.alert.success { background: rgba(46, 170, 91, 0.18); color: #b5f0c7; }
.alert.error { background: rgba(205, 71, 71, 0.18); color: #ffc3c3; }
.modal, .lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    padding: 20px;
    z-index: 400;
}
.modal.active, .lightbox.active { display: flex; }
.modal-dialog, .lightbox-content { width: min(640px, 100%); padding: 28px; position: relative; }
.modal-close, .lightbox-close { position: absolute; top: 18px; right: 18px; font-size: 2rem; }
@media (max-width: 980px) {
    .hero-grid, .about-split, .contact-grid, .footer-grid, .service-grid, .blog-grid, .gallery-grid, .before-after-grid { grid-template-columns: 1fr 1fr; }
    .site-nav {
        position: fixed;
        inset: 92px 16px auto;
        flex-direction: column;
        background: rgba(15,15,15,0.97);
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 18px;
        display: none;
    }
    .site-nav.open { display: flex; }
    .menu-toggle { display: block; }
}
@media (max-width: 720px) {
    .hero-grid, .about-split, .contact-grid, .service-grid, .blog-grid, .gallery-grid, .before-after-grid, .footer-grid { grid-template-columns: 1fr; }
    .brand-copy small { display: none; }
    .hero-card img { min-height: 380px; }
    .hero-title { font-size: 2.7rem; }
    .floating-stat { position: static; margin-top: 16px; }
    .reel-card iframe, .reel-card video { height: 340px; }
}

/* ── Brand color overrides ─────────────────────────────────
   Primary: #B03459 | Body: #000 | Background: #F8F8F8
   ───────────────────────────────────────────────────────── */

/* Header */
.site-header {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(248, 248, 248, 0.92);
    border-bottom: 1px solid var(--border-soft);
}

/* Nav */
.site-nav a { color: var(--muted); }
.site-nav a.active,
.site-nav a:hover { color: var(--primary); }

.menu-toggle span { background: var(--text); }

/* Headings */
h1, h2, h3, h4 { color: var(--text-soft); }
.brand-copy strong { color: var(--text-soft); }

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--primary-lite), var(--primary));
    color: #fff;
    box-shadow: 0 8px 24px rgba(176, 52, 89, 0.25);
}
.btn-gold:hover { box-shadow: 0 14px 32px rgba(176, 52, 89, 0.38); }

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

/* Muted text */
.hero-copy p,
.page-hero p,
.section-head p,
.site-footer ul,
.footer-bottom,
.brand-copy small { color: var(--muted); }

/* Section alternate */
.section-dark { background: var(--bg-soft); }

/* Pill tags */
.pill {
    background: var(--primary-soft);
    color: var(--primary);
}

/* Gallery overlays */
.overlay,
.overlay-label {
    background: linear-gradient(180deg, transparent, rgba(176, 52, 89, 0.85));
    color: #fff;
}

/* Filter buttons */
.filter-btn {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border-soft);
}
.filter-btn.active { background: var(--primary); color: #fff; }

/* Form inputs */
.blog-search input,
.blog-search select,
.newsletter-form input,
.contact-form input,
.contact-form textarea,
.booking-form input {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border-soft);
}
.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(--primary);
    outline-offset: 0;
    border-color: var(--primary);
}

/* Scroll-to-top */
.scroll-top {
    background: #fff;
    color: var(--primary);
    border-color: var(--border);
}

/* Modals */
.modal,
.lightbox { background: rgba(0, 0, 0, 0.55); }

.modal-close,
.lightbox-close { color: var(--primary); }

/* Footer */
.site-footer {
    border-top: 1px solid var(--border-soft);
    background: var(--bg-soft);
}

.page-home .hero-home {
    position: relative;
    padding-top: 60px;
}

.page-home .hero-home::before {
    content: "";
    position: absolute;
    inset: 40px 0 auto auto;
    width: 42%;
    height: 74%;
    background: linear-gradient(135deg, rgba(176, 52, 89, 0.07), rgba(176, 52, 89, 0.03));
    border-radius: 48px 0 0 48px;
    z-index: -1;
}

.home-services-section .section-head,
.home-journal-section .section-head {
    position: relative;
}

.home-story-band {
    background: linear-gradient(90deg, rgba(176, 52, 89, 0.04), rgba(176, 52, 89, 0.02));
}

.page-hero {
    padding: 88px 0 32px;
}

.page-services .services-hero {
    position: relative;
}

.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 {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.52);
}

.page-services .services-catalogue {
    background: var(--bg-soft);
}

.page-services .service-card:nth-child(4n+1) {
    transform: translateY(18px);
}

.page-services .service-card:nth-child(4n+2) {
    border-radius: 40px 18px 32px 18px;
}

.page-works .works-hero {
    background: transparent;
}

.portfolio-intro-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.portfolio-note {
    padding: 20px 22px;
}

.page-works .works-gallery-section {
    position: relative;
}

.page-works .masonry-item:nth-child(3n+2) {
    transform: translateY(24px);
}

.page-blogs .blogs-hero {
    text-align: center;
}

.journal-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: start;
}

.journal-sidebar {
    position: sticky;
    top: 120px;
    padding: 24px;
}

.journal-search {
    display: grid;
    margin-top: 18px;
}

.page-blogs .blog-card:nth-child(odd) {
    transform: translateY(18px);
}

.page-contact .contact-hero {
    background: transparent;
}

.contact-quick-card strong,
.services-hero-notes strong,
.portfolio-note strong {
    color: var(--primary);
}

.page-contact .contact-section {
    position: relative;
}

.contact-panel h2 {
    color: var(--primary);
}

@media (max-width: 980px) {
    .services-hero-grid,
    .contact-hero-grid,
    .journal-layout,
    .portfolio-intro-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        background: rgba(248, 248, 248, 0.98);
        border: 1px solid var(--border-soft);
    }
}

@media (max-width: 720px) {
    .page-home .hero-home::before {
        width: 100%;
        height: 44%;
        inset: auto 0 0 0;
        border-radius: 28px 28px 0 0;
    }

    .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;
    }
}

body {
    min-width: 320px;
}

body.modal-open {
    overflow: hidden;
}

[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

.brand,
.btn,
.service-card,
.blog-card,
.testimonial-card,
.gallery-card,
.masonry-item,
.portfolio-note,
.contact-quick-card,
.services-hero-notes div {
    transform-style: preserve-3d;
    will-change: transform;
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.42), transparent 80%);
    transform: translateX(-130%);
    transition: transform 0.7s ease;
}

.btn:hover::after {
    transform: translateX(130%);
}

.service-card,
.blog-card,
.gallery-card,
.testimonial-card,
.portfolio-note,
.contact-quick-card,
.services-hero-notes div,
.contact-panel,
.reel-card {
    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(176, 52, 89, 0.12);
    border-color: rgba(176, 52, 89, 0.22);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 150, 86, 0.42), transparent);
    opacity: 0.55;
}

.hero-visual::before,
.hero-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    animation: floatSoft 7s ease-in-out infinite;
}

.hero-visual::before {
    width: 130px;
    height: 130px;
    top: -22px;
    left: -24px;
    background: radial-gradient(circle, rgba(255, 210, 220, 0.85), rgba(255, 210, 220, 0));
}

.hero-visual::after {
    width: 180px;
    height: 180px;
    right: -36px;
    bottom: 36px;
    background: radial-gradient(circle, rgba(244, 221, 191, 0.75), rgba(244, 221, 191, 0));
    animation-delay: 1.5s;
}

.floating-stat {
    animation: floatSoft 5s ease-in-out infinite;
}

.service-card::before,
.blog-card::before,
.portfolio-note::before,
.contact-quick-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 209, 221, 0.15), rgba(199, 150, 86, 0.85), rgba(255, 209, 221, 0.15));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover::before,
.blog-card:hover::before,
.portfolio-note:hover::before,
.contact-quick-card:hover::before {
    opacity: 1;
}

.reel-card iframe,
.reel-card video,
.hero-card img,
.article-cover,
.gallery-card img {
    border-radius: inherit;
}

.swiper {
    overflow: hidden;
}

.swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.swiper-slide {
    min-width: 0;
}

.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: #fff;
    color: #B03459;
    border: 1px solid rgba(176, 52, 89, 0.25);
    box-shadow: 0 18px 40px rgba(176, 52, 89, 0.18);
    cursor: pointer;
}

.masonry-item button,
.gallery-card,
.service-card,
.blog-card,
.portfolio-note,
.contact-quick-card {
    width: 100%;
}

.site-nav.open {
    animation: navDrop 0.35s ease;
}

.lightbox-content img,
.lightbox-content iframe,
.lightbox-content video {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 20px;
}

.modal-dialog,
.lightbox-content {
    max-height: calc(100vh - 40px);
    overflow: auto;
}

.form-grid {
    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;
}

.services-hero-notes,
.contact-quick-cards,
.journal-sidebar,
.portfolio-note {
    position: relative;
    overflow: hidden;
}

.services-hero-notes::after,
.contact-quick-cards::after,
.journal-sidebar::after {
    content: "";
    position: absolute;
    inset: auto -50px -50px auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 217, 224, 0.7), rgba(255, 217, 224, 0));
    pointer-events: none;
}

@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 {
        inset: 84px 16px auto;
        gap: 10px;
        align-items: stretch;
        padding: 16px;
        box-shadow: 0 18px 46px rgba(176, 52, 89, 0.10);
    }

    .site-nav a {
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(255,255,255,0.64);
    }

    .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;
    }

    .page-home .hero-home::before {
        width: 100%;
        height: 46%;
        inset: auto 0 0 0;
        border-radius: 28px 28px 0 0;
    }
}

@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-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;
    }

    .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;
    }
}
