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

body {
    background: #faf8f5;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 19px;
    line-height: 1.9;
    color: #3d3d3d;
    min-height: 100vh;
}

/* Navigation */
.nav {
    background: #faf8f5;
    border-bottom: 2px solid #2d2d2d;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.nav-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d2d2d;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: #8a7968;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.25rem;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-item a {
    color: #5a5a5a;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #8a7968;
    transition: width 0.3s ease;
}

.nav-item a:hover {
    color: #8a7968;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #f5f1eb 0%, #faf8f5 100%);
    padding: 1rem 3rem;
    border-bottom: 1px solid #e5ddd3;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-ornament {
    font-size: 1.5rem;
    color: #8a7968;
    margin: 1rem;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 5rem;
    font-weight: 400;
    color: #2d2d2d;
    letter-spacing: -1px;
    margin: 0;
    line-height: 1.1;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: #8a7968;
    margin: 2rem auto 1.5rem;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #6a6a6a;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* Container */
.container {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 3rem;
}

/* Typography */
h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #2d2d2d;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #8a7968;
    margin-top: 1.5rem;
}

h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #3d3d3d;
    line-height: 1.3;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.3px;
}

h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #4d4d4d;
    line-height: 1.4;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

p {
    color: #5a5a5a;
    margin-bottom: 1.8rem;
    font-weight: 300;
    text-align: justify;
    hyphens: auto;
}

/* First paragraph drop cap */
.container > p:first-of-type::first-letter {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
    float: left;
    margin: 0.1rem 0.5rem 0 0;
    color: #8a7968;
}

a {
    color: #8a7968;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 1px solid #c5b8a8;
}

a:hover {
    color: #6a5948;
    border-bottom-color: #8a7968;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border: 1px solid #e5ddd3;
    padding: 0.5rem;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
}

/* Lists */
.container ul {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.container ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #5a5a5a;
    font-weight: 300;
}

.container ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 0.8em;
    color: #8a7968;
    font-size: 0.8rem;
    line-height: 1;
}

/* Nested lists */
.container ul ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.container ul ul li::before {
    content: '○';
    color: #b0a090;
    font-size: 0.7rem;
}

.container ul ul ul li::before {
    content: '·';
    font-size: 1rem;
}

/* Ordered lists */
ol {
    counter-reset: editorial-counter;
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

ol li {
    counter-increment: editorial-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.2rem;
    color: #5a5a5a;
    font-weight: 300;
}

ol li::before {
    content: counter(editorial-counter) ".";
    position: absolute;
    left: 0;
    font-family: 'Playfair Display', Georgia, serif;
    color: #8a7968;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Blockquotes */
blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #5a5a5a;
    border-left: 3px solid #8a7968;
    padding-left: 2rem;
    margin: 3rem 0;
}

/* Footer */
.footer {
    background: #2d2d2d;
    padding: 4rem 3rem 3rem;
    margin-top: 8rem;
}

.footer-divider {
    width: 80px;
    height: 2px;
    background: #8a7968;
    margin: 0 auto 2.5rem;
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.footer-text {
    color: #b0a090;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-copyright {
    color: #7a6a5a;
    margin: 0;
    font-size: 0.8rem;
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: 0.5px;
}

/* Responsive */
@media only screen and (max-width: 800px) {
    .hero-title {
        font-size: 3rem;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 2rem;
    }

    .logo {
        text-align: center;
    }

    .nav-list {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .container {
        padding: 0 2rem;
    }

    .hero {
        padding: 4rem 2rem 3rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    p {
        text-align: left;
    }

    .container > p:first-of-type::first-letter {
        font-size: 3rem;
    }
}
