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

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #0d0d0d;
    color: #e8e8e8;
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ── Typography ─────────────────────────────────────── */
.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E86A4B;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #f7f7f7;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #a8a8a8;
    max-width: 540px;
    line-height: 1.7;
}

.accent {
    color: #E86A4B;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-coral {
    background: #E86A4B;
    color: #fff;
}
.btn-coral:hover {
    background: #d45334;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 106, 75, 0.35);
}

.btn-outline {
    background: transparent;
    color: #f7f7f7;
    border: 1.5px solid rgba(247, 247, 247, 0.3);
}
.btn-outline:hover {
    border-color: #E86A4B;
    color: #E86A4B;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: #2C2C2C;
}
.btn-white:hover {
    background: #f7f7f7;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.15);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
}

/* ── Navbar ─────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.4s ease;
    background: transparent;
}

.nav.scrolled {
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #f7f7f7;
}

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

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

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #a8a8a8;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}
.nav-link:hover { color: #E86A4B; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #E86A4B;
    padding: 10px 20px;
    border: 1.5px solid rgba(232, 106, 75, 0.4);
    border-radius: 6px;
    transition: all 0.3s;
}
.nav-cta:hover {
    background: rgba(232, 106, 75, 0.1);
    border-color: #E86A4B;
}

/* ── Mobile Menu Button ─────────────────────────────── */
.menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

@media (min-width: 1024px) {
    .menu-btn { display: none; }
}

.menu-line {
    width: 24px;
    height: 2px;
    background: #f7f7f7;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-btn.active .menu-line:nth-child(2) { opacity: 0; }
.menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Menu Overlay ────────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

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

.mobile-menu-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: #e8e8e8;
    padding: 12px 0;
    transition: color 0.3s;
}
.mobile-menu-link:hover { color: #E86A4B; }

.mobile-menu-divider {
    width: 60px;
    height: 1px;
    background: rgba(232, 106, 75, 0.4);
    margin: 16px 0;
}

.mobile-menu-phone {
    font-size: 1.2rem;
    font-weight: 600;
    color: #E86A4B;
    padding: 8px 0;
}

.mobile-menu-address {
    font-size: 0.9rem;
    color: #707070;
    margin-top: 8px;
    text-align: center;
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 120px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232, 106, 75, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    flex: 1;
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    .hero { padding: 100px 24px 80px; }
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E86A4B;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #f7f7f7;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #a8a8a8;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 40px;
}

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

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

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

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #E86A4B;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #707070;
    line-height: 1.4;
    max-width: 120px;
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.1);
}

/* Hero Right */
.hero-right {
    position: relative;
}

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

.hero-image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

@media (min-width: 1024px) {
    .hero-image-frame img { height: 680px; }
}

.hero-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E86A4B, #d45334);
    border-radius: 0 0 12px 12px;
}

.hero-floating-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: #2C2C2C;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

@media (min-width: 1024px) {
    .hero-floating-card { bottom: 40px; left: -40px; }
}

.hero-floating-card svg { flex-shrink: 0; }

.hero-floating-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f7f7f7;
}

/* Hero Scroll */
.hero-scroll {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    color: #707070;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (min-width: 1024px) { .hero-scroll { display: none; } }

.scroll-line {
    width: 40px;
    height: 1px;
    background: #707070;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #E86A4B;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* ── Services ───────────────────────────────────────── */
.services {
    padding: 120px 0;
    background: #141414;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,106,75,0.3), transparent);
}

.services-header {
    text-align: center;
    margin-bottom: 72px;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

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

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

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

.service-card {
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #E86A4B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    border-color: rgba(232, 106, 75, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 106, 75, 0.1);
    border-radius: 12px;
    margin-bottom: 24px;
    color: #E86A4B;
}

.service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #f7f7f7;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.95rem;
    color: #707070;
    line-height: 1.7;
}

/* ── About ──────────────────────────────────────────── */
.about {
    padding: 120px 0;
    background: #0d0d0d;
    position: relative;
}

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

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

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

.about-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 55%;
}

@media (min-width: 1024px) {
    .about-image-secondary { width: 50%; bottom: -60px; right: -40px; }
}

.about-image-secondary img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid #0d0d0d;
}

.about-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    background: #E86A4B;
    border-radius: 12px;
    z-index: -1;
    opacity: 0.6;
}

.about-text-col { padding-top: 20px; }

.about-divider {
    width: 60px;
    height: 3px;
    background: #E86A4B;
    border-radius: 2px;
    margin-bottom: 32px;
}

.about-body {
    font-size: 1.05rem;
    color: #a8a8a8;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #d1d1d1;
}

.about-value svg { flex-shrink: 0; }

/* ── Why Us ─────────────────────────────────────────── */
.why-us {
    padding: 120px 0;
    background: #141414;
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,106,75,0.3), transparent);
}

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

@media (min-width: 1024px) {
    .why-us-inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.why-us-content { padding-top: 20px; }

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

.why-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
}

.why-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(232, 106, 75, 0.3);
    line-height: 1;
    padding-top: 4px;
}

.why-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #f7f7f7;
    margin-bottom: 8px;
}

.why-desc {
    font-size: 0.95rem;
    color: #707070;
    line-height: 1.7;
}

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

.why-image-stack {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.why-image-stack img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.why-quote-card {
    position: absolute;
    bottom: -32px;
    right: -20px;
    background: #2C2C2C;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 32px;
    max-width: 320px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

@media (min-width: 1024px) {
    .why-quote-card { right: -40px; bottom: -48px; }
}

.why-quote-card svg { margin-bottom: 16px; }

.why-quote-card p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 12px;
}

.why-quote-source {
    font-size: 0.8rem;
    font-weight: 600;
    color: #E86A4B;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── CTA Banner ─────────────────────────────────────── */
.cta-banner {
    padding: 100px 0;
    background: #E86A4B;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

@media (min-width: 768px) {
    .cta-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cta-content .section-eyebrow { color: rgba(255,255,255,0.7); }
.cta-content .section-eyebrow::before { background: rgba(255,255,255,0.5); }

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-title .accent { color: #fff; }

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 480px;
    line-height: 1.7;
}

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

.btn-white:hover { background: #f7f7f7; }

/* ── Contact ────────────────────────────────────────── */
.contact {
    padding: 120px 0;
    background: #0d0d0d;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,106,75,0.3), transparent);
}

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

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

.contact-divider {
    width: 60px;
    height: 3px;
    background: #E86A4B;
    border-radius: 2px;
    margin-bottom: 40px;
}

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

.contact-detail {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 106, 75, 0.1);
    border-radius: 12px;
    color: #E86A4B;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #707070;
    margin-bottom: 6px;
}

.contact-detail p {
    font-size: 1rem;
    color: #d1d1d1;
    line-height: 1.6;
}

.contact-detail a {
    color: #d1d1d1;
    transition: color 0.3s;
}
.contact-detail a:hover { color: #E86A4B; }

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.contact-map iframe {
    filter: grayscale(0.6) brightness(0.8) contrast(1.1);
    transition: filter 0.4s;
}

.contact-map:hover iframe { filter: grayscale(0.3) brightness(0.9) contrast(1.05); }

/* Contact Form */
.contact-form-col {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 48px 40px;
}

.form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f7f7f7;
    margin-bottom: 12px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #707070;
    margin-bottom: 36px;
    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 {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a8a8a8;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #f7f7f7;
    transition: all 0.3s;
    outline: none;
}

.form-input::placeholder { color: #4a4a4a; }

.form-input:focus {
    border-color: #E86A4B;
    box-shadow: 0 0 0 3px rgba(232, 106, 75, 0.15);
}

.form-select {
    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='%23707070' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.form-select option { background: #1e1e1e; color: #e8e8e8; }

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

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success-icon {
    margin-bottom: 20px;
}

.form-success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #f7f7f7;
    margin-bottom: 12px;
}

.form-success-text {
    font-size: 0.95rem;
    color: #a8a8a8;
    line-height: 1.6;
}

.contact-form.hidden { display: none; }
.form-success.hidden { display: none; }

/* ── Footer ─────────────────────────────────────────── */
.footer {
    padding: 80px 0 0;
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.06);
}

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

@media (min-width: 640px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}

.footer-brand { max-width: 280px; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #f7f7f7;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    color: #707070;
    line-height: 1.7;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #E86A4B;
    margin-bottom: 20px;
}

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

.footer-links a, .footer-contact a {
    font-size: 0.9rem;
    color: #707070;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover, .footer-contact a:hover { color: #E86A4B; }

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-list svg { flex-shrink: 0; margin-top: 3px; color: #E86A4B; }

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #4a4a4a;
}

/* ── Animations ─────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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