:root {
    --brand-teal: #297a68;
    --brand-teal-dark: #1f5f50;
    --brand-light: #faf7f2;
    --brand-dark: #2c3e38;
    --brand-accent: #e6c88a;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    
    --font-sans: 'Jost', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --font-type: 'Courier Prime', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--brand-light);
    color: var(--brand-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
.font-script { font-family: var(--font-script); }
.font-typewriter { font-family: var(--font-type); }

/* Layout Helpers */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section-padding {
    padding: 5rem 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background-color: var(--brand-teal);
    transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 6rem;
    padding: 0.5rem 0;
}
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    justify-content: center;
}
.logo-main {
    display: flex;
    align-items: baseline;
    line-height: 1;
}
.logo-the {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}
.logo-nook {
    font-size: 2.75rem;
    letter-spacing: 0.025em;
    line-height: 1;
}
.logo-sub {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
}
.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}
@media (min-width: 768px) {
    .nav-links { display: flex; }
}
.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-link:hover { color: var(--brand-accent); }
.btn-order {
    background-color: var(--brand-accent);
    color: var(--brand-teal);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.3s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.btn-order:hover { background-color: var(--white); }

/* Mobile Menu */
.mobile-btn {
    display: none;
}
.mobile-menu {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    position: relative;
    background: linear-gradient(rgba(41, 122, 104, 0.85), rgba(41, 122, 104, 0.95)), url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(41, 122, 104, 0.2);
    mix-blend-mode: multiply;
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 56rem;
    margin: 0 auto;
}
.hero-welcome {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: rgba(230, 200, 138, 0.9);
    margin-bottom: 0.5rem;
    display: block;
}
@media (min-width: 768px) { .hero-welcome { font-size: 1.875rem; } }
.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) { .hero-title { font-size: 8rem; } }
.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }
.btn-primary {
    background-color: var(--brand-accent);
    color: var(--brand-teal);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
    background-color: var(--white);
    transform: translateY(-4px);
}
.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
}
.btn-secondary:hover {
    background-color: var(--white);
    color: var(--brand-teal);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1s infinite;
}
.scroll-indicator a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: color 0.3s;
}
.scroll-indicator a:hover { color: var(--white); }
@keyframes bounce {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
    50% { transform: translateY(0); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

/* About Section */
.about-section { background-color: var(--brand-light); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-image-wrapper { position: relative; max-width: 90%; margin: 0 auto; }
.about-image {
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}
.about-decor-1 {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 12rem;
    height: 12rem;
    background-color: rgba(41, 122, 104, 0.1);
    border-radius: 50%;
    z-index: 0;
}
.about-decor-2 {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    border: 4px solid rgba(230, 200, 138, 0.4);
    border-radius: 50%;
    z-index: 0;
}
.section-tag {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.tag-line {
    height: 1px;
    background-color: var(--brand-teal);
    flex-grow: 1;
}
.tag-text {
    color: var(--brand-teal);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
}
.section-title {
    color: var(--brand-teal);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .section-title { font-size: 3.75rem; } }
.about-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-icon {
    font-size: 1.875rem;
    color: var(--brand-teal);
    margin-bottom: 0.5rem;
}
.feature-title {
    font-weight: 700;
    color: var(--gray-800);
}

/* Menu Section */
.menu-section {
    background-color: var(--white);
    position: relative;
}
.menu-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8rem;
    background: linear-gradient(to bottom, var(--brand-light), transparent);
}
.menu-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 10;
}
.menu-desc { color: var(--gray-600); }
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 10;
}
@media (min-width: 768px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
.menu-category {
    background-color: var(--brand-light);
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(41, 122, 104, 0.2);
}
.category-wide { grid-column: 1 / -1; }
@media (min-width: 1024px) { .category-wide { grid-column: span 2; } }
.category-title {
    color: var(--brand-teal);
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(41, 122, 104, 0.2);
}
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem 2rem;
}
@media (min-width: 640px) { .items-grid { grid-template-columns: repeat(2, 1fr); } }
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(41, 122, 104, 0.1);
    flex-direction: column;
}
@media (min-width: 480px) {
    .menu-item { flex-direction: row; align-items: center; }
}
.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.menu-item-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--brand-teal);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.item-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-grow: 1;
    gap: 1rem;
    width: 100%;
}
@media (min-width: 480px) {
    .item-content { align-items: center; width: auto; }
}
.item-info {
    flex-grow: 1;
}
.item-info h4 {
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}
.item-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
}
.item-price {
    font-weight: 600;
    color: var(--brand-teal);
    white-space: nowrap;
    margin-left: 1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background-color: var(--brand-teal);
    color: var(--white);
}
.gallery-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
}
.gallery-title {
    color: var(--brand-accent);
    font-size: 3rem;
    margin-bottom: 1rem;
}
@media (min-width: 768px) { .gallery-title { font-size: 3.75rem; } }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
    overflow: hidden;
    border-radius: 0.75rem;
    height: 12rem;
}
@media (min-width: 768px) { .gallery-item { height: 16rem; } }
.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
    height: 100%;
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Testimonials */
.testi-section { background-color: var(--brand-light); }
.testi-title {
    color: var(--brand-teal);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}
.testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
}
.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    display: flex;
}
.testi-text {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 3rem;
    height: 3rem;
    background-color: rgba(41, 122, 104, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-teal);
    font-weight: 700;
    font-size: 1.25rem;
}
.author-info h4 {
    font-weight: 700;
    color: var(--gray-800);
}
.author-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Contact Section */
.contact-section { background-color: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-title {
    color: var(--brand-teal);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.contact-desc {
    color: var(--gray-600);
    margin-bottom: 2rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.info-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--brand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-teal);
    flex-shrink: 0;
    font-size: 1.25rem;
}
.info-text h4 {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 1.125rem;
}
.info-text p { color: var(--gray-600); }
.map-container {
    height: 24rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--brand-light);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Amenities Section */
.amenities-section {
    background-color: var(--brand-light);
    border-top: 1px solid rgba(41, 122, 104, 0.1);
}
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.amenity-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--gray-100);
}
.amenity-card h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--brand-teal);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(41, 122, 104, 0.1);
}
.amenity-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.amenity-card li {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.text-brand {
    color: var(--brand-teal);
    margin-top: 0.2rem;
}
.text-muted {
    color: var(--gray-400);
    margin-top: 0.2rem;
}

/* Profile Button */
.profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--brand-teal);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}
.profile-btn:hover {
    background-color: var(--brand-dark);
    transform: scale(1.05);
}

/* Authentication Pages */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(41, 122, 104, 0.05), rgba(41, 122, 104, 0.1)), url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    padding: 2rem;
    position: relative;
}
.back-home {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 2rem;
    transition: background-color 0.3s;
}
.back-home:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.auth-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 400px;
    text-align: center;
}
.auth-logo {
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: baseline;
    color: var(--brand-teal);
    text-decoration: none;
}
.auth-title {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}
.form-input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus {
    outline: none;
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 3px rgba(41, 122, 104, 0.1);
}
.auth-btn {
    background-color: var(--brand-teal);
    color: var(--white);
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 0.5rem;
}
.auth-btn:hover {
    background-color: var(--brand-dark);
}
.auth-links {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}
.auth-link {
    color: var(--brand-teal);
    font-weight: 600;
    text-decoration: none;
}
.auth-link:hover {
    text-decoration: underline;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .navbar {
        display: none; /* Hide top nav on mobile */
    }
    
    /* Mobile Bottom Navigation */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--brand-teal);
        box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
        z-index: 50;
        justify-content: space-around;
        align-items: center;
        padding: 0.5rem 0;
        padding-bottom: env(safe-area-inset-bottom, 0.5rem);
    }
    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--white);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        gap: 0.25rem;
    }
    .mobile-bottom-nav a i {
        font-size: 1.25rem;
    }
    .mobile-bottom-nav a:hover, .mobile-bottom-nav a:active {
        color: var(--brand-accent);
    }
    
    /* Small mobile logo at top */
    .mobile-top-header {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--brand-teal);
        z-index: 50;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    .mobile-top-header .logo-main {
        align-items: baseline;
    }
    .mobile-top-header .logo-nook {
        font-size: 1.75rem; /* Smaller logo */
    }
    .mobile-top-header .logo-the {
        font-size: 0.875rem;
    }
    .mobile-top-header .logo-sub {
        display: none; /* Hide subtitle to save space */
    }
    .mobile-top-header .mobile-btn {
        display: flex;
        color: var(--white);
        font-size: 1.25rem;
    }
    
    body {
        padding-top: 4rem; /* For top header */
        padding-bottom: 4rem; /* For bottom nav */
    }
}
@media (max-width: 640px) {
    .section { padding: 4rem 5%; }
    .hero-title { font-size: 3rem; }
    .about-image-wrapper { max-width: 100%; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { text-align: center; }
    .footer-logo, .social-links { justify-content: center; }
}
.footer {
    background-color: var(--brand-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--brand-teal);
    margin-top: auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-brand { grid-column: span 2; }
}
.footer-logo {
    display: flex;
    align-items: baseline;
    color: var(--white);
    margin-bottom: 1rem;
}
.footer-the {
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    margin-right: 0.5rem;
}
.footer-nook {
    font-size: 2.25rem;
    letter-spacing: 0.025em;
    color: var(--brand-accent);
}
.footer-desc { margin-bottom: 1.5rem; max-width: 24rem; }
.social-links {
    display: flex;
    gap: 1rem;
}
.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.social-link:hover {
    background-color: var(--brand-accent);
    color: var(--brand-dark);
}
.footer-col h4 {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-links a {
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--brand-accent); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}