:root {
    /* Color Palette */
    --primary-olive: #4A5240;
    --primary-olive-light: #6B7355;
    --secondary-brown: #7B5E3A;
    --secondary-brown-light: #A0764A;
    --base-white: #F5F0E8;
    --deep-black: #0F0F0D;
    --accent-tan: #C8B89A;
    --surface-glass: rgba(15, 15, 13, 0.8);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --section-padding-desktop: 120px;
    --section-padding-mobile: 80px;
    --container-max-width: 1280px;
    --gutter: 24px;
    
    /* Transitions */
    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-quick: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--base-white);
    color: var(--deep-black);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}


/* Layout Utilities */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gutter);
}

section {
    padding: var(--section-padding-desktop) 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile) 0;
    }
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.overline {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary-brown);
    display: block;
    margin-bottom: 1rem;
    opacity: 1;
}

/* Ensure overlines on dark backgrounds remain light for contrast */
.projects .overline,
.contact .overline,
.values-section .overline,
.why-choose-us .overline {
    color: var(--accent-tan);
}

.italic {
    font-style: italic;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: var(--transition-quick);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-olive-light);
}

.btn-outline {
    border: 1px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--deep-black);
}

.btn-outline-tan {
    border: 1px solid var(--accent-tan);
    color: var(--accent-tan);
    gap: 10px;
}

.btn-outline-tan:hover {
    background-color: var(--accent-tan);
    color: var(--deep-black);
}

.btn-outline-tan .arrow {
    transition: transform var(--transition-quick);
}

.btn-outline-tan:hover .arrow {
    transform: translateX(5px);
}

.btn-secondary {
    background-color: var(--secondary-brown);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-brown-light);
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--primary-olive);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
    display: none;
}

.custom-cursor.active {
    transform: scale(2.5);
    background: var(--accent-tan);
    mix-blend-mode: normal;
    opacity: 0.3;
}

@media (pointer: fine) {
    .custom-cursor {
        display: block;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: var(--deep-black);
    padding: 15px 0;
    border-bottom: 1px solid var(--primary-olive);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--base-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition-quick);
    position: relative;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-olive);
    transition: var(--transition-quick);
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary-olive-light);
}

.cta-btn {
    padding: 12px 24px;
    font-size: 13px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--base-white);
    transition: var(--transition-quick);
}

.navbar.scrolled .mobile-menu-btn span {
    background-color: var(--base-white);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding-top: 140px;
    padding-bottom: 100px;
}

.hero-text-block {
    width: 55%;
    color: var(--base-white);
}

.hero-badge {
    background: var(--primary-olive);
    color: white !important;
    padding: 10px 24px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.hero h1 {
    font-size: 82px;
    line-height: 1.05;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero .subhead {
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 30px;
}

.text-link {
    color: var(--accent-tan);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-quick);
}

.text-link:hover {
    color: white;
    gap: 15px;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--surface-glass);
    padding: 24px;
    border-left: 3px solid var(--primary-olive);
    min-width: 180px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: white;
}

.stat-plus {
    font-size: 24px;
    color: var(--accent-tan);
}

.stat-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-tan);
    margin-top: 5px;
}

.hero-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-olive);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    animation: ticker 40s linear infinite;
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* About Section */
.about {
    background-color: var(--base-white);
}

.about-image-col {
    grid-column: span 5;
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 1;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.image-frame {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-olive);
    z-index: -1;
}

.about-text-col {
    grid-column: span 7;
    padding-left: 60px;
}

.about h2 {
    font-size: 52px;
    margin-bottom: 30px;
}

.about p {
    margin-bottom: 20px;
    color: #444;
}

.about-callouts {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.vision-box {
    background-color: var(--primary-olive);
    color: white;
    padding: 30px;
    flex: 1;
}

.vision-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.vision-box p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 0;
}

.mission-box {
    background-color: var(--secondary-brown);
    color: var(--base-white);
    padding: 30px;
    flex: 1;
}

.mission-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.mission-box ul {
    list-style: none;
}

.mission-box li {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-box li span {
    color: var(--accent-tan);
    font-weight: bold;
}

/* Services Section */
.services {
    background-color: var(--base-white);
    background-image: radial-gradient(var(--accent-tan) 1px, transparent 1px);
    background-size: 40px 40px;
    background-color: #f5f0e8;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 240, 232, 0.95);
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-header {
    margin-bottom: 60px;
}

.services h2 {
    font-size: 56px;
    color: var(--deep-black);
}

.services-grid {
    gap: 30px;
}

.service-card {
    grid-column: span 4;
    background-color: #1A1A16;
    padding: 40px;
    transition: var(--transition-smooth);
    border-left: 0 solid var(--primary-olive);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-left-width: 5px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-olive-light);
    margin-bottom: 25px;
    transition: var(--transition-quick);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--accent-tan);
}

.service-card h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.services-cta-strip {
    margin-top: 80px;
    background-color: var(--primary-olive);
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-cta-strip h3 {
    color: white;
    font-size: 32px;
    margin: 0;
}

.cta-strip-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.btn-dark {
    background-color: var(--deep-black);
    color: white;
}

.btn-dark:hover {
    background-color: var(--primary-olive);
    color: white;
}

/* Projects Gallery */
.projects {
    background-color: var(--deep-black);
    color: white;
}

.projects-header {
    margin-bottom: 60px;
}

.projects h2 {
    font-size: 60px;
}

.projects-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 24px;
}

.project-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(15, 15, 13, 0.95), rgba(15, 15, 13, 0.4) 60%, transparent);
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--base-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.project-overlay span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-tan);
}

.project-item.landscape { grid-column: span 6; grid-row: span 2; }
.project-item.portrait { grid-column: span 3; grid-row: span 3; }

.projects-footer {
    margin-top: 60px;
    text-align: center;
}

/* Project Fillers */
.project-filler {
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-filler:hover {
    box-shadow: 0 0 0 1px rgba(107, 115, 85, 0.4);
}

/* Stats Card Filler */
.project-filler.stats-card {
    background: rgba(15, 15, 13, 0.4); /* Deeper dark backing for contrast */
    border: 1px solid rgba(200, 184, 154, 0.25); /* Premium, more defined border */
    box-shadow: inset 0 0 30px rgba(200, 184, 154, 0.05), 0 20px 50px rgba(0, 0, 0, 0.3); /* Multi-layered depth shadow */
    padding: 30px;
    text-align: center;
}

.project-filler.stats-card .stat-number {
    font-family: var(--font-heading);
    font-size: 80px;
    color: var(--accent-tan); /* Highly visible brand accent instead of dark olive */
    line-height: 1;
}

.project-filler.stats-card .stat-label {
    color: white;
    font-family: var(--font-body);
    font-size: 14px;
    margin-top: 10px;
}

/* Ticker Filler */
.project-filler.ticker-filler {
    background-color: var(--primary-olive);
    padding: 0;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-move {
    display: inline-block;
    animation: ticker 20s linear infinite;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Blueprint Filler */
.project-filler.blueprint-filler {
    background-color: transparent;
    border: 1px solid rgba(200, 184, 154, 0.15);
    background-image: 
        linear-gradient(rgba(200, 184, 154, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 184, 154, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.blueprint-graphic {
    width: 60%;
    color: var(--accent-tan);
    opacity: 0.5;
}

.blueprint-graphic svg {
    width: 100%;
    height: auto;
}

/* Process Section */
.process {
    background-color: var(--base-white);
    overflow: hidden;
}

.process-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 250px;
    font-weight: 800;
    color: var(--primary-olive);
    opacity: 0.08;
    pointer-events: none;
    letter-spacing: 0.2em;
}

.process-header {
    margin-bottom: 80px;
}

.process .overline {
    font-size: 16px;
    color: var(--primary-olive);
    font-weight: 600;
    opacity: 1;
}

.process h2 {
    font-size: 52px;
}

.process-timeline {
    position: relative;
    padding-top: 40px;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(to right, var(--primary-olive) 0, var(--primary-olive) 10px, transparent 10px, transparent 20px);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.process-step {
    flex: 1;
    position: relative;
}

.step-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 80px;
    color: var(--primary-olive);
    opacity: 0.4;
    margin-bottom: -40px;
    margin-left: -10px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
}

.process-step p {
    font-size: 14px;
    color: #555;
}

/* Contact Section */
.form-group select option {
    background-color: var(--primary-olive);
    color: white;
}

.contact {
    background-color: var(--primary-olive);
    color: var(--base-white);
    padding: var(--section-padding-desktop) 0;
}

.contact-header {
    margin-bottom: 60px;
    text-align: center;
}

.contact-header h2 {
    font-size: 56px;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    align-items: start;
}

.contact-form-card {
    grid-column: span 7;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
}

.contact-details-card {
    grid-column: span 5;
    background: var(--deep-black);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: var(--transition-quick);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-tan);
    background: rgba(255, 255, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.btn-full {
    width: 100%;
}

.map-container {
    margin-bottom: 30px;
    opacity: 1;
    transition: var(--transition-smooth);
}

.map-container:hover {
    filter: none;
    opacity: 1;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item .info-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-tan);
    margin-bottom: 8px;
}

.info-item p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.sdp-watermark-small {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 120px;
    font-weight: 800;
    color: white;
    opacity: 0.03;
    pointer-events: none;
}

/* Footer Section */
.footer {
    background-color: var(--deep-black);
    color: rgba(255, 255, 255, 0.5);
    padding: 100px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 80px;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 25px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: var(--transition-quick);
}

.social-icon:hover {
    border-color: var(--primary-olive-light);
    color: var(--primary-olive-light);
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 15px;
}

.footer-col a {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-quick);
}

.footer-col a:hover {
    color: var(--primary-olive-light);
    padding-left: 5px;
}

.contact-link {
    margin-top: 15px;
    color: white !important;
}

.footer-bottom {
    background-color: #080807;
    padding: 40px 0;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-legal a {
    color: inherit;
    text-decoration: none;
    margin-left: 30px;
    transition: var(--transition-quick);
}

.footer-legal a:hover {
    color: white;
}

/* Reveal Animations - Dramatic Wow Effect */
.reveal-up { transform: translateY(60px); opacity: 0; transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s ease-out; will-change: transform, opacity; }
.reveal-left { transform: translateX(-60px); opacity: 0; transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s ease-out; will-change: transform, opacity; }
.reveal-right { transform: translateX(60px); opacity: 0; transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s ease-out; will-change: transform, opacity; }

.revealed {
    transform: translate(0) !important;
    opacity: 1 !important;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-card, .contact-details-card { grid-column: span 12; }
}

@media (max-width: 768px) {
    .navbar { padding: 20px 0; }
    .mobile-menu-btn { display: flex; }
    .cta-btn { display: none; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--deep-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-smooth);
    }
    .nav-links.mobile-active { right: 0; }
    
    .hero-content { flex-direction: column; align-items: flex-start; padding-bottom: 60px; }
    .hero-text-block { width: 100%; }
    .hero h1 { font-size: 48px; }
    .hero-stats { flex-direction: row; flex-wrap: wrap; margin-top: 40px; }
    
    .grid { display: flex; flex-direction: column; }
    .about-text-col { margin-top: 40px; }
    .service-card { grid-column: span 12; }
    
    .projects-masonry { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .project-item.landscape, .project-item.portrait { grid-column: span 1; grid-row: span 1; height: 300px; }
    .project-filler[style] { grid-column: span 1 !important; grid-row: span 1 !important; height: auto !important; min-height: 250px; }
    
    .process-steps { flex-direction: column; }
    .process-line { display: none; }
    
    .services-cta-strip, .cta-strip-content { flex-direction: column; text-align: center; gap: 30px; }
    
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom-content { flex-direction: column; gap: 20px; text-align: center; }
    .footer-legal a { margin: 0 15px; }
}

