* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f5;
    color: #1a1a1a;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s;
    display: none;
}

@media (min-width: 1024px) {
    .cursor { display: block; }
}

/* Top Bar */
.top-bar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 30px 50px;
    z-index: 100;
    background: transparent;
}

.brand {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 4px;
}

.brand img {
    height: 120px;
    width: auto;
    display: block;
    object-fit: contain;
}

.menu-btn {
    background: none;
    border: 1px solid #1a1a1a;
    padding: 10px 25px;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.menu-btn:hover {
    background: #1a1a1a;
    color: white;
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 50px;
    background: none;
    border: none;
    color: white;
    font-size: 60px;
    cursor: pointer;
    line-height: 1;
}

.menu-list {
    list-style: none;
    text-align: center;
}

.menu-list li {
    margin: 30px 0;
}

.menu-list a {
    color: white;
    text-decoration: none;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    transition: opacity 0.3s;
}

.menu-list a:hover {
    opacity: 0.5;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
}

.hero-text h1 {
    font-size: 120px;
    font-weight: 300;
    letter-spacing: 20px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 16px;
    color: #666;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: #1a1a1a;
    margin: 0 auto;
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* Philosophy Section */
.philosophy-section {
    padding: 120px 50px;
    background: white;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #999;
    display: block;
    margin-bottom: 20px;
}

.text-block h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.2;
}

.text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.stat-box {
    border-left: 2px solid #1a1a1a;
    padding-left: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #999;
    letter-spacing: 2px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 120px 50px;
    background: #f5f5f5;
}

.section-heading {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.project-item {
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 400px;
    background: #f0f0f0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 30px;
}

.project-info h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.project-info p {
    color: #666;
    margin-bottom: 8px;
    font-size: 15px;
}

.year {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Capabilities Section */
.capabilities-section {
    padding: 120px 50px;
    background: white;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.capability {
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
}

.cap-number {
    font-size: 14px;
    color: #999;
    display: block;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.capability h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.capability p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 120px 50px;
    background: white;
    color: #1a1a1a;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    color: #1a1a1a;
    font-size: 18px;
    font-family: inherit;
}

.input-group label {
    position: absolute;
    left: 0;
    top: 15px;
    color: #999;
    transition: all 0.3s;
    pointer-events: none;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-bottom-color: #1a1a1a;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
    top: -20px;
    font-size: 12px;
    color: #1a1a1a;
}

.submit-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 16px;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    align-self: flex-start;
    transition: all 0.3s;
}

.submit-btn:hover {
    gap: 25px;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #999;
    padding: 60px 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    letter-spacing: 4px;
    margin-bottom: 30px;
    color: white;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .hero-text h1 { font-size: 48px; letter-spacing: 5px; }
    .content-wrapper, .projects-container, .capabilities-grid { grid-template-columns: 1fr; }
}
