/* ============================================
   SLIGH'S FEED & SUPPLY — Brand Styles
   Palette: Plum (#5B2C6F) + Amber (#D4A843)
   Fonts: Playfair Display + Inter
   ============================================ */

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

:root {
    --plum: #5B2C6F;
    --plum-dark: #3D1D4D;
    --plum-light: #7B4B8E;
    --plum-bg: #F4EFF7;
    --amber: #D4A843;
    --amber-dark: #B8912E;
    --amber-light: #E8C96A;
    --neutral-900: #1A1A2E;
    --neutral-800: #2D2D44;
    --neutral-700: #4A4A5A;
    --neutral-600: #6B6B7B;
    --neutral-400: #9E9EAA;
    --neutral-300: #C4C4CE;
    --neutral-200: #E2E2E8;
    --neutral-100: #F0F0F5;
    --neutral-50: #F8F8FC;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(91,44,111,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(91,44,111,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(91,44,111,0.12), 0 4px 12px rgba(0,0,0,0.06);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(91,44,111,0.08);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--plum);
}

.nav__logo-text {
    letter-spacing: -0.02em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neutral-700);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--plum);
    background: var(--plum-bg);
}

.nav__link--cta {
    background: var(--plum);
    color: var(--white) !important;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--plum-dark);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--plum-dark);
    border-color: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--ghost {
    background: transparent;
    color: var(--plum);
    border-color: var(--plum);
}

.btn--ghost:hover {
    background: var(--plum-bg);
    transform: translateY(-2px);
}

.btn--amber {
    background: var(--amber);
    color: var(--neutral-900);
    border-color: var(--amber);
}

.btn--amber:hover {
    background: var(--amber-dark);
    border-color: var(--amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,168,67,0.35);
}

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

.btn--outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

/* ---------- Hero ---------- */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--plum-bg) 50%, var(--neutral-50) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(91,44,111,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--neutral-700);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--neutral-900);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__headline em {
    color: var(--plum);
    font-style: normal;
}

.hero__lead {
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--neutral-600);
    margin-bottom: 36px;
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--plum);
    line-height: 1.2;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--neutral-600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--neutral-200);
}

.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-accent {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(212,168,67,0.3);
    pointer-events: none;
}

.hero__image-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.hero__image-card svg {
    flex-shrink: 0;
}

.hero__image-card-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neutral-900);
}

.hero__image-card-address {
    display: block;
    font-size: 0.78rem;
    color: var(--neutral-600);
    margin-top: 2px;
}

/* ---------- Section Shared ---------- */
.section {
    padding: 100px 0;
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--neutral-900);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section__lead {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--neutral-600);
    max-width: 600px;
}

/* ---------- Products ---------- */
.products {
    background: var(--white);
}

.products .section__header {
    text-align: center;
    margin-bottom: 60px;
}

.products .section__lead {
    margin: 0 auto;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--neutral-200);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card__img {
    overflow: hidden;
    height: 200px;
}

.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__img img {
    transform: scale(1.06);
}

.product-card__body {
    padding: 24px;
}

.product-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-bg);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.product-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.product-card__desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--neutral-600);
}

/* ---------- Services ---------- */
.services {
    background: var(--neutral-50);
}

.services__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services__content .section__lead {
    margin-bottom: 40px;
}

.services__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.service-item__mark {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.service-item__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.service-item__desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--neutral-600);
}

.services__image {
    position: relative;
    height: 480px;
}

.services__image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 70%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.services__image-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

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

.services__image-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--plum);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.services__image-badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--amber);
}

.services__image-badge-text {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-top: 2px;
}

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

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__visual {
    position: relative;
    height: 560px;
}

.about__image-stack {
    position: relative;
    height: 100%;
}

.about__image-main {
    width: 75%;
    height: 85%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: absolute;
    top: 0;
    left: 0;
}

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

.about__image-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about__image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__content .section__lead {
    margin-bottom: 24px;
}

.about__body {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--neutral-600);
    margin-bottom: 16px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

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

.about__value-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-bg);
    border-radius: var(--radius-sm);
}

.about__value-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.about__value-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--neutral-600);
}

/* ---------- CTA ---------- */
.cta {
    background: var(--plum);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta__content {
    flex: 1;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.cta__lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 520px;
}

.cta__actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ---------- Contact ---------- */
.contact {
    background: var(--neutral-50);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact__info .section__lead {
    margin-bottom: 32px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.contact__detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-bg);
    border-radius: var(--radius-sm);
}

.contact__detail-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--neutral-400);
    margin-bottom: 2px;
}

.contact__detail-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--neutral-800);
}

.contact__detail-link {
    color: var(--plum);
    transition: var(--transition);
}

.contact__detail-link:hover {
    color: var(--plum-dark);
}

.contact__map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact__form-wrap {
    position: sticky;
    top: 96px;
}

.contact__form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-200);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.form__group {
    margin-bottom: 18px;
}

.form__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--neutral-800);
    background: var(--neutral-50);
    transition: var(--transition);
    outline: none;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(91,44,111,0.08);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--neutral-400);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.contact__success.show {
    display: block;
}

.contact__success-icon {
    margin-bottom: 16px;
}

.contact__success-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.contact__success-text {
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-400);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 14px;
}

.footer__tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--neutral-400);
    max-width: 260px;
}

.footer__heading {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__links nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    font-size: 0.88rem;
    color: var(--neutral-400);
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--amber);
}

.footer__address {
    font-size: 0.88rem;
    line-height: 1.7;
    font-style: normal;
    margin-bottom: 12px;
}

.footer__phone {
    margin-bottom: 8px;
}

.footer__phone-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--amber);
    transition: var(--transition);
}

.footer__phone-link:hover {
    color: var(--amber-light);
}

.footer__email-link {
    font-size: 0.88rem;
    color: var(--neutral-400);
    transition: var(--transition);
}

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

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

.footer__copy {
    font-size: 0.82rem;
    color: var(--neutral-600);
}

.footer__location {
    font-size: 0.82rem;
    color: var(--neutral-600);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero__grid {
        gap: 40px;
    }
    
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--neutral-200);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    
    .nav__menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav__link {
        width: 100%;
        padding: 12px 16px;
    }
    
    .nav__link--cta {
        margin-left: 0;
        text-align: center;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 40px;
    }
    
    .hero {
        min-height: auto;
    }
    
    .hero__image {
        order: -1;
    }
    
    .hero__image-card {
        left: 16px;
        bottom: -16px;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        justify-content: center;
    }
    
    .hero__stats {
        gap: 16px;
    }
    
    .products__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .services__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services__image {
        height: 360px;
        order: -1;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about__visual {
        height: 400px;
        order: -1;
    }
    
    .cta__inner {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }
    
    .cta__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta__actions .btn {
        justify-content: center;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact__form-wrap {
        position: static;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .section {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .hero__headline {
        font-size: 2rem;
    }
    
    .hero__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .hero__stat-divider {
        display: none;
    }
    
    .contact__form-card {
        padding: 24px;
    }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
