/* ============================================
   CONCEPT 1: ORGANIC EARTH
   Warm, earthy, flowing shapes, hand-crafted feel
   ============================================ */

:root {
    --c-earth: #2d1b0e;
    --c-soil: #3a2a1a;
    --c-bark: #5A4A3A;
    --c-clay: #8B7355;
    --c-sand: #C4A87C;
    --c-cream: #F5F0E8;
    --c-parchment: #FAF7F2;
    --c-white: #FDFCFA;
    --c-moss: #4a7c59;
    --c-fern: #6b9e5a;
    --c-forest: #2d5a3f;
    --c-sage: #8aab7a;
    --c-terracotta: #C4724E;
    --c-terracotta-dark: #A85A3A;

    --f-display: 'DM Serif Display', Georgia, serif;
    --f-body: 'Outfit', -apple-system, sans-serif;

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

    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-blob: 60% 40% 50% 50% / 50% 60% 40% 50%;

    --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--f-body);
    color: var(--c-earth);
    background: var(--c-parchment);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

/* Grain Overlay */
.grain {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* Typography */
h1, h2, h3 { font-family: var(--f-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
em { font-style: italic; color: var(--c-moss); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--c-clay);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: 2rem;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.2rem;
    height: 1px;
    background: var(--c-clay);
}
.section-tag--light { color: var(--c-sand); }
.section-tag--light::before { background: var(--c-sand); }

.section-title { margin-bottom: var(--space-md); }
.section-title--light { color: var(--c-cream); }
.section-title--light em { color: var(--c-sage); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: var(--f-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}
.btn--primary {
    background: var(--c-moss);
    color: var(--c-white);
}
.btn--primary:hover {
    background: var(--c-forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 90, 63, 0.3);
}
.btn--ghost {
    background: transparent;
    color: var(--c-earth);
    border: 1.5px solid var(--c-clay);
}
.btn--ghost:hover {
    background: var(--c-earth);
    color: var(--c-cream);
    border-color: var(--c-earth);
}
.btn--full { width: 100%; justify-content: center; }

/* ============ NAVIGATION ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}
.nav.scrolled {
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    padding: 0.8rem 3rem;
}
.nav__logo {
    font-family: var(--f-display);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav__logo-img {
    height: 36px;
    width: auto;
}
.nav__logo-mark {
    color: var(--c-moss);
    font-size: 1.2rem;
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav__links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
}
.nav__links a:not(.nav__cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--c-moss);
    transition: var(--transition);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
    background: var(--c-moss);
    color: var(--c-white) !important;
    padding: 0.5rem 1.4rem;
    border-radius: var(--radius-xl);
    font-weight: 500;
}
.nav__cta:hover { background: var(--c-forest); }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-earth);
    transition: var(--transition);
    border-radius: 2px;
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--space-2xl) var(--space-lg);
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero__shape {
    position: absolute;
    border-radius: var(--radius-blob);
    opacity: 0.12;
    animation: morphBlob 20s ease-in-out infinite;
}
.hero__shape--1 {
    width: 600px; height: 600px;
    top: -10%; right: -5%;
    background: var(--c-moss);
    animation-delay: 0s;
}
.hero__shape--2 {
    width: 400px; height: 400px;
    bottom: -5%; left: 5%;
    background: var(--c-terracotta);
    animation-delay: -7s;
    border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
}
.hero__shape--3 {
    width: 250px; height: 250px;
    top: 30%; left: 15%;
    background: var(--c-fern);
    animation-delay: -14s;
    border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%;
}
.hero__photo {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 550px;
    border-radius: var(--radius-blob);
    overflow: hidden;
    opacity: 0.25;
}
.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes morphBlob {
    0%, 100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
    25% { border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%; }
    50% { border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%; }
    75% { border-radius: 55% 45% 60% 40% / 60% 45% 40% 55%; }
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 750px;
}
.hero__tag {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-clay);
    margin-bottom: var(--space-md);
    font-weight: 500;
}
.hero__title {
    margin-bottom: var(--space-md);
}
.hero__desc {
    font-size: 1.1rem;
    color: var(--c-bark);
    max-width: 560px;
    margin: 0 auto var(--space-lg);
    line-height: 1.8;
}
.hero__actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.hero__scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-clay);
}
.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--c-clay), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============ SERVICES ============ */
.services {
    padding: var(--space-2xl) var(--space-lg) var(--space-xl);
}
.services__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-slow);
    border: 1px solid rgba(0,0,0,0.04);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}
.service-card__visual {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.service-card__img-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f0e4 0%, #d4e4cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-card__placeholder svg { width: 120px; height: 120px; }
.service-card__placeholder--house {
    background: linear-gradient(135deg, #f0e8dd 0%, #e4d8c8 100%);
}
.service-card__number {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-family: var(--f-display);
    font-size: 4rem;
    color: rgba(0,0,0,0.06);
    line-height: 1;
}
.service-card__content {
    padding: var(--space-md) var(--space-md) var(--space-lg);
}
.service-card__content h3 {
    margin-bottom: var(--space-sm);
    color: var(--c-earth);
}
.service-card--garden .service-card__content h3 { color: var(--c-forest); }
.service-card--house .service-card__content h3 { color: var(--c-bark); }

.service-card__content p {
    color: var(--c-bark);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}
.service-card__list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}
.service-card__list li {
    font-size: 0.88rem;
    color: var(--c-bark);
    padding-left: 1.4rem;
    position: relative;
}
.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.service-card--garden .service-card__list li::before { background: var(--c-fern); }
.service-card--house .service-card__list li::before { background: var(--c-clay); }

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
}
.service-card--garden .service-card__link { color: var(--c-moss); }
.service-card--house .service-card__link { color: var(--c-clay); }
.service-card__link:hover { gap: 0.8rem; }

/* ============ APPROACH ============ */
.approach {
    position: relative;
    background: var(--c-earth);
    padding: var(--space-2xl) var(--space-lg);
    overflow: hidden;
    text-align: center;
}
.approach__bg {
    position: absolute;
    inset: 0;
}
.approach__circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 60s linear infinite;
}
.approach__circle::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@keyframes rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }

.approach__content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto var(--space-xl);
}
.approach__content p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    line-height: 1.9;
}
.approach__stats {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
}
.stat { text-align: center; }
.stat__number {
    font-family: var(--f-display);
    font-size: 3.5rem;
    color: var(--c-sand);
    display: block;
    line-height: 1.2;
}
.stat__number::after { content: '+'; font-size: 0.6em; }
.stat__label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============ PROJECTS ============ */
.projects {
    padding: var(--space-2xl) var(--space-lg);
}
.projects__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}
.projects__tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-lg);
}
.projects__tab {
    background: none;
    border: 1.5px solid var(--c-sand);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-family: var(--f-body);
    font-size: 0.85rem;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
    color: var(--c-bark);
}
.projects__tab:hover, .projects__tab.active {
    background: var(--c-earth);
    color: var(--c-cream);
    border-color: var(--c-earth);
}
.projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}
.project-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-slow);
}
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.project-card--wide { grid-column: span 2; }
.project-card__img {
    height: 240px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: var(--space-sm);
    overflow: hidden;
}
.project-card__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-slow);
}
.project-card:hover .project-card__img img { transform: scale(1.05); }
.project-card--wide .project-card__img { height: 280px; }
.project-card__badge {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-xl);
}
.project-card__info {
    padding: var(--space-sm) var(--space-md);
    background: var(--c-white);
}
.project-card__info h4 {
    font-family: var(--f-display);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.project-card__info p {
    font-size: 0.85rem;
    color: var(--c-bark);
    line-height: 1.6;
}
.project-card.hidden {
    display: none;
}

/* ============ GALLERY ============ */
.gallery {
    padding: var(--space-xl) var(--space-lg) var(--space-2xl);
    background: var(--c-cream);
}
.gallery__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}
.gallery__masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: var(--space-sm);
    max-width: 1200px;
    margin: 0 auto;
}
.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-slow);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover { transform: scale(1.02); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 27, 14, 0);
    display: flex;
    align-items: flex-end;
    padding: var(--space-sm);
    transition: var(--transition);
}
.gallery__overlay span {
    color: white;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}
.gallery__item:hover .gallery__overlay {
    background: rgba(45, 27, 14, 0.5);
}
.gallery__item:hover .gallery__overlay span {
    opacity: 1;
    transform: translateY(0);
}

/* ============ ABOUT ============ */
.about {
    padding: var(--space-2xl) var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}
.about__content p {
    color: var(--c-bark);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}
.about__values {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}
.value {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 var(--space-sm);
}
.value__icon {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--c-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-moss);
}
.value__icon svg { width: 24px; height: 24px; }
.value h4 {
    font-family: var(--f-display);
    font-size: 1.15rem;
}
.value p {
    color: var(--c-bark);
    font-size: 0.88rem;
}

/* ============ CONTACT ============ */
.contact {
    position: relative;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--c-cream);
    overflow: hidden;
}
.contact__bg { position: absolute; inset: 0; pointer-events: none; }
.contact__leaf {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-blob);
    opacity: 0.06;
}
.contact__leaf--1 { background: var(--c-moss); top: 5%; right: -3%; }
.contact__leaf--2 { background: var(--c-terracotta); bottom: 5%; left: -3%; }

.contact__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    position: relative;
    z-index: 1;
}
.contact__content p {
    color: var(--c-bark);
    font-size: 1rem;
}
.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.contact__form {
    background: var(--c-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.04);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}
.form-group {
    margin-bottom: var(--space-sm);
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--c-bark);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    font-family: var(--f-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--c-earth);
    background: var(--c-parchment);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--c-moss);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md) 0;
}
.contact__detail h4 {
    font-family: var(--f-display);
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--c-earth);
}
.contact__detail p {
    font-size: 0.9rem;
    color: var(--c-bark);
    line-height: 1.6;
}
.contact__detail a {
    transition: var(--transition);
}
.contact__detail a:hover { color: var(--c-moss); }

/* ============ FOOTER ============ */
.footer {
    background: var(--c-earth);
    padding: var(--space-lg) var(--space-lg) var(--space-md);
}
.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.footer__brand {
    margin-bottom: var(--space-md);
    color: var(--c-cream);
    font-family: var(--f-display);
    font-size: 1.3rem;
}
.footer__logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 0.5rem;
}
.footer__brand .nav__logo-mark { color: var(--c-sage); }
.footer__brand p {
    font-family: var(--f-body);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.3rem;
    font-weight: 300;
}
.footer__links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}
.footer__links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.footer__links a:hover { color: var(--c-sand); }
.footer__copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: var(--space-md);
}

/* ============ LIGHTBOX ============ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(45, 27, 14, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}
.lightbox__content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox__img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    object-fit: contain;
}

/* ============ ANIMATIONS ============ */
[data-anim] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-anim].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: 1fr; gap: var(--space-md); }
    .projects__grid { grid-template-columns: repeat(2, 1fr); }
    .project-card--wide { grid-column: span 2; }
    .gallery__masonry { grid-template-columns: repeat(3, 1fr); }
    .about { grid-template-columns: 1fr; gap: var(--space-lg); }
}

@media (max-width: 768px) {
    .nav { padding: 1rem 1.5rem; }
    .nav.scrolled { padding: 0.6rem 1.5rem; }
    .nav__links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--c-parchment);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }
    .nav__links.open { right: 0; }
    .nav__burger { display: flex; }
    .nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav__burger.active span:nth-child(2) { opacity: 0; }
    .nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero { padding: var(--space-xl) var(--space-md); }
    .services, .projects, .about, .contact { padding: var(--space-xl) var(--space-md); }
    .approach { padding: var(--space-xl) var(--space-md); }
    .approach__stats { flex-direction: column; gap: var(--space-md); }
    .projects__grid { grid-template-columns: 1fr; }
    .project-card--wide { grid-column: span 1; }
    .gallery { padding: var(--space-xl) var(--space-md); }
    .gallery__masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .gallery__item--wide { grid-column: span 2; }
    .contact__grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2.2rem; }
    .gallery__masonry { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gallery__item--wide, .gallery__item--tall { grid-column: span 1; grid-row: span 1; }
}
