/* ========================================
   RESET & BASE STYLES
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --white: #ffffff;
    --black: #000000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--stone-50);
    color: var(--stone-800);
    line-height: 1.6;
    overflow-x: hidden;
}

.font-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--amber-100);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

@media (min-width: 768px) {
    .nav-container {
        height: 92px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-600), var(--amber-800));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--stone-800);
}

.logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--stone-600);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--amber-700);
}

.nav-cta {
    display: none;
}

@media (min-width: 640px) {
    .nav-cta {
        display: inline-flex;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--amber-700);
    color: white;
}

.btn-primary:hover {
    background-color: var(--amber-800);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    color: var(--stone-700);
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid var(--amber-100);
    padding: 1rem;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--stone-700);
    text-decoration: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.mobile-menu a:hover {
    background: var(--amber-50);
}

.mobile-menu .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 64px;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 80px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.4), 
        rgba(0, 0, 0, 0.3), 
        rgba(0, 0, 0, 0.6)
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 80rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    color: white;
    font-size: 0.75rem;
    backdrop-filter: blur(4px);
    margin-bottom: 1rem;
}

.hero-badge svg {
    width: 12px;
    height: 12px;
    fill: var(--amber-400);
    color: var(--amber-400);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

.hero h1 .highlight {
    color: var(--amber-400);
}

.hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .hero p {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-scroll {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1.5s infinite;
    cursor: pointer;
}

.hero-scroll svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Stats Bar */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 0;
}

.hero-stats-grid {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    color: white;
}

.stat-icon {
    width: 20px;
    height: 20px;
    margin: 0 auto 0.25rem;
    color: var(--amber-400);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 8rem 0;
    }
}

.section-white {
    background: white;
}

.section-gradient {
    background: linear-gradient(135deg, var(--amber-50), var(--stone-100));
}

.section-dark {
    background: linear-gradient(135deg, var(--stone-800), var(--stone-900));
    color: white;
}

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--amber-100);
    color: var(--amber-800);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.section-dark .section-badge {
    background: rgba(180, 83, 9, 0.5);
    color: var(--amber-200);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--stone-800);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-dark .section-title {
    color: white;
}

.section-title .highlight {
    color: var(--amber-600);
}

.section-dark .section-title .highlight {
    color: var(--amber-400);
}

.section-subtitle {
    color: var(--stone-600);
    max-width: 42rem;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   ROOMS SECTION
   ======================================== */
.rooms-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.room-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.room-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.5rem;
    font-weight: 600;
    color: var(--stone-800);
    font-size: 0.875rem;
}

.room-price span {
    font-weight: 400;
    color: var(--stone-500);
}

.room-content {
    padding: 1.5rem;
}

.room-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--stone-800);
    margin-bottom: 0.5rem;
}

.room-desc {
    color: var(--stone-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.room-info {
    display: flex;
    gap: 1rem;
    color: var(--stone-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.room-info span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.room-info svg {
    width: 16px;
    height: 16px;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.amenity-tag {
    padding: 0.25rem 0.5rem;
    background: var(--amber-50);
    color: var(--amber-700);
    font-size: 0.75rem;
    border-radius: 0.25rem;
}

.room-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--stone-800);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.room-btn:hover {
    background: var(--stone-900);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    background: var(--amber-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--amber-700);
}

.service-text h4 {
    font-weight: 500;
    color: var(--stone-800);
    margin-bottom: 0.25rem;
}

.service-text p {
    font-size: 0.875rem;
    color: var(--stone-500);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    cursor: pointer;
    min-height: 12rem;
}

.gallery-item.span-2 {
    grid-column: span 2;
}

.gallery-item.span-row-2 {
    grid-row: span 2;
    min-height: 25rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.gallery-label {
    color: white;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-label {
    opacity: 1;
}

/* ========================================
   ABOUT SECTION (CORRIGÉE)
   ======================================== */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-text {
    max-width: 100%;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.highlight-item svg {
    width: 20px;
    height: 20px;
    color: var(--amber-500);
    flex-shrink: 0;
}

/* === CORRECTION IMAGES PIÉTINANTES === */
.about-images {
    position: relative;
}

.about-img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-img-grid img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    object-fit: cover;
    display: block;
}

/* Léger décalage élégant - complètement optionnel et sans chevauchement */
.about-img-grid img:first-child {
    transform: translateY(-1rem);
}

/* Badge positionné proprement */
.about-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    padding: 1.5rem;
    background: var(--amber-600);
    color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 10;
}

.about-badge .value {
    font-size: 1.5rem;
    font-weight: 700;
}

.about-badge .label {
    font-size: 0.875rem;
    color: var(--amber-100);
}

/* Responsive pour la section ABOUT */
@media (max-width: 768px) {
    .about-img-grid img:first-child {
        transform: translateY(0);
    }
    
    .about-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1.5rem;
        display: inline-block;
        width: fit-content;
    }
    
    .about-images {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    background: var(--amber-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--amber-700);
}

.contact-info-text h4 {
    font-weight: 500;
    color: var(--stone-800);
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    color: var(--stone-600);
    font-size: 0.875rem;
}

.contact-form-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--stone-700);
    margin-bottom: 0.25rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--stone-200);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--amber-500);
}

.form-textarea {
    resize: none;
    min-height: 100px;
}

.form-btn {
    width: 100%;
    padding: 1rem;
    background: var(--amber-700);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.form-btn:hover {
    background: var(--amber-800);
}

.form-btn svg {
    width: 20px;
    height: 20px;
}

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--stone-500);
    margin-top: 1rem;
}

.form-btn-secondary {
    background: var(--stone-800);
}

.form-btn-secondary:hover {
    background: var(--stone-900);
}

.form-status {
    display: none;
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.form-status:not(:empty) {
    display: block;
}

.form-status--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.form-status--info {
    background: var(--stone-100);
    color: var(--stone-700);
    border: 1px solid var(--stone-200);
}

.form-status--success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.availability-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--stone-700);
    margin: 1.25rem 0 0.5rem;
}

.availability-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.room-option {
    border: 1.5px solid var(--stone-200);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    cursor: pointer;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.room-option:hover {
    border-color: var(--amber-500);
}

.room-option--selected {
    border-color: var(--amber-600);
    box-shadow: 0 0 0 2px var(--amber-500);
    background: var(--amber-50);
}

.room-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.25rem;
}

.room-option-name {
    font-weight: 600;
    color: var(--stone-800);
}

.room-option-price {
    font-weight: 700;
    color: var(--amber-700);
    white-space: nowrap;
}

.room-option-details {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: var(--stone-500);
}

.form-success {
    text-align: center;
    padding: 2.5rem 1rem;
}

.form-success-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.form-success-title {
    font-size: 1.5rem;
    color: var(--stone-900);
    margin-bottom: 0.5rem;
}

.form-success-text {
    color: var(--stone-600);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.form-success-btn {
    background: var(--amber-700);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.form-success-btn:hover {
    background: var(--amber-800);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--stone-900);
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-brand .logo-img {
    height: 64px;
}

.footer-brand span {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
}

.footer p {
    color: var(--stone-400);
    font-size: 0.875rem;
}

.footer h4 {
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--stone-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--amber-400);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--stone-400);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--stone-800);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
}

.footer-bottom .agency {
    font-size: 0.75rem;
}

.footer-bottom .agency span {
    color: var(--amber-500);
    font-weight: 500;
}

/* ========================================
   UTILITIES
   ======================================== */
.hidden {
    display: none !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--stone-100);
}

::-webkit-scrollbar-thumb {
    background: var(--stone-300);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--stone-400);
}

/* Selection */
::selection {
    background: rgba(217, 119, 6, 0.3);
    color: var(--stone-900);
}