/* Font Face Declarations */
/* Arimo - Sans Serif Font */
@font-face {
    font-family: 'Arimo';
    src: url('fonts/arimo-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arimo';
    src: url('fonts/arimo-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arimo';
    src: url('fonts/arimo-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arimo';
    src: url('fonts/arimo-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Gelasio - Serif Font */
@font-face {
    font-family: 'Gelasio';
    src: url('fonts/gelasio-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gelasio';
    src: url('fonts/gelasio-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gelasio';
    src: url('fonts/gelasio-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Arimo', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: #f3f1f9;
    color: #272d39;
}

/* Accessibility: Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #030402;
    color: #ffffff;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 100;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid #587fbc;
    outline-offset: 2px;
}

/* Accessibility: Global Focus States */
*:focus-visible {
    outline: 3px solid #587fbc;
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #587fbc;
    outline-offset: 2px;
}

/* Hero Section - Full Screen */
.hero {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #ffffff;
    transition: background 0.4s ease;
}

/* Hero inverted state on hover */
.hero:has(.branding:hover),
.hero:has(.scroll-indicator:hover) {
    background: #272d39;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

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

/* Branding */
.branding {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
}

.branding-logo {
    max-width: 168px;
    height: auto;
    display: block;
    transition: opacity 0.4s ease;
}

.branding-logo-hover {
    max-width: 168px;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.branding:hover .branding-logo {
    opacity: 0;
}

.branding:hover .branding-logo-hover {
    opacity: 1;
}

.branding .serif {
    font-family: 'Gelasio', serif;
    display: block;
    color: #030402;
    font-weight: 700;
    font-size: 120px;
    letter-spacing: 5px;
    line-height: 1;
    transition: color 0.4s ease;
}

.branding .sans-serif {
    font-family: 'Arimo', sans-serif;
    color: #587fbc;
    font-weight: 500;
    font-size: 23px;
    letter-spacing: 4px;
    margin-top: -17px;
    margin-left: 119px;
    display: block;
    transition: color 0.4s ease;
}

/* Branding color change on hero hover */
.hero:has(.branding:hover) .branding .serif,
.hero:has(.scroll-indicator:hover) .branding .serif {
    color: #f3f1f9;
}

.hero:has(.branding:hover) .branding .sans-serif,
.hero:has(.scroll-indicator:hover) .branding .sans-serif {
    color: #587fbc;
}

/* Tagline */
.tagline {
    font-size: 24px;
    font-weight: 400;
    color: #272d39;
    line-height: 1.4;
    letter-spacing: 0.5px;
    max-width: 500px;
    margin: 0 auto;
    transition: color 0.4s ease;
}

/* Tagline color change on hero hover */
.hero:has(.branding:hover) .tagline,
.hero:has(.scroll-indicator:hover) .tagline {
    color: #f3f1f9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    animation: fadeIn 2s ease-in 1s forwards, bounce 2s ease-in-out infinite 3s;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.6;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #587fbc;
    font-weight: 500;
    transition: color 0.4s ease;
}

.scroll-arrow {
    font-size: 20px;
    color: #587fbc;
    transition: color 0.4s ease;
}

/* Scroll indicator color change on hero hover */
.hero:has(.branding:hover) .scroll-text,
.hero:has(.branding:hover) .scroll-arrow,
.hero:has(.scroll-indicator:hover) .scroll-text,
.hero:has(.scroll-indicator:hover) .scroll-arrow {
    color: #f3f1f9;
}

/* Sticky Navigation */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.nav-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.nav-logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-tyn {
    font-family: 'Gelasio', serif;
    font-size: 28px;
    font-weight: 700;
    color: #030402;
    letter-spacing: 0.5px;
}

.nav-studio {
    font-family: 'Arimo', sans-serif;
    font-size: 5px;
    font-weight: 400;
    color: #272d39;
    letter-spacing: 1.5px;
    margin-left: 25px;
    margin-top: -4px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #272d39;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #030402;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #030402;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #030402;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle-active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle-active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle-active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-cta {
    background: #030402;
    color: #f3f1f9;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #272d39;
    color: #ffffff;
}

.nav-cta::after {
    display: none;
}

/* Main Content */
.main-content {
    background: #ffffff;
    position: relative;
    z-index: 1;
}

/* About Hero Section - Two Column Layout */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 40vh;
    width: 100%;
    border-bottom: 1px solid #030402;
}

.about-hero-left {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.about-hero-title {
    font-family: 'Gelasio', serif;
    font-size: 64px;
    font-weight: 700;
    color: #030402;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin: 0;
}

.about-hero-right {
    background: #272d39;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 60px;
}

.about-hero-text {
    font-size: 20px;
    font-weight: 400;
    color: #f3f1f9;
    line-height: 1.8;
    letter-spacing: 0.3px;
    margin: 0;
    max-width: 500px;
}

.hero-cta {
    display: inline-block;
    margin-top: 32px;
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #272d39;
    background: #f3f1f9;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-hero-proof {
    font-size: 16px;
    font-weight: 400;
    color: rgba(243, 241, 249, 0.7);
    line-height: 1.8;
    letter-spacing: 0.3px;
    margin: 20px 0 0 0;
    max-width: 500px;
    font-style: italic;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

.section-cta-text {
    font-family: 'Arimo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #4b5563;
    margin: 0;
}

.section-cta .hero-cta {
    margin-top: 20px;
    background: #030402;
    color: #f3f1f9;
}

.section-cta .hero-cta:hover {
    background: #272d39;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.manifesto .section-cta-text {
    color: #4b5563;
}

.manifesto .section-cta .hero-cta {
    background: #030402;
    color: #f3f1f9;
}

.manifesto .section-cta .hero-cta:hover {
    background: #272d39;
}

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

/* Projects Section */
.projects {
    margin-bottom: 80px;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 24px;
}

.projects-view-all {
    text-align: center;
    margin-top: 60px;
}

.section-title {
    font-family: 'Gelasio', serif;
    font-size: 48px;
    font-weight: 600;
    color: #030402;
    letter-spacing: 1px;
    margin: 0;
}

/* Project Filters */
.project-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #587fbc;
    background: transparent;
    border: 1px solid #587fbc;
    padding: 10px 20px;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #030402;
    color: #030402;
}

/* Active filter state - CSS only with :checked */
#filter-all:checked ~ label[for="filter-all"],
#filter-product:checked ~ label[for="filter-product"],
#filter-research:checked ~ label[for="filter-research"],
#filter-advisory:checked ~ label[for="filter-advisory"] {
    background: #030402;
    color: #f3f1f9;
    border-color: #030402;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Featured Project - Takes full width */
.project-card.featured {
    grid-column: 1 / -1;
}

/* Project Card */
.project-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.project-card.hidden {
    display: none;
}

/* Project Clickable Wrapper */
.project-clickable {
    display: flex;
    flex-direction: column;
    flex: 1;
    cursor: pointer;
}

/* CSS-only filtering logic */
#filter-all:checked ~ .projects-grid .project-card {
    display: flex;
}

#filter-product:checked ~ .projects-grid .project-card {
    display: none;
}

#filter-product:checked ~ .projects-grid .project-card[data-category="product"] {
    display: flex;
}

#filter-research:checked ~ .projects-grid .project-card {
    display: none;
}

#filter-research:checked ~ .projects-grid .project-card[data-category="research"] {
    display: flex;
}

#filter-advisory:checked ~ .projects-grid .project-card {
    display: none;
}

#filter-advisory:checked ~ .projects-grid .project-card[data-category="advisory"] {
    display: flex;
}

.project-card:hover {
    border-color: #030402;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(3, 4, 2, 0.12);
}

/* Project Image */
.project-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    display: block;
}

.project-card.featured .project-image {
    height: 360px;
}

.project-card:hover .project-image {
    transform: scale(1.05);
    filter: grayscale(0);
}

/* Project Content */
.project-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-card.featured .project-content {
    padding: 40px;
}

/* Project Meta */
.project-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-year {
    color: #587fbc;
    font-weight: 500;
}

.project-category {
    color: #030402;
    font-weight: 600;
}

/* Project Title */
.project-title {
    font-family: 'Gelasio', serif;
    font-size: 28px;
    font-weight: 600;
    color: #030402;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.project-card.featured .project-title {
    font-size: 36px;
}

/* Project Description */
.project-description {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.project-card.featured .project-description {
    font-size: 18px;
}

/* Project Tags */
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.tag {
    font-size: 12px;
    font-weight: 500;
    color: #587fbc;
    background: #f3f1f9;
    border: 1px solid #587fbc;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.project-card:hover .tag {
    background: #030402;
    color: #f3f1f9;
    border-color: #030402;
}

/* Expanded Content Section */
.project-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f9fafb;
}

.expanded-content {
    padding: 0 32px;
    opacity: 0;
    transition: opacity 0.3s ease, padding 0.5s ease;
}

.project-card.featured .expanded-content {
    padding: 0 40px;
}

/* Show expanded content when checkbox is checked */
.project-toggle:checked ~ .project-expanded {
    max-height: 1000px;
}

.project-toggle:checked ~ .project-expanded .expanded-content {
    padding: 32px;
    opacity: 1;
}

.project-toggle:checked ~ .project-clickable {
    cursor: default;
}

.project-card.featured .project-toggle:checked ~ .project-expanded .expanded-content {
    padding: 40px;
}

/* Expanded Content Styles */
.expanded-title {
    font-family: 'Gelasio', serif;
    font-size: 20px;
    font-weight: 600;
    color: #030402;
    margin-bottom: 12px;
    margin-top: 24px;
}

.expanded-title:first-child {
    margin-top: 0;
}

.expanded-text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

.expanded-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.expanded-list li {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.expanded-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #030402;
    font-weight: 600;
}

/* Close Button */
.close-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #587fbc;
    background: transparent;
    border: 2px solid #587fbc;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    text-align: center;
}

.close-btn:hover {
    background: #030402;
    color: #f3f1f9;
    border-color: #030402;
}

/* Services Section */
.services {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #030402;
    padding: 100px 60px;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
}

.services .section-title {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.services-card {
    text-align: left;
}

.services-heading {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #030402;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.services-text {
    font-family: 'Arimo', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.8;
}

.services-audience {
    font-family: 'Arimo', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.8;
    margin-top: 60px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Philosophy Section */
.manifesto {
    width: 100%;
    background: #f3f1f9;
    border-top: 1px solid #587fbc;
    border-bottom: 1px solid #030402;
    padding: 100px 60px;
}

.manifesto-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Quote Section */
.manifesto-quote {
    text-align: center;
    margin-bottom: 80px;
}

.quote-text {
    font-family: 'Gelasio', serif;
    font-size: 52px;
    font-weight: 700;
    color: #030402;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Grid Section */
.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.manifesto-column {
    text-align: left;
}

.manifesto-heading {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #030402;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 20px 0;
}

.manifesto-text {
    font-family: 'Arimo', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
}

/* How We Work Section */
#how-we-work {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #030402;
    padding: 100px 60px;
}

#how-we-work .how-we-work-content {
    max-width: 1200px;
    margin: 0 auto;
}

#how-we-work h2 {
    font-family: 'Gelasio', serif;
    font-size: 42px;
    font-weight: 700;
    color: #030402;
    margin: 0 0 24px 0;
}

#how-we-work .how-we-work-intro {
    font-family: 'Arimo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.8;
    margin: 0 0 60px 0;
    max-width: 700px;
}

#how-we-work .how-we-work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 60px;
}

#how-we-work .how-we-work-item {
    text-align: left;
}

#how-we-work h3 {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #030402;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

#how-we-work p {
    font-family: 'Arimo', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
}

/* Clients & Partners Section */
.clients {
    width: 100%;
    background: #ffffff;
    padding: 100px 60px;
    border-bottom: 1px solid #e5e7eb;
}

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

.clients-label {
    font-family: 'Arimo', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 56px 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 40px;
    align-items: start;
}

.client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.client-logo-box {
    width: 100%;
    aspect-ratio: 1;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.client-logo-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 40%;
    background: #e5e7eb;
    opacity: 0.3;
    border-radius: 4px;
}

.client-item:hover .client-logo-box {
    border-color: #1f2937;
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.client-name {
    font-family: 'Arimo', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/* Team Section - Two Column Layout */
.team {
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
    min-height: 100vh;
    border-bottom: 1px solid #030402;
}

.team-left {
    background: #272d39;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 60px;
}

.team-title {
    font-family: 'Gelasio', serif;
    font-size: 64px;
    font-weight: 700;
    color: #f3f1f9;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin: 0 0 24px 0;
}

.team-description {
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #f3f1f9;
    margin: 0;
    max-width: 500px;
}

.team-right {
    background: #ffffff;
    padding: 0;
    position: relative;
    overflow: hidden;
}

#team-network {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#team-network svg {
    width: 100%;
    height: 100%;
}

/* Network Detail Panel */
.team-left-content {
    transition: opacity 0.3s ease;
}

.network-detail {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    border-top: 0 solid rgba(243, 244, 246, 0.2);
    padding-top: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease, padding-top 0.4s ease, border-top-width 0.4s ease;
}

.network-detail.hidden {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    padding-top: 0;
    border-top-width: 0;
}

.network-detail:not(.hidden) {
    max-height: 600px;
    opacity: 1;
    margin-top: 32px;
    padding-top: 32px;
    border-top-width: 1px;
}

.detail-close {
    float: right;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    margin: -8px 0 16px 0;
    transition: color 0.2s ease;
}

.detail-close:hover {
    color: #f3f4f6;
}

.detail-content {
    clear: both;
}

.detail-name {
    font-family: 'Gelasio', serif;
    font-size: 32px;
    font-weight: 700;
    color: #f3f1f9;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.detail-role {
    font-family: 'Arimo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #587fbc;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-bio {
    font-family: 'Arimo', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #f3f1f9;
    margin: 0 0 24px 0;
    white-space: pre-line;
}

.detail-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-link {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    color: #f3f1f9;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(243, 241, 249, 0.2);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.detail-link:hover {
    background: rgba(243, 241, 249, 0.1);
    border-color: rgba(243, 241, 249, 0.4);
}

.detail-link::before {
    content: '→';
    font-size: 16px;
    color: #587fbc;
}

/* Blog Section - Homepage Featured */
.blog-featured-section {
    background: #ffffff;
    padding: 120px 40px;
    width: 100%;
}

.blog-featured-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.blog-featured-title {
    font-family: 'Gelasio', serif;
    font-size: 56px;
    font-weight: 700;
    color: #030402;
    margin: 0;
    line-height: 1.2;
}

.blog-view-all {
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #030402;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-view-all:hover {
    color: #587fbc;
}

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

.blog-featured-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.blog-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-featured-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-featured-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #f3f4f6;
}

.blog-featured-content {
    padding: 32px;
}

.blog-featured-date {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #587fbc;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-featured-card-title {
    font-family: 'Gelasio', serif;
    font-size: 28px;
    font-weight: 700;
    color: #030402;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.blog-featured-excerpt {
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.blog-featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-featured-tag {
    font-family: 'Arimo', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #587fbc;
    background: #f3f1f9;
    padding: 4px 12px;
    border-radius: 4px;
}

/* Blog Index Page */
.blog-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 80px;
}

.blog-page-header {
    text-align: center;
    margin-bottom: 80px;
}

.blog-page-title {
    font-family: 'Gelasio', serif;
    font-size: 72px;
    font-weight: 700;
    color: #030402;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.blog-page-subtitle {
    font-family: 'Arimo', sans-serif;
    font-size: 20px;
    color: #587fbc;
    margin: 0;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 48px;
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #f3f4f6;
}

.blog-card-content {
    padding: 32px;
}

.blog-card-date {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #587fbc;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-family: 'Gelasio', serif;
    font-size: 28px;
    font-weight: 700;
    color: #030402;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tag {
    font-family: 'Arimo', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #587fbc;
    background: #f3f1f9;
    padding: 4px 12px;
    border-radius: 4px;
}

/* Blog Post Page */
.blog-post-page {
    min-height: 100vh;
    background: #ffffff;
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

.blog-back-link {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #587fbc;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

.blog-back-link:hover {
    color: #030402;
}

.blog-post-article {
    background: #ffffff;
}

.blog-post-header {
    margin-bottom: 48px;
}

.blog-post-title {
    font-family: 'Gelasio', serif;
    font-size: 56px;
    font-weight: 700;
    color: #030402;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    color: #587fbc;
}

.blog-post-date,
.blog-post-author,
.blog-post-reading-time {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.blog-post-separator {
    color: #d1d5db;
    font-weight: 400;
}

.blog-post-content {
    font-family: 'Arimo', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    font-family: 'Gelasio', serif;
    font-weight: 700;
    color: #030402;
    margin-top: 48px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.blog-post-content h1 {
    font-size: 48px;
}

.blog-post-content h2 {
    font-size: 40px;
}

.blog-post-content h3 {
    font-size: 32px;
}

.blog-post-content h4 {
    font-size: 24px;
}

.blog-post-content p {
    margin: 0 0 24px 0;
}

.blog-post-content a {
    color: #030402;
    text-decoration: underline;
    font-weight: 500;
}

.blog-post-content a:hover {
    color: #587fbc;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 0 0 24px 0;
    padding-left: 32px;
}

.blog-post-content li {
    margin-bottom: 12px;
}

.blog-post-content code {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 16px;
    background: #f3f1f9;
    padding: 2px 6px;
    border-radius: 3px;
    color: #030402;
}

.blog-post-content pre {
    background: #272d39;
    color: #f3f1f9;
    padding: 24px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 0 0 24px 0;
}

.blog-post-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.blog-post-content blockquote {
    border-left: 4px solid #030402;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: #587fbc;
}

/* Disclaimer blockquote (first blockquote in post) */
.blog-post-content > blockquote:first-child {
    background: #f3f1f9;
    border-left: 4px solid #587fbc;
    padding: 16px 24px;
    border-radius: 6px;
    font-style: normal;
    font-size: 15px;
    color: #272d39;
}

.blog-post-content > blockquote:first-child strong {
    color: #030402;
}

.blog-post-content > blockquote:first-child a {
    color: #030402;
    text-decoration: underline;
    font-weight: 600;
}

.blog-post-content hr {
    border: none;
    border-top: 2px solid #e5e7eb;
    margin: 48px 0;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 32px 0;
    display: block;
}

.blog-post-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid #e5e7eb;
}

.blog-post-tags {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    color: #587fbc;
}

/* Related Posts Section */
.related-posts {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 2px solid #e5e7eb;
}

.related-posts h2 {
    font-family: 'Gelasio', Georgia, 'Times New Roman', Times, serif;
    font-size: 32px;
    font-weight: 700;
    color: #030402;
    margin: 0 0 40px 0;
    line-height: 1.3;
}

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

.related-post-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.related-post-card:hover {
    border-color: #030402;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.related-post-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.related-post-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.related-post-date {
    font-family: 'Arimo', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    color: #587fbc;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.related-post-card h3 {
    font-family: 'Gelasio', Georgia, 'Times New Roman', Times, serif;
    font-size: 22px;
    font-weight: 600;
    color: #030402;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.related-post-card p {
    font-family: 'Arimo', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .related-posts {
        margin-top: 48px;
        padding-top: 32px;
    }

    .related-posts h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .related-post-content {
        padding: 24px;
    }

    .related-post-card h3 {
        font-size: 20px;
    }

    .related-post-card p {
        font-size: 14px;
    }
}

.nav-link-active {
    font-weight: 600;
    color: #030402;
}

/* Project Detail Page Styles */
.project-detail-page {
    padding: 60px 0;
}

.breadcrumb {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #030402;
}

.breadcrumb-separator {
    color: #d1d5db;
}

.project-header {
    margin-bottom: 60px;
}

.project-meta-info {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.project-meta-info .project-year,
.project-meta-info .project-category {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 0.5px;
}

.project-detail-title {
    font-family: 'Gelasio', serif;
    font-size: 48px;
    font-weight: 700;
    color: #030402;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.project-detail-intro {
    font-family: 'Arimo', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 32px;
    max-width: 800px;
}

.project-hero-image {
    margin: 60px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.project-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-section {
    margin-bottom: 48px;
}

.project-section h2 {
    font-family: 'Gelasio', serif;
    font-size: 32px;
    font-weight: 700;
    color: #030402;
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.project-section p {
    font-family: 'Arimo', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

.project-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-section li {
    font-family: 'Arimo', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.project-section li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #587fbc;
    font-weight: bold;
}

.project-back {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.back-link {
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #587fbc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #030402;
}

/* Update project card clickable to be a link instead of label */
.project-clickable {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

/* Contact Section */
.contact-section {
    background: #f3f1f9;
    padding: 120px 40px;
    width: 100%;
}

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

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

/* Left Column - Contact Info */
.contact-info {
    padding: 20px 0;
}

.contact-title {
    font-family: 'Gelasio', serif;
    font-size: 56px;
    font-weight: 700;
    color: #030402;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.contact-subtitle {
    font-family: 'Arimo', sans-serif;
    font-size: 18px;
    color: #587fbc;
    margin: 0 0 48px 0;
    line-height: 1.6;
}

.contact-email-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-email-label {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #587fbc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-email-link {
    font-family: 'Arimo', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #030402;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email-link:hover {
    color: #587fbc;
}

/* Right Column - Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #030402;
    letter-spacing: 0.3px;
}

.form-input,
.form-textarea {
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    color: #030402;
    padding: 14px 16px;
    border: 2px solid #587fbc;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-input:focus,
.form-textarea:focus {
    outline: 3px solid #587fbc;
    outline-offset: 2px;
    border-color: #030402;
    box-shadow: 0 0 0 3px rgba(88, 127, 188, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit-btn {
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #f3f1f9;
    background: #030402;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit-btn:hover:not(:disabled) {
    background: #272d39;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(3, 4, 2, 0.2);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: 12px 16px;
    border-radius: 6px;
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.form-message-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.form-message-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

/* Footer */
.footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 60px 40px;
    width: 100%;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-text {
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #030402;
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.footer-subtext {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #272d39;
    margin: 0 0 16px 0;
    line-height: 1.6;
}

.footer-hint {
    font-family: 'Arimo', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #587fbc;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-container {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 16px 30px;
    }

    .nav-logo-img {
        height: 28px;
    }

    .nav-tyn {
        font-size: 24px;
    }

    .nav-studio {
        font-size: 4px;
        margin-left: 21px;
        margin-top: -3px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 24px 30px;
        gap: 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-menu-open {
        display: flex;
    }

    .nav-menu .nav-link {
        font-size: 16px;
        padding: 12px 0;
        border-bottom: 1px solid #f3f1f9;
    }

    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }

    .nav-menu .nav-cta {
        margin-top: 8px;
        text-align: center;
    }

    .hero {
        min-height: 500px;
    }

    .branding-logo,
    .branding-logo-hover {
        max-width: 134px;
    }

    .branding .serif {
        font-size: 80px;
        letter-spacing: 3px;
    }

    .branding .sans-serif {
        font-size: 16px;
        letter-spacing: 2px;
        margin-left: 80px;
        margin-top: -11px;
    }

    .tagline {
        font-size: 20px;
        max-width: 400px;
        padding: 0 20px;
    }

    .container {
        padding: 60px 20px;
    }

    /* About Hero Responsive */
    .about-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-hero-left {
        padding: 60px 40px;
    }

    .about-hero-title {
        font-size: 48px;
    }

    .about-hero-right {
        padding: 60px 40px;
    }

    .about-hero-text {
        font-size: 18px;
    }

    .about-hero-proof {
        font-size: 15px;
    }

    .section-title {
        font-size: 40px;
    }

    .projects {
        margin-bottom: 60px;
    }

    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 48px;
    }

    .project-filters {
        width: 100%;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .project-image {
        height: 200px;
    }

    .project-card.featured .project-image {
        height: 280px;
    }

    .project-content {
        padding: 24px;
    }

    .project-card.featured .project-content {
        padding: 32px;
    }

    .project-title {
        font-size: 24px;
    }

    .project-card.featured .project-title {
        font-size: 30px;
    }

    .project-description {
        font-size: 15px;
    }

    .project-card.featured .project-description {
        font-size: 16px;
    }

    .expanded-content {
        padding: 0 24px;
    }

    .project-toggle:checked ~ .project-expanded .expanded-content {
        padding: 24px;
    }

    .project-card.featured .expanded-content {
        padding: 0 32px;
    }

    .project-card.featured .project-toggle:checked ~ .project-expanded .expanded-content {
        padding: 32px;
    }

    .expanded-title {
        font-size: 18px;
    }

    .expanded-text {
        font-size: 14px;
    }

    .expanded-list li {
        font-size: 14px;
    }

    .services {
        padding: 80px 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-text {
        font-size: 16px;
    }

    .services-audience {
        font-size: 16px;
        margin-top: 48px;
    }

    .manifesto {
        padding: 80px 40px;
    }

    .manifesto-quote {
        margin-bottom: 60px;
    }

    .quote-text {
        font-size: 36px;
    }

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

    .manifesto-text {
        font-size: 16px;
    }

    #how-we-work {
        padding: 80px 40px;
    }

    #how-we-work h2 {
        font-size: 32px;
    }

    #how-we-work .how-we-work-intro {
        font-size: 16px;
    }

    #how-we-work .how-we-work-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #how-we-work h3 {
        font-size: 14px;
    }

    #how-we-work p {
        font-size: 16px;
    }

    .clients {
        padding: 80px 40px;
    }

    .team {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .team-left {
        padding: 60px 40px;
    }

    .team-title {
        font-size: 48px;
    }

    .team-description {
        font-size: 15px;
    }

    .team-right {
        padding: 0;
        min-height: 600px;
    }

    .detail-name {
        font-size: 28px;
    }

    .detail-bio {
        font-size: 14px;
    }

    .clients-label {
        margin-bottom: 48px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
    }

    .client-item {
        gap: 12px;
    }

    .client-name {
        font-size: 12px;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .blog-featured-section {
        padding: 80px 40px;
    }

    .blog-featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .blog-featured-title {
        font-size: 44px;
    }

    .blog-featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 32px;
    }

    .blog-page {
        padding: 80px 40px 60px;
    }

    .blog-page-title {
        font-size: 56px;
    }

    .blog-page-header {
        margin-bottom: 60px;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 32px;
    }

    .blog-post-title {
        font-size: 44px;
    }

    .contact-section {
        padding: 80px 40px;
    }

    .contact-grid {
        gap: 60px;
    }

    .contact-title {
        font-size: 44px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .contact-email-link {
        font-size: 20px;
    }

    .contact-form-wrapper {
        padding: 32px;
    }

    .footer {
        padding: 50px 40px;
    }

    .footer-text {
        font-size: 15px;
    }

    .footer-subtext {
        font-size: 13px;
    }

    .footer-hint {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .nav-content {
        padding: 14px 20px;
    }

    .nav-logo-img {
        height: 24px;
    }

    .nav-tyn {
        font-size: 22px;
    }

    .nav-studio {
        font-size: 3px;
        margin-left: 19px;
        margin-top: -2px;
    }

    .nav-menu {
        padding: 20px 20px;
    }

    .hero {
        min-height: 100vh;
    }

    .branding-logo,
    .branding-logo-hover {
        max-width: 101px;
    }

    .branding .serif {
        font-size: 56px;
        letter-spacing: 2px;
    }

    .branding .sans-serif {
        font-size: 12px;
        letter-spacing: 1px;
        margin-left: 56px;
        margin-top: -8px;
    }

    .tagline {
        font-size: 16px;
        max-width: 100%;
        padding: 0 20px;
    }

    .container {
        padding: 40px 16px;
    }

    /* About Hero Mobile */
    .about-hero {
        grid-template-columns: 1fr;
    }

    .about-hero-left {
        padding: 40px 24px;
    }

    .about-hero-title {
        font-size: 36px;
        text-align: center;
    }

    .about-hero-right {
        padding: 40px 24px;
    }

    .about-hero-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-hero-proof {
        font-size: 14px;
    }

    .section-cta-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .projects {
        margin-bottom: 40px;
    }

    .projects-header {
        margin-bottom: 32px;
    }

    .filter-btn {
        font-size: 13px;
        padding: 8px 16px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-image {
        height: 180px;
    }

    .project-card.featured .project-image {
        height: 220px;
    }

    .project-content {
        padding: 20px;
    }

    .project-card.featured .project-content {
        padding: 24px;
    }

    .project-meta {
        font-size: 11px;
        gap: 12px;
    }

    .project-title {
        font-size: 22px;
    }

    .project-card.featured .project-title {
        font-size: 26px;
    }

    .project-description {
        font-size: 14px;
    }

    .project-card.featured .project-description {
        font-size: 15px;
    }

    .tag {
        font-size: 11px;
        padding: 5px 12px;
    }

    .expanded-content {
        padding: 0 20px;
    }

    .project-toggle:checked ~ .project-expanded .expanded-content {
        padding: 20px;
    }

    .project-card.featured .expanded-content {
        padding: 0 24px;
    }

    .project-card.featured .project-toggle:checked ~ .project-expanded .expanded-content {
        padding: 24px;
    }

    .expanded-title {
        font-size: 17px;
        margin-top: 20px;
    }

    .expanded-text {
        font-size: 14px;
    }

    .expanded-list li {
        font-size: 14px;
    }

    .close-btn {
        font-size: 13px;
        padding: 9px 20px;
    }

    .email-link {
        font-size: 16px;
        padding: 12px 24px;
    }

    .services {
        padding: 60px 24px;
    }

    .services-heading {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .services-text {
        font-size: 16px;
    }

    .manifesto {
        padding: 60px 24px;
    }

    .manifesto-quote {
        margin-bottom: 48px;
    }

    .quote-text {
        font-size: 32px;
        line-height: 1.3;
    }

    .manifesto-grid {
        gap: 40px;
    }

    .manifesto-heading {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .manifesto-text {
        font-size: 16px;
    }

    #how-we-work {
        padding: 60px 24px;
    }

    #how-we-work h2 {
        font-size: 28px;
    }

    .clients {
        padding: 60px 24px;
    }

    .team {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .team-left {
        padding: 40px 24px;
    }

    .team-title {
        font-size: 36px;
    }

    .team-description {
        font-size: 14px;
    }

    .team-right {
        padding: 0;
        min-height: 500px;
    }

    .detail-name {
        font-size: 24px;
    }

    .detail-bio {
        font-size: 13px;
    }

    .clients-label {
        font-size: 11px;
        margin-bottom: 40px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
    }

    .client-item {
        gap: 12px;
    }

    .client-logo-box {
        border-radius: 6px;
    }

    .client-name {
        font-size: 12px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .blog-featured-section {
        padding: 60px 24px;
    }

    .blog-featured-title {
        font-size: 36px;
    }

    .blog-featured-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-featured-content {
        padding: 24px;
    }

    .blog-page {
        padding: 60px 24px 48px;
    }

    .blog-page-title {
        font-size: 44px;
    }

    .blog-page-subtitle {
        font-size: 16px;
    }

    .blog-page-header {
        margin-bottom: 48px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card-content {
        padding: 24px;
    }

    .blog-post-container {
        padding: 24px 24px 60px;
    }

    .blog-post-title {
        font-size: 36px;
    }

    .blog-post-content {
        font-size: 16px;
    }

    .blog-post-content h1 {
        font-size: 36px;
    }

    .blog-post-content h2 {
        font-size: 32px;
    }

    .blog-post-content h3 {
        font-size: 24px;
    }

    .blog-post-content h4 {
        font-size: 20px;
    }

    .scroll-text {
        font-size: 10px;
    }

    .scroll-arrow {
        font-size: 16px;
    }

    .contact-section {
        padding: 60px 24px;
    }

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

    .contact-title {
        font-size: 36px;
    }

    .contact-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .contact-email-link {
        font-size: 18px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .form-input,
    .form-textarea {
        font-size: 16px;
    }

    .form-submit-btn {
        font-size: 15px;
        padding: 14px 28px;
    }

    .footer {
        padding: 40px 24px;
    }

    .footer-text {
        font-size: 14px;
    }

    .footer-subtext {
        font-size: 12px;
    }

    .footer-hint {
        font-size: 11px;
    }
}
