/* ============================================
   L.O.T Tires Plus — Stylesheet
   ============================================ */

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

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2C;
    --burgundy-light: #9A3D4E;
    --blush: #F5E6E0;
    --blush-light: #FBF5F3;
    --blush-mid: #F0D5CC;
    --cream: #FDF9F7;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-900: #2D2D2D;
    --gray-700: #555555;
    --gray-500: #888888;
    --gray-300: #C4C4C4;
    --gray-100: #F0F0F0;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

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

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

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

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

/* --- Header --- */
.header {
    position: relative;
    z-index: 100;
    background: rgba(253, 249, 247, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
}

.header .container {
    max-width: 1240px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--burgundy);
}

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

.logo-text {
    display: none;
}

@media (min-width: 640px) {
    .logo-text {
        display: block;
    }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 36px;
}

@media (min-width: 900px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a:not(.nav-cta) {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-700);
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a:not(.nav-cta):hover {
    color: var(--burgundy);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--burgundy);
    padding: 10px 20px;
    border: 1px solid var(--burgundy);
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
}

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

/* Mobile Nav Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 200;
}

@media (min-width: 900px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gray-700);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--gray-900);
    padding: 16px 0;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    width: 80%;
    text-align: center;
}

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

.mobile-nav-cta {
    margin-top: 24px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--burgundy);
    padding: 14px 28px;
    border: 1px solid var(--burgundy);
    border-radius: 100px;
    width: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.6;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

@media (min-width: 900px) {
    .hero .container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 64px;
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

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

.hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--burgundy);
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.08;
    color: var(--black);
    margin-bottom: 28px;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--burgundy);
    font-style: italic;
}

.hero-description {
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray-700);
    max-width: 460px;
    margin-bottom: 40px;
}

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

.hero-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--burgundy), transparent);
    opacity: 0.2;
    margin-bottom: 32px;
}

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

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-meta-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.hero-meta-value {
    font-size: 13px;
    color: var(--gray-700);
    font-weight: 400;
}

.hero-meta-divider {
    width: 1px;
    background: var(--gray-300);
    align-self: stretch;
    flex-shrink: 0;
    margin: 4px 0;
}

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

.hero-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.hero-image-frame:hover img {
    transform: scale(1.03);
}

.hero-accent-line {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--burgundy);
    opacity: 0.15;
    border-radius: 2px;
    z-index: -1;
}

@media (min-width: 900px) {
    .hero-accent-line {
        top: 40px;
        right: -40px;
        width: 200px;
        height: 200px;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 100px;
    transition: all 0.35s var(--ease-out);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--gray-900);
    border: 1px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.btn-light {
    background: var(--white);
    color: var(--burgundy);
    border: 1px solid var(--white);
}

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

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

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

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

/* --- Section Shared --- */
.section-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.12;
    color: var(--black);
    margin-bottom: 20px;
}

.section-description {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-700);
    max-width: 520px;
}

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

.services .container {
    max-width: 1240px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-header .section-description {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 40px 32px;
    background: var(--cream);
    transition: all 0.4s var(--ease-out);
    position: relative;
}

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

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--burgundy);
    border-radius: 50%;
    color: var(--burgundy);
    margin-bottom: 24px;
    transition: transform 0.4s var(--ease-out);
}

.service-name {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 22px;
    color: var(--black);
    margin-bottom: 12px;
}

.service-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 24px;
}

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

.service-link svg {
    transition: transform 0.3s var(--ease-out);
}

.service-link:hover svg {
    transform: translateX(4px);
}

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

.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: start;
}

@media (min-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.about-image-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .about-image-col {
        grid-template-columns: 1.2fr 0.8fr;
        grid-template-rows: 260px 180px;
    }
}

.about-image-main {
    overflow: hidden;
    border-radius: 4px;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-image-main:hover img {
    transform: scale(1.04);
}

.about-image-secondary {
    overflow: hidden;
    border-radius: 4px;
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-image-secondary:hover img {
    transform: scale(1.04);
}

.about-accent-box {
    background: var(--burgundy);
    color: var(--white);
    padding: 28px 32px;
    border-radius: 4px;
    grid-column: 1 / -1;
}

.about-accent-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 8px;
}

.about-accent-value {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    font-style: italic;
}

.about-content-col {
    padding-top: 8px;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    gap: 16px;
    margin-top: 36px;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-value-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin-top: 2px;
}

.about-value-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-700);
    padding-top: 3px;
}

/* --- Why Us --- */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: start;
}

@media (min-width: 900px) {
    .why-us-layout {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
    }
}

.why-us-content {
    max-width: 520px;
}

.why-us-content .section-description {
    margin-bottom: 48px;
}

.why-us-list {
    display: grid;
    gap: 0;
}

.why-us-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    padding: 32px 0;
    border-top: 1px solid rgba(123, 45, 59, 0.1);
}

.why-us-number {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 400;
    color: var(--burgundy);
    opacity: 0.5;
    padding-top: 4px;
}

.why-us-item-content {}

.why-us-item-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 20px;
    color: var(--black);
    margin-bottom: 8px;
}

.why-us-item-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--gray-700);
}

.why-us-visual {
    position: relative;
}

.why-us-image {
    overflow: hidden;
    border-radius: 4px;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.why-us-image:hover img {
    transform: scale(1.03);
}

.why-us-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 16px;
}

.why-us-stat {
    background: var(--blush-light);
    padding: 28px 24px;
    border-radius: 4px;
}

.why-us-stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--burgundy);
    margin-bottom: 4px;
}

.why-us-stat-label {
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 0.04em;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 100px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.cta-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

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

/* --- Contact --- */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
}

@media (min-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.contact-info-col {}

.contact-intro {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--burgundy);
    border-radius: 50%;
    color: var(--burgundy);
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-detail-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.contact-detail-value {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

.contact-detail-link {
    font-size: 14px;
    color: var(--burgundy);
    transition: color 0.3s ease;
}

.contact-detail-link:hover {
    color: var(--burgundy-deep);
    text-decoration: underline;
}

.contact-map {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(123, 45, 59, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 220px;
}

/* Contact Form */
.contact-form-col {}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 4px;
    border: 1px solid rgba(123, 45, 59, 0.08);
}

@media (min-width: 640px) {
    .contact-form-wrapper {
        padding: 48px 40px;
    }
}

.contact-form-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 26px;
    color: var(--black);
    margin-bottom: 8px;
}

.contact-form-intro {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--gray-900);
    background: var(--cream);
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.08);
}

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

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

.form-group select {
    cursor: pointer;
}

/* Form Success */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

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

.form-success-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
}

.form-success-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 56px;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 48px;
    }
}

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

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    max-width: 280px;
}

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

.footer-nav-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.footer-nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--white);
}

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

.footer-contact p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.footer-copyright,
.footer-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }
