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

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gray: #666666;
    --light-gray: #e5e5e5;
    --accent: #cc0000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--black);
    z-index: 1000;
}

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

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--black);
}

.nav-link {
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.nav-link:hover {
    border-bottom-color: var(--accent);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    border-bottom: 2px solid var(--black);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

/* Manifesto Section */
.manifesto {
    padding: 8rem 2rem;
    background: var(--black);
    color: var(--white);
}

.manifesto-grid {
    display: grid;
    gap: 6rem;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-item {
    position: relative;
}

.manifesto-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    line-height: 1;
}

.manifesto-item h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--white);
}

.manifesto-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
}

/* Capabilities Section */
.capabilities {
    padding: 8rem 2rem;
    border-bottom: 2px solid var(--black);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.capability {
    border-left: 3px solid var(--black);
    padding-left: 1.5rem;
}

.capability h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.capability p {
    color: var(--gray);
    line-height: 1.8;
}

/* Clients Section */
.clients {
    padding: 8rem 2rem;
    background: var(--light-gray);
}

.section-title-centered {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 4rem;
}

.client-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.client-type {
    background: var(--white);
    padding: 2.5rem;
    border: 2px solid var(--black);
}

.client-type h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.client-type p {
    color: var(--gray);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    text-align: center;
    background: var(--white);
    border-bottom: 2px solid var(--black);
}

.contact-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--gray);
    margin-bottom: 3rem;
}

/* Contact Choice Styles */
.contact-choice {
    max-width: 800px;
    margin: 0 auto;
}

.choice-prompt {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: var(--black);
}

.choice-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.choice-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 2rem;
    background: var(--white);
    border: 2px solid var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.choice-button:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.choice-icon {
    font-size: 3rem;
    line-height: 1;
}

.choice-text {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-size: 0.9rem;
    border: 2px solid var(--black);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.contact-button:hover {
    background: var(--white);
    color: var(--black);
}

.contact-button-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-size: 0.9rem;
    border: 2px solid var(--black);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    margin-top: 1rem;
}

.contact-button-secondary:hover {
    background: var(--black);
    color: var(--white);
}

/* Contact Form Styles */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    border: 2px solid var(--black);
    background: var(--white);
    color: var(--black);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.form-group textarea::placeholder {
    color: var(--gray);
    font-style: italic;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 3rem;
}

.form-group select option {
    padding: 1rem;
}

.contact-form .contact-button {
    width: 100%;
    margin-top: 1rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
}

.form-message.error {
    display: block;
    background: var(--white);
    color: var(--accent);
    border: 2px solid var(--accent);
}

/* Form Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .choice-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .choice-button {
        padding: 2.5rem 2rem;
    }
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 2rem;
}

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

.logo-footer {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-style: italic;
}

.footer-right p {
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .hero {
        min-height: 80vh;
        padding: 6rem 1.5rem 3rem;
    }
    
    .manifesto,
    .capabilities,
    .clients,
    .contact {
        padding: 4rem 1.5rem;
    }
    
    .manifesto-grid {
        gap: 4rem;
    }
    
    .manifesto-number {
        font-size: 3rem;
    }
    
    .capabilities-grid,
    .client-types {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

/* Flash Messages */
.flash-message {
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.flash-success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #28a745;
}

.flash-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid var(--accent);
}
