/* CSS Variables - Modern Minimalist Palette 2025 */
:root {
    --primary-50: #FFF8F5;
    --primary-100: #FFF0EB;
    --primary-200: #FFE5D9;
    --primary-300: #FFD4C4;
    --primary-400: #FFC4B0;
    --primary-500: #FFB89A;
    --primary-600: #FFA885;
    --primary-700: #FF9870;
    --rose-500: #A01C2E;
    --rose-600: #8F1929;
    --dusk-500: #6B5B95;
    --nude-500: #E8D5C4;
    --cream-500: #FFF0E7;
    
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    --white: #FFFFFF;
    --black: #000000;
    
    /* Subtle shadows for minimalist design */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Soft gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--rose-500) 100%);
    --gradient-hero: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    
    /* Animation timings - calm and refined */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
}

/* Font display optimization */
@font-face {
    font-family: 'Manrope';
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-display: swap;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header - Minimalist Design */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-base);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--gray-100);
}

.header.scrolled {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    gap: 2rem;
}

.nav-links {
    display: none;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-family: 'Manrope', sans-serif;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-600);
}

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

.nav-contacts {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .nav-contacts {
        display: flex;
    }
}

.nav-phone {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.nav-phone:hover {
    color: var(--primary-600);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.875rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    position: relative;
    z-index: 1001;
    transition: all var(--transition-base);
    min-width: auto;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateX(0);
    white-space: nowrap;
    display: inline-block;
    min-width: auto;
    margin-right: 0;
}

.mobile-menu-toggle.active .mobile-menu-label {
    opacity: 0;
    transform: translateX(-10px);
    width: 0;
    min-width: 0;
    margin-right: 0;
    overflow: hidden;
    padding: 0;
}

.mobile-menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 24px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.mobile-menu-toggle span.mobile-menu-icon span {
    width: 24px;
    height: 2.5px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.mobile-menu-toggle.active span.mobile-menu-icon span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background: var(--gray-900);
}

.mobile-menu-toggle.active span.mobile-menu-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span.mobile-menu-icon span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background: var(--gray-900);
}

/* Mobile Menu - Elegant & Fast */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
    overflow: hidden;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mobile-menu.active .mobile-menu-overlay {
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 360px;
    height: 100%;
    height: 100dvh;
    background: var(--white);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

@media (max-width: 360px) {
    .mobile-menu-content {
        width: 90%;
        max-width: none;
    }
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.25rem;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 10;
    flex-shrink: 0;
}

@media (max-width: 360px) {
    .mobile-menu-header {
        padding: 1.25rem 1rem;
    }
}

.mobile-menu-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    color: var(--gray-900);
    letter-spacing: 0.02em;
}

@media (max-width: 360px) {
    .mobile-menu-header h3 {
        font-size: 1rem;
    }
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    background: var(--gray-100);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: var(--gray-700);
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.mobile-menu-close svg {
    width: 20px;
    height: 20px;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    flex: 1;
    gap: 0;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    transition: all 0.2s ease;
    position: relative;
    border-bottom: 1px solid var(--gray-100);
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 360px) {
    .mobile-menu-link {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    color: var(--primary-600);
    background: var(--gray-50);
}

.mobile-menu-link:hover::before,
.mobile-menu-link:active::before {
    transform: scaleY(1);
}

.mobile-menu-link-text {
    position: relative;
    z-index: 1;
}

.mobile-menu-footer {
    padding: 1.5rem 1.25rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--white);
    margin-top: auto;
    flex-shrink: 0;
}

@media (max-width: 360px) {
    .mobile-menu-footer {
        padding: 1.25rem 1rem;
        gap: 0.625rem;
    }
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.25rem;
    background: var(--gray-50);
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    font-family: 'Manrope', sans-serif;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

@media (max-width: 360px) {
    .mobile-menu-phone {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

.mobile-menu-phone:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
    color: var(--gray-900);
}

.mobile-menu-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.25rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    font-family: 'Manrope', sans-serif;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(255, 184, 154, 0.25);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

@media (max-width: 360px) {
    .mobile-menu-whatsapp {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

.mobile-menu-whatsapp:hover {
    box-shadow: 0 4px 12px rgba(255, 184, 154, 0.35);
    transform: translateY(-1px);
}


/* Smooth menu items appearance */
.mobile-menu.active .mobile-menu-link {
    opacity: 1;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Hero Section - Clean White Design */
.hero {
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 1rem 1.5rem;
    background: var(--white);
    overflow: hidden;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .hero {
        padding: 80px 1.5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 90px 2rem 2.5rem;
    }
}

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

/* Subtle background orbs - very calm */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float-subtle 30s ease-in-out infinite;
    pointer-events: none;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-200);
    top: 15%;
    left: 5%;
}

@media (min-width: 640px) {
    .orb-1 {
        width: 400px;
        height: 400px;
        top: 20%;
        left: 10%;
    }
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: var(--rose-500);
    bottom: 15%;
    right: 10%;
    animation-delay: 5s;
    opacity: 0.1;
}

@media (min-width: 640px) {
    .orb-2 {
        width: 350px;
        height: 350px;
        bottom: 20%;
        right: 15%;
    }
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: var(--nude-500);
    top: 55%;
    left: 75%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
    opacity: 0.12;
}

@media (min-width: 640px) {
    .orb-3 {
        width: 300px;
        height: 300px;
        top: 60%;
        left: 70%;
    }
}

@keyframes float-subtle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
}

@media (min-width: 640px) {
    .hero-content {
        gap: 0.5rem;
    }
}

.logo-container {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 1rem;
    animation: logo-entrance-subtle 1s ease-out forwards;
    transform-origin: center;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    padding: 8px;
    box-sizing: content-box;
    flex-shrink: 0;
    max-width: calc(100vw - 2rem);
}

@media (min-width: 640px) {
    .logo-container {
        width: 340px;
        height: 340px;
        margin: 0 auto 1.25rem;
        padding: 10px;
    }
}

@media (min-width: 1024px) {
    .logo-container {
        width: 400px;
        height: 400px;
        margin: 0 auto 1.5rem;
        padding: 12px;
    }
}


.logo-container:hover {
    transform: scale(1.02);
    transition: transform var(--transition-slow);
}

@keyframes logo-entrance-subtle {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Плавная пульсация сердца */
@keyframes heart-pulse {
    0%, 100% {
        transform: scale(1);
    }
    8% {
        transform: scale(1.03); /* Первый удар - сильнее */
    }
    16% {
        transform: scale(1);
    }
    24% {
        transform: scale(1.02); /* Второй удар - слабее */
    }
    32% {
        transform: scale(1);
    }
    /* Пауза до следующего цикла */
}

/* Sparkle particles - блестки */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    pointer-events: none;
    z-index: 6;
    opacity: 0;
}

.sparkle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--white) 0%, var(--primary-300) 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 184, 154, 0.8), 0 0 12px rgba(255, 255, 255, 0.6);
}

.sparkle::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, transparent 40%, rgba(255, 184, 154, 0.3) 50%, transparent 60%);
    border-radius: 50%;
    animation: sparkle-rotate 3s linear infinite;
}

.sparkle-1 {
    top: 15%;
    left: 25%;
    animation: sparkle-twinkle 4s ease-in-out infinite;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 35%;
    right: 20%;
    animation: sparkle-twinkle 5s ease-in-out infinite;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 30%;
    left: 30%;
    animation: sparkle-twinkle 4.5s ease-in-out infinite;
    animation-delay: 2s;
}

.sparkle-4 {
    bottom: 20%;
    right: 25%;
    animation: sparkle-twinkle 5.5s ease-in-out infinite;
    animation-delay: 3s;
}

.sparkle-5 {
    top: 50%;
    left: 12%;
    animation: sparkle-twinkle 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

.sparkle-6 {
    top: 50%;
    right: 12%;
    animation: sparkle-twinkle 5s ease-in-out infinite;
    animation-delay: 2.5s;
}

@keyframes sparkle-twinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    20% {
        opacity: 1;
        transform: scale(1.2);
    }
    40% {
        opacity: 0.8;
        transform: scale(1);
    }
    60% {
        opacity: 1;
        transform: scale(1.3);
    }
    80% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

@keyframes sparkle-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Logo image wrapper - мягкий эффект без обрезания */
.logo-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-slow);
    animation: heart-pulse 1.3s ease-in-out infinite;
}

.logo-container:hover .logo-image-wrapper {
    transform: scale(1.01);
    animation: none; /* Отключаем пульсацию при наведении */
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.08)) 
            drop-shadow(0 8px 40px rgba(0, 0, 0, 0.04));
    transition: transform var(--transition-slow), filter var(--transition-slow);
    position: relative;
    z-index: 2;
}

.logo-container:hover .logo-image {
    transform: scale(1.02);
    filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.1)) 
            drop-shadow(0 12px 60px rgba(0, 0, 0, 0.06));
}

/* Subtle shine effect - мягкий блик */
.logo-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 45%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 55%,
        transparent 100%
    );
    transform: rotate(45deg);
    animation: shine-sweep-subtle 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
}

@keyframes shine-sweep-subtle {
    0% {
        transform: rotate(45deg) translateX(-120%) translateY(-120%);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: rotate(45deg) translateX(120%) translateY(120%);
        opacity: 0;
    }
}

/* Ripple effect on click */
.logo-ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 154, 0.6) 0%, rgba(160, 28, 46, 0.3) 50%, transparent 100%);
    transform: translate(-50%, -50%) scale(0);
    animation: ripple-expand 0.6s ease-out;
    pointer-events: none;
    z-index: 100;
}

@keyframes ripple-expand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(15);
        opacity: 0;
    }
}

/* Smooth transitions for interactive effects */
.logo-container {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}


.hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
    padding: 0 1rem;
    line-height: 1.4;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 0.8125rem;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 0.875rem;
    }
}

.hero-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.25;
    padding: 0 1rem;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}

@media (min-width: 375px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.75rem;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-title span {
    display: block;
}

.hero-description {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    color: var(--gray-700);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.65;
    padding: 0 1rem;
    flex-shrink: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 0.9375rem;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
    margin: 0;
    padding: 0 1rem;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
        padding: 0;
        max-width: none;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    text-align: center;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
        width: auto;
    }
}

@media (min-width: 1024px) {
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
    border: none;
    transition: all var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-800);
    border: 1.5px solid var(--gray-300);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    border-color: var(--primary-400);
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--gray-700);
    padding: 0 0.5rem;
    margin: 0;
    flex-shrink: 0;
}

@media (min-width: 375px) {
    .hero-features {
        font-size: 0.8125rem;
        gap: 1rem;
    }
}

@media (min-width: 640px) {
    .hero-features {
        gap: 1.5rem;
        font-size: 0.9375rem;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .hero-features {
        font-size: 1rem;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .feature-item {
        gap: 0.6rem;
    }
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-500);
    box-shadow: 0 0 8px rgba(255, 184, 154, 0.6);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .feature-dot {
        width: 10px;
        height: 10px;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}


/* Section Styles - More White Space */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* About Section - Clean White */
.about {
    background: var(--white);
    padding: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--rose-50) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
    padding: 0.75rem;
}

.value-card:hover .value-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 4px 16px rgba(255, 184, 154, 0.2);
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--rose-100) 100%);
}

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

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.value-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Services Section - Minimalist */
.services {
    background: var(--gray-50);
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-200);
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--rose-50) 100%);
    border-radius: 1rem;
    padding: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 4px 16px rgba(255, 184, 154, 0.2);
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--rose-100) 100%);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.service-card > p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-500);
    font-weight: 700;
}

.service-link {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--rose-500);
    gap: 0.75rem;
}

/* Equipment Section - Clean */
/* Preparation Section */
.preparation {
    background: var(--white);
    padding: 6rem 0;
}

.preparation-content {
    max-width: 800px;
    margin: 0 auto;
}

.preparation-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}


.checklist-item:hover {
    background: var(--primary-50);
    border-color: var(--primary-200);
    transform: translateX(4px);
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary-600);
    margin-top: 0.125rem;
}

.checklist-item span {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    font-weight: 400;
}

@media (min-width: 640px) {
    .checklist-item {
        padding: 1.5rem;
    }
    
    .checklist-item span {
        font-size: 1.0625rem;
    }
}

.preparation-cta {
    text-align: center;
    margin-top: 2rem;
}

.preparation-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.equipment {
    background: 
        linear-gradient(135deg, rgba(255, 248, 245, 0.8) 0%, rgba(255, 240, 235, 0.6) 50%, rgba(250, 250, 250, 0.9) 100%),
        radial-gradient(circle at 20% 20%, rgba(255, 184, 154, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(160, 28, 46, 0.08) 0%, transparent 50%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .equipment {
        padding: 5.5rem 0;
    }
}

@media (min-width: 1024px) {
    .equipment {
        padding: 6rem 0;
    }
}

.equipment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 184, 154, 0.02) 2px,
            rgba(255, 184, 154, 0.02) 4px
        );
    pointer-events: none;
    opacity: 0.5;
}

.equipment::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 184, 154, 0.06) 0%, transparent 70%);
    animation: equipmentPulse 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes equipmentPulse {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1) translate(5%, 5%);
        opacity: 0.8;
    }
}

.equipment .section-header {
    margin-bottom: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .equipment .section-header {
        margin-bottom: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .equipment .section-header {
        margin-bottom: 4rem;
    }
}

.equipment-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .equipment-content {
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .equipment-content {
        gap: 3.5rem;
    }
}

.equipment-video-wrapper {
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

.equipment-video-container {
    position: relative;
    width: 100%;
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: 
        0 20px 60px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    background: var(--gray-900);
    aspect-ratio: 16 / 9;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.equipment-video-container:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 32px 80px -12px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.equipment-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1.75rem;
}

.equipment-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.02) 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
    pointer-events: none;
    border-radius: 1.75rem;
}

.equipment-video-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-800);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 2;
}

@media (min-width: 640px) {
    .equipment-video-badge {
        top: 1.5rem;
        left: 1.5rem;
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}

.equipment-video-badge svg {
    width: 16px;
    height: 16px;
    color: var(--rose-600);
}

.equipment-specs-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 1.5rem 0 1.25rem 0;
    font-family: 'Manrope', sans-serif;
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 0.75rem;
}

.equipment-specs-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

@media (min-width: 640px) {
    .equipment-specs-title {
        font-size: 1.25rem;
        margin-top: 1.75rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .equipment-specs-title {
        text-align: left;
        margin-top: 2rem;
    }
    
    .equipment-specs-title::after {
        left: 0;
        transform: none;
    }
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .equipment-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .equipment-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.125rem;
    }
}

@media (min-width: 1280px) {
    .equipment-grid {
        gap: 1.25rem;
    }
}

.equipment-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(255, 184, 154, 0.2);
    box-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    cursor: pointer;
    min-height: 140px;
}

@media (min-width: 640px) {
    .equipment-card {
        padding: 1.375rem 1.125rem;
        gap: 0.875rem;
        min-height: 150px;
    }
}

@media (min-width: 1024px) {
    .equipment-card {
        padding: 1.5rem 1.25rem;
        gap: 1rem;
        min-height: 160px;
    }
}

.equipment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--transition-base);
    border-radius: 0 2px 2px 0;
}

.equipment-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 184, 154, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.equipment-card:hover {
    box-shadow: 
        0 8px 24px rgba(255, 184, 154, 0.15),
        0 0 0 1px rgba(255, 184, 154, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    border-color: var(--primary-400);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 1);
}

.equipment-card:hover::before {
    transform: scaleY(1);
}

.equipment-card:hover::after {
    opacity: 1;
}

.equipment-card-featured {
    background: linear-gradient(135deg, rgba(255, 184, 154, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: var(--primary-400);
    box-shadow: 
        0 4px 16px rgba(255, 184, 154, 0.2),
        0 0 0 1px rgba(255, 184, 154, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.equipment-card-featured::before {
    transform: scaleY(1);
    width: 5px;
}

.equipment-card-featured::after {
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 184, 154, 0.05) 0%, transparent 100%);
}

.equipment-card-featured:hover {
    box-shadow: 
        0 12px 32px rgba(255, 184, 154, 0.2),
        0 0 0 1px rgba(255, 184, 154, 0.2);
    transform: translateY(-8px);
}

.equipment-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    border-radius: 0.75rem;
    color: var(--rose-600);
    margin-bottom: 0.125rem;
    flex-shrink: 0;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(255, 184, 154, 0.2);
}

@media (min-width: 640px) {
    .equipment-icon {
        width: 48px;
        height: 48px;
        border-radius: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .equipment-icon {
        width: 52px;
        height: 52px;
        border-radius: 1rem;
    }
}

.equipment-card:hover .equipment-icon {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 4px 12px rgba(255, 184, 154, 0.3);
}

.equipment-card-featured .equipment-icon {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(160, 28, 46, 0.25);
}

.equipment-card-featured:hover .equipment-icon {
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 6px 16px rgba(160, 28, 46, 0.35);
}

.equipment-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
    font-family: 'Manrope', sans-serif;
}

@media (min-width: 640px) {
    .equipment-label {
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
    }
}

@media (min-width: 1024px) {
    .equipment-label {
        font-size: 0.8125rem;
    }
}

.equipment-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-family: 'Manrope', sans-serif;
}

@media (min-width: 640px) {
    .equipment-value {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .equipment-value {
        font-size: 1.25rem;
    }
}

.equipment-card-featured .equipment-value {
    color: var(--rose-600);
    font-size: 1.125rem;
}

@media (min-width: 640px) {
    .equipment-card-featured .equipment-value {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .equipment-card-featured .equipment-value {
        font-size: 1.375rem;
    }
}

/* Contacts Section - Minimalist */
.contacts {
    background: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .contacts {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .contacts {
        padding: 7rem 0;
    }
}

.contacts-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contacts-content {
        flex-direction: row;
        gap: 4rem;
        align-items: stretch;
    }
}

.contacts-info {
    width: 100%;
    flex: 1;
}

@media (min-width: 1024px) {
    .contacts-info {
        flex: 0 0 48%;
        max-width: 48%;
    }
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.contacts-map {
    width: 100%;
    flex: 1;
}

@media (min-width: 1024px) {
    .contacts-map {
        flex: 0 0 52%;
        max-width: 52%;
    }
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 
        0 10px 40px -12px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    background: var(--gray-200);
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .map-wrapper {
        padding-bottom: 70%;
    }
}

@media (min-width: 1024px) {
    .map-wrapper {
        padding-bottom: 100%;
        height: 100%;
        min-height: 450px;
    }
}

.map-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 60px -12px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 184, 154, 0.1);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 2.25rem 2rem;
    border-radius: 1.25rem;
    text-align: center;
    border: 1.5px solid rgba(255, 184, 154, 0.15);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all var(--transition-base);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 184, 154, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 12px 32px rgba(255, 184, 154, 0.12),
        0 0 0 1px rgba(255, 184, 154, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    border-color: rgba(255, 184, 154, 0.3);
    background: rgba(255, 255, 255, 1);
}

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

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    border-radius: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-600);
    box-shadow: 
        0 4px 12px rgba(255, 184, 154, 0.2),
        0 0 0 1px rgba(255, 184, 154, 0.1) inset;
    transition: all var(--transition-base);
    padding: 0.875rem;
    position: relative;
}

.contact-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.125rem;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.contact-card:hover .contact-icon {
    transform: translateY(-6px) scale(1.08) rotate(2deg);
    box-shadow: 
        0 8px 24px rgba(255, 184, 154, 0.3),
        0 0 0 1px rgba(255, 184, 154, 0.2) inset;
    background: var(--gradient-primary);
    color: var(--white);
}

.contact-card:hover .contact-icon::after {
    opacity: 1;
}

.contact-card:hover .contact-icon svg {
    position: relative;
    z-index: 1;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.contact-card h3 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Manrope', sans-serif;
}

.contact-card p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.5;
    letter-spacing: -0.01em;
    font-family: 'Manrope', sans-serif;
}

@media (min-width: 640px) {
    .contact-card p {
        font-size: 1.25rem;
    }
}

.contacts-cta {
    margin-top: 4rem;
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 184, 154, 0.15);
}

@media (min-width: 768px) {
    .contacts-cta {
        margin-top: 5rem;
        padding-top: 4rem;
    }
}

/* Footer - Clean White */
.footer {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 2fr;
    }
}

.footer-brand h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.footer-brand p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-600);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--primary-100);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 184, 154, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateZ(0);
    -webkit-transform: translateY(0) translateZ(0);
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(255, 184, 154, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
}

/* Preloader Styles - Optimized for Mobile & iOS */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh; /* iOS Safari fix */
    height: -webkit-fill-available; /* iOS Safari fix */
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--cream-500) 50%, var(--primary-100) 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
    touch-action: none;
    /* GPU acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: opacity, visibility;
    /* Prevent iOS bounce */
    position: -webkit-sticky;
    position: sticky;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.preloader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* GPU acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.preloader-gradient-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: preloaderOrbFloat 8s ease-in-out infinite;
    /* GPU acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    /* Optimized blur for mobile */
    filter: blur(80px);
    -webkit-filter: blur(80px);
    /* Reduce blur on mobile for performance */
}

@media (max-width: 768px) {
    .preloader-gradient-orb {
        filter: blur(60px);
        -webkit-filter: blur(60px);
    }
}

@media (max-width: 480px) {
    .preloader-gradient-orb {
        filter: blur(40px);
        -webkit-filter: blur(40px);
    }
}

.preloader-gradient-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-300) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.preloader-gradient-orb.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--rose-500) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
    opacity: 0.4;
}

.preloader-gradient-orb.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-400) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    -webkit-transform: translate3d(-50%, -50%, 0);
    animation-delay: 4s;
    opacity: 0.3;
}

@keyframes preloaderOrbFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    33% {
        transform: translate3d(30px, -30px, 0) scale(1.1);
    }
    66% {
        transform: translate3d(-20px, 20px, 0) scale(0.9);
    }
}

.preloader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    /* GPU acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    /* iOS safe area support */
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.preloader-logo-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    animation: preloaderLogoAppear 1.2s ease-out;
    /* GPU acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform, opacity;
}

.preloader-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(160, 28, 46, 0.2));
    -webkit-filter: drop-shadow(0 10px 30px rgba(160, 28, 46, 0.2));
    animation: preloaderLogoPulse 2s ease-in-out infinite;
    /* GPU acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    /* Prevent image dragging on iOS */
    -webkit-user-drag: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.preloader-logo-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    border-radius: 50%;
    animation: preloaderShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes preloaderLogoAppear {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes preloaderLogoPulse {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, 0, 0) scale(1.05);
    }
}

@keyframes preloaderShine {
    0%, 100% {
        opacity: 0.3;
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: translate3d(0, 0, 0) rotate(180deg);
    }
}

.preloader-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    /* GPU acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.preloader-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 184, 154, 0.6);
    animation: preloaderParticleFloat 4s ease-in-out infinite;
    /* GPU acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform, opacity;
    /* Reduce particles on mobile */
}

/* Hide some particles on mobile for better performance */
@media (max-width: 768px) {
    .preloader-particle.particle-5,
    .preloader-particle.particle-6 {
        display: none;
    }
}

@media (max-width: 480px) {
    .preloader-particle.particle-3,
    .preloader-particle.particle-4,
    .preloader-particle.particle-5,
    .preloader-particle.particle-6 {
        display: none;
    }
}

.preloader-particle.particle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    width: 4px;
    height: 4px;
}

.preloader-particle.particle-2 {
    top: 30%;
    right: 25%;
    animation-delay: 0.5s;
    width: 5px;
    height: 5px;
}

.preloader-particle.particle-3 {
    bottom: 25%;
    left: 30%;
    animation-delay: 1s;
    width: 6px;
    height: 6px;
}

.preloader-particle.particle-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
    width: 4px;
    height: 4px;
}

.preloader-particle.particle-5 {
    top: 50%;
    left: 15%;
    animation-delay: 2s;
    width: 5px;
    height: 5px;
}

.preloader-particle.particle-6 {
    top: 40%;
    right: 15%;
    animation-delay: 2.5s;
    width: 4px;
    height: 4px;
}

@keyframes preloaderParticleFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate3d(20px, -20px, 0) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate3d(-15px, 15px, 0) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translate3d(10px, 10px, 0) scale(1.1);
        opacity: 0.9;
    }
}

.preloader-text {
    margin-top: 1rem;
    animation: preloaderTextFadeIn 1.5s ease-out;
    /* GPU acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform, opacity;
}

.preloader-text-line {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--rose-600);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: preloaderTextShimmer 3s ease-in-out infinite;
    /* Prevent text selection on iOS */
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    /* GPU acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: opacity;
}

@keyframes preloaderTextFadeIn {
    0% {
        opacity: 0;
        transform: translate3d(0, 10px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes preloaderTextShimmer {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.preloader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
    animation: preloaderProgressAppear 1.8s ease-out;
    /* GPU acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform, opacity;
}

.preloader-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    width: 0%;
    animation: preloaderProgressFill 2s ease-out forwards;
    box-shadow: 0 0 10px rgba(255, 184, 154, 0.5);
    /* GPU acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: width;
}

@keyframes preloaderProgressAppear {
    0% {
        opacity: 0;
        transform: translate3d(0, 0, 0) scaleX(0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scaleX(1);
    }
}

@keyframes preloaderProgressFill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Hide body scroll when preloader is active - iOS optimized */
body.preloader-active {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    /* iOS Safari fix */
    height: 100vh;
    height: -webkit-fill-available;
    /* Prevent iOS bounce */
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
    touch-action: none;
}

/* Responsive adjustments for preloader */
@media (max-width: 768px) {
    .preloader-content {
        gap: 1.5rem;
    }
    
    .preloader-logo-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .preloader-text-line {
        font-size: 1.2rem;
        letter-spacing: 0.08em;
    }
    
    .preloader-progress {
        width: 150px;
        height: 2px;
    }
    
    .preloader-gradient-orb.orb-1 {
        width: 300px;
        height: 300px;
    }
    
    .preloader-gradient-orb.orb-2 {
        width: 250px;
        height: 250px;
    }
    
    .preloader-gradient-orb.orb-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .preloader-content {
        gap: 1.25rem;
        padding: 1rem;
    }
    
    .preloader-logo-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .preloader-text-line {
        font-size: 1rem;
        letter-spacing: 0.06em;
    }
    
    .preloader-progress {
        width: 120px;
        height: 1.5px;
    }
    
    .preloader-gradient-orb.orb-1 {
        width: 250px;
        height: 250px;
    }
    
    .preloader-gradient-orb.orb-2 {
        width: 200px;
        height: 200px;
    }
    
    .preloader-gradient-orb.orb-3 {
        width: 150px;
        height: 150px;
    }
}

/* iOS specific optimizations */
@supports (-webkit-touch-callout: none) {
    .preloader {
        /* iOS Safari viewport fix */
        min-height: -webkit-fill-available;
    }
    
    .preloader-logo {
        /* Optimize image rendering on iOS */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    /* Reduce animations on older iOS devices */
    @media (max-width: 480px) {
        .preloader-gradient-orb {
            animation-duration: 12s;
        }
        
        .preloader-logo {
            animation-duration: 3s;
        }
        
        .preloader-particle {
            animation-duration: 6s;
        }
    }
}

/* High DPI displays optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .preloader-logo {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }



