/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --terracotta-50: #FDF2EE;
    --terracotta-100: #FADDD4;
    --terracotta-200: #F5C0B0;
    --terracotta-300: #ED9A82;
    --terracotta-400: #E07055;
    --terracotta-500: #C1694F;
    --terracotta-600: #A85540;
    --terracotta-700: #8B4433;
    --terracotta-800: #6D3528;
    --terracotta-900: #4A2018;

    --sand-50: #FDFCFA;
    --sand-100: #F9F6F0;
    --sand-200: #F0EBE0;
    --sand-300: #E2D9C8;
    --sand-400: #CBBFA8;
    --sand-500: #A89078;
    --sand-600: #8A7060;
    --sand-700: #6B5548;
    --sand-800: #4A3C32;
    --sand-900: #2D241C;

    --neutral-50: #FAFAFA;
    --neutral-100: #F4F4F4;
    --neutral-200: #E8E8E8;
    --neutral-300: #D4D4D4;
    --neutral-400: #A3A3A3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;

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

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--neutral-800);
    background-color: var(--sand-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--terracotta-600);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 500;
}

.skip-link:focus {
    top: 16px;
}

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

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 252, 250, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand-200);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--terracotta-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-900);
    letter-spacing: -0.01em;
}

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

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neutral-600);
    transition: color var(--transition);
    position: relative;
}

.main-nav a:not(.btn-nav):hover {
    color: var(--terracotta-600);
}

.main-nav a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta-500);
    transition: width var(--transition);
}

.main-nav a:not(.btn-nav):hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.nav-toggle:hover {
    background: var(--sand-100);
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--neutral-700);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--neutral-700);
    transition: var(--transition);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--terracotta-500);
    color: white;
    box-shadow: 0 2px 8px rgba(193, 105, 79, 0.3);
}

.btn-primary:hover {
    background: var(--terracotta-600);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(193, 105, 79, 0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
}

.btn-dark {
    background: var(--neutral-900);
    color: white;
}

.btn-dark:hover {
    background: var(--neutral-700);
    transform: translateY(-1px);
}

.btn-nav {
    background: var(--terracotta-500);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
}

.btn-nav:hover {
    background: var(--terracotta-600);
    color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--neutral-900);
    overflow: hidden;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(23, 23, 23, 0.85) 0%,
        rgba(23, 23, 23, 0.6) 50%,
        rgba(23, 23, 23, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(193, 105, 79, 0.2);
    border: 1px solid rgba(193, 105, 79, 0.4);
    color: var(--terracotta-300);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero-accent {
    color: var(--terracotta-300);
    font-style: italic;
}

.hero-sub {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

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

/* ===== SECTION COMMON ===== */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta-500);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.text-accent {
    color: var(--terracotta-500);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--neutral-500);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 64px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-sub {
    margin: 0 auto;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--sand-50);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--sand-50);
}

.about-img-float img {
    width: 260px;
    height: 200px;
    object-fit: cover;
}

.about-accent-box {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--terracotta-500);
    color: white;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-lg);
}

.about-accent-box .accent-box-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-accent-box .accent-box-text {
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: 500;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-body {
    font-size: 0.95rem;
    color: var(--neutral-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-bottom: 36px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--neutral-700);
}

.about-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--terracotta-500);
}

.about-content .btn {
    margin-top: 8px;
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--sand-100);
}

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

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--sand-200);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--terracotta-200);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--terracotta-50);
    border: 1px solid var(--terracotta-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-600);
    margin-bottom: 24px;
    transition: all var(--transition);
}

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

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 120px 0;
    background: var(--sand-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    margin-bottom: 48px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(23,23,23,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 6 / 8; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 8 / 11; grid-row: 2; }
.gallery-item:nth-child(6) { grid-column: 11 / 13; grid-row: 2; }

.gallery-cta {
    text-align: center;
}

/* ===== PROCESS ===== */
.process {
    padding: 120px 0;
    background: var(--neutral-900);
}

.process .section-title {
    color: white;
}

.process .section-label {
    color: var(--terracotta-400);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    position: relative;
    padding: 32px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.process-step:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(193, 105, 79, 0.3);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--terracotta-500);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.7;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: var(--sand-100);
}

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

.testimonial-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--sand-200);
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 600;
    color: var(--neutral-800);
    font-size: 0.95rem;
}

.author-location {
    font-size: 0.8rem;
    color: var(--neutral-400);
}

/* ===== FAQ ===== */
.faq {
    padding: 120px 0;
    background: var(--sand-50);
}

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

.faq-left .section-title {
    margin-bottom: 20px;
}

.faq-intro {
    font-size: 1rem;
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: 32px;
}

.faq-left .btn {
    margin-top: 8px;
}

.faq-item {
    border-bottom: 1px solid var(--sand-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-800);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--terracotta-600);
}

.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--sand-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.faq-toggle svg {
    transition: transform var(--transition);
    color: var(--neutral-500);
}

.faq-question[aria-expanded="true"] .faq-toggle {
    background: var(--terracotta-500);
}

.faq-question[aria-expanded="true"] .faq-toggle svg {
    transform: rotate(45deg);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-answer.open {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--sand-100);
}

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

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 1rem;
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--terracotta-50);
    border: 1px solid var(--terracotta-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-600);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--neutral-800);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.6;
}

.contact-item a {
    color: var(--terracotta-600);
    transition: color var(--transition);
}

.contact-item a:hover {
    color: var(--terracotta-700);
    text-decoration: underline;
}

/* ===== FORM ===== */
.contact-form-wrapper {
    background: white;
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--sand-200);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--neutral-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--sand-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--neutral-800);
    background: var(--sand-50);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta-400);
    background: white;
    box-shadow: 0 0 0 3px rgba(193, 105, 79, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--neutral-400);
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    color: var(--terracotta-500);
    margin: 0 auto 16px;
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--neutral-500);
    font-size: 0.9rem;
}

/* ===== MAP ===== */
.map-section {
    height: 350px;
    background: var(--sand-200);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--neutral-900);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-mark {
    background: var(--terracotta-500);
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--terracotta-400);
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--terracotta-400);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 1023px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(253, 252, 250, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: start;
        padding: 40px 24px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav a {
        font-size: 1.1rem;
        padding: 16px 0;
        border-bottom: 1px solid var(--sand-200);
        width: 100%;
    }

    .main-nav a:not(.btn-nav)::after {
        display: none;
    }

    .btn-nav {
        margin-top: 24px;
        text-align: center;
        border-bottom: none !important;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
    .about-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        max-width: 500px;
    }

    .about-img-float {
        right: -20px;
        bottom: -20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 80px 0;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .services-grid,
    .testimonials-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
    .gallery-item:nth-child(2) { grid-column: 1 / 2; grid-row: auto; }
    .gallery-item:nth-child(3) { grid-column: 2 / 3; grid-row: auto; }
    .gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: auto; }
    .gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: auto; }
    .gallery-item:nth-child(6) { grid-column: 1 / 3; grid-row: auto; }

    .gallery-item img {
        height: 220px;
    }

    .gallery-item:nth-child(1) img {
        height: 280px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .about-img-float {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }

    .about-accent-box {
        position: relative;
        top: auto;
        left: auto;
        display: inline-flex;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

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

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: auto;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}
