/* ==========================================================
   AX VISION 視覺營銷 — 全域樣式
   設計哲學：暗黑奢華 Serif 電影感
   色彩：深黑底 #080808 + 冷白 #F5F5F0 + 淡金 #C9A96E
   字體：Cormorant Garamond（標題）+ DM Sans（正文）+ Raleway（副標題）
   ========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #080808;
    color: #F5F5F0;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ─── Utilities ─────────────────────────────────────────── */

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 4rem;
    }
}

.gold-line {
    display: block;
    width: 60px;
    height: 1px;
    background: #C9A96E;
}

.section-label {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #C9A96E;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    color: #F5F5F0;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
}

.btn-gold {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid #C9A96E;
    color: #C9A96E;
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

@media (max-width: 480px) {
    .btn-gold {
        padding: 12px 28px;
        font-size: 0.65rem;
    }
}

.btn-gold:hover {
    background: #C9A96E;
    color: #080808;
}

/* ─── Animations ────────────────────────────────────────── */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes maskReveal {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}

.mask-reveal {
    overflow: hidden;
}

.mask-reveal::after {
    content: '';
    display: block;
    animation: maskReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
    transform: translateY(100%);
}

/* ─── Navigation ────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 3rem;
    transition: background 0.5s ease, padding 0.4s ease, border-color 0.5s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(201, 169, 110, 0.15);
    padding: 0.9rem 3rem;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #F5F5F0;
    letter-spacing: 0.15em;
}

.logo-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    color: #C9A96E;
    text-transform: uppercase;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

.nav-link {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #F5F5F0;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s, color 0.2s;
}

.nav-link:hover {
    color: #C9A96E;
    opacity: 1;
}

.btn-nav {
    padding: 12px 32px;
    font-size: 0.75rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 1px;
    background: #F5F5F0;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #C9A96E;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #C9A96E;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem 3rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav.active {
    display: flex;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav {
        padding: 2rem 1.5rem;
    }
}

/* ─── Hero Section ──────────────────────────────────────── */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #080808;
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
        height: auto;
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeUp 1.5s ease forwards;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 8, 8, 0.9) 40%, rgba(8, 8, 8, 0.3) 100%);
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, #080808, transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 900px;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 4rem;
    }
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1;
    color: #F5F5F0;
    letter-spacing: 0.02em;
    margin: 0 0 1rem 0;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    font-style: italic;
    color: #C9A96E;
    letter-spacing: 0.05em;
    margin: 0 0 2rem 0;
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
}

.hero-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(245, 245, 240, 0.7);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 0 3rem 0;
}

@media (max-width: 480px) {
    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-cta a {
        width: 100%;
        text-align: center;
    }
}

.cta-link {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 245, 240, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.cta-link:hover {
    color: #C9A96E;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
}

.scroll-indicator span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #F5F5F0;
}

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

/* ─── Stats Section ─────────────────────────────────────── */

.stats {
    padding: 6rem 0;
    background: #0D0D0D;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

@media (max-width: 480px) {
    .stats {
        padding: 3rem 0;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        gap: 1rem;
    }
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #C9A96E;
    line-height: 1;
    margin-bottom: 0.75rem;
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 1.8rem;
    }
}

.stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 245, 240, 0.5);
}

/* ─── Services Section ──────────────────────────────────── */

.services {
    padding: 8rem 0;
    background: #080808;
}

@media (max-width: 480px) {
    .services {
        padding: 4rem 0;
    }
}

.section-header {
    margin-bottom: 5rem;
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

.section-header .section-label {
    display: block;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
}

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

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

.service-card {
    padding: 3rem 2.5rem;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    border-right: 1px solid rgba(201, 169, 110, 0.1);
    transition: background 0.3s ease;
    cursor: default;
}

@media (max-width: 768px) {
    .service-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.5rem 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    }
}

.service-card:hover {
    background: rgba(201, 169, 110, 0.04);
}

.service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(201, 169, 110, 0.2);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #F5F5F0;
    margin: 0 0 0.3rem 0;
    letter-spacing: 0.03em;
}

@media (max-width: 480px) {
    .service-title {
        font-size: 1.3rem;
    }
}

.service-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: #C9A96E;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.service-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(245, 245, 240, 0.6);
    line-height: 1.8;
    margin: 0;
}

/* ─── Portfolio Section ─────────────────────────────────── */

.portfolio {
    padding: 8rem 0;
    background: #050505;
}

@media (max-width: 480px) {
    .portfolio {
        padding: 4rem 0;
    }
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 480px) {
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
        gap: 1.5rem;
    }
}

.portfolio-header .section-label {
    display: block;
    margin-bottom: 1rem;
}

.view-more {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A96E;
    text-decoration: none;
    transition: opacity 0.3s;
}

.view-more:hover {
    opacity: 0.7;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.06);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: #C9A96E;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.portfolio-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #F5F5F0;
}

.portfolio-tag {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A96E;
    background: rgba(8, 8, 8, 0.7);
    padding: 4px 10px;
    border: 1px solid rgba(201, 169, 110, 0.3);
}

/* ─── Process Section ───────────────────────────────────── */

.process {
    padding: 8rem 0;
    background: #080808;
    position: relative;
    overflow: hidden;
}

@media (max-width: 480px) {
    .process {
        padding: 4rem 0;
    }
}

.process-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.06;
}

.process-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.7);
}

.process .container {
    position: relative;
    z-index: 2;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0;
}

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

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

.process-step {
    padding: 3rem 2rem;
    border-left: 1px solid rgba(201, 169, 110, 0.15);
}

.process-step:first-child {
    border-left: none;
}

@media (max-width: 768px) {
    .process-step {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .process-step {
        padding: 1.5rem 1rem;
        border-left: none;
        border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    }
    
    .process-step:first-child {
        border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    }
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(201, 169, 110, 0.3);
    line-height: 1;
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #F5F5F0;
    margin: 0 0 1rem 0;
}

@media (max-width: 480px) {
    .step-title {
        font-size: 1.2rem;
    }
}

.step-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(245, 245, 240, 0.6);
    line-height: 1.8;
    margin: 0;
}

/* ─── Testimonials Section ──────────────────────────────── */

.testimonials {
    padding: 8rem 0;
    background: #080808;
}

@media (max-width: 480px) {
    .testimonials {
        padding: 4rem 0;
    }
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonials .section-label {
    display: block;
    margin-bottom: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

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

.testimonial-card {
    padding: 2.5rem;
    border: 1px solid rgba(201, 169, 110, 0.15);
    background: rgba(201, 169, 110, 0.02);
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #C9A96E;
    line-height: 0.8;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.testimonial-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(245, 245, 240, 0.75);
    line-height: 1.9;
    margin: 0 0 2rem 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #F5F5F0;
    font-weight: 500;
}

.author-role {
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: #C9A96E;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ─── Contact Section ───────────────────────────────────── */

.contact {
    padding: 8rem 0;
    background: #050505;
}

@media (max-width: 480px) {
    .contact {
        padding: 4rem 0;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

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

@media (max-width: 480px) {
    .contact-grid {
        gap: 2rem;
    }
}

.contact-info .section-label {
    display: block;
    margin-bottom: 1rem;
}

.contact-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(245, 245, 240, 0.6);
    line-height: 1.9;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 480px) {
    .contact-details {
        gap: 1rem;
    }
}

.detail-item {
    margin-bottom: 0;
}

.detail-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 0.5rem;
}

.detail-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: #F5F5F0;
}

/* ─── Form ──────────────────────────────────────────────── */

.form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A96E;
    display: block;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
    padding: 0.75rem 0;
    color: #F5F5F0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
}

@media (max-width: 480px) {
    .form-input {
        font-size: 16px;
        padding: 0.6rem 0;
    }
}

.form-input::placeholder {
    color: rgba(245, 245, 240, 0.3);
}

.form-input:focus {
    border-bottom-color: #C9A96E;
}

textarea.form-input {
    resize: none;
    font-family: 'DM Sans', sans-serif;
}

.form-success {
    padding: 4rem 2rem;
    border: 1px solid rgba(201, 169, 110, 0.3);
    text-align: center;
}

.success-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #C9A96E;
    margin-bottom: 1rem;
}

.success-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: rgba(245, 245, 240, 0.6);
    line-height: 1.8;
}

/* ─── Footer ────────────────────────────────────────────── */

.footer {
    padding: 3rem 0;
    background: #030303;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

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

.footer-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-logo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: #F5F5F0;
    letter-spacing: 0.15em;
}

.footer-logo-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 0.5rem;
    letter-spacing: 0.3em;
    color: #C9A96E;
    text-transform: uppercase;
}

.footer-copyright {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: rgba(245, 245, 240, 0.3);
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 245, 240, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #C9A96E;
}

/* ─── Scrollbar ─────────────────────────────────────────── */

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #080808;
}

::-webkit-scrollbar-thumb {
    background: #C9A96E;
    border-radius: 0;
}

/* ─── Selection ─────────────────────────────────────────── */

::selection {
    background: rgba(201, 169, 110, 0.3);
    color: #F5F5F0;
}
