* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #faf6f0;
    --cream-warm: #f5ebe0;
    --gold: #c9a227;
    --gold-light: #ddb945;
    --sunset-orange: #d4854a;
    --sunset-peach: #e8a872;
    --sunset-pink: #d4a08a;
    --sky-warm: #c9b896;
    --forest: #4a6741;
    --forest-deep: #3a5335;
    --forest-light: #5c7a52;
    --mountain-blue: #5a6d7a;
    --coffee-dark: #3d2e24;
    --coffee: #5c4a3d;
    --text-dark: #2d2420;
    --text-medium: #5c4a3d;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Subtle texture */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.02;
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Hero Section - Sunset gradient */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(
        180deg,
        #f5d6a8 0%,
        #e8b87a 15%,
        #d4925c 30%,
        #c9846e 45%,
        #a8907a 60%,
        #7a8a6a 75%,
        #5c7352 90%,
        var(--forest-deep) 100%
    );
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at 50% 30%,
        rgba(255, 220, 150, 0.4) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2rem;
}

/* Logo */
.logo-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(255, 220, 150, 0.5) 0%,
        rgba(255, 200, 100, 0.25) 35%,
        transparent 60%
    );
    filter: blur(40px);
    pointer-events: none;
}

.logo {
    width: min(700px, 92vw);
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 15px 50px rgba(0, 0, 0, 0.25));
    animation: logoFadeIn 1s ease-out both;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.location {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cream);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out both;
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 1s ease-out both;
    animation-delay: 1s;
}

.scroll-hint span {
    display: block;
    width: 2px;
    height: 45px;
    background: linear-gradient(to bottom, var(--cream), transparent);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Service Note - Doorbell */
.service-note {
    background: var(--forest-deep);
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
}

.service-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-deep), var(--forest-light), var(--forest-deep));
}

.bell-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 1.25rem;
    color: var(--gold-light);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    animation: ring 4s ease-in-out infinite;
}

.bell-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    4% { transform: rotate(14deg); }
    8% { transform: rotate(-14deg); }
    12% { transform: rotate(10deg); }
    16% { transform: rotate(-10deg); }
    20% { transform: rotate(0deg); }
}

.service-note p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.7rem;
    font-style: italic;
    color: var(--cream);
    letter-spacing: 0.02em;
}

/* Info Section */
.info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    padding: 5rem 2rem;
    background: var(--cream-warm);
    position: relative;
}

.info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--sunset-orange), transparent);
}

.info-block {
    text-align: center;
}

.label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 1rem;
}

.info-block address,
.info-block p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-style: normal;
    line-height: 1.7;
    color: var(--coffee);
}

.menu-note {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--sunset-orange);
}

.divider {
    width: 2px;
    height: 70px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--sunset-orange),
        transparent
    );
    border-radius: 2px;
}

/* Windows Section */
.windows {
    background: linear-gradient(135deg, var(--sunset-peach) 0%, var(--sunset-orange) 50%, var(--coffee) 100%);
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
}

.windows::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    border-radius: 50%;
}

.window-frame {
    width: 110px;
    height: 150px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 5px;
    padding: 7px;
    border: 3px solid var(--cream);
    border-radius: 4px 4px 0 0;
    position: relative;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.window-pane {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.window-pane::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 60%
    );
    animation: shimmer 4s ease-in-out infinite;
}

.window-pane:nth-child(1)::after { animation-delay: 0s; }
.window-pane:nth-child(2)::after { animation-delay: 1s; }
.window-pane:nth-child(3)::after { animation-delay: 2s; }
.window-pane:nth-child(4)::after { animation-delay: 3s; }

@keyframes shimmer {
    0%, 100% { transform: translateX(-50%) translateY(-50%); }
    50% { transform: translateX(50%) translateY(50%); }
}

.windows-content {
    text-align: center;
    max-width: 480px;
    position: relative;
    z-index: 1;
}

.windows-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.25;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.windows-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.windows-desc strong {
    color: var(--cream);
    font-weight: 500;
}

/* Essence/Tagline Section */
.essence {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--forest);
    position: relative;
}

.essence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest), var(--gold), var(--forest));
}

.tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    letter-spacing: 0.03em;
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    background: var(--forest-deep);
}

footer p {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 600px) {
    .hero {
        min-height: 90vh;
    }

    .logo {
        width: min(500px, 90vw);
    }

    .logo-glow {
        width: 600px;
        height: 600px;
    }

    .info {
        flex-direction: column;
        gap: 2.5rem;
        padding: 4rem 1.5rem;
    }

    .divider {
        width: 60px;
        height: 2px;
        background: linear-gradient(
            to right,
            transparent,
            var(--sunset-orange),
            transparent
        );
    }

    .service-note {
        padding: 3rem 1.5rem;
    }

    .windows {
        padding: 4rem 1.5rem;
    }

    .window-frame {
        width: 90px;
        height: 120px;
    }

    .essence {
        padding: 4rem 1.5rem;
    }
}

/* Hover effects */
.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

/* Selection color */
::selection {
    background: var(--sunset-orange);
    color: white;
}
