/* Base Reset & Variables */
:root {
    /* Color Palette */
    --primary-bg: #FDF7F8; /* Very light blush/cream */
    --secondary-bg: #FFFFFF; /* Pure White */
    --text-dark: #3D333A; /* Deep Plum/Charcoal */
    --text-light: #6C626A; /* Muted Plum Grey */
    --accent-color: #B58B8D; /* Dusty Rose / Muted Mauve */
    --accent-hover: #A07A7C; /* Slightly darker rose */
    --border-color: #E0DEDC; /* Light Grey for borders */

    /* Shadows */
    --shadow-light: rgba(0, 0, 0, 0.04) 0px 3px 5px, rgba(0, 0, 0, 0.02) 0px 8px 10px;
    --shadow-medium: rgba(0, 0, 0, 0.08) 0px 5px 10px, rgba(0, 0, 0, 0.04) 0px 10px 15px;
    --shadow-strong: rgba(0, 0, 0, 0.12) 0px 8px 20px, rgba(0, 0, 0, 0.06) 0px 15px 30px;

    /* Spacing (8pt scale) */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 64px;
    --spacing-xxl: 96px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Font Sizes (fluid with clamp) */
    --font-size-body: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
    --font-size-h1: clamp(3rem, 1.8rem + 6vw, 5rem);
    --font-size-h2: clamp(2.2rem, 1.5rem + 3.5vw, 3.5rem);
    --font-size-h3: clamp(1.8rem, 1.4rem + 2vw, 2.5rem);
    --font-size-h4: clamp(1.4rem, 1.2rem + 1vw, 1.8rem);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: var(--font-size-body);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

h1 { font-size: var(--font-size-h1); margin-bottom: var(--spacing-lg); }
h2 { font-size: var(--font-size-h2); margin-bottom: var(--spacing-lg); }
h3 { font-size: var(--font-size-h3); margin-bottom: var(--spacing-sm); }
h4 { font-size: var(--font-size-h4); margin-bottom: var(--spacing-xs); }

p {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: var(--accent-hover);
    outline: none;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-center {
    text-align: center;
}

.section-spacing {
    padding: var(--spacing-xxl) 0;
}

.light-bg {
    background-color: var(--secondary-bg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg); /* 16px 40px */
    background-color: var(--accent-color);
    color: var(--secondary-bg);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: var(--font-size-body);
    min-height: 48px; /* Tap target */
    box-shadow: var(--shadow-light);
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-light);
}

.btn-secondary {
    background-color: var(--text-dark);
    color: var(--secondary-bg);
}

.btn-secondary:hover {
    background-color: #554A52; /* Darker plum */
}

.btn-nav {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.95rem;
}

/* Header */
.site-header {
    background-color: var(--secondary-bg);
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-light);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: var(--shadow-medium);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-size-h4);
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    letter-spacing: 1px;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-nav ul li {
    margin-left: var(--spacing-lg);
}

.main-nav ul li:last-child {
    margin-left: var(--spacing-lg);
}

.main-nav ul li a:not(.btn) {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    padding: var(--spacing-xs) 0; /* Make links larger clickable area */
    display: block;
    min-height: 44px; /* Tap target */
    display: flex;
    align-items: center;
}

.main-nav ul li a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:not(.btn):hover::after,
.main-nav ul li a:not(.btn):focus::after {
    width: 100%;
}

.main-nav ul li a:not(.btn):hover,
.main-nav ul li a:not(.btn):focus {
    color: var(--accent-color);
}

.nav-toggle {
    display: none; /* Hidden by default, shown on mobile */
    background: none;
    border: none;
    font-size: var(--font-size-h3);
    color: var(--text-dark);
    cursor: pointer;
    padding: var(--spacing-xs);
    min-width: 44px; /* Tap target */
    min-height: 44px; /* Tap target */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondary-bg);
    overflow: hidden;
    margin-top: 0; /* Full height, header covers a bit */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6); /* Darken image for text contrast */
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: var(--spacing-md);
}

.hero-section h1 {
    color: var(--secondary-bg);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero-section .section-description {
    font-size: var(--font-size-h4);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.3);
    color: var(--secondary-bg);
}

/* Section Titles & Descriptions */
.section-title {
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    width: var(--spacing-xl);
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--accent-color);
    font-size: var(--font-size-h4);
    margin-bottom: var(--spacing-sm);
}

.section-description {
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
    color: var(--text-light);
}

/* About Us Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.about-content h2.section-title {
    margin-left: 0;
    text-align: left;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background-color: var(--secondary-bg);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-card .service-icon {
    font-size: var(--font-size-h2);
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-h4);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    flex-grow: 1; /* Ensures cards are same height if content varies */
}

/* Stylists Section */
.stylist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.stylist-card {
    background-color: var(--secondary-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stylist-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stylist-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-bottom: 4px solid var(--accent-color);
}

.stylist-info {
    padding: var(--spacing-md);
}

.stylist-info h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.stylist-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.stylist-info .specialty {
    font-weight: 500;
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xs);
    display: block; /* Ensure it takes its own line */
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block; /* Remove extra space below image */
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background-color: var(--secondary-bg);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    position: relative;
    border-left: 5px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1rem, 0.95rem + 0.1vw, 1.05rem);
}

.testimonial-card .client-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    display: block;
    text-align: right;
}

/* FAQ Section (Accordion) */
.accordion {
    max-width: 800px;
    margin: var(--spacing-xl) auto 0 auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    background-color: var(--secondary-bg);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    cursor: pointer;
    background-color: var(--secondary-bg);
    transition: background-color 0.3s ease;
    min-height: 48px; /* Tap target */
}

.accordion-header:hover,
.accordion-item[aria-expanded="true"] .accordion-header {
    background-color: var(--primary-bg);
}

.accordion-header h3 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: var(--font-size-body);
    color: var(--text-dark);
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.accordion-item[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 var(--spacing-md);
}

.accordion-item[aria-expanded="true"] .accordion-content {
    max-height: 200px; /* Adjust as needed */
    padding: var(--spacing-xs) var(--spacing-md) var(--spacing-md);
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Call to Action - Booking */
.cta-section {
    background-color: var(--accent-color);
    color: var(--secondary-bg);
    text-align: center;
    padding: var(--spacing-xxl) 0;
}

.cta-section h2.section-title {
    color: var(--secondary-bg);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-h2);
}
.cta-section h2.section-title::after {
    background-color: var(--secondary-bg);
}

.cta-section .section-description {
    color: var(--secondary-bg);
    margin-bottom: var(--spacing-lg);
}

.cta-section .btn {
    background-color: var(--secondary-bg);
    color: var(--accent-color);
    padding: var(--spacing-sm) var(--spacing-xl); /* 16px 64px */
    font-size: clamp(1.1rem, 1rem + 0.2vw, 1.2rem);
    font-weight: 600;
}

.cta-section .btn:hover {
    background-color: #E0DEDC; /* Light grey hover for white button */
    color: var(--accent-hover);
}

/* Footer */
.site-footer {
    background-color: var(--text-dark);
    color: var(--primary-bg);
    padding: var(--spacing-xxl) 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.footer-col h4 {
    color: var(--secondary-bg);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-col ul li a {
    color: var(--primary-bg);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block; /* Make link clickable area larger */
    min-height: 28px; /* Tap target */
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-logo {
    color: var(--accent-color);
    font-size: var(--font-size-h3);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.social-links {
    margin-top: var(--spacing-md);
}

.social-links a {
    display: inline-block;
    margin-right: var(--spacing-sm);
    color: var(--primary-bg);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.2s ease;
    min-width: 44px; /* Tap target */
    min-height: 44px; /* Tap target */
    line-height: 44px;
    text-align: center;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: var(--animation-delay, 0s); /* Allow individual delays */
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grid items */
.services-grid .animate-on-scroll:nth-child(1) { --animation-delay: 0s; }
.services-grid .animate-on-scroll:nth-child(2) { --animation-delay: 0.1s; }
.services-grid .animate-on-scroll:nth-child(3) { --animation-delay: 0.2s; }
.services-grid .animate-on-scroll:nth-child(4) { --animation-delay: 0.3s; }
.services-grid .animate-on-scroll:nth-child(5) { --animation-delay: 0.4s; }
.services-grid .animate-on-scroll:nth-child(6) { --animation-delay: 0.5s; }

.stylist-grid .animate-on-scroll:nth-child(1) { --animation-delay: 0s; }
.stylist-grid .animate-on-scroll:nth-child(2) { --animation-delay: 0.1s; }
.stylist-grid .animate-on-scroll:nth-child(3) { --animation-delay: 0.2s; }

.gallery-grid .animate-on-scroll:nth-child(1) { --animation-delay: 0s; }
.gallery-grid .animate-on-scroll:nth-child(2) { --animation-delay: 0.05s; }
.gallery-grid .animate-on-scroll:nth-child(3) { --animation-delay: 0.1s; }
.gallery-grid .animate-on-scroll:nth-child(4) { --animation-delay: 0.15s; }
.gallery-grid .animate-on-scroll:nth-child(5) { --animation-delay: 0.2s; }
.gallery-grid .animate-on-scroll:nth-child(6) { --animation-delay: 0.25s; }

.testimonials-grid .animate-on-scroll:nth-child(1) { --animation-delay: 0s; }
.testimonials-grid .animate-on-scroll:nth-child(2) { --animation-delay: 0.1s; }
.testimonials-grid .animate-on-scroll:nth-child(3) { --animation-delay: 0.2s; }

.accordion .animate-on-scroll:nth-child(1) { --animation-delay: 0s; }
.accordion .animate-on-scroll:nth-child(2) { --animation-delay: 0.1s; }
.accordion .animate-on-scroll:nth-child(3) { --animation-delay: 0.2s; }


/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1; /* Image appears above content on smaller screens */
        margin-bottom: var(--spacing-lg);
    }
    .about-content h2.section-title {
        text-align: center;
    }

    .main-nav ul li {
        margin-left: var(--spacing-md);
    }
    .main-nav ul li:last-child {
        margin-left: var(--spacing-md);
    }
    .hero-section h1 {
        font-size: var(--font-size-h1); /* Re-clamp for smaller width context */
    }
    .hero-section .section-description {
        font-size: var(--font-size-h4);
    }
    .section-title {
        font-size: var(--font-size-h2);
    }
    .cta-section h2.section-title {
        font-size: var(--font-size-h3);
    }
}

@media (max-width: 768px) {
    .header-container {
        justify-content: center;
    }
    .logo {
        font-size: 1.5rem;
    }
    .nav-toggle {
        display: block;
        position: absolute;
        right: var(--spacing-md);
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001; /* Above mobile menu */
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--text-dark); /* Dark overlay */
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav.is-active {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .main-nav ul li {
        margin: var(--spacing-sm) 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease-out, transform 0.3s ease-out;
        transition-delay: 0.2s; /* Initial delay for menu */
    }
    .main-nav.is-active ul li {
        opacity: 1;
        transform: translateY(0);
    }
    .main-nav.is-active ul li:nth-child(1) { transition-delay: 0.1s; }
    .main-nav.is-active ul li:nth-child(2) { transition-delay: 0.15s; }
    .main-nav.is-active ul li:nth-child(3) { transition-delay: 0.2s; }
    .main-nav.is-active ul li:nth-child(4) { transition-delay: 0.25s; }
    .main-nav.is-active ul li:nth-child(5) { transition-delay: 0.3s; }
    .main-nav.is-active ul li:nth-child(6) { transition-delay: 0.35s; }
    .main-nav.is-active ul li:nth-child(7) { transition-delay: 0.4s; }


    .main-nav ul li a {
        color: var(--secondary-bg) !important;
        font-size: var(--font-size-h3);
        padding: var(--spacing-sm) 0;
        min-height: 52px;
        justify-content: center;
    }
    .main-nav ul li a::after {
        background-color: var(--accent-color);
        height: 2px;
        bottom: 0;
    }
    .main-nav ul li a.btn {
        background-color: var(--accent-color);
        color: var(--secondary-bg) !important;
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: var(--font-size-body);
    }
    body.no-scroll {
        overflow: hidden;
    }

    .hero-section {
        height: 80vh; /* Adjust height for mobile */
        padding-top: var(--spacing-xxl);
    }
    .hero-section h1 {
        font-size: var(--font-size-h2);
    }
    .hero-section .section-description {
        font-size: var(--font-size-body);
    }
    .section-spacing {
        padding: var(--spacing-xl) 0;
    }
    .section-title {
        font-size: var(--font-size-h3);
    }
    .section-description {
        margin-bottom: var(--spacing-lg);
    }
    .cta-section h2.section-title {
        font-size: var(--font-size-h3);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h4, .footer-logo {
        text-align: center;
    }
    .footer-col ul {
        align-items: center;
        margin-bottom: var(--spacing-lg);
    }
    .social-links {
        justify-content: center;
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .hero-section .section-description {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-md);
    }
    .btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-md);
    }
    .section-title::after {
        bottom: -5px;
    }
    .section-description {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-md);
    }
    .service-card, .stylist-card, .testimonial-card, .gallery-item {
        padding: var(--spacing-md);
    }
    .stylist-card img {
        height: 250px;
    }
    .accordion-header h3 {
        font-size: 0.95rem;
    }
    .cta-section h2.section-title {
        font-size: 1.8rem;
    }
    .cta-section .btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 1rem;
    }
    .site-footer {
        padding: var(--spacing-lg) 0;
    }
}