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

:root {
    --emerald-900: #042f23;
    --emerald-800: #064e3b;
    --emerald-700: #065f46;
    --emerald-600: #047857;
    --emerald-500: #059669;
    --emerald-400: #10b981;
    --emerald-100: #d1fae5;
    --emerald-50: #ecfdf5;
    --cream-50: #fafaf5;
    --cream-100: #f5f5f0;
    --cream-200: #eeefe8;
    --cream-300: #e8e9e0;
    --ink-900: #0f1a16;
    --ink-800: #1a2e26;
    --ink-700: #2d4a3e;
    --ink-600: #3d5c50;
    --ink-500: #5a7d6e;
    --ink-400: #7a9a8b;
    --ink-300: #9bb0a5;
    --ink-200: #c5d5cc;
    --ink-100: #e2ebe5;
    --ink-50: #f0f5f2;
    --white: #ffffff;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--ink-800);
    background: var(--cream-50);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
}

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
    background: rgba(250, 250, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--ink-100);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.5s var(--ease-out);
}

.nav.scrolled .nav-inner {
    padding: 0.875rem 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    z-index: 1001;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--ink-900);
    transition: all 0.3s var(--ease-out);
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 400;
    color: var(--ink-900);
    letter-spacing: 0.01em;
}

.nav.scrolled .nav-logo-mark,
.nav.scrolled .nav-logo-text {
    color: var(--ink-900);
}

.nav:not(.scrolled) .nav-logo-mark,
.nav:not(.scrolled) .nav-logo-text {
    color: var(--white);
}

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

.nav-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-700);
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
}

.nav:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.nav:not(.scrolled) .nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.nav-link:hover {
    color: var(--ink-900);
    background: var(--cream-200);
}

.nav-link--cta {
    background: var(--emerald-700);
    color: var(--white) !important;
    margin-left: 0.5rem;
}

.nav-link--cta:hover {
    background: var(--emerald-800) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--ink-900);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav.scrolled .nav-toggle span {
    background: var(--ink-900);
}

.nav:not(.scrolled) .nav-toggle span {
    background: var(--white);
}

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

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

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

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 1.5rem 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(6, 78, 59, 0.85) 0%, rgba(4, 47, 35, 0.95) 50%, rgba(2, 26, 20, 1) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(209, 250, 229, 0.8);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
}

.hero-headline--accent {
    font-style: italic;
    font-weight: 300;
    color: var(--emerald-100);
}

.hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.01em;
}

.hero-stat-label {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.375rem;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
    animation: heroScrollFloat 2s ease-in-out infinite;
}

.hero-scroll:hover {
    color: rgba(255, 255, 255, 0.7);
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--emerald-700);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--emerald-800);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(6, 78, 59, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--full {
    width: 100%;
}

/* ===== SECTIONS ===== */
.section {
    padding: 7rem 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-600);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--ink-900);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--ink-500);
    line-height: 1.8;
}

/* ===== SERVICES ===== */
.services {
    background: var(--cream-50);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--ink-100);
    border-radius: 16px;
    padding: 2.25rem;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald-600), var(--emerald-400));
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.08);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    margin-bottom: 1.5rem;
    transition: all 0.3s var(--ease-out);
}

.service-card:hover .service-card-icon {
    background: var(--emerald-700);
    border-color: var(--emerald-700);
    color: var(--white);
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--ink-900);
    margin-bottom: 0.75rem;
    letter-spacing: -0.005em;
}

.service-card-desc {
    font-size: 0.925rem;
    font-weight: 300;
    color: var(--ink-500);
    line-height: 1.75;
}

/* ===== ABOUT ===== */
.about {
    background: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content {
    padding: 1rem 0;
}

.about-body {
    margin-bottom: 2.5rem;
}

.about-body p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--ink-600);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--ink-100);
}

.about-value:first-child {
    border-top: 1px solid var(--ink-100);
}

.about-value-line {
    width: 24px;
    height: 1px;
    background: var(--emerald-500);
    flex-shrink: 0;
}

.about-value-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--ink-700);
}

/* ===== AREAS ===== */
.areas {
    background: var(--cream-50);
}

.areas-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.areas-content {
    order: 1;
}

.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.area-tag {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.06em;
    padding: 0.5rem 1rem;
    border: 1px solid var(--ink-200);
    border-radius: 100px;
    color: var(--ink-600);
    transition: all 0.3s var(--ease-out);
}

.area-tag:hover {
    background: var(--emerald-50);
    border-color: var(--emerald-300);
    color: var(--emerald-700);
}

.areas-image {
    order: 2;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 6/5;
}

.areas-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.areas-image:hover img {
    transform: scale(1.03);
}

/* ===== PROCESS ===== */
.process {
    background: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--ink-200);
}

.process-step {
    text-align: center;
    padding: 0 0.75rem;
    position: relative;
}

.process-step-number {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--emerald-600);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.process-step-number::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald-600);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 3px var(--emerald-100);
}

.process-step-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink-900);
    margin-bottom: 0.625rem;
}

.process-step-desc {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--ink-500);
    line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--cream-50);
    padding-bottom: 5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item--large {
    grid-column: span 7;
    aspect-ratio: 7/5;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--tall) {
    aspect-ratio: 4/3;
}

.gallery-item--tall {
    grid-column: span 5;
    grid-row: span 2;
    aspect-ratio: auto;
}

/* ===== CTA / CONTACT ===== */
.cta {
    background: var(--white);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.cta-content {
    padding-top: 1rem;
}

.cta-content .section-desc {
    margin-bottom: 0;
}

.cta-form-wrapper {
    background: var(--cream-50);
    border: 1px solid var(--ink-100);
    border-radius: 20px;
    padding: 2.5rem;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-500);
}

.form-input {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--ink-900);
    background: var(--white);
    border: 1px solid var(--ink-200);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s var(--ease-out);
    outline: none;
    width: 100%;
}

.form-input:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-input::placeholder {
    color: var(--ink-300);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a9a8b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-note {
    font-size: 12px;
    color: var(--ink-400);
    text-align: center;
    margin-top: 0.25rem;
}

.form-success {
    text-align: center;
    padding: 2rem 0;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--emerald-600);
}

.form-success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink-900);
    margin-bottom: 0.75rem;
}

.form-success-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--ink-500);
    line-height: 1.7;
}

.cta-contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cta-contact-card {
    background: var(--cream-50);
    border: 1px solid var(--ink-100);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s var(--ease-out);
}

.cta-contact-card:hover {
    border-color: var(--emerald-200);
    box-shadow: 0 8px 30px rgba(6, 78, 59, 0.06);
}

.cta-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}

.cta-contact-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-400);
    margin-bottom: 0.375rem;
}

.cta-contact-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--ink-800);
    text-decoration: none;
    transition: color 0.3s;
}

.cta-contact-link:hover {
    color: var(--emerald-700);
}

.cta-contact-text {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink-600);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--ink-900);
    padding: 4rem 0 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.footer-phone, .footer-email {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-phone:hover, .footer-email:hover {
    color: var(--emerald-400);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate][data-delay="100"] { transition-delay: 0.1s; }
[data-animate][data-delay="150"] { transition-delay: 0.15s; }
[data-animate][data-delay="200"] { transition-delay: 0.2s; }
[data-animate][data-delay="300"] { transition-delay: 0.3s; }
[data-animate][data-delay="400"] { transition-delay: 0.4s; }
[data-animate][data-delay="450"] { transition-delay: 0.45s; }
[data-animate][data-delay="500"] { transition-delay: 0.5s; }
[data-animate][data-delay="600"] { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step:nth-child(4),
    .process-step:nth-child(5) {
        border-top: 1px solid var(--ink-100);
        padding-top: 2rem;
    }

    .gallery-item--large {
        grid-column: span 8;
    }

    .gallery-item--tall {
        grid-column: span 4;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(250, 250, 245, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s var(--ease-out);
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-links.open .nav-link {
        color: var(--ink-800) !important;
        font-size: 15px;
    }

    .nav-links.open .nav-link--cta {
        margin-left: 0;
        margin-top: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

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

    .about-container,
    .areas-layout,
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .areas-content {
        order: 2;
    }

    .areas-image {
        order: 1;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .process-step {
        text-align: left;
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--ink-100);
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 1rem;
        align-items: start;
    }

    .process-step-number {
        margin-bottom: 0;
        font-size: 0.8rem;
    }

    .process-step-number::after {
        display: none;
    }

    .process-step:nth-child(5) {
        border-bottom: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item--large,
    .gallery-item--tall {
        grid-column: span 1;
        grid-row: auto;
        aspect-ratio: 4/3;
    }

    .cta-contact-info {
        grid-template-columns: 1fr;
    }

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

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 5rem 0;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .cta-form-wrapper {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--large,
    .gallery-item--tall {
        grid-column: span 1;
    }
}
