/* ============================================
   Bryant Arotta Insurance — Custom Styles
   Colors: Plum (#6B2D5B) + Amber (#F5A623)
   ============================================ */

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

:root {
    --plum: #6B2D5B;
    --plum-dark: #4A1E3F;
    --plum-light: #8B3D75;
    --amber: #F5A623;
    --amber-dark: #D4891A;
    --amber-light: #FFD080;
    --cream: #FFF8F0;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #DDDDDD;
    --gray-600: #777777;
    --gray-800: #333333;
    --gray-900: #1A1A1A;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(107, 45, 91, 0.08);
    --shadow-md: 0 8px 30px rgba(107, 45, 91, 0.12);
    --shadow-lg: 0 20px 60px rgba(107, 45, 91, 0.15);
    --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(--gray-800);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--plum);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
}

.skip-link:focus {
    top: 16px;
}

/* --- Geometric Shapes --- */
.geo-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.geo-shape--top-right {
    width: 400px;
    height: 400px;
    background: var(--amber);
    opacity: 0.06;
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.geo-shape--bottom-left {
    width: 300px;
    height: 300px;
    background: var(--plum);
    opacity: 0.05;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 10%;
    left: -80px;
}

.geo-shape--why-left {
    width: 250px;
    height: 250px;
    background: var(--plum);
    opacity: 0.04;
    border-radius: 50%;
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 45, 91, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 248, 240, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    z-index: 1001;
}

.logo__mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
    border-radius: 8px;
    position: relative;
    flex-shrink: 0;
}

.logo__mark::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid var(--amber);
}

.logo__text {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--plum);
    letter-spacing: -0.02em;
}

.logo__sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--amber-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: -4px;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.nav__link:hover {
    color: var(--plum);
    background: rgba(107, 45, 91, 0.06);
}

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

.nav__link--cta:hover {
    background: var(--plum-dark);
    transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle__bar {
    width: 24px;
    height: 2px;
    background: var(--plum);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 248, 240, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav.is-open {
        opacity: 1;
        visibility: visible;
    }

    .nav__list {
        flex-direction: column;
        gap: 8px;
    }

    .nav__link {
        font-size: 1.25rem;
        padding: 12px 24px;
    }

    .nav__link--cta {
        margin-left: 0;
        margin-top: 8px;
    }
}

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

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

.btn--primary:hover {
    background: var(--amber-dark);
    border-color: var(--amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.35);
}

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

.btn--outline:hover {
    background: var(--white);
    color: var(--plum);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* --- Section Tags --- */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--plum);
    background: rgba(107, 45, 91, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag--light {
    color: var(--amber);
    background: rgba(245, 166, 35, 0.15);
}

/* --- Section Titles --- */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

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

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 560px;
    line-height: 1.7;
}

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

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

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 40%, var(--plum-light) 70%, #A84480 100%);
    padding: 120px 24px 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(245, 166, 35, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(139, 61, 117, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

.hero__geo {
    position: absolute;
    pointer-events: none;
    opacity: 0.12;
}

.hero__geo--circle {
    width: 500px;
    height: 500px;
    border: 3px solid var(--amber);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.hero__geo--square {
    width: 200px;
    height: 200px;
    background: var(--amber);
    border-radius: var(--radius-md);
    bottom: 10%;
    left: 5%;
    transform: rotate(25deg);
    opacity: 0.15;
}

.hero__geo--dot {
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    top: 30%;
    left: 15%;
    opacity: 0.4;
}

.hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--amber);
    margin-bottom: 20px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__title-accent {
    color: var(--amber);
    display: block;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

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

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

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

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--plum);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-card--amber::before {
    background: var(--amber);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 45, 91, 0.08);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--plum);
    transition: var(--transition);
}

.service-card--amber .service-card__icon {
    background: rgba(245, 166, 35, 0.12);
    color: var(--amber-dark);
}

.service-card:hover .service-card__icon {
    background: var(--plum);
    color: var(--white);
}

.service-card--amber:hover .service-card__icon {
    background: var(--amber);
    color: var(--gray-900);
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.service-card__text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .services__grid {
        grid-template-columns: 1fr;
    }
}

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

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

.about__image-wrap {
    position: relative;
}

.about__image {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about__image-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--amber);
    border-radius: var(--radius-md);
    bottom: -30px;
    right: -30px;
    z-index: -1;
    opacity: 0.6;
}

.about__content {
    max-width: 500px;
}

.about__text {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

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

.stat--divider::before {
    content: '';
    width: 1px;
    height: 48px;
    background: var(--gray-200);
    align-self: center;
    margin-left: -16px;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--plum);
}

.stat__label {
    font-size: 0.8rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 900px) {
    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image {
        height: 360px;
    }

    .about__content {
        max-width: 100%;
    }
}

/* --- Why Us --- */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 100%);
    position: relative;
    overflow: hidden;
}

.why-us__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

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

.why-item__mark {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 166, 35, 0.2);
    border-radius: var(--radius-sm);
    color: var(--amber);
}

.why-item__mark svg {
    width: 20px;
    height: 20px;
}

.why-item__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.why-item__text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.why-us__image {
    position: relative;
}

.why-us__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.why-us__badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.why-us__badge svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.why-us__badge span {
    font-weight: 700;
    color: var(--plum);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .why-us__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us__img {
        height: 320px;
    }
}

/* --- Testimonials --- */
.testimonials {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.testimonial-card--accent {
    background: var(--plum);
    border-color: var(--plum);
}

.testimonial-card--accent .testimonial-card__text {
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-card--accent .testimonial-card__name {
    color: var(--white);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--amber);
}

.testimonial-card__stars svg {
    width: 18px;
    height: 18px;
}

.testimonial-card__text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-card__avatar svg {
    width: 100%;
    height: 100%;
}

.testimonial-card__name {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray-900);
}

.testimonial-card__location {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 2px;
}

@media (max-width: 900px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* --- CTA / Contact --- */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    position: relative;
    overflow: hidden;
}

.geo-shape--cta-circle {
    width: 600px;
    height: 600px;
    border: 2px solid rgba(245, 166, 35, 0.1);
    border-radius: 50%;
    position: absolute;
    right: -200px;
    top: -200px;
    pointer-events: none;
}

.cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta__contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.cta__contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
}

.cta__contact-icon svg {
    width: 20px;
    height: 20px;
}

.cta__contact-item span:last-child {
    line-height: 1.5;
}

/* Contact Form */
.cta__form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(107, 45, 91, 0.08);
}

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

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

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(107, 45, 91, 0.06);
    border-radius: var(--radius-sm);
    color: var(--plum);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-success svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .cta__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta__form-wrap {
        padding: 28px;
    }
}

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

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer__logo .logo__mark {
    width: 32px;
    height: 32px;
}

.footer__logo .logo__text {
    color: var(--white);
}

.footer__logo .logo__sub {
    color: var(--amber);
}

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

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

.footer__links a {
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer__contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__contact a {
    transition: var(--transition);
}

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

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
