/* ============================================
   Norman R McMillin Logging Company — Styles
   Palette: Emerald (#065f46 / #047857 / #10b981)
            Cream (#faf6f0 / #f0e6d6 / #d4a574)
   Fonts: Playfair Display + Inter
   ============================================ */

*, *::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: #10b981;
    --emerald-100: #d1fae5;
    --emerald-50:  #ecfdf5;
    --cream-50:   #faf6f0;
    --cream-100:  #f5efe5;
    --cream-200:  #f0e6d6;
    --cream-300:  #e8d5be;
    --warm-500:   #d4a574;
    --warm-600:   #b8864e;
    --warm-700:   #966a3a;
    --gray-50:    #f9fafb;
    --gray-100:   #f3f4f6;
    --gray-200:   #e5e7eb;
    --gray-300:   #d1d5db;
    --gray-400:   #9ca3af;
    --gray-500:   #6b7280;
    --gray-600:   #4b5563;
    --gray-700:   #374151;
    --gray-800:   #1f2937;
    --gray-900:   #111827;
    --white:      #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
    --shadow-xl: 0 24px 60px rgba(0,0,0,.16), 0 8px 20px rgba(0,0,0,.08);
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--cream-50);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--emerald-700);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--emerald-600); }

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

/* ========== Background Pattern ========== */
.bg-pattern {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(6,95,70,.04) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(212,165,116,.06) 0%, transparent 60%);
    pointer-events: none;
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,246,240,.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(6,95,70,.08);
    transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
    background: rgba(250,246,240,.96);
    box-shadow: var(--shadow-md);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--emerald-700);
}
.nav-brand:hover { color: var(--emerald-800); }
.nav-brand-text { letter-spacing: -.01em; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-600);
    border-radius: 2px;
    transition: width var(--transition);
}
.nav-links a:hover { color: var(--emerald-700); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--emerald-700);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--emerald-600);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== Hero ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(4,47,35,.88) 0%,
        rgba(6,78,59,.82) 40%,
        rgba(10,95,70,.72) 100%
    );
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    padding: 60px 0 80px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,165,116,.15);
    border: 1px solid rgba(212,165,116,.3);
    color: var(--warm-500);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -.02em;
}
.hero-headline em {
    font-style: normal;
    color: var(--warm-500);
}
.hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,.78);
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: var(--emerald-600);
    color: var(--white);
    border-color: var(--emerald-600);
}
.btn-primary:hover {
    background: var(--emerald-500);
    border-color: var(--emerald-500);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16,185,129,.3);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.4);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
    color: var(--white);
}
.btn-outline-dark {
    background: transparent;
    color: var(--emerald-700);
    border-color: var(--emerald-700);
}
.btn-outline-dark:hover {
    background: var(--emerald-700);
    color: var(--white);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* Hero stat cards */
.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.stat-card {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all var(--transition);
}
.stat-card:hover {
    background: rgba(255,255,255,.16);
    transform: translateX(4px);
}
.stat-card--accent {
    background: rgba(212,165,116,.2);
    border-color: rgba(212,165,116,.35);
}
.stat-card--accent .stat-icon { background: rgba(212,165,116,.2); }
.stat-card--accent .stat-number { color: var(--warm-500); }
.stat-card--wide {
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.stat-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(6,95,70,.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}
.stat-label {
    font-size: .82rem;
    color: rgba(255,255,255,.7);
    line-height: 1.5;
    margin-top: 2px;
}
.stat-info { display: flex; flex-direction: column; }

/* ========== Section shared ========== */
section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--emerald-600);
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.7;
}
.section-header--center .section-desc { margin: 0 auto; }

/* ========== Services ========== */
.services {
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--cream-200);
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--emerald-100);
}
.service-card__img {
    height: 200px;
    overflow: hidden;
}
.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.service-card:hover .service-card__img img {
    transform: scale(1.06);
}
.service-card__body {
    padding: 28px;
}
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--emerald-100);
}
.service-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    letter-spacing: -.01em;
}
.service-card__desc {
    font-size: .92rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========== About ========== */
.about {
    background: var(--cream-50);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--cream-50);
    box-shadow: var(--shadow-lg);
}
.about-img-accent img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--emerald-700);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}
.about-exp-label {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .8;
    margin-top: 4px;
}
.about-content .section-title { margin-top: 8px; }
.about-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    margin: 32px 0;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--gray-700);
}
.value-item svg {
    flex-shrink: 0;
    color: var(--emerald-600);
}
.about-content .btn { margin-top: 8px; }

/* ========== Why Choose Us ========== */
.why {
    background: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--cream-50);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald-600), var(--warm-500));
    opacity: 0;
    transition: opacity var(--transition);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--emerald-100);
}
.why-card:hover::before { opacity: 1; }
.why-card__num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--emerald-100);
    line-height: 1;
    margin-bottom: 16px;
    transition: color var(--transition);
}
.why-card:hover .why-card__num { color: var(--emerald-200); }
.why-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.why-card__desc {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========== Process ========== */
.process {
    background: var(--cream-50);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.process-step {
    text-align: center;
    padding: 20px 16px;
}
.process-step__marker {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}
.process-step__num {
    width: 56px;
    height: 56px;
    background: var(--emerald-700);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(6,95,70,.25);
}
.process-step__line {
    position: absolute;
    top: 50%;
    left: calc(50% + 36px);
    right: calc(-50% + 36px);
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--emerald-200) 0px,
        var(--emerald-200) 8px,
        transparent 8px,
        transparent 16px
    );
    transform: translateY(-50%);
}
.process-step:last-child .process-step__line { display: none; }
.process-step__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.process-step__desc {
    font-size: .88rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========== CTA Banner ========== */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4,47,35,.92) 0%, rgba(6,78,59,.85) 100%);
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -.02em;
}
.cta-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,.78);
    line-height: 1.7;
    margin-bottom: 36px;
}
.cta-text a {
    color: var(--warm-500);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cta-text a:hover { color: var(--warm-600); }
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ========== Contact ========== */
.contact {
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info .section-title { margin-top: 8px; }
.contact-desc {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-item__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-item strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}
.contact-item p {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.6;
}
.contact-item a {
    color: var(--emerald-700);
}
.contact-item a:hover { color: var(--emerald-600); }

/* Form */
.contact-form-wrap {
    background: var(--cream-50);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-xl);
    padding: 40px;
}
.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}
.form-sub {
    font-size: .9rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--gray-800);
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(16,185,129,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-success {
    display: none;
    align-items: center;
    gap: 14px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-top: 20px;
}
.form-success.show {
    display: flex;
}
.form-success svg { flex-shrink: 0; }
.form-success strong {
    display: block;
    font-size: .95rem;
    color: var(--emerald-700);
}
.form-success p {
    font-size: .85rem;
    color: var(--gray-500);
    margin-top: 2px;
}

/* ========== Footer ========== */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,.65);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { max-width: 280px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 14px;
}
.footer-logo:hover { color: var(--white); }
.footer-tagline {
    font-size: .88rem;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
}
.footer-col h4 {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col a {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--warm-500); }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
}
.footer-contact svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 28px 0;
    font-size: .82rem;
    color: rgba(255,255,255,.35);
}

/* ========== Mobile Menu ========== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .stat-card { flex: 1; min-width: 200px; }
    .stat-card--wide { flex: 1 1 100%; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 48px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-step__line { display: none; }
    .contact-grid { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream-50);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 20px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
        z-index: 999;
    }
    .nav-links.open { right: 0; }
    .nav-toggle { display: flex; }
    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero-grid { padding: 0; }
    .hero-cards { flex-direction: column; }
    .stat-card, .stat-card--wide { flex: 1 1 100%; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-accent { width: 180px; right: -10px; bottom: -20px; }
    .about-experience-badge { top: -10px; left: -10px; }
    .about-img-main img { height: 360px; }
    .about-values { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrap { padding: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    section { padding: 72px 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-headline { font-size: 1.85rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ========== Reduced Motion ========== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
