:root {
    --color-primary: #1a1a1a;
    --color-secondary: #555555;
    --color-gold: #C5A059;
    --color-gold-hover: #B08D45;
    --color-background: #faf9f6;
    --color-white: #ffffff;
    --color-border: #e5e5e5;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --spacing-sm: 0.75rem; /* Reduced from 1rem */
    --spacing-md: 1.5rem; /* Reduced from 2.5rem */
    --spacing-lg: 3rem; /* Reduced from 5rem */
    --spacing-xl: 5rem; /* Reduced from 10rem */
    
    --container-width: 1280px;
    --header-height: 160px; /* Increased from 80px to fit larger logo */
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.02);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-primary);
    background-color: var(--color-background);
    line-height: 1.5; /* Slightly tighter line height */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px; /* Reduced padding */
    font-size: 0.95rem; /* Slightly smaller font */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
    border: 1px solid var(--color-gold);
    box-shadow: var(--shadow-sm);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid rgba(26, 26, 26, 0.2);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Header */
.site-header {
    position: fixed; /* Keep fixed for scroll-away effect on desktop too */
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(12px);
    height: var(--header-height);
    /* Tab styling */
    border-bottom: none;
    border-radius: 0 0 24px 24px; /* Rounded bottom corners */
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* Drop shadow */
    width: 95%; /* Slightly less than full width for tab effect */
    max-width: var(--container-width);
    margin: 0 auto; /* Center the tab */
    
    display: flex;
    align-items: center;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.site-header.header-hidden {
    transform: translateY(-100%); /* Slide up to hide */
    opacity: 0; /* Fade out */
    pointer-events: none; /* Prevent clicks when hidden */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 180px; /* 2x size */
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.mobile-menu-toggle {
    display: none;
}

.main-nav {
    display: block;
    position: static;
    width: auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.site-header .btn {
    width: auto;
    padding: 10px 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Hero Section - Split Layout */
.hero {
    position: relative;
    min-height: 95vh; /* Increased height for breathing room */
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + var(--spacing-lg)) 0 var(--spacing-lg);
    /* Satin background for desktop with overlay */
    background-image: linear-gradient(rgba(250, 249, 246, 0.85), rgba(250, 249, 246, 0.85)), url('https://pub-53e78df282d94cf7941efba33c5a88ab.r2.dev/satin.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Decorative background element removed for cleaner look with satin background */
.hero::before {
    display: none;
}

.hero-container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg); /* Reduced gap */
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-content {
    text-align: left;
    padding-right: var(--spacing-sm);
    animation: fadeInLeft 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.hero-visual {
    position: relative;
    height: 500px; /* Reduced height */
    border-radius: 150px 150px 0 0; /* Adjusted arch */
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: fadeInRight 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
    transform: translateX(30px);
}

.hero-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.hero-visual:hover .hero-image-main {
    transform: scale(1.05);
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.8rem); /* Reduced font size */
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    line-height: 1.1;
}

.hero p.subheadline {
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-description {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    max-width: 480px;
}

.hero-cta-group {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-sm);
}

.hero-hours {
    margin-top: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--color-secondary);
    display: block;
    font-weight: 500;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInLeft {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    to { opacity: 1; transform: translateX(0); }
}

/* Utilities */
.text-gold { color: var(--color-gold); }
.text-center { text-align: center; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }

/* Responsive */
@media (max-width: 1024px) {
    .hero-container-split {
        gap: var(--spacing-md);
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero::before {
        display: none;
    }
    
    /* Mobile Hero Compactness */
    .hero {
        min-height: 85vh; /* Expanded to fill more of the frame */
        padding: calc(150px + var(--spacing-xl)) 0 var(--spacing-lg); /* More breathing room, increased top padding */
        /* Velvet background for mobile with lighter overlay to show texture */
        background-image: linear-gradient(rgba(250, 249, 246, 0.8), rgba(250, 249, 246, 0.8)), url('https://pub-53e78df282d94cf7941efba33c5a88ab.r2.dev/satin.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
    }

    .hero-container-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0; /* Remove gap to bring content up */
    }
    
    /* Hide hero visual on mobile */
    .hero-visual {
        display: none;
    }
    
    .hero-text-content {
        text-align: center;
        padding-right: 0;
        transform: none;
        animation: none;
        opacity: 1;
    }
    
    .hero h1 {
        font-size: 2.2rem; /* Compact header */
        margin-bottom: var(--spacing-sm);
    }
    
    .hero p.subheadline {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }
    
    /* Hide description on mobile for simplicity */
    .hero-description {
        display: none;
    }
    
    .hero-cta-group {
        justify-content: center;
        flex-direction: column;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
    }
    
    .btn {
        width: 100%;
        max-width: 300px; /* Prevent overly wide buttons */
    }
    
    .logo-img {
        height: 130px; /* 2x size on mobile */
    }
    
    .site-header {
        position: fixed; /* Ensure consistent behavior on mobile */
        height: auto; /* Let content dictate height */
        padding: 10px 0;
        width: 100%; /* Full width on mobile usually looks better, but let's try tab style if desired or revert to full */
        border-radius: 0 0 16px 16px; /* Smaller radius on mobile */
        margin: 0; /* Reset margin */
    }
    
    .site-header .btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}
