/* ============================================
   PEACEFUL PAWS - MAIN STYLESHEET
   Ultra-Premium Design System
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Colors - Cool Spa Luxury Palette */
    --ocean-deep: #1a3a4a;
    --ocean-medium: #2a5a6a;
    --sage-mist: #a8c5b8;
    --sage-light: #d4e5dc;
    --cloud-white: #f8fafb;
    --warm-cream: #faf8f5;
    --gold-accent: #c9a86c;
    --gold-light: #e8d5a8;
    --charcoal: #2d3436;
    --soft-gray: #8395a7;
    --light-gray: #dfe6e9;

    /* Semantic Colors */
    --bg-primary: var(--cloud-white);
    --bg-secondary: var(--warm-cream);
    --text-primary: var(--charcoal);
    --text-secondary: var(--soft-gray);
    --accent-primary: var(--ocean-deep);
    --accent-secondary: var(--gold-accent);

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;

    /* Font Sizes - Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    --text-4xl: clamp(2.5rem, 1.8rem + 3.5vw, 4rem);
    --text-5xl: clamp(3rem, 2rem + 5vw, 5.5rem);
    --text-6xl: clamp(3.5rem, 2.5rem + 6vw, 7rem);

    /* Spacing */
    --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;
    --space-section: clamp(6rem, 10vw, 12rem);

    /* Layout */
    --container-max: 1400px;
    --container-padding: clamp(1.5rem, 4vw, 4rem);

    /* Borders & Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 80px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(26, 58, 74, 0.3);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
    --duration-slower: 1.2s;

    /* Z-Index Scale */
    --z-background: -1;
    --z-base: 1;
    --z-overlay: 10;
    --z-header: 100;
    --z-modal: 200;
    --z-cursor: 1000;
    --z-preloader: 2000;
}

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

html {
    font-size: 16px;
    scroll-behavior: auto; /* Lenis handles smooth scroll */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    cursor: none;
}

@media (pointer: coarse) {
    body {
        cursor: auto;
    }
}

::selection {
    background: var(--sage-mist);
    color: var(--ocean-deep);
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

@media (pointer: coarse) {
    button {
        cursor: pointer;
    }
}

ul, ol {
    list-style: none;
}

/* ---------- Utility Classes ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    position: relative;
    padding: var(--space-section) 0;
}

.section[data-bg="cream"] {
    background-color: var(--bg-secondary);
}

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: var(--z-preloader);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ocean-deep);
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-paw {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-xl);
}

.paw-icon {
    width: 100%;
    height: 100%;
}

.paw-pad {
    fill: var(--sage-mist);
    opacity: 0;
    animation: pawFadeIn 0.6s var(--ease-out-expo) forwards;
}

.paw-pad.main-pad {
    animation-delay: 0.3s;
}

.paw-pad.toe-pad:nth-child(2) {
    animation-delay: 0s;
}

.paw-pad.toe-pad:nth-child(3) {
    animation-delay: 0.1s;
}

.paw-pad.toe-pad:nth-child(4) {
    animation-delay: 0.2s;
}

@keyframes pawFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.preloader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto var(--space-lg);
}

.preloader-bar {
    width: 0%;
    height: 100%;
    background: var(--gold-accent);
    transition: width 0.3s ease-out;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ---------- Custom Cursor ---------- */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-cursor);
    pointer-events: none;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out-expo),
                height 0.3s var(--ease-out-expo),
                background 0.3s ease;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out-expo),
                height 0.4s var(--ease-out-expo),
                border-color 0.3s ease;
}

.cursor.is-hovering .cursor-dot {
    width: 12px;
    height: 12px;
}

.cursor.is-hovering .cursor-ring {
    width: 60px;
    height: 60px;
    border-color: var(--gold-accent);
}

.cursor.is-clicking .cursor-ring {
    width: 30px;
    height: 30px;
}

@media (pointer: coarse) {
    .cursor {
        display: none;
    }
}

/* ---------- Background Canvas ---------- */
.bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-background);
    pointer-events: none;
    opacity: 0.6;
}

/* ---------- Header / Navigation ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    padding: var(--space-lg) 0;
    transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.header.is-scrolled {
    background: rgba(248, 250, 251, 0.9);
    backdrop-filter: blur(20px);
    padding: var(--space-md) 0;
}

.nav {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    position: relative;
    z-index: 10;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--ocean-deep);
    transition: color 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: var(--space-xl);
}

.nav-link {
    position: relative;
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    padding: var(--space-sm) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ocean-deep);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--ocean-deep);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--cloud-white);
    background: var(--ocean-deep);
    border-radius: var(--radius-full);
    transition: background 0.3s ease, transform 0.3s var(--ease-out-expo);
}

.nav-cta:hover {
    background: var(--ocean-medium);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    padding: var(--space-sm);
    z-index: 10;
}

.toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ocean-deep);
    border-radius: var(--radius-full);
    transition: transform 0.4s var(--ease-out-expo),
                opacity 0.4s ease;
    transform-origin: center;
}

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

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

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

/* ---------- Mobile Menu ---------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-header) - 1);
    background: var(--cloud-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-out-expo),
                visibility 0.5s;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    text-align: center;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 400;
    color: var(--ocean-deep);
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.is-open .mobile-link {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s var(--ease-out-expo),
                transform 0.5s var(--ease-out-expo),
                color 0.3s ease;
}

.mobile-menu.is-open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.is-open .mobile-link:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.is-open .mobile-link:nth-child(7) { transition-delay: 0.4s; }

.mobile-link:hover {
    color: var(--gold-accent);
}

.mobile-link-cta {
    color: var(--gold-accent);
}

.mobile-menu-footer {
    margin-top: var(--space-3xl);
    font-size: var(--text-sm);
    color: var(--soft-gray);
    opacity: 0;
    transform: translateY(10px);
}

.mobile-menu.is-open .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s var(--ease-out-expo) 0.5s,
                transform 0.5s var(--ease-out-expo) 0.5s;
}

.mobile-menu-footer a {
    display: block;
    margin-top: var(--space-sm);
    color: var(--ocean-deep);
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: var(--space-4xl);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--cloud-white) 0%,
        var(--sage-light) 50%,
        var(--cloud-white) 100%
    );
    opacity: 0.5;
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-content {
    /* Content flows naturally within grid */
}

.hero-label {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--ocean-deep);
}

.label-text {
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ocean-deep);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-6xl);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ocean-deep);
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
}

.title-line-accent {
    font-style: italic;
    color: var(--gold-accent);
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: var(--space-2xl);
}

.hero-ctas {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    transition: transform 0.4s var(--ease-out-expo);
}

.btn-icon svg {
    width: 100%;
    height: 100%;
}

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

.btn-primary {
    color: var(--cloud-white);
    background: var(--ocean-deep);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ocean-medium);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out-expo);
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-secondary {
    color: var(--ocean-deep);
    background: transparent;
    border: 1px solid var(--ocean-deep);
}

.btn-secondary:hover {
    background: var(--ocean-deep);
    color: var(--cloud-white);
}

.btn-light {
    color: var(--ocean-deep);
    background: var(--cloud-white);
}

.btn-light:hover {
    background: var(--warm-cream);
}

.btn-outline-light {
    color: var(--cloud-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cloud-white);
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-base);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 500;
    color: var(--ocean-deep);
    display: block;
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--soft-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--light-gray);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.hero-image-reveal {
    position: absolute;
    inset: 0;
    background: var(--ocean-deep);
    z-index: 2;
    transform-origin: right;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

.hero-float {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-mist), var(--sage-light));
    opacity: 0.6;
    filter: blur(40px);
}

.hero-float-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: 100px;
}

.hero-float-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    left: -30px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--ocean-deep), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleY(0.8);
    }
}

.scroll-text {
    font-size: var(--text-xs);
    color: var(--soft-gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

/* ---------- Section Labels ---------- */
.section-label {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.section-label.center {
    justify-content: center;
}

.label-number {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    color: var(--gold-accent);
}

.section-label .label-text {
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--soft-gray);
}

/* ---------- Philosophy Section ---------- */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.philosophy-image-col {
    position: relative;
}

.philosophy-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.image-reveal {
    position: absolute;
    inset: 0;
    background: var(--ocean-deep);
    z-index: 2;
    transform-origin: bottom;
}

.philosophy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

.parallax-wrapper {
    will-change: transform;
}

.parallax-image {
    transform: scale(1.1);
}

.philosophy-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--cloud-white);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.accent-year {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--ocean-deep);
}

.philosophy-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 400;
    line-height: 1.3;
    color: var(--ocean-deep);
    margin-bottom: var(--space-xl);
}

.philosophy-text {
    margin-bottom: var(--space-2xl);
}

.philosophy-text p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

.philosophy-quote {
    position: relative;
    padding: var(--space-xl);
    background: var(--cloud-white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2xl);
}

.quote-mark {
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: var(--font-accent);
    font-size: 80px;
    color: var(--sage-mist);
    line-height: 1;
}

.quote-text {
    font-family: var(--font-accent);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--ocean-deep);
    padding-left: var(--space-2xl);
}

.quote-author {
    display: block;
    margin-top: var(--space-md);
    font-size: var(--text-sm);
    color: var(--soft-gray);
    font-style: normal;
    padding-left: var(--space-2xl);
}

.philosophy-values {
    display: flex;
    gap: var(--space-xl);
}

.value {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.value-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-light);
    border-radius: var(--radius-full);
}

.value-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--ocean-deep);
}

.value-text {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--ocean-deep);
}

/* ---------- Services Section ---------- */
.services {
    background: var(--ocean-deep);
    color: var(--cloud-white);
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.services-header .section-label {
    justify-content: center;
}

.services .section-label .label-text {
    color: var(--sage-mist);
}

.services-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 400;
    margin-bottom: var(--space-lg);
}

.services-subtitle {
    font-size: var(--text-lg);
    color: var(--sage-mist);
    max-width: 600px;
    margin: 0 auto;
}

.services-carousel {
    position: relative;
    overflow: hidden;
    padding-left: max(var(--container-padding), calc((100vw - var(--container-max)) / 2 + var(--container-padding)));
}

.services-track {
    display: flex;
    gap: var(--space-xl);
    transition: transform 0.8s var(--ease-out-expo);
}

.service-card {
    flex: 0 0 400px;
    min-width: 0;
}

.service-card-inner {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.5s var(--ease-out-expo),
                box-shadow 0.5s ease;
}

.service-card:hover .service-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-image-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

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

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 58, 74, 0.8), transparent);
}

.service-content {
    padding: var(--space-xl);
}

.service-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ocean-deep);
    background: var(--gold-accent);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.service-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.service-description {
    font-size: var(--text-sm);
    color: var(--sage-mist);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.service-benefits {
    margin-bottom: var(--space-lg);
}

.service-benefits li {
    position: relative;
    padding-left: var(--space-lg);
    font-size: var(--text-sm);
    color: var(--cloud-white);
    margin-bottom: var(--space-sm);
}

.service-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--gold-accent);
    border-radius: 50%;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-details {
    display: flex;
    flex-direction: column;
}

.service-duration {
    font-size: var(--text-sm);
    color: var(--sage-mist);
}

.service-price {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
}

.service-cta {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--ocean-deep);
    background: var(--cloud-white);
    border-radius: var(--radius-full);
    transition: background 0.3s ease, transform 0.3s var(--ease-out-expo);
}

.service-cta:hover {
    background: var(--gold-light);
}

/* Services Navigation */
.services-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.services-nav-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--cloud-white);
    transition: all 0.3s ease;
}

.services-nav-btn:hover {
    background: var(--cloud-white);
    color: var(--ocean-deep);
}

.services-nav-btn svg {
    width: 20px;
    height: 20px;
}

.services-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.services-progress-bar {
    width: 25%;
    height: 100%;
    background: var(--gold-accent);
    transition: width 0.5s var(--ease-out-expo);
}

/* ---------- Experience Section ---------- */
.experience .section-label {
    justify-content: center;
}

.experience-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 400;
    text-align: center;
    color: var(--ocean-deep);
    margin-bottom: var(--space-lg);
}

.experience-subtitle {
    text-align: center;
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-4xl);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-line {
    display: none;
}

.timeline-item {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--light-gray);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item:first-child {
    padding-top: 0;
}

.timeline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-marker {
    flex-shrink: 0;
}

.marker-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--cloud-white);
    background: var(--ocean-deep);
    border-radius: 50%;
}

.marker-pulse {
    display: none;
}

.timeline-content {
    padding-top: 2px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--ocean-deep);
    margin-bottom: var(--space-sm);
}

.timeline-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ---------- About Section ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 400;
    line-height: 1.3;
    color: var(--ocean-deep);
    margin-bottom: var(--space-xl);
}

.about-text {
    margin-bottom: var(--space-2xl);
}

.about-text p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

.credentials {
    background: var(--warm-cream);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2xl);
}

.credentials-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--ocean-deep);
    margin-bottom: var(--space-md);
}

.credentials-list li {
    position: relative;
    padding-left: var(--space-lg);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.credentials-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--gold-accent);
    border-radius: 50%;
}

.about-signature {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--light-gray);
}

.signature-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--ocean-deep);
    font-style: italic;
}

.signature-title {
    font-size: var(--text-sm);
    color: var(--soft-gray);
    letter-spacing: 0.05em;
}

.about-image-col {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

.about-accent-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--ocean-deep);
    color: var(--cloud-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.accent-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 500;
    display: block;
}

.accent-text {
    font-size: var(--text-sm);
    color: var(--sage-mist);
}

/* ---------- Testimonials Section ---------- */
.testimonials-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 400;
    text-align: center;
    color: var(--ocean-deep);
    margin-bottom: var(--space-3xl);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.8s var(--ease-out-expo);
}

.testimonial-slide {
    flex: 0 0 100%;
    min-width: 0;
    padding: 0 var(--space-md);
}

.testimonial-card {
    background: var(--cloud-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
}

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

.testimonial-quote {
    margin-bottom: var(--space-xl);
}

.testimonial-quote p {
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--ocean-deep);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

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

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 500;
    color: var(--ocean-deep);
    display: block;
}

.author-pet {
    font-size: var(--text-sm);
    color: var(--soft-gray);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--ocean-deep);
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: var(--sage-mist);
}

/* ---------- Gallery Section ---------- */
.gallery-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 400;
    text-align: center;
    color: var(--ocean-deep);
    margin-bottom: var(--space-3xl);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

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

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 250px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 58, 74, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-caption {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--cloud-white);
}

/* ---------- Booking Section ---------- */
.booking {
    position: relative;
    background: var(--ocean-deep);
    color: var(--cloud-white);
    text-align: center;
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.booking-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--ocean-deep) 0%,
        #1e4a5e 50%,
        var(--ocean-deep) 100%
    );
}

.booking-shapes {
    position: absolute;
    inset: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-mist), var(--sage-light));
    opacity: 0.1;
    filter: blur(80px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: 10%;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: -50px;
}

.booking-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.booking-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--space-xl);
}

.booking-text {
    font-size: var(--text-lg);
    color: var(--sage-mist);
    margin-bottom: var(--space-2xl);
}

.booking-ctas {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.booking-details {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.detail {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--sage-mist);
}

.detail svg {
    width: 18px;
    height: 18px;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--charcoal);
    color: var(--cloud-white);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 500;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--soft-gray);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--cloud-white);
    color: var(--charcoal);
    border-color: var(--cloud-white);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-nav-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.footer-nav-list li {
    margin-bottom: var(--space-sm);
}

.footer-nav-list a {
    font-size: var(--text-sm);
    color: var(--soft-gray);
    transition: color 0.3s ease;
}

.footer-nav-list a:hover {
    color: var(--cloud-white);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: var(--text-sm);
    color: var(--soft-gray);
}

.footer-contact-list svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list a {
    color: var(--soft-gray);
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--cloud-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: var(--text-sm);
    color: var(--soft-gray);
}

.footer-credit {
    font-size: var(--text-sm);
    color: var(--soft-gray);
}

/* ---------- Split Text (for animations) ---------- */
.split-text {
    overflow: hidden;
}

.split-text .char,
.split-text .word,
.split-text .line {
    display: inline-block;
}

.split-text .line {
    overflow: hidden;
}

/* ---------- Visibility States ---------- */
.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ---------- Booking Modal ---------- */
.booking-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(26, 58, 74, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
    padding: var(--space-lg);
}

.booking-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal {
    background: var(--cloud-white);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 5vw, 3rem);
    max-width: 520px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.5s var(--ease-out-expo);
    max-height: 90vh;
    overflow-y: auto;
}

.booking-modal-overlay.active .booking-modal {
    transform: translateY(0) scale(1);
}

.booking-modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
    border: none;
    background: var(--warm-cream);
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    color: var(--charcoal);
}

.booking-modal-close svg {
    width: 18px;
    height: 18px;
}

.booking-modal-close:hover {
    background: var(--sage-light);
    transform: rotate(90deg);
}

.booking-modal-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--ocean-deep);
    margin-bottom: var(--space-xs);
}

.booking-modal-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--soft-gray);
    margin-bottom: var(--space-xl);
}

.booking-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.booking-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius-lg);
    background: white;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    font-family: var(--font-body);
}

.booking-option:hover {
    border-color: var(--ocean-medium);
    background: var(--warm-cream);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.booking-option-name {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--charcoal);
}

.booking-option-price {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gold-accent);
}

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

.booking-message-preview {
    background: var(--warm-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    border-left: 3px solid var(--gold-accent);
}

.booking-message-preview p {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--charcoal);
    line-height: 1.7;
    white-space: pre-line;
}

.booking-send-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.booking-send-buttons .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
}

.booking-back {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border: none;
    background: none;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--soft-gray);
    cursor: pointer;
    transition: color 0.3s;
    margin: 0 auto;
}

.booking-back:hover {
    color: var(--ocean-deep);
}
