/* ============================================
   AHEAD — Architecture Studio
   Dark Formal Theme
   ============================================ */

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

:root {
    --bg-primary: #111111;
    --bg-secondary: #1a1a1a;
    --bg-card: #1e1e1e;
    --bg-card-hover: #252525;
    --text-primary: #f0efeb;
    --text-secondary: #a0a0a0;
    --text-muted: #6b6b6b;
    --accent: #e8611a;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --white: #ffffff;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 10rem;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

html {
    scroll-behavior: auto;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    line-height: 1.6;
}

::selection {
    background: var(--text-primary);
    color: var(--bg-primary);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease-out); cursor: pointer; }

/* ============ SKIP TO CONTENT ============ */
.skip-to-content {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10001;
    border-radius: 0 0 8px 8px;
    transition: top 0.3s var(--ease-out);
}
.skip-to-content:focus {
    top: 0;
    outline: 2px solid var(--text-primary);
    outline-offset: 2px;
}

/* ============ FORM ELEMENTS ============ */
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.form-status { font-size: 0.875rem; margin-top: 0.5rem; min-height: 1.5rem; }
.form-status.success { color: #4caf50; }
.form-status.error { color: #ef5350; }

/* ============ PRELOADER ============ */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #ffffff;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.preloader-images {
    position: absolute;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    height: 100dvh;
}
.preloader-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    will-change: transform, opacity;
    z-index: 1;
}
.preloader-logo {
    position: absolute;
    z-index: 10;
    opacity: 0;
    transform: scale(0.8);
}
.preloader-logo-img {
    height: 140px;
    width: auto;
}
.preloader-counter {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.preloader-number {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.2em;
}

/* ============ REVEAL OVERLAY ============ */
.reveal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #ffffff;
    z-index: 9998;
    pointer-events: none;
}

/* ============ GRAIN ============ */
.grain {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
}

/* ============ CONTAINER ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ============ NAVIGATION ============ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.2rem var(--space-md);
    will-change: transform, opacity;
}
.nav-initial { opacity: 0; }
.nav-initial.visible { opacity: 1; }
.nav-initial.hidden { opacity: 0; pointer-events: none; transform: translateY(-100%); }
.nav-initial.scrolled {
    top: 1rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 720px;
    padding: 0;
    background: rgba(240, 239, 235, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.nav-initial.scrolled:hover {
    background: rgba(240, 239, 235, 0.95);
    border-color: rgba(0, 0, 0, 0.12);
}
.nav-initial.scrolled .nav-inner {
    padding: 0.7rem 16px;
}
.nav-initial.scrolled .nav-logo-img { height: 52px; filter: none; }
.nav-initial.scrolled .nav-links { gap: 14px; }
.nav-initial.scrolled .nav-link {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.75rem;
    border-radius: 100px;
    color: #111111;
}
.nav-initial.scrolled .nav-link:hover { background: rgba(0, 0, 0, 0.06); }
.nav-initial.scrolled .nav-toggle { padding: 6px; border-radius: 50%; }
.nav-initial.scrolled .nav-toggle:hover { background: rgba(0, 0, 0, 0.06); }
.nav-initial.scrolled .nav-toggle span { background: #111111; }

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 70px; width: auto; filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: var(--space-lg); }
.nav-link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.4s var(--ease-out);
}
.nav-link:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.nav-toggle span {
    width: 28px; height: 1.5px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease-out);
}

/* ============ HERO ============ */
.hero {
    height: 100vh;
    height: 100dvh;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    height: 100%;
    align-items: center;
    padding-top: 60px;
}
.hero-content {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
    position: relative;
    z-index: 10;
    will-change: transform, opacity;
}
.hero-eyebrow {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}
.hero-line { display: block; overflow: hidden; }
.hero-line--italic { font-style: italic; color: var(--text-primary); }
.hero-line--accent { color: var(--accent); }
.hero-cta { display: flex; align-items: center; gap: var(--space-lg); }
.hero-scroll-hint {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    padding-left: 60px;
}
.hero-scroll-hint::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 40px; height: 1px;
    background: var(--accent);
}

.hero-image-col { position: relative; height: 100%; }
.hero-image-wrapper {
    position: absolute;
    top: 8vh; right: 0;
    width: 70%; height: 80vh;
    overflow: hidden;
    z-index: 5;
    will-change: transform, width, height, top, left;
}
.hero-image {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}
.hero-image-wrapper:hover .hero-image { transform: scale(1.03); }

.hero-image-caption {
    position: absolute;
    bottom: var(--space-md); left: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    color: var(--white);
    letter-spacing: 0.1em;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.75rem 1rem;
    backdrop-filter: blur(8px);
}
.caption-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

/* ============ SERVICES STRIP ============ */
.services-strip {
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-primary);
    overflow: hidden;
}
.services-strip-inner {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 var(--space-md);
}
.service-pill {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    white-space: nowrap;
    transition: all 0.3s var(--ease-out);
}
.service-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ============ STATEMENT ============ */
.statement {
    padding: var(--space-2xl) 0;
    text-align: center;
    background: var(--bg-secondary);
}
.statement-text {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.35;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-primary);
}
.statement-text em {
    font-style: italic;
}

/* ============ SECTION LABELS ============ */
.section-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    display: block;
}
.section-label--light { color: rgba(255,255,255,0.5); }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}
.section-title em { font-style: italic; color: var(--accent); }

.title-accent {
    position: relative;
    color: var(--accent);
    display: inline-block;
}
.title-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s var(--ease-out);
    opacity: 0.4;
}
.title-accent.visible::after {
    transform: scaleX(1);
}

/* ============ PROJECTS ============ */
.projects {
    padding: var(--space-2xl) 0 0 0;
    background: var(--bg-primary);
}
.projects-header {
    margin-bottom: var(--space-xl);
}

.project-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 60vh;
    padding: 0;
    margin-top: -2px;
}
.project-feature--first {
    margin-top: 0;
}
.project-feature--reverse {
    grid-template-columns: 1fr 1fr;
}
.project-feature--reverse .project-feature-image {
    order: 2;
}
.project-feature--reverse .project-feature-content {
    order: 1;
}

.project-feature-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}
.project-feature-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}
.project-feature:hover .project-feature-img {
    transform: scale(1.03);
}

.project-feature-content {
    padding: var(--space-lg) var(--space-xl);
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.project-feature-year {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: var(--space-sm);
}
.project-feature-name {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.project-feature-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
}
.project-feature-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    max-width: 420px;
}
.project-feature-area {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0.6rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    display: inline-block;
    letter-spacing: 0.05em;
}

/* ============ STUDIO BAND ============ */
.studio-band {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.studio-band-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.studio-band-img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.studio-band-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        to right,
        rgba(17, 17, 17, 0.9) 0%,
        rgba(17, 17, 17, 0.65) 50%,
        rgba(17, 17, 17, 0.3) 100%
    );
}
.studio-band-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--space-lg);
    max-width: 600px;
    color: var(--white);
}
.studio-band-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--white);
}
.studio-band-title em { font-style: italic; }
.studio-band-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-lg);
}
.studio-band-stats {
    display: flex;
    gap: var(--space-xl);
}
.studio-stat { display: flex; flex-direction: column; }
.studio-stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}
.studio-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.4rem;
}

/* ============ SERVICES ============ */
.services {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
}
.services-header {
    margin-bottom: var(--space-xl);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}
.service-card {
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s var(--ease-out);
}
.service-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.service-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    display: block;
    margin-bottom: var(--space-sm);
    transition: color 0.3s var(--ease-out);
}
.service-card:hover .service-num {
    color: rgba(255, 255, 255, 0.12);
}
.service-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}
.service-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============ TESTIMONIAL ============ */
.testimonial {
    padding: var(--space-2xl) 0;
    text-align: center;
    background: var(--bg-primary);
}
.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.45;
    max-width: 750px;
    margin: 0 auto var(--space-lg);
    color: var(--text-primary);
}
.testimonial-author cite {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    font-style: normal;
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}
.testimonial-author span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============ CONTACT ============ */
.contact {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}
.contact-details {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.contact-item { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}
.contact-value { font-size: 1.05rem; color: var(--text-primary); }
a.contact-value:hover { color: var(--text-secondary); }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}
.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s var(--ease-out);
    -webkit-appearance: none;
}
.form-input:focus {
    border-color: var(--text-secondary);
}
.form-input::placeholder { color: var(--text-muted); }
.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    border: none;
    outline: none;
    background: var(--text-primary);
    color: var(--bg-primary);
}
.btn:hover {
    background: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
}
.btn-primary:hover {
    background: var(--white);
}

/* ============ FOOTER ============ */
.footer {
    padding: var(--space-lg) 0 var(--space-md);
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}
.footer-tagline { font-size: 0.82rem; color: var(--text-muted); }
.footer-links, .footer-social {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}
.footer-links a, .footer-social a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color 0.3s var(--ease-out);
}
.footer-links a:hover, .footer-social a:hover { color: var(--text-primary); }
.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ FOCUS STATES ============ */
:focus-visible {
    outline: 2px solid var(--text-primary);
    outline-offset: 2px;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 10px; background: var(--bg-primary); }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.25); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .container { padding: 0 var(--space-sm); }
    .hero-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .hero-content { padding-right: 0; text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-image-wrapper {
        position: relative;
        top: auto; right: auto;
        width: 100%; height: auto;
        aspect-ratio: 16/9;
        max-width: 600px;
        margin: 0 auto;
    }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .project-feature { min-height: auto; padding: 0; margin-top: -2px; }
    .project-feature--first { margin-top: 0; }
    .project-feature-image { height: 500px; }
    .project-feature-content { padding: var(--space-md); }
    .studio-band-content { padding: 0 var(--space-md); }
    .services-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .footer-top { grid-template-columns: 1fr; gap: var(--space-md); }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(240, 239, 235, 0.96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-md);
        gap: var(--space-sm);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    .nav-links.active { display: flex; }
    .nav-links .nav-link { color: #111111; }
    .nav-toggle { display: flex; }
    .nav-toggle span { background: #111111; }

    .hero { padding-top: 80px; }
    .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
    .hero-image-wrapper { aspect-ratio: 3/4; }

    .projects-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .project-card-image { aspect-ratio: 4/3; }

    .project-feature {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 0;
        gap: 0;
        margin-top: -2px;
    }
    .project-feature--first { margin-top: 0; }
    .project-feature--reverse .project-feature-image { order: 0; }
    .project-feature--reverse .project-feature-content { order: 0; }
    .project-feature-image { height: 500px; }
    .project-feature-content { padding: var(--space-md); }

    .studio-band { height: 60vh; min-height: 400px; }
    .studio-band-stats { flex-direction: column; gap: var(--space-sm); }

    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: var(--space-md); }

    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero-title { font-size: clamp(2rem, 12vw, 3rem); }
    .projects-grid { grid-template-columns: 1fr; }
    .project-card-image { aspect-ratio: 1/1; }
    .project-feature-image { height: 400px; }
    .project-feature-name { font-size: 1.5rem; }
    .services-strip-inner { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding: 0 1rem; -webkit-overflow-scrolling: touch; }
    .btn { width: 100%; justify-content: center; }
    .studio-band { height: 50vh; }
    .studio-band-content { padding: 0 1rem; }
    .studio-band-title { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
