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

:root {
    /* Champagne Gold Palette */
    --gold-primary: #d4af9a;
    --gold: #d4af9a;
    --gold-light: #e8dcc8;
    --gold-dark: #b89968;
    --gold-glow: rgba(212, 175, 154, 0.6);
    --gold-subtle: rgba(212, 175, 154, 0.1);
    --gold-border: rgba(212, 175, 154, 0.4);

    /* Emerald Green Palette */
    --emerald-primary: #1b4d3e;
    --emerald-dark: #0f2c24;
    --emerald-light: #2d7a69;

    /* Base Colors */
    --dark-bg: #0f2c24;
    --dark-card: #1b4d3e;
    --text-light: #f5e6c8;
    --text-muted: #e8dcc8;
    --cream: #f5e6c8;
    --cream-soft: rgba(245, 230, 200, 0.85);

    /* Fonts */
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Cormorant Garamond', serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    min-height: 100%;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-light);
    background-color: #0a0a0a;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Background_partner_1.png') center center / cover no-repeat;
    z-index: -1;
    pointer-events: none;
}

/* Screen Management */
.screen {
    min-height: 100vh;
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    padding: 40px 20px;
}

.screen.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.8s ease-in-out;
}

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

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 0px;
    animation: slideDown 0.8s ease-out;
}

.logo.small {
    margin-bottom: 40px;
}

.logo-image {
    max-width: 250px;
    height: auto;
    object-fit: contain;
}

.logo.small .logo-image {
    max-width: 180px;
}

.logo-text {
    font-family: var(--font-primary);
    color: var(--gold);
    font-size: 20px;
    line-height: 1.2;
    text-align: left;
    letter-spacing: 2px;
}

.logo-subtext {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 300;
}

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

/* Content Wrapper */
.content-wrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Typography */
.main-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.3;
}

.decorative-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 30px;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
    font-weight: 300;
}

.description {
    margin: 40px auto;
    max-width: 700px;
}

.description p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Required CSS Variables */
@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --glowColor {
    syntax: "<color>";
    initial-value: #c9a962;
}

@keyframes rotate {
    0% {
        --angle: 0deg;
        --glowColor: #c9a962;
    }
    100% {
        --angle: 360deg;
        --glowColor: #c9a962;
    }
}

/* Button Container */
.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border: none;
    background: none;
    position: relative;
    padding: 2px;
    text-decoration: none;
    transition: all 0.18s ease-in-out;
    transform: translate3d(0, 0, 0);
    width: 100%;
    max-width: max-content;
    min-width: 280px;
    margin: 40px auto;
    cursor: pointer;
}

.btn-primary:after,
.btn-primary:before {
    content: "";
    display: block;
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 100px;
    background: radial-gradient(circle at 50% 50%, var(--glowColor) 0%, transparent 70%);
    z-index: 0;
    opacity: 0;
}

.btn-primary:before {
    filter: blur(15px);
    opacity: 0.6;
}

.btn-primary:after {
    opacity: 0.3;
}

.btn-primary.animated:after,
.btn-primary.animated:before {
    background-image: conic-gradient(from var(--angle) at 50% 50%, transparent 0%, transparent 33%, var(--glowColor) 50%, transparent 66%, transparent 100%);
    animation: rotate 2s infinite linear;
    opacity: 1;
}

.btn-primary.animated:before {
    filter: blur(15px);
    opacity: 0.8;
}

.btnInner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 32px;
    border-radius: 100px;
    color: #f5f5f5;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Cormorant Garamond', serif;
    z-index: 2;
    transition: all 0.18s ease;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    backface-visibility: hidden;
    border: 2px solid rgba(201, 169, 98, 0.6);
    box-shadow:
        0 0 20px rgba(201, 169, 98, 0.3),
        inset 0 0 20px rgba(201, 169, 98, 0.1);
    white-space: nowrap;
}

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

.btn-primary:hover .btnInner {
    background: rgba(10, 10, 10, 1);
    border-color: rgba(201, 169, 98, 0.9);
    box-shadow:
        0 0 30px rgba(201, 169, 98, 0.5),
        inset 0 0 25px rgba(201, 169, 98, 0.15);
    color: #C9A961;
}

.btn-primary:active {
    transform: scale(0.95);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 50px 0 40px;
    text-align: left;
}

.benefit-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(201, 169, 97, 0.25);
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-radius: 4px;
}

.benefit-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.15);
}

.benefit-icon {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    /* filter: brightness(0) saturate(100%) invert(71%) sepia(18%) saturate(843%) hue-rotate(5deg) brightness(94%) contrast(87%); */
    max-width: none;
}

.benefit-content {
    flex: 1;
}

.benefit-card h3 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
    margin-top: 0px;
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.benefit-card p + p {
    margin-top: 6px;
}

/* Responsive Benefits Grid */
@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        padding: 20px;
        gap: 15px;
    }
    
    .benefit-icon {
        width: 90px;
        height: 90px;
        align-self: anchor-center;
    }
    
    .benefit-icon img {
        width: 215px;
        height: 150px;
    }
    
    .benefit-card h3 {
        font-size: 1rem;
    }
    
    .benefit-card p {
        font-size: 0.8rem;
    }
}

/* Form Styles */
.form-wrapper {
    max-width: 600px;
}

.partner-form {
    margin-top: 50px;
    text-align: left;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.required {
    color: var(--gold);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--text-light);
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201, 169, 97, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A961' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--text-light);
}

.partner-form .btn-primary {
    max-width: 100%;
    margin-top: 30px;
}

/* Thank You Section */
.thank-you-text {
    max-width: 700px;
    margin: 40px auto;
}

.thank-you-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.collections-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--gold);
    margin: 60px 0 40px;
    font-weight: 600;
}

/* Modern Carousel Styles */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 50px 0 30px;
    padding: 0 10px;
}

.carousel-wrapper {
    overflow: hidden;
    flex: 1;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    padding: 10px 5px;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 17px);
    min-width: calc(33.333% - 17px);
}

.carousel-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.15);
    border: 2px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.carousel-btn:disabled:hover {
    background: rgba(201, 169, 97, 0.15);
    color: var(--gold);
    box-shadow: none;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(201, 169, 97, 0.6);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
}

/* Collections Grid with Flip Cards - kept for fallback */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.flip-card {
    background-color: transparent;
    height: 450px;
    perspective: 1000px;
    cursor: pointer;
    width: 100%;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 1px solid rgba(201, 169, 97, 0.3);
    overflow: hidden;
}

.flip-card-front {
    background-color: var(--dark-card);
    z-index: 2;
    position: relative;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    padding: 40px 20px 25px;
    z-index: 10;
}

.card-overlay h4 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}

.flip-card-back {
    background: linear-gradient(135deg, var(--dark-card) 0%, #252525 100%);
    transform: rotateY(180deg);
    padding: 25px;
    overflow-y: auto;
    border: 1px solid var(--gold);
    z-index: 1;
}

.flip-card-back h4 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.flip-card-back .card-season {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-style: italic;
}

.flip-card-back p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.flip-card-back p strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.flip-card-back .card-status {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    font-size: 0.85rem;
}

/* Card Button - use btn-primary styles */
.flip-card-back .btn-primary {
    max-width: 100%;
    margin: 15px 0 0;
}

.flip-card-back .btn-primary {
    min-width: auto;
}

.flip-card-back .btnInner {
    font-size: 15px;
    padding: 12px 24px;
}

.collections-footer {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 40px 0 20px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .screen {
        padding: 30px 15px;
    }

    .logo {
        margin-bottom: 15px;
    }

    .logo-image {
        max-width: 180px;
    }

    .logo.small .logo-image {
        max-width: 140px;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Carousel responsive - tablet */
    .carousel-slide {
        flex: 0 0 calc(50% - 13px);
        min-width: calc(50% - 13px);
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .flip-card {
        height: 400px;
    }

    .flip-card-back {
        padding: 20px;
        font-size: 0.85rem;
    }

    .form-wrapper {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 16px;
    }

    .logo-image {
        max-width: 150px;
    }

    .logo.small .logo-image {
        max-width: 120px;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn-primary {
        min-width: 260px;
    }

    .btnInner {
        padding: 14px 24px;
        font-size: 16px;
    }

    .btnInner svg {
        width: 18px;
        height: 18px;
    }

    /* Carousel responsive - mobile */
    .carousel-container {
        gap: 8px;
        padding: 0;
    }

    .carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .carousel-dots {
        gap: 10px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .flip-card {
        height: 380px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4b572;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Smooth Transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* =========================================
   NAVIGATION HEADER
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-medium);
    background: rgba(15, 44, 36, 0.95);
    backdrop-filter: blur(20px);
    padding: 4px 0;
    border-bottom: 1px solid var(--gold-subtle);
}

.header.scrolled {
    background: rgba(15, 44, 36, 0.98);
}

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

.header .logo {
    text-decoration: none;
    position: relative;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: opacity var(--transition-fast);
}

.logo:hover .logo-img {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--cream-soft);
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--gold-primary);
    transition: width var(--transition-medium);
}

.nav-link:hover {
    color: var(--gold-light);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold-primary);
}

.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-light);
    position: relative;
    transition: all var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--gold-light);
    transition: all var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 44, 36, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    text-align: center;
}

.mobile-nav-link {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--cream);
    text-decoration: none;
    padding: 6px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-medium);
}

.mobile-nav-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(6) {
    transition-delay: 0.6s;
}

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

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

    .nav-toggle {
        display: block;
    }
}

/* Adjust screen padding for header */
.screen {
    padding-top: 120px;
}

/* ================================
   FOOTER STYLES
   ================================ */

.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(212, 175, 154, 0.2);
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

.footer-tagline {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--gold-light);
    font-style: italic;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    justify-content: center;
}

.footer-links a {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--gold-light);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-social a {
    color: var(--gold-light);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 154, 0.1);
}

.footer-bottom p {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: rgba(232, 220, 200, 0.6);
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
