/* public/css/app.css - Create this file */

/* ============================================
   ROOT VARIABLES
   ============================================ */
   :root {
    --navy: #132436;
    --navy-deep: #0c1a28;
    --sand: #f3ecdd;
    --paper: #fbf8f1;
    --ink: #1c2b3a;
    --marigold: #e5a531;
    --marigold-deep: #c88a1e;
    --teal: #1f6f76;
    --teal-light: #3f9299;
    --line: rgba(19,36,54,0.13);
    --whatsapp: #25D366;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.5;
}

h1, h2, h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 640px) {
    .wrap {
        padding: 0 18px;
    }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(251, 248, 241, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(155deg, var(--teal), var(--navy));
    color: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.brand-name {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--navy);
}

.brand-name span {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 9.5px;
    letter-spacing: .12em;
    color: var(--teal);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 26px;
    font-size: 14px;
    font-weight: 500;
}

.nav-links a {
    opacity: .75;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 1;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nav-phone {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--teal);
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-cta {
    background: var(--navy);
    color: var(--sand);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--teal);
}

@media (max-width: 640px) {
    .nav-phone {
        display: none;
    }
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    cursor: pointer;
    padding: 0;
    align-items: center;
}

.nav-hamburger span {
    width: 18px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: .2s;
}

@media (max-width: 900px) {
    .nav-hamburger {
        display: flex;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: radial-gradient(ellipse 90% 70% at 30% 0%, #1a3245 0%, var(--navy) 55%, var(--navy-deep) 100%);
    color: var(--sand);
    padding: 10px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-bg-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroSlideFade 28s infinite;
}

.hero-bg-slide:nth-child(1) {
    animation-delay: 0s;
}
.hero-bg-slide:nth-child(2) {
    animation-delay: 7s;
}
.hero-bg-slide:nth-child(3) {
    animation-delay: 14s;
}
.hero-bg-slide:nth-child(4) {
    animation-delay: 21s;
}

@keyframes heroSlideFade {
    0% {
        opacity: 0;
    }
    4% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    29% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(12, 26, 40, 0.82) 0%, rgba(19, 36, 54, 0.88) 55%, var(--navy-deep) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 0;
}

.eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--marigold);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--marigold);
    display: inline-block;
}

.hero h1 {
    font-size: 20px;
    line-height: 1.08;
    max-width: 680px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 30px;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--marigold), #f0b544, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p.lede {
    margin: 16px auto 0;
    font-size: 16px;
    color: rgba(243, 236, 221, .75);
    max-width: 480px;
}

/* ============================================
   SEARCH CARD
   ============================================ */
.search-card {
    background: var(--paper);
    color: var(--ink);
    border-radius: 18px;
    margin: 36px auto 0;
    max-width: 920px;
    padding: 22px;
    display: grid;
    grid-template-columns: 1.6fr 1fr auto;
    gap: 14px;
    align-items: end;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5);
    position: relative;
    z-index: 3;
}

@media (max-width: 820px) {
    .search-card {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .search-card {
        grid-template-columns: 1fr;
    }
}

.field label {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 6px;
}

.field select,
.field input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 14px;
    font-family: inherit;
    background: var(--sand);
    color: var(--ink);
}

.search-btn {
    background: var(--marigold);
    color: var(--navy-deep);
    border: none;
    padding: 13px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn:hover {
    background: #f0b544;
}

.btn-arrow {
    transition: transform 0.2s;
}

.search-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    padding: 44px 0 56px;
    position: relative;
    z-index: 2;
}

.trust-item {
    text-align: center;
}

.trust-item b {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 30px;
    color: var(--marigold);
    font-weight: 700;
}

.trust-item span {
    font-size: 12.5px;
    color: rgba(243, 236, 221, .7);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ============================================
   SECTION SHARED
   ============================================ */
section {
    padding: 76px 0;
}

.section-header {
    max-width: 620px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-header .section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(229, 165, 49, 0.1);
    color: var(--marigold);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--navy);
}

.section-header p {
    margin-top: 12px;
    color: rgba(28, 43, 58, .62);
    font-size: 15.5px;
}

/* ============================================
   THEME GRID
   ============================================ */
.theme-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

@media (max-width: 900px) {
    .theme-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 560px) {
    .theme-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.theme-tile {
    border-radius: 14px;
    padding: 22px 14px;
    text-align: center;
    color: var(--sand);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s;
}

.theme-tile:hover {
    transform: translateY(-3px);
}

.theme-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .95;
}

.t1::before {
    background: linear-gradient(150deg, #c88a1e, #7a3f1a);
}
.t2::before {
    background: linear-gradient(150deg, #1f6f76, #132436);
}
.t3::before {
    background: linear-gradient(150deg, #3f9299, #0c1a28);
}
.t4::before {
    background: linear-gradient(150deg, #e5a531, #1f6f76);
}
.t5::before {
    background: linear-gradient(150deg, #7a3f1a, #132436);
}
.t6::before {
    background: linear-gradient(150deg, #132436, #3f9299);
}
.t7::before {
    background: linear-gradient(150deg, #1f6f76, #c88a1e);
}
.t8::before {
    background: linear-gradient(150deg, #e5a531, #132436);
}

.theme-tile span {
    position: relative;
    z-index: 2;
    font-size: 26px;
    display: block;
    margin-bottom: 8px;
}

.theme-tile b {
    position: relative;
    z-index: 2;
    font-size: 13.5px;
    font-weight: 600;
    display: block;
}

.theme-tile small {
    position: relative;
    z-index: 2;
    font-size: 11px;
    opacity: .75;
}

/* ============================================
   PACKAGE CARDS
   ============================================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

.package-card {
    background: var(--paper);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform .2s, box-shadow .2s;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px -14px rgba(19, 36, 54, .22);
}

.package-image {
    height: 150px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 14px;
    background-size: cover;
    background-position: center;
}

.package-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(12, 26, 40, .75) 0%, rgba(12, 26, 40, 0) 55%);
}

.package-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 2;
}

.badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.featured {
    background: linear-gradient(135deg, var(--marigold), #f0b544);
    color: var(--navy-deep);
}

.badge.duration {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: var(--sand);
}

.package-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    z-index: 3;
}

.package-card:hover .package-overlay {
    opacity: 1;
}

.quick-view {
    padding: 10px 24px;
    background: var(--paper);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.quick-view:hover {
    transform: scale(1.05);
    background: var(--marigold);
    color: var(--navy-deep);
}

.package-content {
    padding: 16px 18px 20px;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.package-destination {
    font-size: 13px;
    color: rgba(28, 43, 58, 0.6);
}

.package-content h3 {
    font-size: 16.5px;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 8px;
}

.package-desc {
    font-size: 14px;
    color: rgba(28, 43, 58, 0.7);
    line-height: 1.5;
    margin-bottom: 12px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.package-price {
    text-align: left;
}

.price-label {
    display: block;
    font-size: 11px;
    color: rgba(28, 43, 58, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--marigold-deep);
    font-family: 'Fraunces', serif;
}

.price-per {
    font-size: 13px;
    color: rgba(28, 43, 58, 0.5);
}

.package-actions {
    display: flex;
    gap: 8px;
}

.btn-view {
    padding: 8px 16px;
    border: 1.5px solid var(--teal);
    border-radius: 8px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
    text-decoration: none;
}

.btn-view:hover {
    background: var(--teal);
    color: var(--sand);
}

.no-packages {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: rgba(28, 43, 58, 0.6);
}

.view-more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-outline {
    border: 1.5px solid var(--navy);
    color: var(--navy);
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
    transition: .2s;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--sand);
}

/* ============================================
   POPULAR PICKS
   ============================================ */
.popular-picks {
    padding: 60px 0;
    background: var(--paper);
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .popular-grid {
        grid-template-columns: 1fr;
    }
}

.popular-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.popular-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.popular-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.popular-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--marigold);
    color: var(--navy-deep);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.popular-views {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.popular-content {
    padding: 16px 18px;
}

.popular-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.popular-content p {
    color: rgba(28, 43, 58, 0.6);
    font-size: 13px;
    margin-bottom: 8px;
}

.popular-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--marigold-deep);
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    background: var(--navy);
    color: var(--sand);
}

.why-us .section-header h2 {
    color: var(--sand);
}

.why-us .section-header p {
    color: rgba(243, 236, 221, .65);
}

.why-us .section-header .section-tag {
    color: var(--marigold);
    background: rgba(229, 165, 49, 0.15);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(243, 236, 221, .12);
    border-radius: 16px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: var(--navy-deep);
    padding: 28px 24px;
}

.why-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 12px;
}

.why-card h3 {
    font-size: 16.5px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13.5px;
    color: rgba(243, 236, 221, .6);
    line-height: 1.55;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--sand);
    border-radius: 14px;
    padding: 24px 22px;
    border: 1px solid var(--line);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Fraunces', serif;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.testimonial-info p {
    font-size: 13px;
    color: rgba(28, 43, 58, 0.6);
    margin: 0;
}

.testimonial-rating {
    margin-left: auto;
    color: #ffc107;
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-rating .star {
    color: #ddd;
}

.testimonial-rating .star.filled {
    color: #ffc107;
}

.testimonial-content {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(28, 43, 58, 0.8);
}

.testimonial-destination {
    margin-top: 12px;
    font-size: 13px;
    color: var(--teal);
    font-weight: 500;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    padding: 60px 0;
    background: var(--paper);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 12px;
    color: rgba(28, 43, 58, 0.5);
    display: block;
    margin-bottom: 6px;
}

.blog-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy);
}

.blog-content p {
    font-size: 14px;
    color: rgba(28, 43, 58, 0.7);
    line-height: 1.5;
    margin-bottom: 12px;
}

.read-more {
    color: var(--teal);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--marigold-deep);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding-top: 0;
}

.cta {
    background: linear-gradient(120deg, var(--teal), var(--navy) 70%);
    border-radius: 22px;
    padding: 50px 44px;
    color: var(--sand);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 760px) {
    .cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 26px;
    }
}

.cta h2 {
    font-size: 26px;
    color: var(--sand);
    max-width: 420px;
}

.cta p {
    margin-top: 8px;
    color: rgba(243, 236, 221, .75);
    font-size: 14.5px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--marigold);
    color: var(--navy-deep);
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
    transition: background .2s;
    display: inline-block;
}

.btn-primary:hover {
    background: #f0b544;
}

.btn-secondary {
    background: transparent;
    border: 1.5px solid var(--sand);
    color: var(--sand);
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
    transition: all .2s;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--sand);
    color: var(--navy);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
}

.btn-whatsapp:hover {
    background: #1da851;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.float-wa {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
    z-index: 70;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    transition: transform .2s;
}

.float-wa:hover {
    transform: scale(1.05);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--navy-deep);
    color: rgba(243, 236, 221, .6);
    padding: 50px 0 26px;
    margin-top: 76px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(243, 236, 221, .1);
}

@media (max-width: 760px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-grid h4 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--marigold);
    margin-bottom: 12px;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid li {
    margin-bottom: 8px;
    font-size: 13.5px;
}

.footer-grid li a {
    color: rgba(243, 236, 221, .6);
    transition: color 0.2s;
}

.footer-grid li a:hover {
    color: var(--sand);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 22px;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.animate-slide-up-delay-2 {
    animation: slideUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
}