/*
 Theme Name:   Look Well Beauty Spa (Premium)
 Theme URI:    https://lookwellbeautyspa.in/
 Description:  A bespoke luxury theme for Look Well Beauty Spa. Blush Atelier aesthetic. Built by Webintellica.
 Author:       Webintellica
 Author URI:   https://webintellica.in/
 Version:      3.0.0
 Text Domain:  lookwell-premium
*/

/* ==========================================================================
   1. DESIGN SYSTEM — BLUSH ATELIER PALETTE
   ========================================================================== */
:root {
    /* Pink-first colour palette (Vibrant & Hot) */
    --clr-bg:          #FDF8F6;
    --clr-blush:       #FFF0F5;
    --clr-rose:        #E8336D;
    --clr-rose-deep:   #C01955;
    --clr-rose-light:  #FFC1D8;
    --clr-champagne:   #EDD9B8;
    --clr-ink:         #2B2B2B;
    --clr-muted:       #8A7A7E;
    --clr-dark:        #1A0D10;
    --clr-white:       #FFFFFF;

    /* Typography */
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', 'Jost', system-ui, sans-serif;

    /* Spacing */
    --sp-xs:  0.4rem;
    --sp-sm:  1rem;
    --sp-md:  2rem;
    --sp-lg:  4.5rem;
    --sp-xl:  9rem;

    /* Transitions */
    --ease:   cubic-bezier(0.165, 0.84, 0.44, 1);
    --ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    background-color: var(--clr-bg);
    color: var(--clr-ink);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: url('assets/cursor-pink.svg') 5 5, auto;
    overflow-x: hidden;
    /* Sticky footer layout */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.site-main {
    flex: 1; /* Pushes footer to the bottom */
}
a, button, [role="button"], label, input[type="submit"], .btn {
    cursor: url('assets/cursor-pink.svg') 5 5, pointer;
}

/* Sparkle trail particles */
.cursor-sparkle {
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    animation: sparkle-rise 0.75s ease-out forwards;
    transform: translate(-50%, -50%);
    font-style: normal;
    line-height: 1;
    user-select: none;
    will-change: transform, opacity;
}
@keyframes sparkle-rise {
    0%   { opacity: 0.95; transform: translate(-50%, -50%) scale(1)   rotate(0deg); }
    60%  { opacity: 0.6;  transform: translate(-50%, calc(-50% - 18px)) scale(0.7) rotate(20deg); }
    100% { opacity: 0;    transform: translate(-50%, calc(-50% - 36px)) scale(0.2) rotate(45deg); }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
ul { list-style: none; }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(3rem, 7vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 4.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.5rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); }

.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clr-rose);
    margin-bottom: var(--sp-sm);
}

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.container        { max-width: 1280px; margin: 0 auto; padding: 0 var(--sp-md); }
.container--narrow{ max-width: 820px;  margin: 0 auto; padding: 0 var(--sp-md); }
section { padding: var(--sp-lg) 0; }

/* Rose shimmer divider */
.rose-divider {
    width: 56px; height: 1.5px;
    background: linear-gradient(90deg, var(--clr-rose), var(--clr-rose-light));
    margin: var(--sp-md) auto;
    border: none;
    display: block;
}
.rose-divider--left { margin-left: 0; }

/* ==========================================================================
   5. KEYFRAME ANIMATIONS
   ========================================================================== */

/* Hero heading word reveal */
/* ==========================================================================
   5b. LOADING SCREEN
   ========================================================================== */
#loading-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--clr-blush);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-sm);
    transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
#loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}
.loader-logo {
    margin-bottom: 10px;
}
.loader-logo svg {
    animation: heart-beat 0.7s ease-in-out infinite;
    transform-origin: center center;
    filter: drop-shadow(0 4px 12px rgba(216,139,162,0.4));
}
.loader-wordmark {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--clr-ink);
    letter-spacing: 0.08em;
    opacity: 0.7;
    font-style: italic;
}
.loader-tagline {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--clr-muted);
}
@keyframes heart-beat {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.25); opacity: 0.8; }
}

@keyframes word-reveal {
    from { opacity: 0; transform: translateY(40px) skewY(4deg); }
    to   { opacity: 1; transform: translateY(0)   skewY(0deg); }
}

/* Floating hearts */
@keyframes heart-float {
    0%   { transform: translateY(0)   rotate(-10deg) scale(1);    opacity: 0.6; }
    50%  { transform: translateY(-60px) rotate(5deg)  scale(1.1); opacity: 0.3; }
    100% { transform: translateY(-120px) rotate(-8deg) scale(0.9); opacity: 0; }
}
@keyframes heart-float-slow {
    0%   { transform: translateY(0)    rotate(8deg)  scale(1);   opacity: 0.5; }
    50%  { transform: translateY(-80px) rotate(-5deg) scale(1.2); opacity: 0.25; }
    100% { transform: translateY(-160px) rotate(10deg) scale(0.8); opacity: 0; }
}
@keyframes heart-pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.15); }
}

/* Shimmer overlay animation */
@keyframes shimmer-sweep {
    from { background-position: -200% center; }
    to   { background-position: 200% center; }
}

/* Fade-up reveal */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Marquee */
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Sparkle twinkle */
@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50%       { opacity: 1;   transform: scale(1.2); }
}

/* ==========================================================================
   6. SCROLL REVEAL UTILITY
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ==========================================================================
   7. FLOATING HEARTS — DECORATIVE
   ========================================================================== */
.hearts-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.heart {
    position: absolute;
    bottom: 0;
    color: var(--clr-rose-light);
    animation: heart-float 6s ease-in infinite;
    opacity: 0;
}
.heart svg { display: block; }

.heart--1 { left: 8%;  animation-duration: 7s;  animation-delay: 0s;   width: 18px; }
.heart--2 { left: 22%; animation-duration: 9s;  animation-delay: 1.5s; width: 12px; }
.heart--3 { left: 55%; animation-duration: 6s;  animation-delay: 3s;   width: 22px; animation-name: heart-float-slow; }
.heart--4 { left: 72%; animation-duration: 8s;  animation-delay: 0.8s; width: 14px; }
.heart--5 { left: 88%; animation-duration: 10s; animation-delay: 2s;   width: 10px; }

/* Static decorative hearts (section accents) */
.heart-accent {
    display: inline-block;
    color: var(--clr-rose);
    animation: heart-pulse 2s ease-in-out infinite;
    font-size: 1rem;
    vertical-align: middle;
    margin: 0 0.3rem;
}

/* ==========================================================================
   8. BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all 0.35s var(--ease);
    position: relative;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(216,139,162,0.25); }
.btn:active { transform: translateY(0); }

.btn--rose    { background: var(--clr-rose);      color: var(--clr-white);    border-color: var(--clr-rose); }
.btn--rose:hover { background: var(--clr-rose-deep); border-color: var(--clr-rose-deep); }

.btn--ghost   { background: transparent; color: var(--clr-ink);   border-color: var(--clr-ink); }
.btn--ghost:hover { background: var(--clr-ink); color: var(--clr-white); }

.btn--ghost-light { background: transparent; color: var(--clr-white); border-color: rgba(255,255,255,0.6); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.15); border-color: var(--clr-white); }

.btn--dark    { background: var(--clr-dark);  color: var(--clr-white);    border-color: var(--clr-dark); }
.btn--dark:hover { background: var(--clr-rose); border-color: var(--clr-rose); }

/* ==========================================================================
   9. NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(253, 248, 246, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
    border-color: rgba(216, 139, 162, 0.25);
    box-shadow: 0 2px 40px rgba(43, 43, 43, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    padding: 0 var(--sp-md);
    max-width: 1280px;
    margin: 0 auto;
}

/* Logo — bigger! */
.site-logo {
    display: flex;
    align-items: center;
    z-index: 100;
}
.logo-link {
    display: inline-block;
    line-height: 0;
}
.header-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s var(--ease);
}
.header-logo-img:hover {
    transform: scale(1.05);
}

/* Primary nav links */
.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.main-navigation ul li a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-muted);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s var(--ease);
}
.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: var(--clr-rose);
    transition: width 0.3s var(--ease);
}
.main-navigation ul li a:hover { color: var(--clr-rose); }
.main-navigation ul li a:hover::after { width: 100%; }

/* Mobile hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    z-index: 1100;
}
.menu-toggle span {
    display: block;
    width: 26px; height: 1.5px;
    background: var(--clr-ink);
    transition: all 0.35s var(--ease);
    transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile nav drawer */
.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 88px; left: 0;
    width: 100%; height: calc(100vh - 88px);
    background: var(--clr-blush);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-md);
    padding: var(--sp-lg) var(--sp-md);
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.mobile-nav-drawer.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.mobile-nav-drawer a {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--clr-ink);
    font-style: italic;
    letter-spacing: -0.01em;
    transition: color 0.3s var(--ease);
}
.mobile-nav-drawer a:hover { color: var(--clr-rose); }

/* ==========================================================================
   10. HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 55% 45%;
    position: relative;
    padding-top: 88px;
    overflow: hidden;
}

/* Background image layer */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(253, 248, 246, 0.97) 0%,
        rgba(249, 238, 240, 0.88) 40%,
        rgba(216, 139, 162, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-xl) var(--sp-lg) var(--sp-xl) var(--sp-md);
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: var(--sp-md);
    animation: fade-up 0.8s var(--ease) 0.2s both;
}
.hero-eyebrow::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--clr-rose);
    display: block;
    flex-shrink: 0;
}

.hero-title {
    margin-bottom: var(--sp-md);
    animation: word-reveal 1s var(--ease) 0.4s both;
}
.hero-title em { font-style: italic; color: var(--clr-rose); }

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--clr-muted);
    max-width: 420px;
    margin-bottom: var(--sp-lg);
    line-height: 1.8;
    animation: fade-up 0.8s var(--ease) 0.6s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    flex-wrap: wrap;
    animation: fade-up 0.8s var(--ease) 0.8s both;
}

.hero-scroll {
    margin-top: auto;
    padding-top: var(--sp-lg);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-muted);
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    animation: fade-up 0.8s var(--ease) 1s both;
}
.hero-scroll::after {
    content: '';
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--clr-rose), transparent);
}

/* Hero visual (right panel image) */
.hero-visual {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    animation: fade-up 1.2s var(--ease) 0.3s both;
}
.hero-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(249,238,240,0) 60%, rgba(253,248,246,0.5) 100%);
}

/* Rating badges (hero) */
.hero-badge {
    position: absolute;
    background: var(--clr-white);
    padding: 1rem 1.5rem;
    box-shadow: 0 12px 40px rgba(216,139,162,0.25);
    border-left: 3px solid var(--clr-rose);
    z-index: 3;
}
.hero-badge--1 {
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    animation: fade-up 1s var(--ease) 1.2s both;
    white-space: nowrap;
}
.hero-badge--2 {
    bottom: calc(30% - 90px);
    left: 50%;
    transform: translateX(-50%);
    animation: fade-up 1s var(--ease) 1.4s both;
    white-space: nowrap;
    border-left-color: var(--clr-champagne);
}
.hero-badge .badge-rating {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--clr-ink);
    line-height: 1;
}
.hero-badge .badge-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clr-muted);
    margin-top: 3px;
}


/* ==========================================================================
   11. MARQUEE TICKER
   ========================================================================== */
.marquee-strip {
    background: var(--clr-rose);
    padding: 0.85rem 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: inline-flex;
    gap: 2.5rem;
    animation: marquee-scroll 20s linear infinite;
}
.marquee-item {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.marquee-heart {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

/* ==========================================================================
   12. SERVICES — IMAGE CARD LAYOUT
   ========================================================================== */
.services-section { background: var(--clr-bg); }

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--sp-lg);
}
.services-header h2 { color: var(--clr-ink); margin-bottom: var(--sp-sm); }
.services-header p { color: var(--clr-muted); line-height: 1.7; }

.services-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-sm);
    margin-bottom: var(--sp-lg);
}

.service-card {
    position: relative;
    overflow: hidden;
    height: 480px;
    cursor: pointer;
}
.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s var(--ease);
}
.service-card:hover .service-card-img { transform: scale(1.06); }

/* Default dim overlay */
.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(26, 13, 16, 0.85) 0%,
        rgba(26, 13, 16, 0.2) 50%,
        transparent 100%
    );
    transition: background 0.5s var(--ease);
}

/* Pink slide-up overlay on hover */
.service-card-hover {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(216, 139, 162, 0.95);
    padding: var(--sp-md);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card-hover { transform: translateY(0); }
.service-card:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(189, 111, 135, 0.4) 0%, transparent 60%);
}

.service-card-heart {
    position: absolute;
    top: var(--sp-sm);
    right: var(--sp-sm);
    color: var(--clr-rose-light);
    font-size: 1.2rem;
    opacity: 0.8;
    z-index: 2;
    transition: transform 0.3s var(--ease-bounce), opacity 0.3s;
}
.service-card:hover .service-card-heart {
    transform: scale(1.3);
    opacity: 1;
}

.service-card-title-base {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: var(--sp-md);
    z-index: 2;
    transition: opacity 0.3s var(--ease);
}
.service-card:hover .service-card-title-base { opacity: 0; }

.service-card-title-base h3 {
    color: var(--clr-white);
    font-size: 1.8rem;
    font-style: italic;
}
.service-card-title-base .eyebrow { color: var(--clr-rose-light); margin-bottom: var(--sp-xs); }

.service-card-hover h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--clr-white);
    margin-bottom: var(--sp-sm);
    font-style: italic;
}
.service-hover-list { display: flex; flex-direction: column; gap: 0.4rem; }
.service-hover-list li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.service-hover-list li::before {
    content: '♥';
    color: rgba(255,255,255,0.6);
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* Text-column services fallback (below the image grid) */
.services-text-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(216,139,162,0.15);
    border: 1px solid rgba(216,139,162,0.15);
    margin-top: var(--sp-sm);
}
.service-text-col {
    background: var(--clr-bg);
    padding: var(--sp-md);
}
.service-text-col h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--clr-ink);
    margin-bottom: var(--sp-sm);
}
.service-text-list { display: flex; flex-direction: column; gap: 0.55rem; }
.service-text-list li {
    font-size: 0.9rem;
    color: var(--clr-muted);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--clr-blush);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s var(--ease);
}
.service-text-list li:last-child { border-bottom: none; }
.service-text-list li::before { content: '♥'; color: var(--clr-rose-light); font-size: 0.6rem; flex-shrink: 0; }
.service-text-list li:hover { color: var(--clr-rose); }

/* ==========================================================================
   13. ABOUT SECTION
   ========================================================================== */
.about-section {
    background: var(--clr-dark);
    color: var(--clr-bg);
    position: relative;
    overflow: hidden;
}

/* Big decorative heart watermark */
.about-heart-watermark {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28rem;
    color: rgba(216, 139, 162, 0.04);
    line-height: 1;
    pointer-events: none;
    font-family: serif;
    user-select: none;
}

/* Sparkle dots */
.sparkle {
    position: absolute;
    border-radius: 50%;
    background: var(--clr-rose-light);
    pointer-events: none;
}
.sparkle--1 { width: 4px; height: 4px; top: 20%; left: 15%; animation: twinkle 2s ease-in-out infinite; }
.sparkle--2 { width: 3px; height: 3px; top: 60%; left: 8%;  animation: twinkle 3s ease-in-out infinite 0.5s; }
.sparkle--3 { width: 5px; height: 5px; top: 35%; left: 90%; animation: twinkle 2.5s ease-in-out infinite 1s; }
.sparkle--4 { width: 3px; height: 3px; top: 75%; left: 80%; animation: twinkle 2s ease-in-out infinite 1.5s; }

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content h2 { color: var(--clr-bg); margin-bottom: var(--sp-md); }
.about-content h2 em { font-style: italic; color: var(--clr-rose); }
.about-content p { color: rgba(253,248,246,0.65); max-width: 460px; margin-bottom: var(--sp-md); line-height: 1.8; }

.about-stats {
    display: flex;
    gap: var(--sp-lg);
    margin-top: var(--sp-lg);
    padding-top: var(--sp-md);
    border-top: 1px solid rgba(216,139,162,0.2);
}
.stat-number { font-family: var(--font-serif); font-size: 3.5rem; color: var(--clr-rose); line-height: 1; display: block; }
.stat-label  { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(253,248,246,0.35); margin-top: 4px; display: block; }

.about-visual {
    position: relative;
    height: 520px;
}

/* Owner portrait — fills the visual column */
.about-owner-photo {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.about-owner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: none;
    transition: transform 0.8s var(--ease);
}
.about-owner-photo:hover img { transform: scale(1.04); }

/* Floating stat card over the photo */
.about-owner-stat {
    position: absolute;
    bottom: var(--sp-md);
    left: var(--sp-md);
    background: rgba(26, 13, 16, 0.85);
    backdrop-filter: blur(12px);
    border-left: 3px solid var(--clr-rose);
    padding: var(--sp-sm) var(--sp-md);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.about-owner-stat .stat-number { font-family: var(--font-serif); font-size: 2.2rem; color: var(--clr-rose); line-height: 1; display: block; }
.about-owner-stat .stat-label  { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(253,248,246,0.5); display: block; }


/* ==========================================================================
   14. BRIDAL PACKAGES
   ========================================================================== */
.bridal-section {
    position: relative;
    overflow: hidden;
    background: var(--clr-blush);
}

.bridal-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.bridal-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto var(--sp-lg);
    position: relative;
    z-index: 1;
}
.bridal-header h2 { color: var(--clr-ink); margin-bottom: var(--sp-sm); }

.bridal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-md);
    align-items: stretch; /* equal height! */
    position: relative;
    z-index: 1;
}

.bridal-card {
    background: var(--clr-white);
    padding: var(--sp-md) var(--sp-md) var(--sp-lg);
    position: relative;
    border-top: 3px solid var(--clr-rose-light);
    transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s var(--ease);
    /* Equal height — flex column keeps button pinned to bottom */
    display: flex;
    flex-direction: column;
}
.bridal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(216,139,162,0.2);
}
.bridal-card--featured {
    background: var(--clr-rose);
    border-top-color: var(--clr-rose-deep);
    transform: scale(1.04);
}
.bridal-card--featured:hover {
    transform: scale(1.04) translateY(-10px);
    box-shadow: 0 40px 80px rgba(189,111,135,0.35);
}

.bridal-tier-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--clr-rose-deep);
    color: var(--clr-white);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 4px 18px;
}
.bridal-card--featured .bridal-tier-badge { background: var(--clr-dark); }

.bridal-card-header {
    text-align: center;
    padding-top: var(--sp-sm);
    margin-bottom: var(--sp-md);
    padding-bottom: var(--sp-md);
    border-bottom: 1px solid rgba(216,139,162,0.15);
}
.bridal-card--featured .bridal-card-header { border-color: rgba(255,255,255,0.2); }
.bridal-card-header h3 { font-size: 2.5rem; font-style: italic; }
.bridal-card--featured .bridal-card-header h3 { color: var(--clr-white); }
.bridal-card-header .card-heart { color: var(--clr-rose); font-size: 1.4rem; margin: 0.3rem 0; }
.bridal-card--featured .bridal-card-header .card-heart { color: rgba(255,255,255,0.7); }
.bridal-card-header p { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--clr-muted); }
.bridal-card--featured .bridal-card-header p { color: rgba(255,255,255,0.5); }

.bridal-features { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: var(--sp-md); }
.bridal-features li {
    display: flex; align-items: flex-start; gap: 0.6rem;
    font-size: 0.9rem; color: var(--clr-muted); line-height: 1.4;
}
.bridal-features li::before { content: '♥'; color: var(--clr-rose); font-size: 0.7rem; flex-shrink: 0; margin-top: 3px; }
.bridal-card--featured .bridal-features li { color: rgba(255,255,255,0.85); }
.bridal-card--featured .bridal-features li::before { color: rgba(255,255,255,0.5); }

.bridal-card .btn { width: 100%; justify-content: center; }

/* ==========================================================================
   15. REVIEWS
   ========================================================================== */
.reviews-section { background: var(--clr-bg); }

.reviews-header { text-align: center; margin-bottom: var(--sp-lg); }
.reviews-header h2 { margin-bottom: var(--sp-sm); }

.rating-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-sm);
    padding: var(--sp-xs) var(--sp-md);
    background: var(--clr-blush);
    border: 1px solid var(--clr-rose-light);
    margin: var(--sp-sm) auto var(--sp-md);
}
.rating-pill .stars { color: var(--clr-rose); font-size: 1rem; letter-spacing: 2px; }
.rating-pill .score { font-family: var(--font-serif); font-size: 1.6rem; color: var(--clr-ink); }
.rating-pill .count { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clr-muted); }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: var(--sp-md); }

.review-card {
    background: var(--clr-white);
    padding: var(--sp-md) var(--sp-md) var(--sp-lg);
    border-bottom: 3px solid var(--clr-rose);
    position: relative;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(216,139,162,0.15); }

.review-quote { font-family: var(--font-serif); font-size: 4.5rem; color: var(--clr-rose-light); line-height: 0.8; margin-bottom: var(--sp-xs); }
.review-text { font-size: 0.95rem; color: var(--clr-muted); line-height: 1.7; font-style: italic; margin-bottom: var(--sp-md); }

.review-author { display: flex; align-items: center; gap: var(--sp-sm); }
.review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--clr-blush);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--clr-rose);
    flex-shrink: 0;
}
.review-author-name { font-weight: 600; font-size: 0.88rem; }
.review-author-name .heart-sm { color: var(--clr-rose); font-size: 0.7rem; margin-left: 4px; }
.review-author-label { font-size: 0.75rem; color: var(--clr-muted); }

/* ==========================================================================
   16. CTA SECTION
   ========================================================================== */
.cta-section {
    background: var(--clr-dark);
    text-align: center;
    padding: var(--sp-xl) var(--sp-md);
    position: relative;
    overflow: hidden;
}

/* Concentric circle decorations */
.cta-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border: 1px solid rgba(216,139,162,0.08);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    width: 1000px; height: 1000px;
    border: 1px solid rgba(216,139,162,0.04);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-inner { position: relative; z-index: 2; }
.cta-section .eyebrow { color: var(--clr-rose); margin-bottom: var(--sp-sm); }
.cta-section h2 { color: var(--clr-white); max-width: 680px; margin: 0 auto var(--sp-sm); }
.cta-section h2 em { font-style: italic; color: var(--clr-rose); }
.cta-section p { color: rgba(253,248,246,0.5); margin-bottom: var(--sp-lg); max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: var(--sp-md); flex-wrap: wrap; }

/* ==========================================================================
   17. FOOTER
   ========================================================================== */
.site-footer {
    background: var(--clr-dark);
    color: rgba(253,248,246,0.55);
    border-top: 1px solid rgba(216,139,162,0.15);
}

.footer-main {
    padding: var(--sp-lg) 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--sp-xl);
}

/* Logo in footer — DO NOT invert to black, keep colour */
.footer-brand .custom-logo-link img,
.footer-brand img.custom-logo {
    max-height: 60px !important;
    width: auto;
    margin-bottom: var(--sp-md);
    filter: none;
    opacity: 1;
}
.footer-brand p { font-size: 0.9rem; max-width: 280px; line-height: 1.7; }

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-rose);
    margin-bottom: var(--sp-md);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(253,248,246,0.5); transition: color 0.3s var(--ease); }
.footer-col ul li a:hover { color: var(--clr-rose); }

.footer-contact { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.88rem; margin-bottom: var(--sp-sm); }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--clr-rose); }
.footer-contact a { color: rgba(253,248,246,0.5); transition: color 0.3s var(--ease); }
.footer-contact a:hover { color: var(--clr-rose); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: var(--sp-md) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.76rem;
    color: rgba(253,248,246,0.3);
}
.footer-bottom a { color: var(--clr-rose); transition: opacity 0.3s; }
.footer-bottom a:hover { opacity: 0.7; }
.footer-attribution { display: flex; align-items: center; gap: 0.4rem; }

/* ==========================================================================
   18. MOBILE OPTIMISATION — FULL RESPONSIVE PASS
   ========================================================================== */
@media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-visual { height: 400px; }
    .hero-visual-img { object-position: center 20%; }
    .hero-content { padding: var(--sp-lg) var(--sp-md); }
    .about-inner { grid-template-columns: 1fr; gap: var(--sp-lg); }
    .about-visual { height: 280px; grid-template-rows: auto auto; }
    .services-image-grid { grid-template-columns: 1fr 1fr; }
    .service-card:last-child { display: none; } /* hide 3rd on tablet */
    .footer-main { grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
}

@media (max-width: 768px) {
    :root { --sp-lg: 3rem; --sp-xl: 5rem; }

    /* Nav */
    .main-navigation { display: none !important; }
    .header-cta { display: none; }
    .menu-toggle { display: flex; }

    /* Hero */
    .hero { padding-top: 88px; }
    .hero-visual { display: none; }
    .hero-content { padding: var(--sp-lg) var(--sp-md); }
    .hero-subtitle { max-width: 100%; }

    /* Services — stack */
    .services-image-grid { grid-template-columns: 1fr; }
    .service-card { height: 350px; }
    .service-card:last-child { display: block; }
    .services-text-grid { grid-template-columns: 1fr; }

    /* Bridal — stack */
    .bridal-grid { grid-template-columns: 1fr; }
    .bridal-card--featured { transform: none; }
    .bridal-card--featured:hover { transform: translateY(-10px); }

    /* About */
    .about-heart-watermark { display: none; }
    .about-visual { height: auto; grid-template-rows: auto; }

    /* Footer */
    .footer-main { grid-template-columns: 1fr; gap: var(--sp-md); }
    .footer-bottom { flex-direction: column; gap: var(--sp-sm); text-align: center; }

    /* Floating hearts — reduce for perf */
    .heart--3, .heart--4, .heart--5 { display: none; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: var(--sp-sm); }
    .cta-actions { flex-direction: column; align-items: center; }
    .about-stats { flex-wrap: wrap; gap: var(--sp-md); }
    .hearts-field { display: none; }
}

/* ==========================================================================
   19. PAGE TEMPLATE & COOKIE POPUP
   ========================================================================== */
.page-header {
    padding: 140px 0 80px;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: var(--clr-white);
}
.page-header-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(145deg, rgba(26,13,16,0.85) 0%, rgba(189,111,135,0.75) 100%);
}
.page-header-content {
    position: relative;
    z-index: 2;
}
.page-title {
    font-size: 3.5rem;
    color: var(--clr-white);
    margin-bottom: var(--sp-sm);
}
.page-header-divider {
    width: 60px;
    height: 3px;
    background: var(--clr-champagne);
    margin: 0 auto;
}
.page-content-section {
    background: var(--clr-bg);
}
.user-formatted-content {
    color: var(--clr-ink);
    font-size: 1.1rem;
    line-height: 1.8;
}
.user-formatted-content h2, .user-formatted-content h3 {
    font-family: var(--font-serif);
    color: var(--clr-rose);
    margin-top: 2em;
    margin-bottom: 0.5em;
}
.user-formatted-content p {
    margin-bottom: 1.5em;
    color: var(--clr-muted);
}
.user-formatted-content ul {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
    list-style: disc;
    color: var(--clr-muted);
}
.user-formatted-content li { margin-bottom: 0.5em; }

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: var(--sp-md);
    left: var(--sp-md);
    max-width: 360px;
    background: var(--clr-white);
    padding: var(--sp-md);
    border-top: 3px solid var(--clr-rose);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    z-index: 9999;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.6s var(--ease-bounce), opacity 0.6s var(--ease);
}
.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}
.cookie-popup-content p {
    font-size: 0.85rem;
    color: var(--clr-muted);
    margin-bottom: var(--sp-sm);
    line-height: 1.5;
}
.cookie-popup-actions {
    display: flex;
    gap: var(--sp-xs);
}
.cookie-popup-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    flex: 1;
    text-align: center;
    justify-content: center;
}
@media (max-width: 480px) {
    .cookie-popup { right: var(--sp-md); max-width: none; bottom: 90px; } /* pushed up for chatbot */
    .whatsapp-chatbot { bottom: 20px; right: 20px; padding: 6px; }
    .chatbot-text { display: none; }
    .chatbot-avatar { margin-right: 0; width: 56px; height: 56px; }
}

/* WhatsApp Chat Bot Widget */
.whatsapp-chatbot {
    position: fixed;
    bottom: var(--sp-md);
    right: var(--sp-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--clr-blush), var(--clr-rose));
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(216,139,162,0.4);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.whatsapp-chatbot:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(216,139,162,0.5);
}
.chatbot-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}
.chatbot-avatar svg {
    animation: heart-beat 1.5s ease-in-out infinite;
}
@keyframes chat-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Subtle background SVG art */
.bg-svg-art {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}
.bg-sparkle {
    position: absolute;
    animation: slow-spin-scale linear infinite;
}
.bg-sparkle--1 { width: 140px; top: 15%; left: 8%; animation-duration: 25s; }
.bg-sparkle--2 { width: 220px; top: 60%; right: -60px; animation-duration: 35s; animation-direction: reverse; }
.bg-sparkle--3 { width: 90px; bottom: 12%; left: 22%; animation-duration: 20s; }

@keyframes slow-spin-scale {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.15); }
    100% { transform: rotate(360deg) scale(1); }
}
