/* Creator Site ID: 6f982c10-c389-4f52-be18-34ad83cfec26 */
/**
 * Design System
 * Extracted from: Bella Cucina
 */

/* ==========================================================================
   1. Design Tokens (CSS Custom Properties)
   ========================================================================== */

:root {
    /* Colors - Primary */
    --color-primary: #722F37;
    --color-primary-dark: #5a2529;
    --color-primary-light: #8a3a43;

    /* Colors - Secondary */
    --color-secondary: #D4AF37;
    --color-secondary-dark: #b8982f;
    --color-secondary-light: #e0c05f;

    /* Colors - Neutral */
    --color-background: #FFFFFF;
    --color-background-alt: #FFF8F0;
    --color-background-dark: #2C1810;
    --color-text: #2C1810;
    --color-text-light: #666666;
    --color-text-on-dark: #FFF8F0;
    --color-cream: #FFF8F0;
    --color-light-cream: #FFFCF7;
    --color-light-gray: #F5F5F5;
    --color-white: #FFFFFF;

    /* Typography */
    --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.75rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3rem;
    --text-6xl: 4rem;

    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 20px 50px rgba(114, 47, 55, 0.15);
    --shadow-image: 0 15px 40px rgba(0, 0, 0, 0.15);
    --shadow-button: 0 8px 20px rgba(212, 175, 55, 0.3);
    --shadow-button-hover: 0 12px 30px rgba(114, 47, 55, 0.4);
    --shadow-icon: 0 5px 15px rgba(114, 47, 55, 0.2);
    --shadow-icon-secondary: 0 5px 20px rgba(212, 175, 55, 0.3);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

/* ==========================================================================
   2. Base Styles
   ========================================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-background);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   3. Component Classes (Semantic)
   ========================================================================== */

/* Navigation */
nav {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6) var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: var(--color-secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-10);
}

.nav-links a {
    color: var(--color-text);
    font-weight: 400;
    font-size: var(--text-base);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(44, 24, 16, 0.5), rgba(114, 47, 55, 0.6)),
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NTcwMzd8MHwxfHNlYXJjaHwxfHxmaW5lJTIwZGluaW5nfGVufDB8MHx8fDE3Njg3OTc2MTR8MA&ixlib=rb-4.1.0&q=80&w=1080');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(114, 47, 55, 0.3) 0%, rgba(44, 24, 16, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-secondary);
    font-weight: 400;
    font-style: italic;
    margin-bottom: var(--space-4);
    letter-spacing: 2px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    color: var(--color-white);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

.hero-subtitle {
    font-size: var(--text-2xl);
    color: var(--color-cream);
    margin-bottom: var(--space-10);
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-white);
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-button-hover);
}

.btn-lg {
    padding: var(--space-5) var(--space-12);
    font-size: var(--text-lg);
    border-radius: var(--radius-full);
}

.cta-button {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: var(--space-5) var(--space-12);
    font-size: var(--text-lg);
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-button);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-button-hover);
}

/* Sections */
.section {
    width: 100%;
    padding: var(--space-24) 0;
}

.section-dark {
    background-color: var(--color-background-dark);
    color: var(--color-text-on-dark);
}

.section-alt {
    background-color: var(--color-background-alt);
}

.section-cream {
    background-color: var(--color-cream);
}

.section-primary {
    background-color: var(--color-primary);
    color: white;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-8);
    padding-right: var(--space-8);
}

.container-narrow {
    max-width: 800px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-header h2 {
    display: inline-block;
    margin-bottom: var(--space-4);
}

.section-header p {
    max-width: 600px;
    margin: var(--space-4) auto 0;
    font-size: var(--text-lg);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: var(--space-16);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-image);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--color-secondary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content h2 {
    margin-bottom: var(--space-8);
}

.about-content p {
    font-size: var(--text-lg);
    line-height: 1.9;
    margin-bottom: var(--space-6);
}

.italian-accent {
    font-family: var(--font-display);
    color: var(--color-primary);
    font-style: italic;
    font-size: var(--text-xl);
    display: block;
    margin-top: var(--space-6);
}

/* Cards */
.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
}

.card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.card-content {
    padding: var(--space-8);
}

.card-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.card-text {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Service Cards */
.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(114, 47, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
}

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.service-content {
    padding: var(--space-8);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-icon);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--color-white);
}

.service-content h3 {
    margin-bottom: var(--space-4);
}

.service-content p {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Testimonials */
.testimonial-card {
    background: var(--color-white);
    padding: var(--space-10);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    color: var(--color-secondary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: var(--space-8);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--color-secondary);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--font-sans);
    font-size: var(--text-lg);
    color: var(--color-primary);
    margin-bottom: var(--space-1);
}

.author-info .stars {
    color: var(--color-secondary);
    font-size: var(--text-sm);
}

/* Contact Items */
.contact-item {
    text-align: center;
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--color-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    box-shadow: var(--shadow-icon-secondary);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--color-white);
}

.contact-item h3 {
    color: var(--color-secondary);
    margin-bottom: var(--space-4);
}

.contact-item p {
    color: var(--color-cream);
    font-size: var(--text-lg);
}

.contact-item a {
    color: var(--color-cream);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--color-secondary);
}

/* Footer */
footer {
    background: var(--color-background-dark);
    color: var(--color-cream);
    padding: var(--space-10) 0;
    text-align: center;
    width: 100%;
}

footer p {
    color: var(--color-cream);
    font-size: var(--text-base);
    margin: 0;
}

footer .logo {
    color: var(--color-secondary);
    margin-bottom: var(--space-4);
}

/* Typography */
.heading-xl {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

.heading-lg {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

.heading-md {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

.heading-sm {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-primary);
}

.text-body {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--color-text-light);
}

.text-lead {
    font-size: var(--text-xl);
    line-height: 1.8;
    color: var(--color-text-light);
}

.heading-underline {
    position: relative;
    display: inline-block;
}

.heading-underline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--color-secondary), transparent);
}

.heading-underline-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Decorative Elements */
.decorative-line {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-secondary), transparent);
    margin: var(--space-12) auto;
    max-width: 200px;
}

/* ==========================================================================
   4. Utility Classes
   ========================================================================== */

/* Display */
.flex {
    display: flex;
}

.grid {
    display: grid;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.hidden {
    display: none;
}

/* Flex Direction */
.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

/* Flex Alignment */
.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

/* Gap */
.gap-1 {
    gap: var(--space-1);
}

.gap-2 {
    gap: var(--space-2);
}

.gap-3 {
    gap: var(--space-3);
}

.gap-4 {
    gap: var(--space-4);
}

.gap-6 {
    gap: var(--space-6);
}

.gap-8 {
    gap: var(--space-8);
}

.gap-10 {
    gap: var(--space-10);
}

.gap-12 {
    gap: var(--space-12);
}

.gap-16 {
    gap: var(--space-16);
}

/* Grid Columns */
.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

/* Text Alignment */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* Margin */
.m-0 {
    margin: 0;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-4 {
    margin-top: var(--space-4);
    margin-bottom: var(--space-4);
}

.my-6 {
    margin-top: var(--space-6);
    margin-bottom: var(--space-6);
}

.my-8 {
    margin-top: var(--space-8);
    margin-bottom: var(--space-8);
}

.my-12 {
    margin-top: var(--space-12);
    margin-bottom: var(--space-12);
}

.mb-2 {
    margin-bottom: var(--space-2);
}

.mb-3 {
    margin-bottom: var(--space-3);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-6 {
    margin-bottom: var(--space-6);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

.mb-12 {
    margin-bottom: var(--space-12);
}

.mb-16 {
    margin-bottom: var(--space-16);
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-6 {
    margin-top: var(--space-6);
}

.mt-8 {
    margin-top: var(--space-8);
}

.mt-12 {
    margin-top: var(--space-12);
}

/* Padding */
.p-0 {
    padding: 0;
}

.p-4 {
    padding: var(--space-4);
}

.p-6 {
    padding: var(--space-6);
}

.p-8 {
    padding: var(--space-8);
}

.p-10 {
    padding: var(--space-10);
}

.px-4 {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.px-6 {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

.px-8 {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
}

.py-4 {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}

.py-6 {
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
}

.py-8 {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
}

.py-12 {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
}

.py-16 {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

.py-24 {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
}

/* Width */
.w-full {
    width: 100%;
}

.w-auto {
    width: auto;
}

.max-w-xs {
    max-width: 20rem;
}

.max-w-sm {
    max-width: 24rem;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-lg {
    max-width: 32rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-7xl {
    max-width: 80rem;
}

/* Height */
.h-auto {
    height: auto;
}

.h-full {
    height: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

/* Background */
.bg-white {
    background-color: var(--color-background);
}

.bg-alt {
    background-color: var(--color-background-alt);
}

.bg-cream {
    background-color: var(--color-cream);
}

.bg-light-cream {
    background-color: var(--color-light-cream);
}

.bg-dark {
    background-color: var(--color-background-dark);
}

.bg-primary {
    background-color: var(--color-primary);
}

.bg-secondary {
    background-color: var(--color-secondary);
}

.bg-transparent {
    background-color: transparent;
}

/* Text Color */
.text-white {
    color: white;
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.text-dark {
    color: var(--color-text);
}

.text-muted {
    color: var(--color-text-light);
}

.text-cream {
    color: var(--color-cream);
}

/* Font Family */
.font-sans {
    font-family: var(--font-sans);
}

.font-display {
    font-family: var(--font-display);
}

/* Font Weight */
.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* Font Style */
.italic {
    font-style: italic;
}

/* Letter Spacing */
.tracking-wide {
    letter-spacing: 1px;
}

.tracking-wider {
    letter-spacing: 2px;
}

/* Text Transform */
.uppercase {
    text-transform: uppercase;
}

/* Border Radius */
.rounded {
    border-radius: var(--radius-md);
}

.rounded-sm {
    border-radius: var(--radius-sm);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.rounded-full {
    border-radius: var(--radius-full);
}

/* Shadow */
.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

.shadow-card {
    box-shadow: var(--shadow-card);
}

.shadow-image {
    box-shadow: var(--shadow-image);
}

/* Position */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

/* Z-Index */
.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-50 {
    z-index: 50;
}

/* Object Fit */
.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

/* Transition */
.transition {
    transition: var(--transition);
}

.transition-fast {
    transition: var(--transition-fast);
}

.transition-slow {
    transition: var(--transition-slow);
}

/* Transform */
.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-lift-lg:hover {
    transform: translateY(-10px);
}

/* List Style */
.list-none {
    list-style: none;
}

/* ==========================================================================
   5. WordPress Full-Width Support
   ========================================================================== */

.alignfull {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
}

section.alignfull,
.hero.alignfull,
.section.alignfull,
nav.alignfull,
header.alignfull,
footer.alignfull {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding-left: 0;
    padding-right: 0;
}

/* ==========================================================================
   6. Responsive (Mobile-First)
   ========================================================================== */

@media (max-width: 968px) {
    :root {
        --text-6xl: 3rem;
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
    }

    .hero-title {
        font-size: var(--text-6xl);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: var(--space-6);
    }

    .section {
        padding: var(--space-16) 0;
    }
}

@media (max-width: 768px) {
    :root {
        --text-6xl: 2.5rem;
    }

    .hero {
        min-height: 70vh;
    }

    .nav-container {
        flex-direction: column;
        gap: var(--space-4);
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .container {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }

    .about-image::before {
        display: none;
    }
}