/* ============================================
   LAMKIN AUTOMOTIVE — Custom Styles
   Burgundy + Blush | Minimalist Magazine Style
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --burgundy: #781c21;
    --burgundy-dark: #5a1418;
    --burgundy-light: #9a252b;
    --blush: #f4e8e6;
    --blush-light: #faf3f1;
    --blush-dark: #e8d4d0;
    --cream: #fefcfb;
    --charcoal: #1a1a1a;
    --gray-900: #2a2a2a;
    --gray-700: #555555;
    --gray-500: #888888;
    --gray-300: #cccccc;
    --gray-100: #f0f0f0;
    --white: #ffffff;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    
    --nav-height: 80px;
    --container-max: 1280px;
    --section-padding: clamp(80px, 12vw, 160px);
}

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

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-smooth);
}

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

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.italic {
    font-style: italic;
}

/* --- Utility --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 64px);
}

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

.nav.scrolled {
    background: rgba(254, 252, 251, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(120, 28, 33, 0.08);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 64px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-mark {
    width: 32px;
    height: 32px;
    background: var(--burgundy);
    border-radius: 50%;
    position: relative;
}

.logo-mark::before,
.logo-mark::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
}

.logo-mark::before {
    width: 16px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-mark::after {
    width: 1.5px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--charcoal);
}

.logo-accent {
    color: var(--burgundy);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 48px);
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-700);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--burgundy);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--burgundy);
}

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

.nav-cta {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--burgundy);
    border: 1px solid var(--burgundy);
    padding: 10px 24px;
    transition: all 0.3s var(--ease-smooth);
}

.nav-cta:hover {
    background: var(--burgundy);
    color: var(--white);
}

/* Hamburger */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 1px;
    background: var(--charcoal);
    position: relative;
    transition: all 0.3s var(--ease-smooth);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 1px;
    background: var(--charcoal);
    transition: all 0.3s var(--ease-smooth);
}

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

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--charcoal);
    padding: 12px 0;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--burgundy);
}

.mobile-divider {
    width: 48px;
    height: 1px;
    background: var(--blush-dark);
    margin: 16px 0;
}

.mobile-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--burgundy);
    font-weight: 400;
    letter-spacing: 0.04em;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--nav-height);
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, var(--blush) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 64px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 120px);
    align-items: center;
    flex: 1;
    padding-top: 60px;
    padding-bottom: 80px;
}

.hero-left {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--burgundy);
    flex-shrink: 0;
}

.hero-eyebrow span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--charcoal);
}

.title-line {
    display: block;
}

.title-line .italic {
    color: var(--burgundy);
}

.hero-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-700);
    max-width: 480px;
    margin-bottom: 48px;
    font-weight: 300;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-out);
}

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

.btn-primary:hover {
    background: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(120, 28, 33, 0.25);
}

.btn-outline {
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
}

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

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

.btn-white:hover {
    background: var(--blush);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--blush-dark);
}

.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 200px;
    height: 200px;
    border: 1px solid var(--burgundy);
    z-index: -1;
}

.hero-badge {
    position: absolute;
    bottom: 40px;
    left: -48px;
    background: var(--white);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.hero-badge svg {
    color: var(--burgundy);
}

.hero-badge span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-700);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--burgundy), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.6); }
}

/* --- Section Header --- */
.section-header,
.section-header + * {
    margin-bottom: 64px;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-eyebrow .eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--burgundy);
}

.section-eyebrow span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.section-title {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--charcoal);
    max-width: 600px;
}

.section-title .italic {
    color: var(--burgundy);
}

/* --- Services Section --- */
.services {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-100);
    border: 1px solid var(--gray-100);
}

.service-card {
    background: var(--white);
    padding: clamp(32px, 4vw, 56px);
    transition: all 0.5s var(--ease-out);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy);
    transition: width 0.5s var(--ease-out);
}

.service-card:hover {
    background: var(--blush-light);
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--burgundy);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.service-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 28px;
    font-weight: 300;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--burgundy);
    transition: gap 0.3s var(--ease-smooth);
}

.service-link:hover {
    gap: 14px;
}

/* --- About Section --- */
.about {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 120px);
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-wrapper {
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    overflow: hidden;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.12);
}

.about-image-secondary img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.about-content {
    padding: clamp(24px, 4vw, 48px) 0;
}

.about-text {
    margin-bottom: 56px;
}

.about-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-weight: 300;
}

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

.value-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.value-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--blush-dark);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.value-text h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--charcoal);
}

.value-text p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-500);
    font-weight: 300;
}

/* --- Why Us Section --- */
.why-us {
    padding: var(--section-padding) 0;
    background: var(--burgundy);
    color: var(--white);
}

.why-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-header .section-eyebrow .eyebrow-line {
    background: rgba(255, 255, 255, 0.4);
}

.why-header .section-eyebrow span {
    color: rgba(255, 255, 255, 0.6);
}

.why-header .section-title {
    color: var(--white);
    max-width: 100%;
}

.why-header .section-title .italic {
    color: var(--blush);
}

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

.why-card {
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s var(--ease-out);
}

.why-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.why-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 24px;
    line-height: 1;
}

.why-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--white);
}

.why-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--blush);
    text-align: center;
}

.cta-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 20px;
}

.cta-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.cta-title .italic {
    color: var(--burgundy);
}

.cta-desc {
    font-size: 1.0625rem;
    color: var(--gray-700);
    max-width: 480px;
    margin: 0 auto 48px;
    font-weight: 300;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Contact Section --- */
.contact {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 120px);
}

.contact-details {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--blush-dark);
    color: var(--burgundy);
    flex-shrink: 0;
}

.contact-text h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--charcoal);
}

.contact-text p,
.contact-text a {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-500);
    font-weight: 300;
}

.contact-text a:hover {
    color: var(--burgundy);
}

/* --- Contact Form --- */
.contact-form-wrapper {
    background: var(--blush-light);
    padding: clamp(32px, 4vw, 56px);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 32px;
    color: var(--charcoal);
}

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

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--charcoal);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--blush-dark);
    outline: none;
    transition: border-color 0.3s;
    resize: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--burgundy);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

.form-success.active {
    display: block;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--burgundy);
    border-radius: 50%;
    color: var(--burgundy);
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    font-weight: 300;
}

/* --- Map Section --- */
.map-section {
    border-top: 1px solid var(--gray-100);
}

.map-container {
    height: 400px;
    overflow: hidden;
    filter: grayscale(40%) contrast(1.05);
}

.map-container iframe:hover {
    filter: grayscale(0%) contrast(1);
    transition: filter 0.5s var(--ease-smooth);
}

/* --- Footer --- */
.footer {
    padding: 80px 0 0;
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: clamp(32px, 4vw, 64px);
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-mark {
    width: 28px;
    height: 28px;
    background: var(--burgundy);
    border-radius: 50%;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
    font-weight: 300;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

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

.footer-contact p {
    font-size: 0.875rem;
    line-height: 1.8;
    font-weight: 300;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Animations --- */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

[data-aos].aos-delay-1 { transition-delay: 0.1s; }
[data-aos].aos-delay-2 { transition-delay: 0.2s; }
[data-aos].aos-delay-3 { transition-delay: 0.3s; }
[data-aos].aos-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    .hero-right {
        max-width: 480px;
    }
    
    .hero-image-accent {
        display: none;
    }
    
    .hero-badge {
        left: 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .about-image-secondary {
        right: 0;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding-top: calc(var(--nav-height) + 40px);
        padding-bottom: 80px;
    }
    
    .hero-container {
        padding-top: 0;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
