/* ============================================
   STYLE.CSS — Premium Consolidated Stylesheet
   Glam Nail & Beauty — v2.1 (2026 Final Launch Pass)
   ============================================ */

/* 1. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; line-height: 1.2; }
p { overflow-wrap: break-word; }
table { border-collapse: collapse; }
:focus-visible { outline: 2px solid #B76E79; outline-offset: 3px; }
::selection { background-color: #B76E79; color: #FFFFFF; }

/* 2. DESIGN TOKENS */
:root {
    --color-primary: #B76E79;
    --color-primary-dark: #8B4557;
    --color-primary-light: #D4949C;
    --color-accent: #D4A574;
    --color-accent-light: #E8C9A0;
    --color-accent-dark: #B8864E;
    --color-bg: #FBF8F5;
    --color-bg-alt: #F5EDE8;
    --color-bg-dark: #1A1A1A;
    --color-bg-card: #FFFFFF;
    --color-text: #2C1810;
    --color-text-secondary: #6B5B54;
    --color-text-light: #9B8E87;
    --color-text-on-dark: #F5EDE8;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-border: #E8DDD5;
    --color-border-dark: #3A3A3A;
    --color-overlay: rgba(26, 26, 26, 0.6);
    --color-overlay-light: rgba(183, 110, 121, 0.08);
    --gradient-primary: linear-gradient(135deg, #B76E79 0%, #D4A574 100%);
    --gradient-warm: linear-gradient(135deg, #F5EDE8 0%, #FBF8F5 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2C1810 100%);
    --gradient-hero: linear-gradient(180deg, rgba(26,26,26,0.25) 0%, rgba(44,24,16,0.75) 100%);
    --gradient-gold: linear-gradient(135deg, #D4A574 0%, #E8C9A0 50%, #D4A574 100%);
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-md: 1.125rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 1.875rem;
    --text-3xl: 2.25rem;
    --text-4xl: 3rem;
    --text-5xl: 3.75rem;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semi: 600;
    --fw-bold: 700;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    --container-max: 1200px;
    --container-narrow: 800px;
    --container-wide: 1400px;
    --gutter: 1.25rem;
    --header-height: 72px;
    --top-bar-height: 36px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(44, 24, 16, 0.06), 0 1px 2px rgba(44, 24, 16, 0.04);
    --shadow-md: 0 4px 12px rgba(44, 24, 16, 0.08), 0 2px 4px rgba(44, 24, 16, 0.04);
    --shadow-lg: 0 12px 32px rgba(44, 24, 16, 0.1), 0 4px 8px rgba(44, 24, 16, 0.05);
    --shadow-xl: 0 20px 48px rgba(44, 24, 16, 0.12), 0 8px 16px rgba(44, 24, 16, 0.06);
    --shadow-glow: 0 0 24px rgba(183, 110, 121, 0.2);
    --shadow-gold: 0 0 20px rgba(212, 165, 116, 0.15);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 200ms;
    --duration-base: 350ms;
    --duration-slow: 500ms;
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
}

/* 3. BASE STYLES */
body { font-family: var(--font-body); font-size: var(--text-base); font-weight: var(--fw-regular); color: var(--color-text); background-color: var(--color-bg); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: var(--fw-bold); color: var(--color-text); }
h1 { font-size: var(--text-3xl); letter-spacing: -0.02em; }
h2 { font-size: var(--text-2xl); letter-spacing: -0.01em; }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); font-weight: var(--fw-semi); }
p { color: var(--color-text-secondary); line-height: 1.7; margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }
.lead { font-size: var(--text-md); line-height: 1.8; color: var(--color-text-secondary); }
strong { font-weight: var(--fw-semi); color: var(--color-text); }
em { font-family: var(--font-heading); font-style: italic; }
small { font-size: var(--text-sm); }
a { transition: color var(--duration-fast) var(--ease-out); }
.section-label { font-family: var(--font-body); font-size: var(--text-xs); font-weight: var(--fw-semi); text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-primary); margin-bottom: var(--space-sm); display: block; }
.section-title { font-family: var(--font-heading); font-size: var(--text-2xl); font-weight: var(--fw-bold); margin-bottom: var(--space-md); line-height: 1.2; }
.section-subtitle { font-size: var(--text-md); color: var(--color-text-secondary); max-width: 600px; line-height: 1.7; }
.section-header { margin-bottom: var(--space-2xl); }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }
.divider { border: none; height: 1px; background: var(--color-border); margin: var(--space-2xl) 0; }
.divider-gold { height: 2px; width: 60px; background: var(--gradient-gold); border: none; border-radius: var(--radius-full); }

/* Scroll Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Image Styles */
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.img-rounded { border-radius: var(--radius-lg); }
.img-frame { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }

/* 4. LAYOUT */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--space-3xl) 0; }
.section-lg { padding: var(--space-4xl) 0; }
.section-sm { padding: var(--space-2xl) 0; }
.section--alt { background-color: var(--color-bg-alt); }
.section--dark { background-color: var(--color-bg-dark); color: var(--color-text-on-dark); }
.section--dark .section-title, .section--dark h2, .section--dark h3 { color: var(--color-white); }
.section--dark p, .section--dark .section-subtitle { color: rgba(245, 237, 232, 0.8); }
.section--dark .section-label { color: var(--color-accent-light); }
.grid { display: grid; gap: var(--space-lg); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* Top Bar */
.top-bar { background: var(--gradient-dark); color: var(--color-text-on-dark); padding: var(--space-sm) 0; font-size: var(--text-xs); letter-spacing: 0.02em; position: relative; z-index: calc(var(--z-sticky) + 10); height: var(--top-bar-height); display: flex; align-items: center; }
.top-bar .container { display: flex; align-items: center; justify-content: center; gap: var(--space-lg); flex-wrap: wrap; }
.top-bar a { color: var(--color-accent-light); transition: color var(--duration-fast) var(--ease-out); }
.top-bar a:hover { color: var(--color-white); }
.top-bar-item { display: flex; align-items: center; gap: var(--space-xs); white-space: nowrap; }
.top-bar-item svg { flex-shrink: 0; }
.top-bar-divider { width: 1px; height: 12px; background: var(--color-border-dark); display: none; }

/* Header / Navigation */
.header { position: sticky; top: 0; left: 0; right: 0; z-index: var(--z-sticky); background: rgba(251, 248, 245, 0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid transparent; transition: background var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out); height: var(--header-height); }
.header.scrolled { background: rgba(251, 248, 245, 0.97); border-bottom-color: var(--color-border); box-shadow: var(--shadow-sm); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header-logo { display: flex; align-items: center; gap: var(--space-sm); z-index: var(--z-modal); }
.header-logo-text { font-family: var(--font-heading); font-size: var(--text-lg); font-weight: var(--fw-bold); color: var(--color-text); line-height: 1; }
.header-logo-text span { display: block; font-size: var(--text-xs); font-family: var(--font-body); font-weight: var(--fw-regular); color: var(--color-text-secondary); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 2px; }
.nav-desktop { display: none; align-items: center; gap: var(--space-xl); }
.nav-link { font-size: var(--text-sm); font-weight: var(--fw-medium); color: var(--color-text-secondary); transition: color var(--duration-fast) var(--ease-out); position: relative; padding: var(--space-xs) 0; }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gradient-primary); border-radius: var(--radius-full); transition: width var(--duration-base) var(--ease-out); }
.nav-link:hover, .nav-link.active { color: var(--color-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { display: none; }

/* Hamburger — enhanced with smooth X animation */
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; z-index: var(--z-modal); position: relative; min-height: 44px; min-width: 44px; align-items: center; justify-content: center; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--color-text); border-radius: var(--radius-full); transition: all var(--duration-base) var(--ease-out); transform-origin: center; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--color-primary); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--color-primary); }

/* Mobile Nav — fixed: proper close, tight spacing, no excess whitespace */
.nav-mobile { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--color-bg); z-index: var(--z-overlay); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-lg); opacity: 0; visibility: hidden; transition: all var(--duration-base) var(--ease-out); padding: var(--space-xl) var(--gutter); }
.nav-mobile.open { opacity: 1; visibility: visible; }
.nav-mobile-close { position: absolute; top: var(--space-lg); right: var(--gutter); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--color-bg-alt); border: 1px solid var(--color-border); transition: all var(--duration-fast) var(--ease-out); cursor: pointer; z-index: 10; }
.nav-mobile-close:hover { background: var(--color-primary); border-color: var(--color-primary); }
.nav-mobile-close:hover svg { stroke: white; }
.nav-mobile-close svg { width: 18px; height: 18px; stroke: var(--color-text); stroke-width: 2; }
.nav-mobile-link { font-family: var(--font-heading); font-size: var(--text-xl); font-weight: var(--fw-bold); color: var(--color-text); opacity: 0; transform: translateY(20px); transition: all var(--duration-base) var(--ease-out), color var(--duration-fast) var(--ease-out); padding: var(--space-xs) 0; }
.nav-mobile.open .nav-mobile-link { opacity: 1; transform: translateY(0); }
.nav-mobile.open .nav-mobile-link:nth-child(2) { transition-delay: 0.05s; }
.nav-mobile.open .nav-mobile-link:nth-child(3) { transition-delay: 0.1s; }
.nav-mobile.open .nav-mobile-link:nth-child(4) { transition-delay: 0.15s; }
.nav-mobile.open .nav-mobile-link:nth-child(5) { transition-delay: 0.2s; }
.nav-mobile.open .nav-mobile-link:nth-child(6) { transition-delay: 0.25s; }
.nav-mobile-link:hover, .nav-mobile-link.active { color: var(--color-primary); }
.nav-mobile-cta { margin-top: var(--space-md); opacity: 0; transform: translateY(20px); transition: all var(--duration-base) var(--ease-out); }
.nav-mobile.open .nav-mobile-cta { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.nav-mobile-info { margin-top: var(--space-sm); text-align: center; color: var(--color-text-secondary); font-size: var(--text-sm); opacity: 0; transition: opacity var(--duration-base) var(--ease-out); }
.nav-mobile.open .nav-mobile-info { opacity: 1; transition-delay: 0.35s; }
.nav-mobile-info p { margin: 0; font-size: var(--text-sm); }

/* Footer */
.footer { background: var(--color-bg-dark); color: var(--color-text-on-dark); padding: var(--space-3xl) 0 var(--space-xl); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); margin-bottom: var(--space-2xl); }
.footer-brand { max-width: 300px; }
.footer-brand-name { font-family: var(--font-heading); font-size: var(--text-xl); font-weight: var(--fw-bold); color: var(--color-white); margin-bottom: var(--space-sm); }
.footer-brand p { color: rgba(245, 237, 232, 0.6); font-size: var(--text-sm); line-height: 1.6; }
.footer-heading { font-family: var(--font-body); font-size: var(--text-sm); font-weight: var(--fw-semi); text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-accent-light); margin-bottom: var(--space-lg); }
.footer-links { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-links a { font-size: var(--text-sm); color: rgba(245, 237, 232, 0.6); transition: color var(--duration-fast) var(--ease-out), padding-left var(--duration-fast) var(--ease-out); }
.footer-links a:hover { color: var(--color-white); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: var(--space-sm); font-size: var(--text-sm); color: rgba(245, 237, 232, 0.6); margin-bottom: var(--space-sm); }
.footer-contact-item svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 3px; color: var(--color-accent); }
.footer-bottom { border-top: 1px solid var(--color-border-dark); padding-top: var(--space-lg); display: flex; flex-direction: column; align-items: center; gap: var(--space-md); text-align: center; }
.footer-bottom p { font-size: var(--text-xs); color: rgba(245, 237, 232, 0.4); }
.footer-social { display: flex; gap: var(--space-md); }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--color-border-dark); display: flex; align-items: center; justify-content: center; transition: all var(--duration-fast) var(--ease-out); color: rgba(245, 237, 232, 0.6); }
.footer-social a:hover { border-color: var(--color-primary); background: var(--color-primary); color: var(--color-white); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

/* 5. COMPONENTS */

/* Buttons — enhanced with shimmer effect */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-sm); padding: 14px 32px; font-family: var(--font-body); font-size: var(--text-sm); font-weight: var(--fw-semi); letter-spacing: 0.04em; border-radius: var(--radius-full); transition: all var(--duration-base) var(--ease-out); white-space: nowrap; text-transform: uppercase; border: none; cursor: pointer; position: relative; overflow: hidden; min-height: 48px; }
.btn::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%); transform: translateX(-100%) rotate(-15deg); transition: transform 0.6s ease; }
.btn:hover::after { transform: translateX(100%) rotate(-15deg); }
.btn-primary { background: var(--gradient-primary); color: var(--color-white); box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg), var(--shadow-glow); }
.btn-primary:active { transform: translateY(0); }
.btn-outline { border: 1.5px solid var(--color-primary); color: var(--color-primary); background: transparent; }
.btn-outline:hover { background: var(--color-primary); color: var(--color-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-white { background: var(--color-white); color: var(--color-primary-dark); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-dark { background: var(--color-bg-dark); color: var(--color-white); }
.btn-dark:hover { background: var(--color-text); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-gold { background: var(--gradient-gold); color: var(--color-text); font-weight: var(--fw-bold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg), var(--shadow-gold); }
.btn-sm { padding: 10px 24px; font-size: var(--text-xs); min-height: 40px; }
.btn-lg { padding: 18px 40px; font-size: var(--text-base); }
.btn svg { width: 16px; height: 16px; }

/* Hero — enhanced with subtle floating animation */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: var(--color-bg-dark); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.65; animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { 0% { transform: scale(1); } 100% { transform: scale(1.05); } }
.hero-overlay { position: absolute; inset: 0; background: var(--gradient-hero); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl); width: 100%; }
.hero-label { display: inline-flex; align-items: center; gap: var(--space-sm); font-size: var(--text-xs); font-weight: var(--fw-semi); text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-accent-light); margin-bottom: var(--space-lg); }
.hero-label::before { content: ''; width: 30px; height: 1px; background: var(--color-accent); }
.hero-title { font-family: var(--font-heading); font-size: var(--text-3xl); font-weight: var(--fw-bold); color: var(--color-white); line-height: 1.15; margin-bottom: var(--space-lg); max-width: 600px; }
.hero-title em { font-style: italic; color: var(--color-accent-light); }
.hero-text { font-size: var(--text-base); color: rgba(255, 255, 255, 0.8); max-width: 480px; margin-bottom: var(--space-xl); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-md); }
.hero-badge { display: inline-flex; align-items: center; gap: var(--space-sm); margin-top: var(--space-xl); padding: var(--space-sm) var(--space-md); background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px); border-radius: var(--radius-full); border: 1px solid rgba(255, 255, 255, 0.15); font-size: var(--text-xs); color: rgba(255, 255, 255, 0.75); max-width: 100%; }
.hero-badge svg { color: var(--color-accent); width: 14px; height: 14px; flex-shrink: 0; }

/* Scroll indicator */
.hero-scroll { position: absolute; bottom: var(--space-xl); left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: var(--space-xs); color: rgba(255,255,255,0.5); font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* Trust Bar */
.trust-bar { background: var(--color-bg-alt); padding: var(--space-2xl) 0; border-bottom: 1px solid var(--color-border); }
.trust-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.trust-item { text-align: center; padding: var(--space-lg) var(--space-md); }
.trust-icon { width: 48px; height: 48px; margin: 0 auto var(--space-sm); display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--color-overlay-light); color: var(--color-primary); transition: all var(--duration-base) var(--ease-out); }
.trust-item:hover .trust-icon { transform: scale(1.1); background: var(--color-primary); color: white; }
.trust-icon svg { width: 24px; height: 24px; }
.trust-title { font-family: var(--font-heading); font-size: var(--text-sm); font-weight: var(--fw-semi); margin-bottom: var(--space-xs); }
.trust-text { font-size: var(--text-xs); color: var(--color-text-secondary); line-height: 1.5; margin-bottom: 0; }

/* Service Cards — enhanced with border gradient on hover */
.service-card { background: var(--color-bg-card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--duration-base) var(--ease-out); border: 1px solid var(--color-border); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--color-primary-light); }
.service-card-img { position: relative; height: 220px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-badge { position: absolute; top: var(--space-md); left: var(--space-md); padding: 6px 14px; background: var(--color-white); border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: var(--fw-semi); color: var(--color-primary); box-shadow: var(--shadow-sm); }
.service-card-body { padding: var(--space-lg); }
.service-card-title { font-family: var(--font-heading); font-size: var(--text-lg); font-weight: var(--fw-semi); margin-bottom: var(--space-sm); color: var(--color-text); }
.service-card-text { font-size: var(--text-sm); color: var(--color-text-secondary); line-height: 1.6; margin-bottom: var(--space-md); }
.service-card-meta { display: flex; align-items: center; justify-content: space-between; padding-top: var(--space-md); border-top: 1px solid var(--color-border); }
.service-card-price { font-family: var(--font-heading); font-size: var(--text-md); font-weight: var(--fw-bold); color: var(--color-primary); }
.service-card-price small { font-family: var(--font-body); font-size: var(--text-xs); font-weight: var(--fw-regular); color: var(--color-text-light); }
.service-card-link { font-size: var(--text-xs); font-weight: var(--fw-semi); color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.08em; display: flex; align-items: center; gap: 4px; transition: gap var(--duration-fast) var(--ease-out); }
.service-card-link:hover { gap: 8px; }
.service-card-link svg { width: 14px; height: 14px; }

/* Feature Section */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); align-items: center; }
.feature-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.feature-image img { width: 100%; height: auto; display: block; transition: transform var(--duration-slow) var(--ease-out); }
.feature-image:hover img { transform: scale(1.02); }
.feature-image-badge { position: absolute; bottom: var(--space-lg); left: var(--space-lg); background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: var(--space-md) var(--space-lg); border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.feature-image-badge strong { display: block; font-family: var(--font-heading); font-size: var(--text-xl); color: var(--color-primary); }
.feature-image-badge span { font-size: var(--text-xs); color: var(--color-text-secondary); }
.feature-list { display: flex; flex-direction: column; gap: var(--space-lg); }
.feature-item { display: flex; gap: var(--space-md); }
.feature-item-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--color-overlay-light); display: flex; align-items: center; justify-content: center; color: var(--color-primary); transition: all var(--duration-base) var(--ease-out); }
.feature-item:hover .feature-item-icon { background: var(--color-primary); color: white; transform: scale(1.05); }
.feature-item-icon svg { width: 22px; height: 22px; }
.feature-item h4 { font-size: var(--text-base); margin-bottom: var(--space-xs); }
.feature-item p { font-size: var(--text-sm); color: var(--color-text-secondary); line-height: 1.6; }

/* Gallery — enhanced with hover icon */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,24,16,0.55) 0%, rgba(183,110,121,0.15) 100%); opacity: 0; transition: opacity var(--duration-base) var(--ease-out); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.8); z-index: 2; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; opacity: 0; transition: all var(--duration-base) var(--ease-out); pointer-events: none; }
.gallery-item-icon svg { width: 20px; height: 20px; color: var(--color-primary); }
.gallery-item:hover .gallery-item-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.gallery-item-tall { grid-row: span 2; }

/* Pricing Cards — enhanced with subtle gradient border */
.pricing-card { background: var(--color-bg-card); border-radius: var(--radius-lg); padding: var(--space-2xl) var(--space-lg); text-align: center; border: 1px solid var(--color-border); transition: all var(--duration-base) var(--ease-out); position: relative; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--color-primary); box-shadow: var(--shadow-glow); }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gradient-primary); color: var(--color-white); font-size: var(--text-xs); font-weight: var(--fw-semi); padding: 4px 16px; border-radius: var(--radius-full); letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }
.pricing-card-icon { width: 56px; height: 56px; margin: 0 auto var(--space-md); display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--color-overlay-light); color: var(--color-primary); }
.pricing-card-icon svg { width: 28px; height: 28px; }
.pricing-card-title { font-family: var(--font-heading); font-size: var(--text-lg); margin-bottom: var(--space-sm); }
.pricing-card-price { font-family: var(--font-heading); font-size: var(--text-3xl); font-weight: var(--fw-bold); color: var(--color-primary); margin-bottom: var(--space-xs); }
.pricing-card-price small { font-size: var(--text-sm); font-family: var(--font-body); font-weight: var(--fw-regular); color: var(--color-text-light); }
.pricing-card-desc { font-size: var(--text-sm); color: var(--color-text-secondary); margin-bottom: var(--space-lg); line-height: 1.6; }
.pricing-card-features { text-align: left; margin-bottom: var(--space-xl); }
.pricing-card-features li { display: flex; align-items: flex-start; gap: var(--space-sm); font-size: var(--text-sm); color: var(--color-text-secondary); padding: var(--space-sm) 0; border-bottom: 1px solid var(--color-border); }
.pricing-card-features li:last-child { border-bottom: none; }
.pricing-card-features li svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--color-primary); margin-top: 2px; }

/* Testimonials — enhanced with subtle quote decoration */
.testimonial-card { background: var(--color-bg-card); border-radius: var(--radius-lg); padding: var(--space-xl); box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); position: relative; transition: all var(--duration-base) var(--ease-out); }
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-primary-light); transform: translateY(-3px); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: var(--space-md); color: var(--color-accent); }
.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-text { font-size: var(--text-base); font-style: italic; color: var(--color-text); line-height: 1.7; margin-bottom: var(--space-lg); }
.testimonial-text::before { content: '\201C'; font-family: var(--font-heading); font-size: var(--text-4xl); color: var(--color-primary-light); line-height: 0; display: block; margin-bottom: var(--space-sm); }
.testimonial-author { display: flex; align-items: center; gap: var(--space-md); }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: var(--fw-bold); color: var(--color-white); font-size: var(--text-sm); }
.testimonial-name { font-weight: var(--fw-semi); font-size: var(--text-sm); color: var(--color-text); }
.testimonial-role { font-size: var(--text-xs); color: var(--color-text-light); }

/* CTA Block — enhanced with animated background */
.cta-block { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: var(--space-3xl) var(--space-lg); text-align: center; background: var(--gradient-primary); }
.cta-block::before { content: ''; position: absolute; top: -50%; right: -20%; width: 300px; height: 300px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); animation: ctaFloat 8s ease-in-out infinite; }
.cta-block::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 200px; height: 200px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); animation: ctaFloat 10s ease-in-out infinite reverse; }
@keyframes ctaFloat { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(20px, -20px); } }
.cta-block > * { position: relative; z-index: 1; }
.cta-block .section-label { color: rgba(255, 255, 255, 0.7); }
.cta-block .section-title { color: var(--color-white); }
.cta-block p { color: rgba(255, 255, 255, 0.85); max-width: 500px; margin: 0 auto var(--space-xl); }

/* FAQ Accordion */
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); padding: var(--space-lg) 0; text-align: left; font-family: var(--font-heading); font-size: var(--text-md); font-weight: var(--fw-semi); color: var(--color-text); transition: color var(--duration-fast) var(--ease-out); background: none; border: none; cursor: pointer; }
.faq-question:hover { color: var(--color-primary); }
.faq-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--color-border); display: flex; align-items: center; justify-content: center; transition: all var(--duration-base) var(--ease-out); }
.faq-icon svg { width: 14px; height: 14px; transition: transform var(--duration-base) var(--ease-out); }
.faq-item.active .faq-icon { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-white); }
.faq-item.active .faq-icon svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--duration-base) var(--ease-out); }
.faq-answer-inner { padding-bottom: var(--space-lg); font-size: var(--text-sm); color: var(--color-text-secondary); line-height: 1.7; }

/* Contact Cards — enhanced hover */
.contact-card { background: var(--color-bg-card); border-radius: var(--radius-lg); padding: var(--space-xl); border: 1px solid var(--color-border); text-align: center; transition: all var(--duration-base) var(--ease-out); }
.contact-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-primary-light); transform: translateY(-3px); }
.contact-card-icon { width: 52px; height: 52px; margin: 0 auto var(--space-md); display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--color-overlay-light); color: var(--color-primary); transition: all var(--duration-base) var(--ease-out); }
.contact-card:hover .contact-card-icon { background: var(--color-primary); color: white; transform: scale(1.1); }
.contact-card-icon svg { width: 24px; height: 24px; }
.contact-card h4 { font-size: var(--text-base); margin-bottom: var(--space-sm); }
.contact-card p { font-size: var(--text-sm); color: var(--color-text-secondary); }
.contact-card a { color: var(--color-primary); font-weight: var(--fw-medium); }

/* Map */
.map-container { border-radius: var(--radius-lg); overflow: hidden; height: 300px; box-shadow: var(--shadow-md); border: 1px solid var(--color-border); }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* Service List (Full Page) — enhanced */
.service-list-category { margin-bottom: var(--space-2xl); }
.service-list-title { font-family: var(--font-heading); font-size: var(--text-xl); font-weight: var(--fw-bold); color: var(--color-text); padding-bottom: var(--space-sm); border-bottom: 2px solid var(--color-primary); margin-bottom: var(--space-lg); display: flex; align-items: center; gap: var(--space-sm); }
.service-list-title::before { content: ''; width: 4px; height: 24px; background: var(--gradient-primary); border-radius: var(--radius-full); flex-shrink: 0; }
.service-list-item { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-md); padding: var(--space-md) 0; border-bottom: 1px solid var(--color-border); transition: background var(--duration-fast) var(--ease-out); }
.service-list-item:hover { background: var(--color-overlay-light); margin: 0 calc(-1 * var(--space-sm)); padding-left: var(--space-sm); padding-right: var(--space-sm); border-radius: var(--radius-sm); }
.service-list-item:last-child { border-bottom: none; }
.service-list-name { font-weight: var(--fw-semi); font-size: var(--text-base); color: var(--color-text); margin-bottom: 2px; }
.service-list-desc { font-size: var(--text-sm); color: var(--color-text-secondary); line-height: 1.5; margin-bottom: 0; }
.service-list-meta { text-align: right; flex-shrink: 0; }
.service-list-price { font-family: var(--font-heading); font-weight: var(--fw-bold); color: var(--color-primary); font-size: var(--text-md); white-space: nowrap; }
.service-list-duration { font-size: var(--text-xs); color: var(--color-text-light); white-space: nowrap; }
.category-nav { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-2xl); }
.category-pill { padding: 8px 20px; border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: var(--fw-semi); letter-spacing: 0.02em; border: 1.5px solid var(--color-border); color: var(--color-text-secondary); transition: all var(--duration-fast) var(--ease-out); text-transform: uppercase; background: none; cursor: pointer; min-height: 40px; display: inline-flex; align-items: center; }
.category-pill:hover, .category-pill.active { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-white); }
.hours-table { width: 100%; }
.hours-table tr { border-bottom: 1px solid var(--color-border); }
.hours-table td { padding: 10px 0; font-size: var(--text-sm); }
.hours-table td:first-child { font-weight: var(--fw-medium); color: var(--color-text); }
.hours-table td:last-child { text-align: right; color: var(--color-text-secondary); }
.hours-table tr.today td { color: var(--color-primary); font-weight: var(--fw-semi); background: rgba(183,110,121,0.06); }

/* Page Hero (inner pages) — enhanced */
.page-hero { background: var(--gradient-dark); padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl); text-align: center; color: var(--color-text-on-dark); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; border-radius: 50%; background: rgba(183, 110, 121, 0.08); }
.page-hero::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 200px; height: 200px; border-radius: 50%; background: rgba(212, 165, 116, 0.06); }
.page-hero > * { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--color-accent-light); }
.page-hero h1 { color: var(--color-white); margin-bottom: var(--space-md); }
.page-hero p { color: rgba(245, 237, 232, 0.8); max-width: 600px; margin: 0 auto; }

/* 6. UTILITIES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.max-w-narrow { max-width: var(--container-narrow); }
.hidden { display: none; }
.block { display: block; }
.overflow-hidden { overflow: hidden; }
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }
.bg-alt { background-color: var(--color-bg-alt); }
.bg-dark { background-color: var(--color-bg-dark); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }

/* Gold accent line decoration */
.gold-line { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-lg); }
.gold-line::before, .gold-line::after { content: ''; flex: 1; height: 1px; background: var(--gradient-gold); }
.gold-line span { font-size: var(--text-xs); color: var(--color-accent); }

/* 7. RESPONSIVE */
@media (min-width: 375px) {
    :root { --gutter: 1.5rem; }
}
@media (min-width: 576px) {
    :root { --gutter: 2rem; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-items { grid-template-columns: repeat(4, 1fr); }
    .hero-title { font-size: var(--text-4xl); }
}
@media (max-width: 767px) {
    .feature-grid [style*="order"] { order: unset !important; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
    .footer-brand { grid-column: 1 / -1; }
    .top-bar .container { gap: var(--space-sm); }
    .top-bar-item:nth-child(5) { display: none; }
    .hero-badge { white-space: normal; }
    .pricing-card { padding: var(--space-xl) var(--space-md); }
}
@media (min-width: 768px) {
    :root { --space-3xl: 5rem; --space-4xl: 7rem; }
    h1 { font-size: var(--text-4xl); }
    h2 { font-size: var(--text-3xl); }
    h3 { font-size: var(--text-2xl); }
    .section-title { font-size: var(--text-3xl); }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .top-bar .container { justify-content: center; }
    .top-bar-divider { display: block; }
    .hero-title { font-size: var(--text-4xl); }
    .hero-text { font-size: var(--text-md); }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
    .cta-block { padding: var(--space-4xl) var(--space-2xl); }
    .pricing-card { padding: var(--space-2xl); }
    .map-container { height: 400px; }
    .trust-items { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
    :root { --header-height: 80px; }
    h1 { font-size: var(--text-5xl); }
    .section-title { font-size: var(--text-4xl); }
    .hamburger { display: none; }
    .nav-desktop { display: flex; }
    .nav-cta { display: inline-flex; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .hero-title { font-size: var(--text-5xl); }
    .hero-content { padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl); }
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 1200px) {
    :root { --gutter: 2rem; }
}

/* 8. PRINT STYLES */
@media print {
    .top-bar, .header, .nav-mobile, .hero-scroll, .footer-social { display: none !important; }
    body { background: white; color: black; }
    .section { padding: 1rem 0; }
    .btn { border: 1px solid #333; }
}
