/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #1c2331;
    --secondary-color: #2d3a4a;
    --accent-color: #8b7355;
    --text-color: #333333;
    --text-light: #5a5a5a;
    --bg-light: #f9f9f8;
    --white: #ffffff;
    --border-color: #d4d4d4;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.12);
    --texture: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-light);
    background-image: var(--texture);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px;
    width: auto;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background: url('image4.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(28, 35, 49, 0.75), rgba(45, 58, 74, 0.85));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 40px 60px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.1);
}

.hero-content::before,
.hero-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: rgba(255, 255, 255, 0.3);
    border-style: solid;
}

.hero-content::before {
    top: -1px;
    left: -1px;
    border-width: 1px 0 0 1px;
}

.hero-content::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 1px 1px 0;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
}

.tagline {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background: #7a6349;
    border-color: #7a6349;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
    background-image: var(--texture);
}

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

.feature-card {
    text-align: center;
    padding: 45px 35px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    background: var(--white);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color) 20%, var(--accent-color) 80%, transparent);
    box-shadow: 0 2px 4px rgba(139, 115, 85, 0.25);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.35), transparent);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(139, 115, 85, 0.3);
}

.feature-accent {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0 auto 25px;
    position: relative;
}

.feature-accent::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: var(--accent-color);
    background: var(--white);
    padding: 0 8px;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Page Header */
.page-header {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 70px 0;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color) 20%, var(--accent-color) 80%, transparent);
    box-shadow: 0 2px 6px rgba(139, 115, 85, 0.4);
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 3px;
    font-family: 'Georgia', serif;
    position: relative;
    display: inline-block;
}

.page-header h1::before,
.page-header h1::after {
    content: '—';
    opacity: 0.5;
    margin: 0 20px;
    font-weight: 300;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--white);
    background-image: var(--texture);
}

.about-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: start;
}

.about-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 18px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color) 60%, transparent);
    box-shadow: 0 1px 2px rgba(139, 115, 85, 0.3);
}

.about-text h2::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(139, 115, 85, 0.4), transparent);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: var(--white);
    background-image: var(--texture);
}

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

.philosophy-content .lead {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 500;
    font-style: italic;
}

.philosophy-content .lead::before,
.philosophy-content .lead::after {
    content: '—';
    opacity: 0.4;
    margin: 0 12px;
}

.philosophy-content p {
    font-size: 1.15rem;
    color: var(--text-color);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--white);
    background-image: var(--texture);
}

.contact-grid {
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid transparent;
    background-image: linear-gradient(90deg, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
    background-size: 100% 1px;
    background-position: bottom;
    background-repeat: no-repeat;
}

.contact-item:last-child {
    background-image: none;
}

.contact-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.disclaimer-section h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 18px;
}

.disclaimer-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color) 50%, transparent);
    box-shadow: 0 1px 2px rgba(139, 115, 85, 0.3);
}

.disclaimer-section h2::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, rgba(139, 115, 85, 0.4), transparent);
}

.disclaimer-section p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 900px;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 35px 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.55) 20%, rgba(139, 115, 85, 0.55) 80%, transparent);
    box-shadow: 0 1px 4px rgba(139, 115, 85, 0.35);
}

footer::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.3), transparent);
}

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

.footer-content p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.disclaimer-link a {
    color: rgba(255, 255, 255, 0.8);
}

.disclaimer-link a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        display: flex;
        justify-content: center;
    }

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