/* ===================================
   AMOY SPA — Premium Beauty Salon
   Complete Design System & Styles
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ---------- Custom Properties ---------- */
:root {
    --color-bg: #FFFAF7;
    --color-bg-alt: #F5EDE8;
    --color-bg-card: #F3ECE7;
    --color-bg-dark: #2D2A26;
    --color-text: #2D2A26;
    --color-text-light: #6B645C;
    --color-text-muted: #9B9590;
    --color-white: #FFFFFF;
    --color-accent: #D4919A;
    --color-accent-light: #F5C6CB;
    --color-accent-dark: #B8747D;
    --color-gold: #C9A96E;
    --color-border: rgba(45, 42, 38, 0.1);

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --section-padding: 120px;
    --container-width: 1200px;
    --container-padding: 24px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-soft: 0 4px 20px rgba(45, 42, 38, 0.06);
    --shadow-medium: 0 8px 40px rgba(45, 42, 38, 0.1);
    --shadow-strong: 0 16px 60px rgba(45, 42, 38, 0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 50%;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---------- Ambient Bloom Backgrounds ---------- */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,198,203,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul, ol { list-style: none; }

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ---------- Page Loader ---------- */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loader-logo {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text);
    animation: pulse-loader 1.5s ease-in-out infinite;
}

@keyframes pulse-loader {
    0%, 100% { opacity: 0.4; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}

/* ---------- Utilities ---------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
    display: inline-block;
}

.section-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.15;
}

.section-heading--lg {
    font-size: clamp(36px, 5vw, 56px);
}

.section-heading--md {
    font-size: clamp(28px, 4vw, 44px);
}

.section-subtext {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 560px;
}

/* ---------- Buttons (Claymorphism + Bloom) ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 16px 36px;
    border-radius: 50px;
    transition: all var(--transition-medium);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    /* Claymorphism */
    box-shadow:
        -4px -4px 10px rgba(255, 255, 255, 0.6),
        4px 4px 12px rgba(45, 42, 38, 0.1),
        inset -1px -1px 4px rgba(255, 255, 255, 0.35),
        inset 1px 1px 4px rgba(45, 42, 38, 0.04);
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform var(--transition-medium);
}

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

.btn-primary {
    background: var(--color-bg-dark);
    color: var(--color-white);
    box-shadow:
        -4px -4px 10px rgba(255, 255, 255, 0.15),
        4px 4px 14px rgba(0, 0, 0, 0.25),
        inset -1px -1px 3px rgba(255, 255, 255, 0.08),
        inset 1px 1px 3px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: #1a1816;
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        -4px -4px 10px rgba(255, 255, 255, 0.15),
        6px 8px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(212, 145, 154, 0.15);
}

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

.btn-secondary:hover {
    background: var(--color-text);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow:
        -4px -4px 10px rgba(255, 255, 255, 0.3),
        4px 4px 14px rgba(184, 116, 125, 0.25),
        inset -1px -1px 3px rgba(255, 255, 255, 0.2),
        inset 1px 1px 3px rgba(184, 116, 125, 0.15);
}

.btn-accent:hover {
    background: var(--color-accent-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        -4px -4px 10px rgba(255, 255, 255, 0.3),
        6px 8px 24px rgba(212, 145, 154, 0.45),
        0 0 40px rgba(245, 198, 203, 0.3);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-text);
    box-shadow:
        -4px -4px 10px rgba(255, 255, 255, 0.8),
        4px 4px 12px rgba(45, 42, 38, 0.08),
        inset -1px -1px 4px rgba(255, 255, 255, 0.9),
        inset 1px 1px 4px rgba(45, 42, 38, 0.04);
}

.btn-white:hover {
    background: var(--color-white);
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        -4px -4px 10px rgba(255, 255, 255, 0.8),
        6px 8px 24px rgba(45, 42, 38, 0.14),
        0 0 30px rgba(255, 255, 255, 0.4);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.link-arrow:hover {
    gap: 14px;
    color: var(--color-accent-dark);
}

.link-arrow svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.link-arrow:hover svg {
    transform: translateX(4px);
}

/* ===================================
   NAVIGATION — Exact Glassmorphism Pill
   =================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.main-nav.scrolled {
    /* no additional bg — pill handles it */
}

.nav-pill {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 860px;
    border-radius: 999px;
    padding: 0.55rem 0.55rem 0.55rem 1.6rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav.scrolled .nav-pill::before {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    flex-shrink: 0;
    text-decoration: none;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 400;
    z-index: 1001;
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--color-text);
    position: relative;
    padding: 0.25rem 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link.active {
    opacity: 1;
}

.nav-link-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-dark);
    color: var(--color-white) !important;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-cta::after { display: none; }

.nav-link-cta:hover {
    background: #1a1816;
    transform: scale(1.03);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    cursor: pointer;
    padding: 5px;
    border: none;
    background: none;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: var(--color-bg);
}

/* Hero bloom glows */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,198,203,0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 3;
}

.hero-content {
    position: relative;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--color-text);
    margin-bottom: 28px;
}

.hero-heading em {
    font-style: italic;
    color: var(--color-accent-dark);
}

.hero-subtext {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: var(--container-padding);
    display: flex;
    align-items: center;
    gap: 12px;
    writing-mode: vertical-rl;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    z-index: 5;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: var(--color-text-muted);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    width: 420px;
    height: 520px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    transform: rotate(-12deg);
}

.hero-image-frame img {
    width: 115%;
    height: 115%;
    object-fit: cover;
    object-position: center top;
    transform: rotate(12deg) scale(1.1);
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: -7.5% 0 0 -7.5%;
}

.hero-image-frame:hover img {
    transform: rotate(12deg) scale(1.18);
}

.hero-image-ring {
    position: absolute;
    inset: -16px;
    border: 1.5px solid var(--color-accent-light);
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
    transform: rotate(-12deg);
}

/* ===================================
   FLOATING PETALS
   =================================== */
.petals-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    overflow: visible;
}

.petal {
    position: absolute;
    pointer-events: none;
    will-change: transform;
    z-index: 100;
}

.petal-shape {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(248, 208, 212, 0.65) 0%,
        rgba(232, 160, 168, 0.45) 40%,
        rgba(240, 180, 185, 0.55) 100%
    );
    border-radius: 0 50% 50% 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow:
        0 8px 32px rgba(245, 198, 203, 0.35),
        inset 0 -2px 6px rgba(255, 255, 255, 0.4),
        inset 0 2px 4px rgba(232, 160, 168, 0.2);
}

/* Petal 1 — large, top-left hero area */
.petal-1 {
    width: 60px; height: 72px;
    top: 6%; left: 22%;
    animation: petal-float-1 12s ease-in-out infinite;
}

/* Petal 2 — medium-large, top area */
.petal-2 {
    width: 48px; height: 58px;
    top: 12%; left: 42%;
    animation: petal-float-2 10s ease-in-out infinite 2s;
}

/* Petal 3 — large, left side mid */
.petal-3 {
    width: 54px; height: 66px;
    top: 50%; left: 5%;
    animation: petal-float-3 14s ease-in-out infinite 1s;
}

/* Petal 4 — medium, upper left */
.petal-4 {
    width: 42px; height: 52px;
    top: 3%; left: 10%;
    animation: petal-float-1 11s ease-in-out infinite 3s;
}

/* Petal 5 — small-medium accent */
.petal-5 {
    width: 36px; height: 44px;
    top: 35%; left: 2%;
    animation: petal-float-2 13s ease-in-out infinite 4s;
}

/* Petal 6 — medium, mid-left */
.petal-6 {
    width: 44px; height: 54px;
    bottom: 25%; left: 15%;
    animation: petal-float-3 15s ease-in-out infinite 2.5s;
}

@keyframes petal-float-1 {
    0%   { transform: translate(0, 0) rotate(0deg); }
    25%  { transform: translate(30px, 40px) rotate(45deg); }
    50%  { transform: translate(-20px, 80px) rotate(120deg); }
    75%  { transform: translate(15px, 40px) rotate(200deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes petal-float-2 {
    0%   { transform: translate(0, 0) rotate(0deg); }
    25%  { transform: translate(-25px, 50px) rotate(-60deg); }
    50%  { transform: translate(20px, 90px) rotate(-150deg); }
    75%  { transform: translate(-10px, 50px) rotate(-240deg); }
    100% { transform: translate(0, 0) rotate(-360deg); }
}

@keyframes petal-float-3 {
    0%   { transform: translate(0, 0) rotate(30deg); }
    33%  { transform: translate(40px, 60px) rotate(100deg); }
    66%  { transform: translate(-30px, 30px) rotate(220deg); }
    100% { transform: translate(0, 0) rotate(390deg); }
}

/* ===================================
   WELCOME SECTION
   =================================== */
.welcome {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Bloom background glow */
.welcome::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,198,203,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.welcome-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 480px;
    position: relative;
    box-shadow:
        0 24px 60px rgba(45, 42, 38, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: url('../images/welcome-bg.png') center / cover no-repeat, var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.welcome-image {
    display: none;
}

.welcome-image img {
    display: none;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 64px;
    max-width: 520px;
    background: linear-gradient(90deg, rgba(255,250,247,0) 0%, rgba(255,250,247,0.75) 25%, rgba(255,250,247,0.92) 100%);
}

.welcome-heading {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.welcome-text {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.welcome-divider {
    width: 60px;
    height: 2px;
    background: var(--color-accent-light);
    border-radius: 2px;
}

.welcome-petal {
    position: absolute;
    bottom: 30px;
    right: 40px;
    width: 60px;
    height: 72px;
    pointer-events: none;
    z-index: 10;
    animation: petal-float-2 8s ease-in-out infinite;
}

/* ===================================
   SERVICES PREVIEW SECTION
   =================================== */
.services-preview {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Services bloom */
.services-preview::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,198,203,0.09) 0%, transparent 70%);
    pointer-events: none;
}

.services-preview::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.services-preview-header {
    margin-bottom: 64px;
}

.services-preview-heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    font-style: italic;
    margin-bottom: 16px;
}

.services-preview-text {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 500px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.service-card {
    text-align: center;
    cursor: pointer;
}

.service-card-image {
    width: 260px;
    height: 260px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto 28px;
    position: relative;
    border: 3px solid rgba(245, 198, 203, 0.3);
    transition: all var(--transition-medium);
    box-shadow: 0 4px 20px rgba(212, 145, 154, 0.1);
}

.service-card:hover .service-card-image {
    border-color: var(--color-accent-light);
    transform: translateY(-8px);
    box-shadow:
        0 16px 48px rgba(212, 145, 154, 0.25),
        0 0 30px rgba(245, 198, 203, 0.15);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--color-bg-dark);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-fast);
}

.service-card:hover .service-card-title {
    gap: 14px;
}

.service-card-title svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.service-card:hover .service-card-title svg {
    transform: translateX(4px);
}

/* ===================================
   EXPERIENCE / STATS SECTION
   =================================== */
.experience {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, #EDE5DF 50%, var(--color-bg-alt) 100%);
    color: var(--color-text);
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 145, 154, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.experience::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.experience-content {
    max-width: 480px;
}

.experience-label {
    color: var(--color-accent);
}

.experience-heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-text);
    font-style: italic;
}

.experience-text {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(44px, 5vw, 60px);
    font-weight: 700;
    font-style: normal;

    color: #E8899A;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-shadow:
        0 0 8px rgba(232, 137, 154, 0.25),
        0 0 20px rgba(232, 137, 154, 0.15);
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    font-weight: 500;
}

.experience-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 520px;
    box-shadow:
        0 24px 60px rgba(45, 42, 38, 0.12),
        0 0 30px rgba(212, 145, 154, 0.08);
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.experience-image:hover img {
    transform: scale(1.04);
}

/* ===================================
   TESTIMONIALS — Redesigned
   =================================== */
.testimonials {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--color-bg-alt);
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,198,203,0.1) 0%, transparent 65%);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 72px;
}

.testimonials-heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 700;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px 36px;
    position: relative;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(45, 42, 38, 0.06);
    box-shadow: 0 4px 20px rgba(45, 42, 38, 0.04);
    overflow: hidden;
    opacity: 0.72;
    filter: blur(0.3px);
    transform: scale(0.97);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-light), var(--color-accent), var(--color-gold));
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.testimonial-card:hover {
    transform: scale(1.04) translateY(-10px);
    box-shadow:
        0 24px 60px rgba(45, 42, 38, 0.14),
        0 0 40px rgba(212, 145, 154, 0.12);
    border-color: transparent;
    opacity: 1;
    filter: blur(0px);
    z-index: 2;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 64px;
    color: var(--color-accent-light);
    line-height: 0.8;
    margin-bottom: 16px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    font-style: normal;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--color-accent-light);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--color-gold);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: var(--section-padding) 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(184, 116, 125, 0.35),
        0 0 80px rgba(245, 198, 203, 0.2);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 20px;
}

.cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 16px;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===================================
   PAGE HEROES (Inner Pages)
   =================================== */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 24px 80px;
    background: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 145, 154, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-hero-subtitle {
    font-size: 17px;
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-story {
    padding: var(--section-padding) 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 540px;
    position: relative;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-content h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-story-content p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Values */
.about-values {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.about-values-header {
    text-align: center;
    margin-bottom: 64px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 44px 32px;
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid var(--color-border);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-white);
    fill: none;
    stroke-width: 2;
}

.value-card h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Team */
.about-team {
    padding: var(--section-padding) 0;
}

.about-team-header {
    text-align: center;
    margin-bottom: 64px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

.team-card-image {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-full);
    margin: 0 auto 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg-alt), var(--color-accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
    border: 3px solid transparent;
}

.team-card:hover .team-card-image {
    border-color: var(--color-accent-light);
    transform: scale(1.05);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-initials {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--color-accent-dark);
    opacity: 0.6;
}

.team-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-card span {
    font-size: 13px;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
}

/* ===================================
   SERVICES PAGE
   =================================== */
.services-full {
    padding: var(--section-padding) 0;
}

.services-category {
    margin-bottom: 80px;
}

.services-category:last-child {
    margin-bottom: 0;
}

.services-category-header {
    margin-bottom: 40px;
}

.services-category-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    cursor: pointer;
}

.service-item:hover {
    border-color: var(--color-accent-light);
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
}

.service-item-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.service-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item-content h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-item-content p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-item-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent-dark);
}

.service-item-duration {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* Pricing Cards */
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 48px 36px;
    text-align: center;
    transition: all var(--transition-medium);
    border: 1.5px solid var(--color-border);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--color-accent);
    transform: scale(1.04);
    box-shadow: var(--shadow-strong);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 20px;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
    border-color: var(--color-accent-light);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent-dark);
    margin-bottom: 4px;
}

.pricing-card .price span {
    font-size: 16px;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

.pricing-card .pricing-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-light);
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-accent);
    flex-shrink: 0;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
}

.contact-info-card:hover {
    border-color: var(--color-accent-light);
    box-shadow: var(--shadow-soft);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-accent);
    fill: none;
    stroke-width: 2;
}

.contact-info-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-info-text p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-hours {
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    padding: 32px;
}

.contact-hours h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    color: var(--color-text-light);
}

.hours-row span:last-child {
    font-weight: 600;
}

/* Contact Form */
.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(212, 145, 154, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239B9590' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-submit {
    margin-top: 8px;
}

/* Map placeholder */
.contact-map {
    margin-top: 80px;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--color-border);
}

.contact-map-placeholder {
    text-align: center;
    color: var(--color-text-muted);
}

.contact-map-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--color-accent-light);
    margin-bottom: 12px;
}

.contact-map-placeholder p {
    font-size: 14px;
}

/* ===================================
   BOOKING PAGE
   =================================== */
.booking-section {
    padding: var(--section-padding) 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.booking-form-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.booking-form-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.booking-form-card > p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.booking-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 36px;
}

.booking-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    flex: 1;
}

.booking-step.active {
    color: var(--color-text);
}

.booking-step-number {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.booking-step.active .booking-step-number {
    background: var(--color-accent);
    color: var(--color-white);
}

.booking-step.completed .booking-step-number {
    background: var(--color-bg-dark);
    color: var(--color-white);
}

.booking-step-line {
    flex: 1;
    height: 2px;
    background: var(--color-border);
    margin: 0 8px;
}

/* Service selection grid */
.service-select-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.service-select-option {
    padding: 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
}

.service-select-option:hover {
    border-color: var(--color-accent-light);
    background: rgba(245, 198, 203, 0.06);
}

.service-select-option.selected {
    border-color: var(--color-accent);
    background: rgba(245, 198, 203, 0.1);
}

.service-select-option input {
    display: none;
}

.service-select-option h5 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.service-select-option span {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* Booking sidebar */
.booking-sidebar {
    position: sticky;
    top: 120px;
}

.booking-info-card {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 24px;
}

.booking-info-card h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.booking-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.booking-info-item:last-child {
    border-bottom: none;
}

.booking-info-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.booking-info-item h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.booking-info-item p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===================================
   FOOTER
   =================================== */
.main-footer {
    background: var(--color-bg-dark);
    color: var(--color-white);
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-grid-nav {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    display: inline-block;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--color-white);
}

.footer-links-col h4,
.footer-contact h4,
.footer-social-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    transition: all var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--color-white);
    padding-left: 6px;
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ===================================
   FOOTER BRAND SECTION (Hero-colored)
   =================================== */
.footer-brand-section {
    position: relative;
    background: var(--color-bg);
    padding: 36px 0 28px;
    overflow: hidden;
}

/* Hero-like background blooms */
.footer-brand-section::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,198,203,0.14) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.footer-brand-section::after {
    content: '';
    position: absolute;
    bottom: -60%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.footer-petals {
    z-index: 1;
}

.footer-petals .petal-1 {
    width: 28px; height: 34px;
    top: 8%; left: 6%;
    animation: petal-float-1 14s ease-in-out infinite;
}

.footer-petals .petal-2 {
    width: 24px; height: 28px;
    top: 15%; right: 12%; left: auto;
    animation: petal-float-2 12s ease-in-out infinite 1s;
}

.footer-petals .petal-3 {
    width: 26px; height: 32px;
    bottom: 12%; left: 20%;
    top: auto;
    animation: petal-float-3 16s ease-in-out infinite 2s;
}

.footer-petals .petal-4 {
    width: 20px; height: 24px;
    bottom: 18%; right: 6%; left: auto;
    top: auto;
    animation: petal-float-1 13s ease-in-out infinite 3s;
}

.footer-petals .petal-5 {
    width: 30px; height: 36px;
    top: 5%; right: 35%; left: auto;
    animation: petal-float-2 15s ease-in-out infinite 0.5s;
}

.footer-petals .petal-6 {
    width: 22px; height: 26px;
    top: 50%; left: 2%;
    animation: petal-float-3 11s ease-in-out infinite 4s;
}

.footer-petals .petal-7 {
    width: 24px; height: 30px;
    bottom: 8%; right: 25%; left: auto;
    top: auto;
    animation: petal-float-1 17s ease-in-out infinite 2s;
}

.footer-brand-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-brand-left {
    flex: 1;
    min-width: 0;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
}

.footer-brand-name .text-accent {
    font-style: italic;
    color: var(--color-accent-dark);
    -webkit-text-fill-color: var(--color-accent-dark);
}

.footer-brand-bio {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 10px;
    max-width: 380px;
}

.footer-brand-copyright {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

.footer-brand-right {
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
}

.footer-brand-address {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.footer-address-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-address-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-accent);
    flex-shrink: 0;
}

.footer-address-item p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.4;
}

.footer-contact-link {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.4;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact-link:hover {
    color: var(--color-accent-dark);
}

/* ===================================
   SCROLL REVEAL ANIMATIONS
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================
   RESPONSIVE
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-heading {
        font-size: clamp(40px, 6vw, 64px);
    }

    .hero-image-frame {
        width: 340px;
        height: 420px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .experience-grid {
        gap: 48px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-grid-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand-content {
        gap: 30px;
    }

    .footer-brand-name {
        font-size: clamp(24px, 3vw, 36px);
    }

    .about-story-grid {
        gap: 48px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        position: static;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
        --container-padding: 20px;
    }

    /* Navigation mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        transition: right var(--transition-medium);
        z-index: 1000;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
    }

    .nav-link-cta {
        font-size: 16px;
        padding: 14px 32px;
    }

    /* Hero mobile */
    .hero {
        padding: 140px 0 60px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtext {
        margin: 0 auto 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-image-frame {
        width: 260px;
        height: 320px;
    }

    .hero-scroll {
        display: none;
    }

    .petal-3, .petal-5 {
        display: none;
    }

    /* Welcome mobile */
    .welcome-card {
        grid-template-columns: 1fr;
    }

    .welcome-image {
        padding: 30px;
    }

    .welcome-image img {
        max-height: 300px;
    }

    .welcome-content {
        padding: 20px 30px 40px;
    }

    /* Services mobile */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .service-card-image {
        width: 140px;
        height: 140px;
    }

    /* Experience mobile */
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-image {
        height: 320px;
    }

    /* Testimonials mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid .testimonial-card:last-child {
        max-width: none;
    }

    /* CTA mobile */
    .cta-card {
        padding: 48px 28px;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-grid-nav {
        grid-template-columns: 1fr 1fr !important;
    }

    .footer-brand-content {
        flex-direction: column;
        gap: 32px;
    }

    .footer-brand-left {
        text-align: center;
        max-width: 100%;
    }

    .footer-brand-bio {
        max-width: 100%;
    }

    .footer-brand-right {
        width: 100%;
    }

    .footer-brand-address {
        align-items: flex-start;
    }

    /* About page mobile */
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-story-image {
        height: 320px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .team-card-image {
        width: 120px;
        height: 120px;
    }

    /* Contact mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 280px;
    }

    /* Pricing mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* Booking mobile */
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .booking-form-card {
        padding: 32px 24px;
    }

    .service-select-grid {
        grid-template-columns: 1fr;
    }

    .booking-steps {
        flex-wrap: wrap;
    }

    .booking-step-line {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-heading {
        font-size: 40px;
    }

    .hero-image-frame {
        width: 220px;
        height: 270px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .service-card-image {
        width: 110px;
        height: 110px;
    }

    .stat-number {
        font-size: 36px;
    }

    .cta-heading {
        font-size: 28px;
    }
}

/* ===================================
   PREMIUM ENHANCEMENTS — 10/10
   God-mode visual layer
   =================================== */

/* --- Animated Film Grain Texture --- */
.grain {
    position: fixed;
    inset: -200%;
    width: 400%;
    height: 400%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%28a%29)'/%3E%3C/svg%3E");
    background-size: 200px;
    opacity: 0.028;
    pointer-events: none;
    z-index: 9990;
    animation: grain-shift 8s steps(10) infinite;
}

@keyframes grain-shift {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

/* --- Animated Gradient Ring (Hero Image) --- */
.hero-image-ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: none !important;
    background: conic-gradient(
        from 0deg,
        rgba(245,198,203,0.6),
        rgba(232,160,168,0.15),
        rgba(201,169,110,0.45),
        rgba(245,198,203,0.1),
        rgba(232,160,168,0.5),
        rgba(201,169,110,0.15),
        rgba(245,198,203,0.6)
    );
    opacity: 1 !important;
    pointer-events: none;
    animation: spin-ring 10s linear infinite;
    z-index: -1;
    filter: blur(1px);
}

@keyframes spin-ring {
    to { transform: rotate(360deg); }
}

/* --- Organic Morphing Blobs --- */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    will-change: transform, border-radius;
    z-index: 0;
}

.hero-blob-1 {
    width: 450px;
    height: 450px;
    top: -12%;
    left: -8%;
    background: rgba(245, 198, 203, 0.18);
    animation: blob-morph-1 18s ease-in-out infinite;
}

.hero-blob-2 {
    width: 350px;
    height: 350px;
    bottom: 5%;
    right: 8%;
    background: rgba(201, 169, 110, 0.1);
    animation: blob-morph-2 22s ease-in-out infinite 3s;
}

.hero-blob-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 35%;
    background: rgba(212, 145, 154, 0.08);
    animation: blob-morph-1 15s ease-in-out infinite 6s;
}

@keyframes blob-morph-1 {
    0%, 100% { transform: translate(0, 0) scale(1); border-radius: 50%; }
    25% { transform: translate(40px, 25px) scale(1.12); border-radius: 42% 58% 65% 35% / 45% 55% 45% 55%; }
    50% { transform: translate(-25px, 50px) scale(0.95); border-radius: 60% 40% 35% 65% / 55% 45% 60% 40%; }
    75% { transform: translate(20px, -15px) scale(1.08); border-radius: 35% 65% 50% 50% / 40% 60% 35% 65%; }
}

@keyframes blob-morph-2 {
    0%, 100% { transform: translate(0, 0) scale(1); border-radius: 50%; }
    33% { transform: translate(-30px, 35px) scale(1.1); border-radius: 55% 45% 40% 60% / 50% 50% 55% 45%; }
    66% { transform: translate(25px, -20px) scale(0.9); border-radius: 40% 60% 55% 45% / 60% 40% 45% 55%; }
}

/* --- Marquee Ticker Section --- */
.marquee-section {
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid rgba(45, 42, 38, 0.06);
    border-bottom: 1px solid rgba(45, 42, 38, 0.06);
    background: linear-gradient(180deg, rgba(245,237,232,0.4) 0%, var(--color-bg) 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 40px;
    white-space: nowrap;
}

.marquee-text {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.marquee-track:hover .marquee-text {
    color: var(--color-text-light);
}

.marquee-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent-light);
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Gallery / Instagram Section --- */
.gallery-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,198,203,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}

.gallery-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 240px 240px;
    gap: 12px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(45,42,38,0.4) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Bento-style spans */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-item:nth-child(3) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 1; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-column: span 1; }

/* --- Wave / Curved Section Divider --- */
.wave-divider {
    width: 100%;
    line-height: 0;
    margin-top: -1px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

.wave-divider-flip {
    transform: rotate(180deg);
    margin-bottom: -1px;
    margin-top: 0;
}

/* --- Gradient Text Utility --- */
.gradient-text {
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent-dark) 50%, var(--color-text) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* --- Enhanced Hero Heading --- */
.hero-heading .text-accent {
    display: inline;
    font-style: italic;
    color: var(--color-accent-dark);
    -webkit-text-fill-color: var(--color-accent-dark);
}

/* --- Floating Badge / Particle --- */
.hero-floating-badge {
    position: absolute;
    bottom: 30%;
    right: -10%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow:
        0 8px 32px rgba(45,42,38,0.08),
        0 0 20px rgba(245,198,203,0.1);
    animation: float-badge 6s ease-in-out infinite;
    z-index: 5;
}

.hero-floating-badge .badge-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-floating-badge .badge-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.hero-floating-badge .badge-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.hero-floating-badge .badge-text span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--color-text-muted);
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- Enhanced Stat Counter Glow --- */
.stat-number {
    text-shadow:
        0 0 8px rgba(232, 137, 154, 0.25),
        0 0 20px rgba(232, 137, 154, 0.15) !important;
}

/* --- Section Accent Line --- */
.accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-light), var(--color-accent));
    border-radius: 3px;
    margin-bottom: 24px;
}

.accent-line-center {
    margin-left: auto;
    margin-right: auto;
}

/* --- Glassmorphism Card Utility --- */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 8px 32px rgba(45, 42, 38, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* --- Enhanced Service Card Hover Glow --- */
.service-card-image::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, rgba(245,198,203,0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
}

.service-card:hover .service-card-image::after {
    opacity: 1;
}

/* --- Animated CTA Gradient --- */
.cta-card {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 50%, #c47a83 100%) !important;
    background-size: 200% 200% !important;
    animation: cta-gradient-shift 8s ease infinite;
}

@keyframes cta-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* --- Enhanced Welcome Card --- */
/* (background image set in main section above) */

/* --- Testimonial Card Glass Effect --- */
.testimonial-card {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0.72;
    filter: blur(0.3px);
    transform: scale(0.97);
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    opacity: 1 !important;
    filter: blur(0px) !important;
    transform: scale(1.04) translateY(-10px) !important;
    box-shadow:
        0 24px 60px rgba(45, 42, 38, 0.14),
        0 0 40px rgba(212, 145, 154, 0.12) !important;
    z-index: 2;
}

/* --- Premium Enhancement Responsive --- */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 200px 200px 200px;
    }
    .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 2; }
    .gallery-item:nth-child(2) { grid-column: span 1; }
    .gallery-item:nth-child(3) { grid-column: span 1; }
    .gallery-item:nth-child(4) { grid-column: span 1; }
    .gallery-item:nth-child(5) { grid-column: span 1; }
    .gallery-item:nth-child(6) { grid-column: span 1; }

    .hero-floating-badge {
        right: -5%;
        bottom: 20%;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 180px 180px 180px;
    }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }

    .hero-blob { display: none; }

    .hero-floating-badge { display: none; }

    .marquee-section { padding: 28px 0; }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 150px 150px 150px;
    }
}

/* ===================================
   INSTAGRAM GALLERY OVERLAY
   =================================== */
.gallery-ig-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
    border-radius: inherit;
}

.gallery-item:hover .gallery-ig-overlay {
    opacity: 1;
}

.gallery-ig-overlay svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-ig-overlay svg {
    transform: scale(1);
}

/* ===================================
   ENHANCED FOOTER
   =================================== */
.main-footer {
    background: var(--color-bg-dark) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 60px 0 !important;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-light), var(--color-accent), var(--color-gold), var(--color-accent-light));
    background-size: 300% 100%;
    animation: footer-gradient 6s ease infinite;
}

@keyframes footer-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.main-footer::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 145, 154, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid-nav {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 48px !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.footer-logo {
    color: var(--color-white) !important;
    font-size: 28px !important;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.55) !important;
    line-height: 1.8 !important;
    margin-bottom: 28px !important;
}

.footer-social {
    gap: 14px !important;
}

.footer-social a {
    width: 42px !important;
    height: 42px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast) !important;
}

.footer-social a:hover {
    background: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    transform: translateY(-3px);
}

.footer-social a svg {
    fill: rgba(255, 255, 255, 0.7) !important;
}

.footer-social a:hover svg {
    fill: white !important;
}

.footer-links-col h4,
.footer-contact h4,
.footer-social-col h4 {
    color: var(--color-white) !important;
    font-family: var(--font-heading) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 24px !important;
    letter-spacing: 0.02em !important;
}

.footer-links-col a {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 14px !important;
    display: block !important;
    margin-bottom: 14px !important;
    transition: all var(--transition-fast) !important;
    position: relative;
    padding-left: 0;
}

.footer-links-col a:hover {
    color: var(--color-accent-light) !important;
    padding-left: 6px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    margin-bottom: 12px !important;
}

/* ===================================
   NAV PILL RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .nav-pill {
        padding: 0.4rem 0.4rem 0.4rem 1.2rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        background: rgba(255, 250, 247, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links .nav-link {
        font-size: 1.4rem;
        font-family: var(--font-heading);
        font-weight: 500;
    }

    .nav-links .nav-link-cta {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .footer-grid-nav {
        grid-template-columns: 1fr 1fr !important;
    }

    .footer-brand-content {
        flex-direction: column !important;
        gap: 32px !important;
    }

    .footer-brand-left {
        text-align: center !important;
    }

    .footer-brand-address {
        align-items: flex-start !important;
    }
}

/* --- Welcome section responsive --- */
@media (max-width: 768px) {
    .welcome-content {
        background: rgba(255, 250, 247, 0.92) !important;
        padding: 40px 28px !important;
        max-width: 100% !important;
    }

    .welcome-card {
        min-height: 400px;
        justify-content: stretch !important;
    }
}

/* --- Stat number glow --- */
.stat-number {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-style: normal !important;

    color: #E8899A !important;
    letter-spacing: -0.02em !important;
    text-shadow:
        0 0 8px rgba(232, 137, 154, 0.25),
        0 0 20px rgba(232, 137, 154, 0.15) !important;
}

/* --- Liquid Glass Buttons --- */
.btn-secondary,
.btn-liquid-glass {
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(20px) saturate(1.4) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    color: var(--color-text) !important;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn-secondary:hover::before {
    left: 120%;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
    transform: translateY(-2px);
}

/* CTA section secondary button — white liquid glass */
.cta-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #fff !important;
}

.cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}

/* Nav responsive override for pill + mobile menu */
@media (max-width: 768px) {
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 2rem !important;
        background: rgba(26, 26, 26, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease !important;
        z-index: 999 !important;
    }

    .nav-links.open {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-links .nav-link {
        font-size: 1.2rem !important;
        letter-spacing: 0.2em !important;
        text-transform: uppercase !important;
        mix-blend-mode: normal !important;
    }

    .nav-links .nav-link-cta {
        font-size: 1rem !important;
        padding: 0.8rem 2rem !important;
        mix-blend-mode: normal !important;
    }

    .nav-toggle {
        display: flex !important;
    }
}
