:root {
    /* Colors */
    --gold: #D4AF37;
    --gold-light: #F1E5AC;
    --gold-dark: #AA8C2C;
    --silver: #e0e0e0;
    --dark: #050505;
    --dark-grey: #0e0e0e;
    --text-light: #f5f5f5;
    --text-gray: #9ca3af;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Fluid Typography - Responsive font sizes */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.65vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
    --text-3xl: clamp(1.875rem, 1.5rem + 1.5vw, 2.25rem);
    --text-4xl: clamp(2.25rem, 1.8rem + 2vw, 3rem);
    --text-5xl: clamp(3rem, 2.2rem + 3vw, 4rem);
    --text-6xl: clamp(3.75rem, 2.8rem + 4vw, 5rem);

    /* Spacing System (based on 0.25rem = 4px) */
    --space-1: 0.25rem;
    /* 4px */
    --space-2: 0.5rem;
    /* 8px */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.25rem;
    /* 20px */
    --space-6: 1.5rem;
    /* 24px */
    --space-8: 2rem;
    /* 32px */
    --space-10: 2.5rem;
    /* 40px */
    --space-12: 3rem;
    /* 48px */
    --space-16: 4rem;
    /* 64px */
    --space-20: 5rem;
    /* 80px */
    --space-24: 6rem;
    /* 96px */

    /* Container Widths */
    --container-xs: 36rem;
    /* 576px */
    --container-sm: 40rem;
    /* 640px */
    --container-md: 48rem;
    /* 768px */
    --container-lg: 64rem;
    /* 1024px */
    --container-xl: 80rem;
    /* 1280px */
    --container-2xl: 90rem;
    /* 1440px */

    /* Reading Width (optimal for readability: 60-75 characters) */
    --reading-width: 65ch;

    /* Line Heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;
    --leading-loose: 2;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/cbum.png') center top/cover no-repeat;
    opacity: 0.15;
    /* Subtle background */
    z-index: -2;
    pointer-events: none;
}

body {
    background-color: #050505;
    /* Deep Black fallback */
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    padding-top: 80px !important; /* Compense la hauteur du header fixe + marge */
}

@media (min-width: 768px) {
    body {
        padding-top: 120px !important; /* Plus d'espace sur desktop */
    }
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: transparent;
    transition: var(--transition);
}

.btn:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 15px rgba(191, 149, 63, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(191, 149, 63, 0.4);
}

/* Header */
header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(191, 149, 63, 0.1);
    box-sizing: border-box;
    min-height: 73px;
}

@media (max-width: 768px) {
    header {
        padding: 0.75rem 1rem;
        min-height: 73px;
    }
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-text-mobile {
    font-family: var(--font-heading);
    white-space: nowrap;
    letter-spacing: 0.05em;
    z-index: 1;
}

.logo-text-mobile a {
    text-decoration: none;
    color: inherit;
}

.logo img {
    /* height: 150px; Removed to allow Tailwind h-* classes to work */
    width: auto;
    height: auto;
    max-height: 64px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo img {
        max-height: 40px;
    }
}

nav {
    position: relative;
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 3rem;
    align-items: center;
}

nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    white-space: nowrap;
}

nav a:hover,
nav a.active {
    color: var(--gold);
}

.mobile-toggle {
    display: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
    transition: color 0.3s ease;
}

.mobile-toggle:hover {
    color: var(--gold-light);
}

@media (max-width: 768px) {
    nav ul {
        gap: 0;
    }
    
    nav a {
        font-size: 0.875rem;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* Removed solid radial gradient to let body bg show through, kept slight overlay for readability */
    background: transparent;
    padding: 0 5%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
    background-size: 200% auto;
}

.hero .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--silver);
    margin-bottom: 3rem;
    letter-spacing: 3px;
}

/* Services */
.services {
    padding: 8rem 5%;
    background: transparent;
    backdrop-filter: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    background: linear-gradient(145deg, #121212, #0a0a0a);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

/* About / Philosophy */
.about {
    padding: 8rem 5%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 768px) {
    .about {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 5px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.about-img:hover img {
    filter: grayscale(0%);
}

.about-img::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: -1;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-text p {
    flex-grow: 1;
    margin-bottom: 1rem;
}

/* Flexible two-column sections */
.flexible-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 768px) {
    .flexible-two-col {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.flexible-two-col .col-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 250px;
    max-height: 600px;
}

.flexible-two-col .col-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.flexible-two-col .col-content-text {
    flex-grow: 1;
    min-height: 0;
}

/* Philosophy Section - Flexible Layout */
.philosophy-section {
    width: 100%;
}

.philosophy-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
}

.philosophy-image-wrapper {
    position: relative;
    width: 100%;
    order: 2;
}

.philosophy-image-glow {
    position: absolute;
    inset: -1rem;
    background: rgba(212, 175, 55, 0.2);
    filter: blur(2rem);
    border-radius: 1rem;
    z-index: 0;
}

.philosophy-image {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(63, 63, 70, 1);
    object-fit: cover;
    display: block;
    z-index: 1;
}

.philosophy-content {
    width: 100%;
    order: 1;
    display: flex;
    flex-direction: column;
}

.philosophy-label {
    color: #D4AF37;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.philosophy-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.philosophy-text {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0;
    flex: 1;
}

.philosophy-text p {
    margin-bottom: 1rem;
}

.philosophy-text p:last-child {
    margin-bottom: 0;
}

.philosophy-link-wrapper {
    margin-top: 2rem;
    flex-shrink: 0;
}

.philosophy-link {
    color: #D4AF37;
    border-bottom: 1px solid #D4AF37;
    padding-bottom: 0.25rem;
    display: inline-block;
    transition: color 0.3s ease;
    text-decoration: none;
}

.philosophy-link:hover {
    color: #F1E5AC;
    border-bottom-color: #F1E5AC;
}

/* Desktop Layout */
@media (min-width: 768px) {
    .philosophy-container {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
    }

    .philosophy-image-wrapper {
        flex: 0 0 45%;
        max-width: 45%;
        order: 1;
        position: sticky;
        top: 6rem;
        align-self: flex-start;
    }

    .philosophy-image {
        width: 100%;
        height: auto;
        max-height: 80vh;
        object-fit: cover;
    }

    .philosophy-content {
        flex: 1 1 55%;
        order: 2;
        min-width: 0;
    }

    .philosophy-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .philosophy-text {
        font-size: 1.125rem;
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    .philosophy-container {
        gap: 4rem;
    }

    .philosophy-image-wrapper {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .philosophy-content {
        flex: 1 1 60%;
    }
}

/* Testimonials */
.testimonials {
    padding: 8rem 5%;
    text-align: center;
    background: transparent;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--silver);
    margin-bottom: 2rem;
}

.author {
    color: var(--gold);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact */
.contact {
    padding: 8rem 5%;
    text-align: center;
    background: transparent;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    display: grid;
    gap: 1.5rem;
}

input,
textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark);
    border: 1px solid #333;
    color: var(--text-light);
    font-family: var(--font-body);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
}

/* Footer */
footer {
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.5s ease-out;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .mobile-toggle {
        display: block !important;
    }

    /* Le menu doit être caché par défaut sur mobile */
    .mobile-menu {
        display: none !important; /* Caché par défaut sur mobile */
        position: fixed;
        top: 73px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 0;
        text-align: left;
        transform: translateX(-100%);
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        border-bottom: 2px solid rgba(212, 175, 55, 0.2);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        max-height: calc(100vh - 73px);
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        z-index: 1000;
    }

    .mobile-menu.active {
        display: flex !important; /* Visible quand actif */
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }

    .mobile-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0;
    }

    .mobile-menu li:last-child {
        border-bottom: none;
    }

    .mobile-menu a {
        display: block;
        width: 100%;
        padding: 1rem 0;
        color: #ffffff;
        transition: color 0.3s ease;
    }
    
    .mobile-menu a:hover {
        color: var(--gold);
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-img {
        order: -1;
    }

    /* Tables responsive */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        min-width: 600px;
    }

    /* Forms responsive */
    .form-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   FLEXIBLE LAYOUT UTILITIES
   ============================================ */

/* Content Wrapper - Optimal reading width */
.content-wrapper {
    width: 100%;
    max-width: var(--reading-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

/* Text Container - For long-form content */
.text-container {
    line-height: var(--leading-relaxed);
    color: var(--text-gray);
}

.text-container p {
    margin-bottom: var(--space-6);
    max-width: var(--reading-width);
}

.text-container p:last-child {
    margin-bottom: 0;
}

/* Responsive Headings with fluid typography */
.responsive-heading-xl {
    font-size: var(--text-6xl);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-6);
}

.responsive-heading-lg {
    font-size: var(--text-4xl);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-5);
}

.responsive-heading-md {
    font-size: var(--text-3xl);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-4);
}

.responsive-heading-sm {
    font-size: var(--text-2xl);
    line-height: var(--leading-normal);
    margin-bottom: var(--space-4);
}

/* Flexible Section - Adapts to content */
.flexible-section {
    width: 100%;
    padding: var(--space-12) var(--space-4);
    min-height: auto;
    box-sizing: border-box;
}

.flexible-section .container-wide,
.flexible-section .container-narrow,
.flexible-section .container-full {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--space-4);
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .flexible-section {
        padding: var(--space-20) var(--space-6);
    }
    
    .flexible-section .container-wide,
    .flexible-section .container-narrow,
    .flexible-section .container-full {
        padding: 0 var(--space-6);
    }
}

@media (min-width: 1024px) {
    .flexible-section {
        padding: var(--space-24) var(--space-8);
    }
    
    .flexible-section .container-wide,
    .flexible-section .container-narrow,
    .flexible-section .container-full {
        padding: 0 var(--space-8);
    }
}

/* Card Adaptive - Auto-adjusts height */
.card-adaptive {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(145deg, #121212, #0a0a0a);
    padding: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    transition: var(--transition);
}

.card-adaptive:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-adaptive-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-adaptive-text {
    flex: 1;
    margin-bottom: var(--space-4);
    line-height: var(--leading-relaxed);
}

@media (min-width: 768px) {
    .card-adaptive {
        padding: var(--space-8);
    }
}

/* Hero Adaptive - Flexible hero section */
.hero-adaptive {
    min-height: 60vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-16) var(--space-4);
    text-align: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    margin-top: 0 !important;
    padding-top: 4rem !important; /* Espace suffisant pour éviter la superposition avec le header */
}

@media (min-width: 768px) {
    .hero-adaptive {
        padding-top: 6rem !important; /* Plus d'espace sur desktop */
    }
}

.hero-adaptive > div {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-adaptive .container-narrow {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--space-4);
    box-sizing: border-box;
    margin: 0 auto;
}

.hero-adaptive h1,
.hero-adaptive .responsive-heading-xl {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

@media (min-width: 768px) {
    .hero-adaptive {
        min-height: 70vh;
        padding: var(--space-20) var(--space-6);
    }
    
    .hero-adaptive .container-narrow {
        padding: 0 var(--space-6);
        max-width: var(--container-md);
    }
}

@media (min-width: 1024px) {
    .hero-adaptive {
        min-height: 100vh;
        padding: var(--space-24) var(--space-8);
    }
    
    .hero-adaptive .container-narrow {
        padding: 0 var(--space-8);
    }
}

/* Improved Philosophy Section Layout */
.philosophy-section-enhanced {
    width: 100%;
    background: transparent;
}

.philosophy-container-enhanced {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    align-items: stretch;
    max-width: var(--container-xl);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-4);
    width: 100%;
}

@media (min-width: 768px) {
    .philosophy-container-enhanced {
        flex-direction: row;
        gap: var(--space-12);
        align-items: flex-start;
        padding: 0 var(--space-6);
    }
}

@media (min-width: 1024px) {
    .philosophy-container-enhanced {
        gap: var(--space-16);
        padding: 0 var(--space-8);
    }
}

.philosophy-image-enhanced {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    order: 1;
}

@media (min-width: 768px) {
    .philosophy-image-enhanced {
        flex: 0 0 42%;
        position: sticky;
        top: 6rem;
        align-self: flex-start;
    }
    
    .philosophy-image-enhanced.order-1.md\:order-2 {
        order: 2;
    }
}

.philosophy-text-enhanced {
    flex: 1 1 100%;
    min-width: 0;
    order: 2;
}

@media (min-width: 768px) {
    .philosophy-text-enhanced {
        flex: 1 1 58%;
    }
    
    .philosophy-text-enhanced.order-2.md\:order-1 {
        order: 1;
    }
}

/* Grid Auto-fit - Responsive grid */
.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    width: 100%;
    align-items: stretch;
}

@media (min-width: 768px) {
    .grid-auto-fit {
        gap: var(--space-8);
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (min-width: 1024px) {
    .grid-auto-fit {
        gap: var(--space-10);
    }
}

/* Uniformiser les hauteurs des cartes dans les grilles */
.grid.items-stretch,
.grid[class*="grid-cols"] {
    align-items: stretch;
}

.grid.items-stretch > *,
.grid[class*="grid-cols"] > * {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Spacing Utilities */
.section-spacing-sm {
    padding: var(--space-8) 0;
}

.section-spacing-md {
    padding: var(--space-12) 0;
}

.section-spacing-lg {
    padding: var(--space-16) 0;
}

.section-spacing-xl {
    padding: var(--space-20) 0;
}

@media (min-width: 768px) {
    .section-spacing-sm {
        padding: var(--space-12) 0;
    }

    .section-spacing-md {
        padding: var(--space-16) 0;
    }

    .section-spacing-lg {
        padding: var(--space-20) 0;
    }

    .section-spacing-xl {
        padding: var(--space-24) 0;
    }
}

/* Text Utilities */
.text-balance {
    text-wrap: balance;
}

.text-pretty {
    text-wrap: pretty;
}

/* Container max widths */
.container-narrow {
    max-width: var(--container-md);
    margin-left: auto;
    margin-right: auto;
}

.container-wide {
    max-width: var(--container-xl);
    margin-left: auto;
    margin-right: auto;
}

.container-full {
    max-width: var(--container-2xl);
    margin-left: auto;
    margin-right: auto;
}