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

body {
    font-family: "Hanken Grotesk", BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-optical-sizing: auto;
}

h2, h3, h4, h5 {
    font-family: "JetBrains Mono", monospace;
}

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

/* Introduction Section */
.intro-section {
    padding: 64px 0 96px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 96px;
    align-items: center;
}

@media (min-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

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

@media (min-width: 1024px) {
    .profile-image {
        justify-content: flex-start;
    }
}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f5f5f5;
}

@media (min-width: 1024px) {
    .profile-image img {
        width: 320px;
        height: 320px;
    }
}

.intro-content h1 {
    font-size: 3.4rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    margin-top: 0;
}

@media (min-width: 1024px) {
    .intro-content h1 {
    font-size: 3.3rem;
    margin-bottom: 4rem;
    margin-top: 2rem;
    }
}

.intro-content p {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.6rem;
}

.intro-content a {
    text-decoration: underline dotted;
    text-underline-offset: 0.3em;
    color: #000;
}

@media (min-width: 1024px) {
    .intro-content p {
        font-size: 1.5rem;
    }
}

.signature {
    width: 70%;
    height: auto;
    opacity: 1;
    margin-left: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.signature img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Gallery Sections */
.work-gallery, .client-gallery {
    padding: 96px 0;
    background-color: #1a1a1a;
    color: white;
}

.work-gallery h2, .client-gallery h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 64px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    cursor: pointer;
}

.gallery-image {
    aspect-ratio: 1;
    background-color: #333;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.slide-indicator {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    padding: 4px 12px;
}

.slide-indicator span {
    color: white;
    font-size: 0.75rem;
    font-family: "JetBrains Mono", monospace;
}

.gallery-item h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 4px;
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-item p {
    font-size: 0.875rem;
    color: #999;
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Mission Section */
.mission-section {
    padding: 9rem 0;
    background-color: #f9f9f9;
}

.mission-section h2, .contact-section h2 {
    font-family: "Hanken Grotesk", BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.0rem;
    font-weight: 300;
    margin-bottom: 5rem;
    letter-spacing: -0.02em;
    font-optical-sizing: auto;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.35rem;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
    color: FF0;
}

.accordion-trigger span {
    color: #000;
}

.accordion-trigger:hover {
    background-color: #f5f5f5;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.2s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
}

.accordion-content.active {
    max-height: 500px;
    height: auto;
    overflow: auto;
}

.accordion-content p {
    padding: 16px 24px 24px;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    padding: 5em 0;
    background-color: #1a1a1a;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-label {
    color: #999;
    font-size: 0.875rem;
    margin-bottom: 4px;
    font-weight: 800;
}

.contact-item a,
.contact-item p {
    font-size: 1.125rem;
    color: white;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: white;
}

.cta-section {
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .cta-section {
    justify-content: flex-end;
    }
}

.cta-button {
    text-transform: uppercase;
    position: relative;
    padding: 60px 90px;
    margin: 1.4em 0 3em 0;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.09rem;
    color: #000;
    background: linear-gradient(135deg, #fffbac, #ffd351, #fffb9c);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fffbac, #ffd351, #fffb9c);
    border-radius: 9999px;
    filter: blur(16px);
    opacity: 0.75;
    z-index: -1;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.65);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.75;
    }
    50% {
        opacity: 1;
    }
}

/* Footer */
.footer {
    padding: 32px 0;
    background-color: #1a1a1a;
    color: #666;
    border-top: 1px solid #333;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .intro-section,
    .work-gallery,
    .mission-section,
    .client-gallery,
    .contact-section {
        padding: 48px 0;
    }

    .intro-content h1 {
        font-size: 2.5rem;
    }

    .work-gallery h2,
    .client-gallery h2,
    .mission-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
}
