/* Self-hosted Cormorant Garamond (latin subset) — covers regular weights 400-600 and italic 400 */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('fonts/cormorant-garamond-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/cormorant-garamond-latin-italic.woff2') format('woff2');
}

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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e8f4f8;
    --accent-color: #B8860B;
    --text-color: #333;
    --light-text: #666;
    --border-color: #ddd;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    font-family: 'Cormorant Garamond', Georgia, var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-color);
    background-color: #fff;
}

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

/* Minimal back-nav on internal pages */
.page-nav {
    padding: 24px 0;
}

.page-nav a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-nav a:hover {
    color: var(--accent-color);
}

.hero-logo {
    display: block;
    margin: 0 auto 14px;
    width: 110px;
    height: 110px;
    object-fit: contain;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
    padding: 56px 20px;
    text-align: center;
}

.hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-bottom: 4px;
}

.hero .tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 400;
    opacity: 0.85;
    margin-bottom: 0;
}

.hero-vision {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.55;
    opacity: 0.78;
    max-width: 520px;
    margin: 18px auto 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #9c7309;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 60px 20px;
    background-color: var(--secondary-color);
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.feature {
    background-color: white;
    padding: 40px 36px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin-bottom: 18px;
    border-radius: 16px;
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 14px;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.feature p {
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 12px;
    max-width: 38ch;
}

.feature p:last-child {
    margin-bottom: 0;
}

.feature a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.feature a:hover {
    color: var(--primary-color);
}

.feature--placeholder h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 500;
}

/* Links Section */
.links {
    padding: 60px 20px;
    background-color: white;
}

.links h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

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

/* About Section */
.about {
    padding: 60px 20px;
}

.about h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-content h2 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--light-text);
}

.contact-info {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.about-content ul {
    list-style-position: inside;
    margin: 20px 0;
}

.about-content ul li {
    margin-bottom: 10px;
}

.about-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.about-content a:hover {
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links span {
    opacity: 0.9;
}

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

    .hero .tagline {
        font-size: 1rem;
    }

    .hero-logo {
        width: 110px;
        height: 110px;
        margin-bottom: 14px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}
