/* Printicity — The Machinist's Catalogue */

:root {
    --black:        #0C0C0C;
    --white:        #F0EDE8;
    --copper:       #C87941;
    --copper-dark:  #A8622E;
    --border:       #252220;
    --muted:        #7A7370;
    --surface:      #141210;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Subtle dither — neutral tint, reduced opacity */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.12;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1px,
            rgba(240, 237, 232, 0.08) 1px,
            rgba(240, 237, 232, 0.08) 2px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(240, 237, 232, 0.08) 1px,
            rgba(240, 237, 232, 0.08) 2px
        );
    background-size: 2px 2px;
    pointer-events: none;
    z-index: 9999;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6vw;
}

/* Navigation */
.nav {
    padding: 1.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease;
}

.nav.scrolled {
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    color: var(--white);
}

.logo-mark {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a.nav-cta {
    color: var(--copper);
    border: 1px solid var(--copper);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    transition: all 0.25s ease;
}

.nav-links a.nav-cta:hover {
    background: var(--copper);
    color: var(--black);
}

/* Hero Section */
.hero {
    isolation: isolate;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0.55;
}

/* CSS scanline texture */
.hero-scanlines {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(12, 12, 12, 0.08) 2px,
        rgba(12, 12, 12, 0.08) 4px
    );
    pointer-events: none;
}

/* Bottom-only gradient fade */
.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 50%,
        rgba(12, 12, 12, 0.6) 80%,
        var(--black) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 0.8s ease-out 0.1s forwards;
}

.hero-accent {
    color: var(--copper);
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 0.8s ease-out 0.25s forwards;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 0.8s ease-out 0.4s forwards;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-content h1,
    .hero-tagline,
    .hero-ctas {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--copper);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--copper-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 121, 65, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(240, 237, 232, 0.3);
}

.btn-secondary:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

/* Manifesto */
.manifesto {
    padding: 7rem 0;
    text-align: center;
}

.manifesto-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--white);
    max-width: 640px;
    margin: 0 auto;
    letter-spacing: -0.01em;
}

/* Services */
.services {
    padding: 0 0 8rem;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    padding: 2.75rem;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--white);
    position: relative;
    transition: border-color 0.3s ease;
}

/* Remove double borders between cards */
.service-card:not(:first-child) {
    border-left: none;
}

.service-card:hover {
    border-color: var(--copper);
}

.service-card:hover .service-arrow {
    transform: translateX(4px);
    color: var(--copper);
}

.service-number {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    color: var(--copper);
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.875rem;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
}

.service-arrow {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--copper);
    margin-top: 2rem;
    display: block;
    align-self: flex-end;
    transition: transform 0.25s ease, color 0.25s ease;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card:not(:first-child) {
        border-left: 1px solid var(--border);
        border-top: none;
    }
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.02em;
}

/* Work */
.work {
    padding: 0 0 8rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2.5rem;
}

.section-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.work-all-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: var(--copper);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease;
}

.work-all-link:hover {
    opacity: 0.7;
}

.work-grid {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.work-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
}

.work-card {
    display: block;
    text-decoration: none;
    color: var(--white);
    background: var(--black);
    transition: background 0.3s ease;
}

.work-card:hover {
    background: var(--surface);
}

.work-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.work-card--featured .work-image {
    aspect-ratio: 21 / 9;
}

.work-placeholder {
    width: 100%;
    height: 100%;
    background: #1A1714;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.work-meta {
    padding: 1.5rem 2rem 2rem;
}

.work-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--copper);
    display: block;
    margin-bottom: 0.5rem;
}

.work-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.work-card--featured h3 {
    font-size: 1.8rem;
}

.work-card p {
    font-size: 0.825rem;
    font-weight: 300;
    color: var(--muted);
}

@media (max-width: 768px) {
    .work-row {
        grid-template-columns: 1fr;
    }
    .work-card--featured .work-image {
        aspect-ratio: 16 / 9;
    }
}

/* Credibility */
.credibility {
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 8rem;
}

.credibility-lead {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.credibility-clients {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    color: var(--white);
    letter-spacing: 0.04em;
}

.credibility-clients .divider {
    color: var(--border);
    user-select: none;
}

/* CTA */
.cta {
    padding: 0 0 10rem;
}

.cta-inner {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 6rem 4rem;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.cta-inner p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--copper);
    padding: 4rem 0 3rem;
}

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

.footer-logo {
    margin-bottom: 0.75rem;
}

.footer-logo .logo-mark {
    width: 36px;
    height: 36px;
}

.footer-logo .logo-text {
    font-size: 1.1rem;
}

.footer-tagline {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.04em;
    margin-top: 0.5rem;
}

.footer-col h4 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-col ul a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 300;
    transition: color 0.2s ease;
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.footer-bottom p {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
}


@media (max-width: 640px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
}

/* === NEW PAGES STYLES === */

/* Service Content Pages */
.service-content {
    padding: 6rem 0;
}

.service-content .content-section {
    margin-bottom: 4rem;
}

.service-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.large-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 800px;
}

.bullet-list {
    list-style: none;
    margin-top: 1.5rem;
}

.bullet-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--muted);
    line-height: 1.7;
}

.bullet-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--copper);
    font-weight: 600;
}

.cta-box {
    background: rgba(200, 121, 65, 0.1);
    border: 1px solid var(--copper);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

/* About Page */
.about-intro {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.team {
    padding: 6rem 0;
}

.team h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.team-member {
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.team-member:last-child {
    border-bottom: none;
}

.team-member-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--copper);
}

.team-member-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.team-highlights {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(200, 121, 65, 0.2);
}

.team-highlights h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--copper);
    margin-bottom: 1rem;
}

.team-highlights ul {
    list-style: none;
}

.team-highlights li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: var(--muted);
}

.team-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--copper);
    font-weight: 600;
}

.our-standard {
    padding: 4rem 0;
    background: rgba(200, 121, 65, 0.05);
    border-top: 1px solid rgba(200, 121, 65, 0.2);
    border-bottom: 1px solid rgba(200, 121, 65, 0.2);
}

.our-standard h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.our-standard p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 1rem;
    max-width: 800px;
}

/* Trust Section */
.trust {
    padding: 4rem 0;
    text-align: center;
}

.trust h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--muted);
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.trust-logo {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--muted);
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.5rem;
}

.trust-note {
    font-size: 0.9rem;
    color: var(--muted);
    font-style: italic;
}

/* Contact Page */
.contact-content {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: rgba(200, 121, 65, 0.05);
    border: 1px solid rgba(200, 121, 65, 0.2);
    border-radius: 1rem;
    padding: 2.5rem;
}

.contact-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-block;
    color: var(--copper);
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--copper);
}

.contact-location {
    font-size: 1.1rem;
    color: var(--white);
    margin-top: 1rem;
}

.contact-faq-link {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border-radius: 0.5rem;
}

.contact-faq-link p {
    color: var(--muted);
}

.contact-faq-link a {
    color: var(--copper);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-faq-link a:hover {
    color: var(--copper);
}

/* FAQ Page */
.faq-content {
    padding: 6rem 0;
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--copper);
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(200, 121, 65, 0.3);
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.faq-item p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.faq-item strong {
    color: var(--white);
}

.faq-item a {
    color: var(--copper);
    text-decoration: none;
    transition: color 0.2s;
}

.faq-item a:hover {
    color: var(--copper);
}

.faq-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: rgba(200, 121, 65, 0.1);
    border: 1px solid var(--copper);
    border-radius: 1rem;
}

.faq-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.faq-cta p {
    color: var(--muted);
    margin-bottom: 2rem;
}

/* Material & Finish Page */
.materials-content,
.finish-levels,
.combined-methods,
.mini-faq {
    padding: 4rem 0;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 3rem;
    text-align: center;
}

.material-grid,
.finish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.material-card,
.finish-card {
    background: rgba(200, 121, 65, 0.05);
    border: 1px solid rgba(200, 121, 65, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

.material-card h3,
.finish-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--copper);
}

.material-card p,
.finish-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.finish-number {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background: var(--copper);
    color: var(--black);
    border-radius: 50%;
    text-align: center;
    line-height: 3rem;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.finish-levels {
    background: rgba(200, 121, 65, 0.05);
    border-top: 1px solid rgba(200, 121, 65, 0.2);
    border-bottom: 1px solid rgba(200, 121, 65, 0.2);
}

.finish-levels h2,
.combined-methods h2,
.mini-faq h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Privacy Policy Page */
.privacy-content {
    padding: 6rem 0;
}

.privacy-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    color: var(--white);
}

.privacy-content p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-content em {
    color: var(--muted);
}

.privacy-content strong {
    color: var(--white);
}

/* Responsive for new pages */
@media (max-width: 968px) {
    .team-member-content h3 {
        font-size: 1.6rem;
    }
    
    .contact-grid,
    .material-grid,
    .finish-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .trust-logos {
        flex-direction: column;
        align-items: center;
    }

    .large-text {
        font-size: 1.1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 5vw;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .hero-content h1 {
        font-size: clamp(2.75rem, 10vw, 5rem);
    }

    .manifesto-text {
        font-size: 1.35rem;
    }

    .section-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-inner {
        padding: 3.5rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Scroll reveal */
.reveal-section {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-child {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-child.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-section,
    .reveal-child {
        opacity: 1;
        transform: none;
        transition: none;
    }
}