/* ============================================================
   MARY NOVA MUA — style.css
   Dusty rose · champagne gold · deep plum
   The fanciest makeup artist website in the GTA. Period.
   ============================================================ */

:root {
    /* Rose / mauve accent (variable names kept as --sky* for simplicity) */
    --sky:         #B86A82;
    --sky-bright:  #D49AAB;
    --sky-mid:     #9B5169;
    --sky-dark:    #7C3E54;
    --sky-light:   #E0B6C2;
    --sky-pale:    #F5E6EB;
    --sky-mist:    #FBF3F6;
    /* Deep plum / aubergine (kept as --navy*) */
    --navy:        #2D1B2A;
    --navy-mid:    #43293E;
    --navy-soft:   #5A3A53;
    --gold:        #C8A04A;
    --gold-light:  #DDB96A;
    --gold-bright: #EBCF8A;
    --gold-pale:   #F5EAC8;
    --ivory:       #FAF6F4;
    --warm-white:  #FFFBF9;
    --text-dark:   #2A1E26;
    --text-mid:    #6E5560;
    --text-light:  #A88B97;
    --white:       #FFFFFF;

    --shadow-xs: 0 1px 6px rgba(45,27,42,0.06);
    --shadow-sm: 0 3px 16px rgba(45,27,42,0.09);
    --shadow-md: 0 10px 36px rgba(45,27,42,0.13);
    --shadow-lg: 0 24px 64px rgba(45,27,42,0.18);
    --shadow-xl: 0 40px 100px rgba(45,27,42,0.22);

    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1.0);
    --transition: all 0.4s var(--ease);

    --gold-gradient: linear-gradient(120deg, var(--gold) 0%, var(--gold-bright) 45%, var(--gold) 100%);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Jost', system-ui, sans-serif;
    color: var(--text-dark);
    background: var(--warm-white);
    overflow-x: hidden;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
::selection { background: var(--sky-light); color: var(--navy); }

/* ── Type scale ── */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.18;
}

.section-eyebrow {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sky-mid);
    margin-bottom: 0.8rem;
}
.section-eyebrow.light { color: var(--sky-light); }

.section-title {
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    color: var(--navy);
    margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-subtitle.light { color: rgba(255,255,255,0.75); }
.section-header { text-align: center; margin-bottom: 4rem; }

/* Decorative ornament under section titles */
.section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin: 0.5rem auto 1.4rem;
}
.section-ornament span {
    display: block;
    width: 54px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.section-ornament span:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}
.section-ornament i {
    font-size: 0.7rem;
    color: var(--gold);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 7rem 0; }

/* ── Buttons ── */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.1rem;
    border-radius: 50px;
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    overflow: hidden;
}
/* shine sweep */
.btn::after {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s var(--ease);
    pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn > * { position: relative; z-index: 1; }
.btn-primary {
    background: var(--sky);
    color: var(--white);
    border-color: var(--sky);
}
.btn-primary:hover {
    background: var(--sky-dark);
    border-color: var(--sky-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184,106,130,0.38);
}
.btn-outline {
    background: transparent;
    color: var(--sky-mid);
    border-color: currentColor;
}
.btn-outline:hover {
    background: var(--sky);
    color: var(--white);
    border-color: var(--sky);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--text-mid);
    border-color: rgba(184,106,130,0.3);
}
.btn-ghost:hover {
    background: var(--sky-pale);
    color: var(--sky-dark);
    border-color: var(--sky);
}
.btn-light {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    font-weight: 600;
}
.btn-light:hover {
    background: var(--gold-pale);
    border-color: var(--gold-pale);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,255,255,0.2);
}
.btn-light-solid {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    font-weight: 600;
}
.btn-light-solid:hover {
    background: var(--gold-pale);
    border-color: var(--gold-pale);
    transform: translateY(-2px);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 4000;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}
.preloader-monogram {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(12px);
    animation: preFade 0.9s var(--ease) 0.1s forwards;
}
.preloader-monogram .pm-amp { color: var(--gold-light); }
.preloader-name {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    opacity: 0;
    animation: preFade 0.9s var(--ease) 0.35s forwards;
}
.preloader-line {
    margin-top: 0.6rem;
    width: 0; height: 1px;
    background: var(--gold-gradient);
    animation: preLine 1.1s var(--ease) 0.6s forwards;
}
@keyframes preFade { to { opacity: 1; transform: none; } }
@keyframes preLine { to { width: 120px; } }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: var(--gold-gradient);
    z-index: 1100;
    transition: width 0.1s linear;
    box-shadow: 0 0 12px rgba(200,160,74,0.5);
}

/* ============================================================
   GRAIN TEXTURE
   ============================================================ */
.grain {
    position: fixed;
    inset: -50%;
    z-index: 3000;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   CUSTOM CURSOR GLOW
   ============================================================ */
.cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,106,130,0.12) 0%, transparent 65%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 800;
    opacity: 0;
    transition: opacity 0.4s ease;
    will-change: transform;
}
.cursor-glow.active { opacity: 1; }

/* ============================================================
   FLOATING BOOK BUTTON
   ============================================================ */
.float-book {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    background: var(--gold-gradient);
    background-size: 200% 100%;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.7rem;
    border-radius: 50px;
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 28px rgba(200,160,74,0.45);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: var(--transition), background-position 0.6s var(--ease);
}
.float-book.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.float-book:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(200,160,74,0.55);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.4rem 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255,251,249,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(45,27,42,0.08);
    padding: 0.75rem 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
    letter-spacing: 0.02em;
}
.navbar.scrolled .logo-name { color: var(--navy); }
.logo-title {
    font-family: 'Jost', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    transition: var(--transition);
}
.navbar.scrolled .logo-title { color: var(--sky-mid); }

.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-links a {
    font-family: 'Jost', sans-serif;
    font-size: 0.83rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.88);
    transition: var(--transition);
    position: relative;
}
.navbar.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1.5px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--sky-bright); }
.navbar.scrolled .nav-links a:hover { color: var(--sky-mid); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--sky) !important;
    color: var(--white) !important;
    padding: 0.52rem 1.3rem;
    border-radius: 50px;
    font-weight: 500 !important;
}
.nav-cta:hover { background: var(--sky-dark) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
    transform-origin: center;
}
.navbar.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-image-wrap { position: absolute; inset: 0; }
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.04);
    animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
    to { transform: scale(1); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(45,27,42,0.35) 0%,
            rgba(45,27,42,0.42) 50%,
            rgba(45,27,42,0.78) 100%
        );
}
/* thin gold frame inset */
.hero-frame {
    position: absolute;
    inset: 1.4rem;
    border: 1px solid rgba(221,185,106,0.4);
    z-index: 2;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 760px;
    padding: 0 2rem;
    will-change: transform;
}
.hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--sky-light);
    margin-bottom: 1.4rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 10vw, 7.5rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--white);
    text-shadow: 0 4px 40px rgba(0,0,0,0.7), 0 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
    line-height: 0.95;
}
.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.4rem;
}
.hero-ornament .ho-line {
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light));
}
.hero-ornament .ho-line:last-child {
    background: linear-gradient(90deg, var(--gold-light), transparent);
}
.hero-ornament i { color: var(--gold-light); font-size: 0.8rem; }
.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 3.2vw, 1.9rem);
    font-weight: 300;
    color: rgba(255,255,255,0.96);
    margin-bottom: 2.8rem;
    line-height: 1.5;
    text-shadow: 0 2px 16px rgba(0,0,0,0.65);
}
.hero-tagline em { font-style: italic; color: var(--sky-light); }
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.4rem;
}
.hero-scroll {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.55);
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 3;
    animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.55; }
    50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* Hero stagger */
.hero .fade-up { opacity: 0; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.hero .fade-up.visible { opacity: 1; transform: none; }
.hero .fade-up:nth-child(1) { transition-delay: 0.2s; }
.hero .fade-up:nth-child(2) { transition-delay: 0.45s; }
.hero .fade-up:nth-child(3) { transition-delay: 0.6s; }
.hero .fade-up:nth-child(4) { transition-delay: 0.75s; }
.hero .fade-up:nth-child(5) { transition-delay: 0.9s; }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
    background: var(--navy);
    overflow: hidden;
    padding: 0.95rem 0;
    border-top: 1px solid rgba(184,106,130,0.12);
    border-bottom: 1px solid rgba(184,106,130,0.12);
}
.marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: marqueeRoll 28s linear infinite;
}
.marquee-track span {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    padding: 0 2rem;
    white-space: nowrap;
}
.marquee-track .mdot {
    color: var(--gold) !important;
    padding: 0 0.2rem !important;
    letter-spacing: 0 !important;
    font-size: 0.6rem !important;
}
@keyframes marqueeRoll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--warm-white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5.5rem;
    align-items: center;
}
.about-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}
.about-img-frame img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}
.about-img-accent {
    position: absolute;
    top: -16px; left: -16px;
    right: 16px; bottom: 16px;
    border: 1.5px solid var(--gold-light);
    border-radius: var(--radius-lg);
    z-index: 0;
    opacity: 0.55;
}
.about-img-badge {
    position: absolute;
    bottom: 1.5rem; right: -1rem;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 0.9rem 1.4rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    z-index: 2;
}
.aib-num   { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; }
.aib-label { font-family: 'Jost', sans-serif; font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; margin-top: 0.2rem; }
.about-divider {
    width: 52px; height: 2px;
    background: linear-gradient(90deg, var(--sky), var(--gold));
    margin-bottom: 1.6rem;
}
.about-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 1.4rem;
    line-height: 1.52;
    border-left: 3px solid var(--gold-light);
    padding-left: 1.2rem;
}
.about-text-col p {
    color: var(--text-mid);
    margin-bottom: 1rem;
    font-size: 0.975rem;
    line-height: 1.78;
}
.about-stats {
    display: flex;
    gap: 2.5rem;
    margin: 2.2rem 0;
    padding: 1.6rem 0;
    border-top: 1px solid var(--sky-pale);
    border-bottom: 1px solid var(--sky-pale);
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--sky-mid);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.stat-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}
.about-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }

/* ============================================================
   PHILOSOPHY STRIP
   ============================================================ */
.philosophy-strip {
    background: var(--sky-mist);
    padding: 4rem 0;
    border-top: 1px solid var(--sky-pale);
    border-bottom: 1px solid var(--sky-pale);
}
.philosophy-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}
.phil-line {
    width: 80px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.phil-icon { color: var(--gold-light); font-size: 1.2rem; margin-bottom: 0.5rem; opacity: 0.6; }
.phil-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-style: italic;
    font-weight: 400;
    color: var(--navy);
    max-width: 680px;
    line-height: 1.55;
}
.phil-cite {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: var(--sky-mid);
    text-transform: uppercase;
    font-style: normal;
}

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

/* Featured bridal banner */
.sf-banner {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 2.8rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.sf-glow {
    position: absolute;
    top: -40%; right: -10%;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(200,160,74,0.18) 0%, transparent 65%);
    pointer-events: none;
}
.sf-left, .sf-right { position: relative; z-index: 1; }
.sf-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.9rem;
}
.sf-title {
    font-size: 1.9rem;
    color: var(--white);
    margin-bottom: 0.65rem;
}
.sf-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.68);
    margin-bottom: 1.25rem;
    max-width: 420px;
    line-height: 1.65;
}
.sf-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 2rem;
    list-style: none;
}
.sf-list li {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sf-list li i { color: var(--gold-light); font-size: 0.6rem; flex-shrink: 0; }
.sf-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
    flex-shrink: 0;
}
.sf-price {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    text-align: right;
}
.sf-price strong {
    display: block;
    font-size: 2.4rem;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.2rem;
}
.sf-price em { font-style: normal; font-size: 0.75rem; letter-spacing: 0.08em; }

/* Service rows */
.service-list {
    background: var(--white);
    border: 1px solid var(--sky-pale);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    margin-bottom: 1.5rem;
}
.service-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 2rem;
    padding: 1.4rem 2rem;
    border-bottom: 1px solid var(--sky-pale);
    transition: background 0.25s ease;
}
.service-row::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold-gradient);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s var(--ease);
}
.service-row:last-child { border-bottom: none; }
.service-row:hover { background: var(--sky-mist); }
.service-row:hover::before { transform: scaleY(1); }
.sr-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.22rem;
}
.sr-info p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}
.sr-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--sky-mid);
    font-weight: 600;
    white-space: nowrap;
}
.sr-cta {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--sky-mid);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    transition: var(--transition);
}
.sr-cta i { font-size: 0.6rem; transition: transform 0.3s ease; }
.sr-cta:hover { color: var(--gold); }
.sr-cta:hover i { transform: translateX(4px); }

.services-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.services-note i { color: var(--gold); }

/* Price menu (categorized) */
.price-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 1.4rem;
    margin-top: 1.4rem;
}
.price-group {
    background: var(--white);
    border: 1px solid var(--sky-pale);
    border-radius: var(--radius-md);
    padding: 1.8rem 1.9rem;
    box-shadow: var(--shadow-xs);
}
.price-group--addons { background: var(--sky-mist); }
.pg-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.15rem;
    color: var(--navy);
    padding-bottom: 0.9rem;
    margin-bottom: 0.6rem;
    border-bottom: 1px solid var(--sky-pale);
}
.pg-title i { color: var(--gold); font-size: 0.95rem; }
.price-line {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--sky-pale);
}
.price-group .price-line:last-child { border-bottom: none; padding-bottom: 0; }
.pl-name {
    color: var(--navy);
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.94rem;
}
.pl-name small {
    display: block;
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.76rem;
    margin-top: 0.18rem;
    line-height: 1.45;
}
.pl-name em { font-style: italic; color: var(--text-light); font-weight: 400; }
.pl-dots {
    flex: 1;
    min-width: 16px;
    border-bottom: 1.5px dotted var(--sky-light);
    position: relative;
    top: -0.32em;
}
.pl-price {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--sky-mid);
    white-space: nowrap;
}

/* Travel & policies */
.policy-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem 2rem;
    margin-top: 1.8rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 2.1rem 2.3rem;
}
.policy-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.policy-item i { color: var(--gold-light); font-size: 1.05rem; margin-top: 0.2rem; flex-shrink: 0; }
.policy-item strong {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 0.3rem;
}
.policy-item span { color: rgba(255,255,255,0.62); font-size: 0.8rem; line-height: 1.6; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio { background: var(--warm-white); }

.portfolio-filters {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-bottom: 3rem;
    border: 1.5px solid var(--sky-pale);
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}
.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-mid);
    padding: 0.6rem 1.75rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: var(--transition);
    border-right: 1.5px solid var(--sky-pale);
}
.filter-btn:last-child { border-right: none; }
.filter-btn:hover { background: var(--sky-mist); color: var(--sky-mid); }
.filter-btn.active {
    background: var(--navy);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}
.portfolio-item {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
    background: var(--sky-pale);
    border-radius: var(--radius-sm);
}
.portfolio-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.65s var(--ease);
}
.portfolio-item:hover img { transform: scale(1.06); }
/* gold frame on hover */
.portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0.7rem;
    border: 1px solid rgba(221,185,106,0.7);
    border-radius: var(--radius-xs);
    opacity: 0;
    transform: scale(1.04);
    transition: var(--transition);
    pointer-events: none;
    z-index: 2;
}
.portfolio-item:hover::after { opacity: 1; transform: scale(1); }
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(45,27,42,0.85) 0%,
        rgba(45,27,42,0.1) 50%,
        transparent 75%
    );
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-tag {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    flex: 1;
}
.portfolio-zoom {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.72rem;
    transition: var(--transition);
    flex-shrink: 0;
}
.portfolio-zoom:hover { background: var(--gold); border-color: var(--gold); }
.portfolio-item.hidden { display: none; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20,12,18,0.97);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img-wrap { text-align: center; padding: 1rem; }
.lightbox-img-wrap img {
    max-width: 88vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 80px rgba(0,0,0,0.6);
}
.lightbox-caption {
    color: rgba(255,255,255,0.45);
    font-size: 0.78rem;
    margin-top: 1rem;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; width: 46px; height: 46px; font-size: 1rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1rem; }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1rem; }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); border-color: var(--gold); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--warm-white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--sky-pale);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--gold-pale);
    position: absolute;
    top: 0.8rem;
    right: 1.5rem;
    pointer-events: none;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.1rem;
}
.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.72;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--sky-pale);
}
.author-name   { font-weight: 600; color: var(--navy); font-size: 0.88rem; }
.author-detail { font-size: 0.76rem; color: var(--text-light); }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram-section { background: var(--sky-mist); }
.instagram-section .section-header { margin-bottom: 2.5rem; }
.instagram-section .btn { margin-top: 1rem; }
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}
.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    display: block;
}
.instagram-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease);
}
.instagram-item:hover img { transform: scale(1.1); }
.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(155,81,105,0.62);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    opacity: 0;
    transition: var(--transition);
}
.instagram-item:hover .insta-overlay { opacity: 1; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--warm-white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5.5rem;
    align-items: start;
}
.contact-info .section-title { font-size: 2.2rem; }
.contact-info > p { color: var(--text-mid); margin-bottom: 2rem; line-height: 1.75; font-size: 0.975rem; }
.contact-details { margin-bottom: 2rem; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--sky-pale);
    font-size: 0.875rem;
    color: var(--text-mid);
}
.contact-item i { color: var(--gold); width: 18px; text-align: center; margin-top: 0.15rem; flex-shrink: 0; }
.contact-item a { color: var(--sky-mid); transition: var(--transition); }
.contact-item a:hover { color: var(--navy); }
.contact-social { display: flex; gap: 0.65rem; margin-top: 1.6rem; }
.social-link {
    width: 46px; height: 46px;
    background: var(--sky-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky-mid);
    font-size: 1.15rem;
    transition: var(--transition);
}
.social-link:hover { background: var(--sky); color: var(--white); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(184,106,130,0.35); }
.contact-form {
    background: var(--white);
    border: 1px solid var(--sky-pale);
    border-radius: var(--radius-lg);
    padding: 2.8rem;
    box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 0.48rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.05rem;
    border: 1.5px solid var(--sky-pale);
    border-radius: var(--radius-sm);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--warm-white);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sky);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(184,106,130,0.13);
}
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23B86A82' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 15px;
    padding-right: 2.6rem;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note {
    text-align: center;
    font-size: 0.77rem;
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.65);
    padding: 4.5rem 0 2rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}
.footer-logo {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.75; margin-bottom: 1.6rem; }
.footer-social { display: flex; gap: 0.65rem; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.footer-links h4, .footer-services h4, .footer-areas h4 {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.3rem;
}
.footer-links li, .footer-services li, .footer-areas li {
    font-size: 0.862rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.6rem;
}
.footer-links li a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links li a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.6rem;
    text-align: center;
}
.footer-bottom p { font-size: 0.78rem; margin-bottom: 0.2rem; }
.footer-seo { color: rgba(255,255,255,0.18) !important; font-size: 0.65rem !important; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--sky-pale);
    padding: 1.6rem 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.trust-item i {
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}
.trust-item strong {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}
.trust-item span {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.3;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.howit { background: var(--warm-white); }
.howit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.howit-step {
    position: relative;
    background: var(--white);
    border: 1px solid var(--sky-pale);
    border-radius: var(--radius-md);
    padding: 2.6rem 2rem 2.2rem;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    overflow: hidden;
}
.howit-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}
.howit-num {
    position: absolute;
    top: 0.6rem; right: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--sky-pale);
    line-height: 1;
    pointer-events: none;
}
.howit-icon {
    font-size: 1.6rem;
    color: var(--white);
    width: 62px; height: 62px;
    line-height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky) 0%, var(--sky-mid) 100%);
    box-shadow: 0 8px 22px rgba(184,106,130,0.35);
    margin-bottom: 1.3rem;
    display: inline-block;
}
.howit-step h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.7rem;
}
.howit-step p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
}
.howit-cta { text-align: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--sky-mist); }
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--sky-pale);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-sm);
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.6rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    transition: var(--transition);
}
.faq-q:hover { color: var(--sky-mid); }
.faq-q i {
    flex-shrink: 0;
    font-size: 0.8rem;
    color: var(--gold);
    transition: transform 0.35s var(--ease);
}
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}
.faq-a p {
    padding: 0 1.6rem 1.4rem;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ============================================================
   AVAILABILITY BADGE
   ============================================================ */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--sky-pale);
    color: var(--sky-dark);
    font-family: 'Jost', sans-serif;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.4rem;
}
.ab-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #3D9A70;
    box-shadow: 0 0 0 0 rgba(61,154,112,0.6);
    animation: abPulse 2s infinite;
}
@keyframes abPulse {
    0%   { box-shadow: 0 0 0 0 rgba(61,154,112,0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(61,154,112,0); }
    100% { box-shadow: 0 0 0 0 rgba(61,154,112,0); }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up, .fade-left, .fade-right {
    opacity: 0;
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up   { transform: translateY(28px); }
.fade-left { transform: translateX(-36px); }
.fade-right{ transform: translateX(36px); }
.fade-up.visible,
.fade-left.visible,
.fade-right.visible { opacity: 1; transform: translate(0); }

/* stagger grids */
.service-list .service-row:nth-child(2) { transition-delay: 0.06s; }
.service-list .service-row:nth-child(3) { transition-delay: 0.12s; }
.service-list .service-row:nth-child(4) { transition-delay: 0.18s; }
.service-list .service-row:nth-child(5) { transition-delay: 0.24s; }
.service-list .service-row:nth-child(6) { transition-delay: 0.3s; }
.portfolio-grid .portfolio-item:nth-child(2) { transition-delay: 0.05s; }
.portfolio-grid .portfolio-item:nth-child(3) { transition-delay: 0.1s; }
.portfolio-grid .portfolio-item:nth-child(4) { transition-delay: 0.15s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.12s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.24s; }
.trust-grid .trust-item:nth-child(2) { transition-delay: 0.08s; }
.trust-grid .trust-item:nth-child(3) { transition-delay: 0.16s; }
.trust-grid .trust-item:nth-child(4) { transition-delay: 0.24s; }
.howit-grid .howit-step:nth-child(2) { transition-delay: 0.12s; }
.howit-grid .howit-step:nth-child(3) { transition-delay: 0.24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1.5rem; }
    .howit-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .price-menu { grid-template-columns: 1fr; }
    .policy-box { grid-template-columns: 1fr; gap: 1.3rem; }
    .sf-banner { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .sf-right { flex-direction: row; align-items: center; }
    .sf-list { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .about-img-frame img { height: 440px; }
    .about-img-accent { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .section { padding: 4.5rem 0; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0; right: 0;
        width: 280px; height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.6rem;
        box-shadow: var(--shadow-xl);
        z-index: 1001;
    }
    .nav-links.open { display: flex; }
    .nav-links a { color: var(--text-dark) !important; font-size: 1rem; }
    .nav-cta { width: 100%; justify-content: center; background: var(--sky) !important; color: var(--white) !important; }
    .nav-toggle { display: flex; }
    .hero-frame { inset: 0.8rem; }
    .hero-name { font-size: clamp(3rem, 14vw, 5rem); }
    .hero-actions { flex-direction: column; align-items: center; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .service-row { grid-template-columns: 1fr auto; gap: 0.5rem 1rem; }
    .sr-price { grid-column: 2; }
    .sr-cta {
        grid-column: 2;
        justify-content: flex-end;
        background: var(--sky);
        color: var(--white);
        padding: 0.4rem 0.9rem;
        border-radius: 50px;
        font-size: 0.72rem;
    }
    .sr-cta:hover { color: var(--white); }
    .sf-banner { padding: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .float-book { bottom: 1.25rem; right: 1.25rem; padding: 0.7rem 1.2rem; }
    .cursor-glow { display: none; }
}
@media (max-width: 520px) {
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: 1fr; }
    .faq-q { font-size: 0.92rem; padding: 1.1rem 1.2rem; }
    .contact-form { padding: 1.5rem; }
    .about-stats { gap: 1.5rem; }
    .about-img-badge { right: 0.5rem; }
    .float-book span { display: none; }
    .float-book { padding: 0.85rem; border-radius: 50%; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade-up, .fade-left, .fade-right { opacity: 1 !important; transform: none !important; }
    .cursor-glow, .grain { display: none !important; }
}
