:root {
    --ink: #18170f;
    --gold: #d4a84b;
    --cream: #f8f4ed;
    --gray-light: #e8e4db;
    --gray-dark: #333;
    --shadow: 0 2px 12px rgba(24, 23, 15, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background-color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--cream);
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
}

.logo-text {
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cream) 0%, #faf7f2 100%);
    padding: 120px 0;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--ink);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-dark);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--gold);
    color: var(--ink);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background-color: var(--ink);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(24, 23, 15, 0.2);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #fff;
}

.services h2,
.blog-preview h2,
.about h2,
.contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--ink);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--cream);
    padding: 30px;
    border-radius: 6px;
    border-left: 4px solid var(--gold);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--ink);
}

.service-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fafaf9;
    text-align: center;
}

.about p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 20px auto;
    line-height: 1.8;
}

/* Blog Preview */
.blog-preview {
    padding: 60px 0;
    background: var(--cream);
    text-align: center;
}

.blog-preview a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.blog-preview a:hover {
    color: var(--ink);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--ink);
}

.contact-item a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--ink);
}

/* Footer */
.footer {
    background: var(--ink);
    color: var(--cream);
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}

.footer a {
    color: var(--gold);
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Error Page */
.error-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-content {
    text-align: center;
}

.error-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
}

.error-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--ink);
    margin: 20px 0;
}

.error-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Blog Page */
.blog-page {
    padding: 60px 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.post-card {
    background: var(--cream);
    padding: 25px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(24, 23, 15, 0.15);
}

.post-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--ink);
}

.post-date {
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 15px;
}

.post-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.post-read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.post-read-more:hover {
    color: var(--ink);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .services h2,
    .blog-preview h2,
    .about h2,
    .contact h2 {
        font-size: 28px;
    }

    .error-content h1 {
        font-size: 80px;
    }
}
