/* CSS Reset and Base */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #0f1012; /* very dark charcoal */
    color: #e8e3d9; /* chalky off-white */
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(30, 32, 35, 0.6) 0%, transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(25, 27, 30, 0.5) 0%, transparent 55%),
        linear-gradient(rgba(15, 16, 18, 0.8), rgba(15, 16, 18, 0.8)),
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255, 255, 255, 0.02) 1px, rgba(255, 255, 255, 0.02) 2px);
    background-size: cover, cover, cover, 100% 3px;
    background-attachment: fixed;
}

/* Subtle worn overlay on body */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 11, 13, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

a {
    color: #d4cfc2;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover { color: #f0ebe3; }

img { max-width: 100%; height: auto; display: block; }
/* Navigation */
.main-nav {
    background: linear-gradient(to bottom, rgba(15, 16, 18, 0.94), rgba(15, 16, 18, 0.90));
    border-bottom: 1px solid rgba(232, 227, 217, 0.15);
    padding: 0.85rem 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.nav-link {
    color: #e8e3d9;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 0.5rem 0.75rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
    color: #f0ebe3;
    border-bottom-color: #d4cfc2;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(30, 32, 35, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo-container {
    margin-bottom: 2rem;
}

.main-logo {
    max-height: 200px; /* increased from 160px */
    margin: 0 auto;
    filter: grayscale(100%) contrast(1.05) brightness(1.1);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 0.5rem 0;
    color: #f0ebe3;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    margin: 0 0 1.5rem 0;
    color: #d4cfc2;
}

.hero-hook {
    font-size: clamp(1rem, 2vw, 1.125rem);
    max-width: 650px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
}

/* Hero CTAs */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.cta-button.primary {
    background-color: #e8e3d9;
    color: #0f1012;
}

.cta-button.primary:hover {
    background-color: #f0ebe3;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.cta-button.secondary {
    background-color: rgba(232, 227, 217, 0.1);
    color: #f0ebe3;
    border-color: rgba(232, 227, 217, 0.25);
}

.cta-button.secondary:hover {
    background-color: rgba(232, 227, 217, 0.15);
}
/* Statement Section */
.statement-section {
    padding: 4rem 1rem;
    background: rgba(20, 22, 24, 0.5);
    border-top: 1px solid rgba(232, 227, 217, 0.1);
    border-bottom: 1px solid rgba(232, 227, 217, 0.1);
}

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

.statement-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: #f0ebe3;
}

.statement-section p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.statement-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: inline-block;
    text-align: left;
}

.statement-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.statement-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4cfc2;
}
/* Contact Section */
.contact-section {
    padding: 4rem 1rem;
    border-top: 1px solid rgba(232, 227, 217, 0.1);
    background: linear-gradient(to top, rgba(15, 16, 18, 0.4), transparent);
}

.contact-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: #f0ebe3;
    text-align: center;
}

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

.contact-details {
    margin-top: 2rem;
}

.contact-email {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.contact-email a {
    color: #f0ebe3;
    text-decoration: underline;
    text-decoration-color: rgba(232, 227, 217, 0.3);
    text-underline-offset: 3px;
}

.contact-email a:hover {
    text-decoration-color: #d4cfc2;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-label {
    font-size: 0.95rem;
    color: #d4cfc2;
}

.social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    opacity: 0.9;
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.social-links a:hover .social-icon {
    opacity: 1;
    filter: grayscale(100%) brightness(1.3);
}

/* Mobile Nav Tweak */
@media (max-width: 480px) {
    .nav-content { gap: 1.25rem; }
    .nav-link { font-size: 0.85rem; }
}
