/* ============================================
   EISELE'S CUSTOM FOOTWEAR — STYLESHEET
   Emerald Green + Cream | Confident Corporate
   ============================================ */

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

:root {
    /* Palette */
    --emerald-950: #042f23;
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-100: #d1fae5;
    --emerald-50:  #ecfdf5;
    
    --cream-50:  #faf9f6;
    --cream-100: #f5f3ed;
    --cream-200: #eae6db;
    --cream-300: #d4cfc3;
    
    --neutral-950: #0c0f0d;
    --neutral-900: #141816;
    --neutral-800: #1f2521;
    --neutral-700: #2d342e;
    --neutral-600: #4a524c;
    --neutral-500: #6b756d;
    --neutral-400: #9aa59d;
    --neutral-300: #bcc5bd;
    --neutral-200: #dce2dc;
    --neutral-100: #eff2ef;
    --neutral-50:  #f8f9f8;
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Manrope', system-ui, sans-serif;
    
    /* Spacing */
    --container-max: 1280px;
    --section-pad: clamp(4rem, 10vw, 8rem);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: var(--font-sans);
    color: var(--neutral-800);
    background-color: var(--cream-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* --- LAYOUT --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* --- HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cream-200);
    transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(6, 78, 59, 0.08);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--emerald-900);
}

.logo-mark {
    display: flex;
    align-items: center;
    color: var(--emerald-700);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--neutral-500);
}

.logo--light {
    color: var(--cream-50);
}

.logo--light .logo-tagline {
    color: var(--neutral-400);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

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

.nav-links a {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-700);
    border-radius: 6px;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-links a:hover {
    color: var(--emerald-800);
    background: var(--emerald-50);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--emerald-900);
    border-radius: 6px;
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: var(--emerald-50);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--emerald-800);
    color: var(--cream-50);
    border-color: var(--emerald-800);
}

.btn-primary:hover {
    background: var(--emerald-700);
    border-color: var(--emerald-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(6, 78, 59, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--emerald-800);
    border-color: var(--emerald-800);
}

.btn-secondary:hover {
    background: var(--emerald-800);
    color: var(--cream-50);
}

.btn-outline {
    background: transparent;
    color: var(--emerald-800);
    border-color: var(--cream-300);
}

.btn-outline:hover {
    border-color: var(--emerald-800);
    background: var(--emerald-50);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 10px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- HERO --- */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--cream-50);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding-top: clamp(2rem, 6vw, 4rem);
    padding-bottom: clamp(2rem, 6vw, 4rem);
}

/* Hero Content — dark column */
.hero-content {
    background: var(--emerald-900);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 16px;
    color: var(--cream-50);
    position: relative;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--emerald-400);
    color: var(--emerald-500);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--cream-50);
}

.hero-subheadline {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--neutral-300);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.hero-actions .btn-primary {
    background: var(--cream-50);
    color: var(--emerald-900);
    border-color: var(--cream-50);
}

.hero-actions .btn-primary:hover {
    background: var(--cream-100);
    border-color: var(--cream-100);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-actions .btn-secondary {
    background: transparent;
    color: var(--cream-50);
    border-color: var(--neutral-600);
}

.hero-actions .btn-secondary:hover {
    border-color: var(--cream-50);
    background: rgba(250, 249, 246, 0.1);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cream-50);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--neutral-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--neutral-700);
    flex-shrink: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 100%;
    min-height: 500px;
}

.hero-img-main {
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.2);
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-accent {
    position: absolute;
    bottom: 0;
    right: -1.5rem;
    width: 55%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(6, 78, 59, 0.25);
    border: 4px solid var(--cream-50);
}

.hero-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: -1rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--emerald-800);
    color: var(--cream-50);
    padding: 0.625rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(6, 78, 59, 0.3);
}

/* --- SECTION HEADERS --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--emerald-700);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--neutral-900);
}

/* --- SERVICES --- */
.services {
    padding: var(--section-pad) 0;
    background: var(--cream-100);
}

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

.service-card {
    background: var(--cream-50);
    border: 1px solid var(--cream-200);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    transition: all var(--transition-base);
}

.service-card:hover {
    border-color: var(--emerald-300);
    border-color: var(--emerald-500);
    box-shadow: 0 8px 32px rgba(6, 78, 59, 0.1);
    transform: translateY(-2px);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    border-radius: 12px;
    color: var(--emerald-800);
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-card > p {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--neutral-700);
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--emerald-600);
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- CRAFT --- */
.craft {
    padding: var(--section-pad) 0;
    background: var(--cream-50);
}

.craft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.craft-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.craft-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(6, 78, 59, 0.12);
}

.craft-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craft-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    width: 58%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(6, 78, 59, 0.2);
    border: 4px solid var(--cream-50);
}

.craft-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craft-content {
    padding: clamp(1rem, 3vw, 2rem) 0;
}

.craft-content .section-eyebrow {
    text-align: left;
    margin-bottom: 1rem;
}

.craft-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.craft-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--neutral-600);
    margin-bottom: 1.25rem;
}

.craft-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-item {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    align-items: start;
}

.value-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-200);
    line-height: 1;
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* --- PROCESS --- */
.process {
    padding: var(--section-pad) 0;
    background: var(--emerald-900);
    color: var(--cream-50);
}

.process .section-eyebrow {
    color: var(--emerald-500);
}

.process .section-title {
    color: var(--cream-50);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: calc(12.5% + 0.75rem);
    right: calc(12.5% + 0.75rem);
    height: 2px;
    background: linear-gradient(to right, var(--emerald-700), var(--emerald-600), var(--emerald-700));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-800);
    border: 2px solid var(--emerald-600);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    color: var(--emerald-400);
    transition: all var(--transition-base);
}

.process-step:hover .step-number {
    background: var(--emerald-700);
    border-color: var(--emerald-500);
    transform: scale(1.05);
}

.process-step h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cream-50);
    margin-bottom: 0.625rem;
    letter-spacing: -0.01em;
}

.process-step p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--neutral-400);
}

/* --- GALLERY --- */
.gallery {
    padding: var(--section-pad) 0;
    background: var(--cream-50);
}

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item--wide {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(4, 47, 35, 0.85), transparent);
    color: var(--cream-50);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-base);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption span:first-child {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
}

.gallery-caption span:last-child {
    font-size: 0.8125rem;
    color: var(--neutral-300);
}

/* --- CTA --- */
.cta {
    padding: var(--section-pad) 0;
    background: var(--cream-100);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.cta-content {
    max-width: 560px;
}

.cta-content .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--neutral-600);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

.cta-actions .btn-lg {
    justify-content: center;
}

/* --- CONTACT --- */
.contact {
    padding: var(--section-pad) 0;
    background: var(--cream-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.contact-info .section-eyebrow {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--neutral-600);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    align-items: start;
}

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

.contact-item dd {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--neutral-700);
}

.contact-item a {
    color: var(--emerald-800);
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--cream-100);
    border: 1px solid var(--cream-200);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-form h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.form-note {
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin-bottom: 1.5rem;
}

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

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

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--neutral-700);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--cream-200);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--neutral-900);
    background: var(--cream-50);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-600);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

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

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

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--emerald-800);
}

.form-success svg {
    margin-bottom: 1rem;
    color: var(--emerald-600);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* --- FOOTER --- */
.site-footer {
    background: var(--neutral-950);
    color: var(--neutral-400);
    padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--neutral-500);
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--neutral-300);
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--neutral-500);
    transition: color var(--transition-fast);
}

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

.footer-contact address {
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--neutral-400);
    margin-bottom: 0.75rem;
}

.footer-contact a {
    font-size: 0.875rem;
    color: var(--neutral-500);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid var(--neutral-800);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--neutral-600);
}

/* --- MOBILE NAV OVERLAY --- */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: 72px;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(12px);
    z-index: 999;
    padding: 2rem;
}

.nav-overlay.active {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-overlay a {
    display: block;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-800);
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.nav-overlay a:hover {
    background: var(--emerald-50);
    color: var(--emerald-800);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        min-height: 400px;
        order: -1;
    }
    
    .hero-img-accent {
        right: -0.75rem;
        bottom: -0.75rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .craft-grid {
        grid-template-columns: 1fr;
    }
    
    .craft-images {
        max-width: 500px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item--wide {
        grid-column: 1 / 3;
    }
    
    .cta-inner {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: row;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero {
        min-height: auto;
    }
    
    .hero-grid {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .hero-content {
        border-radius: 12px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .craft-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1rem;
        border: none;
    }
    
    .craft-images {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--wide {
        grid-column: 1;
    }
    
    .gallery-item {
        height: 280px;
    }
    
    .gallery-item--wide {
        height: 320px;
    }
    
    .gallery-caption {
        opacity: 1;
        transform: translateY(0);
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-image {
        min-height: 320px;
    }
    
    .hero-img-accent {
        width: 60%;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
}

/* --- PREFERS REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .gallery-item img {
        transition: none;
    }
    
    .gallery-item:hover img {
        transform: none;
    }
}
