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

:root {
    --bg-color: #f9f7f4;
    --text-dark: #1a1a1a;
    --highlight-yellow: #ffeb3b;
    --accent-color: #000;
    --serif: 'EB Garamond', serif;
    --handwritten: 'Caveat', cursive;
    --marker: 'Permanent Marker', cursive;
}

body {
    font-family: var(--serif);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 2rem 3rem;
    background: var(--bg-color);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-link {
    font-size: 1.1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s;
}

.nav-link:hover {
    border-bottom: 1px solid var(--text-dark);
}

.site-title {
    font-size: 3rem;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 8px;
    letter-spacing: -1px;
}

/* Main Content */
.content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    width: 100%;
}

.intro {
    margin-bottom: 4rem;
}

.large-text {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: -1px;
}

.small-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    margin-top: -1rem;
    margin-bottom: 3rem;
}

/* Text Highlights and Accents */
.highlight {
    background: linear-gradient(transparent 60%, var(--highlight-yellow) 60%);
    padding: 0 4px;
    font-style: italic;
}

.highlight-link {
    background: linear-gradient(transparent 60%, var(--highlight-yellow) 60%);
    padding: 0 4px;
    font-style: italic;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s;
}

.highlight-link:hover {
    border-bottom: 1px solid var(--text-dark);
}

.handwritten {
    font-family: var(--handwritten);
    font-size: 1.2em;
    color: var(--accent-color);
    font-weight: 700;
    display: inline-block;
    transform: rotate(-2deg);
    margin: 0 8px;
}

.emoji {
    font-size: 1.1em;
    display: inline-block;
    margin: 0 4px;
}

/* Images Section */
.images-section {
    margin: 4rem 0;
}

.image-gallery {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.image-container {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    filter: grayscale(10%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.main-image {
    transform: rotate(-1deg);
}

.side-image {
    transform: rotate(1deg);
    margin-top: 2rem;
}

.image-label {
    position: absolute;
    bottom: -30px;
    right: 20px;
    font-family: var(--handwritten);
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 700;
    transform: rotate(-5deg);
}

/* CTA Section */
.cta-section {
    margin-top: 6rem;
    padding: 4rem 0;
    text-align: center;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-text {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    background: var(--highlight-yellow);
    color: var(--text-dark);
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--marker);
    font-size: 1.8rem;
    transform: rotate(-2deg);
    transition: transform 0.3s;
    box-shadow: 5px 5px 0 var(--text-dark);
    position: relative;
}

.cta-button:hover {
    transform: rotate(-2deg) scale(1.05);
    box-shadow: 7px 7px 0 var(--text-dark);
}

.button-text {
    display: block;
    margin-bottom: 0.5rem;
}

.phone-number {
    display: block;
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 2rem 3rem;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    margin-top: 4rem;
}

.footer p {
    font-size: 1rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-title {
        font-size: 2rem;
    }

    .nav {
        padding: 1rem;
    }

    .content {
        padding: 1.5rem;
    }

    .large-text {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }

    .small-text {
        font-size: 1rem;
    }

    .cta-text {
        font-size: 1.6rem;
    }

    .cta-button {
        font-size: 1.4rem;
        padding: 1.2rem 2rem;
    }

    .image-gallery {
        flex-direction: column;
        align-items: center;
    }

    .image-container {
        max-width: 100%;
    }

    .side-image {
        margin-top: 3rem;
    }

    .handwritten {
        font-size: 1.1em;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.large-text {
    animation: fadeIn 0.8s ease-out;
    animation-fill-mode: both;
}

.large-text:nth-child(1) { animation-delay: 0.1s; }
.large-text:nth-child(2) { animation-delay: 0.3s; }
.large-text:nth-child(3) { animation-delay: 0.5s; }
.large-text:nth-child(4) { animation-delay: 0.7s; }
.small-text { animation-delay: 0.9s; }