/* Elegant landing — Nutrition Planett logo palette: soft green + coral + neutral gray */

[x-cloak] {
    display: none !important;
}

:root {
    /* Logo green — figure & leaf */
    --primary: #58b05c;
    --primary-dark: #449948;
    --primary-light: #eef8ef;
    --primary-rgb: 88, 176, 92;

    /* Logo coral — wordmark & utensils */
    --accent-coral: #de6b6b;
    --accent-coral-dark: #c85555;
    --accent-coral-light: #fdf1f1;
    --accent-rgb: 222, 107, 107;

    --accent: var(--accent-coral);

    /* Logo ring gray + readable neutrals */
    --neutral-dark: #454542;
    --neutral-gray: #8a8680;
    --neutral-light: #f4f3f1;
    --neutral-ring: #d3d3d3;
    --white: #ffffff;
    --surface: #fffefb;

    --shadow-sm: 0 1px 2px rgba(69, 69, 66, 0.05), 0 2px 10px rgba(var(--primary-rgb), 0.07);
    --shadow: 0 4px 18px rgba(69, 69, 66, 0.07), 0 2px 8px rgba(var(--primary-rgb), 0.06);
    --shadow-lg: 0 18px 44px rgba(69, 69, 66, 0.09), 0 8px 18px rgba(var(--primary-rgb), 0.08);
    --radius: 12px;
    --spacing-xl: 5.5rem;
    --spacing-lg: 3.5rem;
    --spacing-md: 2.5rem;
    --spacing-sm: 1.5rem;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

.site-elegant {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.7;
    color: var(--neutral-dark);
    background: radial-gradient(
        ellipse 120% 80% at 50% -20%,
        rgba(var(--primary-rgb), 0.06) 0%,
        transparent 55%
        ),
        linear-gradient(180deg, var(--neutral-light) 0%, var(--white) 32%, var(--white) 100%);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-elegant h1,
.site-elegant h2,
.site-elegant h3,
.site-elegant h4 {
    font-family: 'Lora', Georgia, serif;
    line-height: 1.25;
    color: var(--neutral-dark);
    font-weight: 600;
}

.site-elegant h1 {
    font-size: 3rem;
    font-weight: 700;
}

.site-elegant h2 {
    font-size: 2.25rem;
}

.site-elegant h3 {
    font-size: 1.5rem;
}

.site-elegant h4 {
    font-size: 1.1rem;
}

.site-elegant main section p,
.site-elegant main .lead {
    color: var(--neutral-gray);
    font-size: 1rem;
    line-height: 1.75;
}

/* Contact page coral banner — overrides global h1/p colours (elegant.css loads after Tailwind) */
.site-elegant main .contact-page section.contact-coral-banner {
    color: #fff;
}

.site-elegant main .contact-page .contact-coral-banner__title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #ffffff !important;
    font-size: clamp(1.375rem, 2.8vw, 2rem) !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    margin: 0;
}

.site-elegant main .contact-page .contact-coral-banner__lead {
    color: rgba(255, 255, 255, 0.96) !important;
    font-size: 0.9375rem !important;
    line-height: 1.65 !important;
    margin: 0;
}

@media (min-width: 640px) {
    .site-elegant main .contact-page .contact-coral-banner__lead {
        font-size: 1.0625rem !important;
    }
}

.site-elegant main .contact-page .contact-coral-banner__label {
    color: #ffffff !important;
    opacity: 0.92;
}

.site-elegant main .contact-page .contact-coral-banner__value,
.site-elegant main .contact-page .contact-coral-banner__link {
    color: rgba(255, 255, 255, 0.98) !important;
}

.site-elegant main .contact-page .contact-coral-banner__link:hover {
    color: #ffffff !important;
}

.site-elegant main {
    flex: 1;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Header */
.site-elegant header.site-nav {
    background: rgba(255, 253, 249, 0.88);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-elegant header.site-nav nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-elegant .logo {
    font-family: 'Nunito', 'Inter', system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-coral);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.site-elegant .logo:hover {
    color: var(--primary);
}

.site-elegant .logo:hover .logo-text {
    color: inherit;
}

.site-elegant .logo--lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    max-width: min(100%, 22rem);
}

.site-elegant .logo-img {
    display: block;
    height: 2.75rem;
    width: auto;
    max-width: 10rem;
    flex-shrink: 0;
    object-fit: contain;
}

.site-elegant .logo .logo-text {
    font-family: 'Nunito', 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.15;
    color: inherit;
}

.elegant-menu-btn {
    display: none;
}

.site-elegant .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.site-elegant .nav-links li a {
    text-decoration: none;
    color: var(--neutral-dark);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.site-elegant .nav-links li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.site-elegant .nav-links li a:not(.btn):hover {
    color: var(--primary);
}

.site-elegant .nav-links li a:not(.btn):hover::after {
    width: 100%;
}

.site-elegant .btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.95rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 253, 249, 0.12);
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
    font-size: 0.95rem;
    text-align: center;
    font-family: 'Inter', system-ui, sans-serif;
    box-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.22);
}

.site-elegant .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.site-elegant .btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.site-elegant .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.site-elegant .btn-sm-nav {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
}

/* Hero — improved split layout (image | copy | stats) */
.hero.hero--improved {
    padding: 3rem 0;
    background: linear-gradient(135deg, #faf8f3 0%, #f3ede3 50%, #ede5d9 100%);
    position: relative;
    overflow: hidden;
}

.hero.hero--improved::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.08);
    z-index: 0;
}

.hero.hero--improved::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 10%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.1);
    z-index: 0;
    pointer-events: none;
}

.hero--improved .deco-circle-3 {
    top: 40%;
    right: 5%;
    width: 120px;
    height: 120px;
    background: rgba(var(--primary-rgb), 0.07);
    border: 2px solid rgba(var(--primary-rgb), 0.15);
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero--improved .hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.5rem 3rem;
    align-items: center;
}

.hero-layout--with-stats {
    grid-template-columns: 1.2fr 1fr 0.85fr;
}

.hero-layout--no-stats {
    grid-template-columns: 1.05fr 1.2fr;
    max-width: 960px;
    margin: 0 auto;
}

/* Left column: image + floating badges */
.hero-image-section {
    position: relative;
}

.hero-image-container {
    position: relative;
    aspect-ratio: 1;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        var(--primary-light) 0%,
        rgba(var(--accent-rgb), 0.12) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-layout--no-stats .hero-image-container {
    max-width: 420px;
    margin: 0 auto;
}

.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-image-content {
    font-size: clamp(3rem, 12vw, 5rem);
    opacity: 0.45;
    line-height: 1;
    z-index: 0;
}

.image-deco-circle {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.08);
    border: 2px dashed rgba(var(--primary-rgb), 0.18);
    z-index: 2;
    pointer-events: none;
}

.hero--improved .floating-badge {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1.2rem;
    border-radius: 25px;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--primary-dark);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    z-index: 3;
}

.hero--improved .floating-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.hero--improved .badge-top {
    top: -15px;
    left: 12px;
}

.hero--improved .badge-bottom {
    bottom: 16px;
    right: -8px;
}

/* Center column */
.hero-content--split {
    text-align: left;
    max-width: none;
    margin: 0;
}

.hero--improved .hero-content--split h1 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

.site-elegant main .hero--improved .hero-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--neutral-gray) !important;
    max-width: 38rem;
}

.hero--improved .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.hero--improved .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--neutral-gray);
}

.hero--improved .trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Right: stat sidebar */
.stats-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-stat-box {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.hero-stat-box.stat-box--1 {
    border-left-color: var(--primary);
}

.hero-stat-box.stat-box--2 {
    border-left-color: var(--accent-coral);
}

.hero-stat-box.stat-box--3 {
    border-left-color: var(--primary);
}

.hero-stat-box .stat-number {
    font-family: 'Lora', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1.2;
}

.hero-stat-box.stat-box--1 .stat-number {
    color: var(--primary);
}

.hero-stat-box.stat-box--2 .stat-number {
    color: var(--accent-coral-dark);
}

.hero-stat-box.stat-box--3 .stat-number {
    color: var(--primary);
}

.hero-stat-box .stat-label {
    font-size: 0.8rem;
    color: var(--neutral-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Generic stat-box (about page etc.) */
.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(var(--primary-rgb), 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-family: 'Lora', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--neutral-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .hero-layout--with-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-layout--with-stats .stats-sidebar {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: stretch;
    }

    .hero-layout--with-stats .hero-stat-box {
        flex: 1;
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .hero.hero--improved {
        padding: 2rem 0;
    }

    .hero-layout--with-stats,
    .hero-layout--no-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-layout--with-stats .stats-sidebar {
        flex-direction: row;
        gap: 1rem;
    }

    .hero-stat-box {
        flex: 1;
        text-align: center;
        border-left: none !important;
        border-top: 4px solid var(--primary);
    }

    .hero-stat-box.stat-box--2 {
        border-top-color: var(--accent-coral);
    }

    .hero-stat-box.stat-box--3 {
        border-top-color: var(--primary);
    }

    .hero--improved .hero-cta {
        flex-direction: column;
    }

    .hero--improved .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .hero-image-container {
        aspect-ratio: 16 / 9;
        max-height: 280px;
    }
}

/* About */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    aspect-ratio: 3 / 4;
    background: linear-gradient(
        135deg,
        var(--primary-light) 0%,
        rgba(var(--primary-rgb), 0.08) 45%,
        rgba(var(--accent-rgb), 0.12) 100%
    );
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--neutral-gray);
}

.about-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-image.placeholder::before {
    content: '👨‍⚕️';
    font-size: 6rem;
    opacity: 0.3;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Placeholder copy sits above the decorative glyph */
.about-image.placeholder {
    position: relative;
    z-index: 0;
    font-size: 0.95rem;
    padding: 1.5rem;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0;
}

.credential-badge {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(var(--primary-rgb), 0.22);
}

.about-cta {
    margin-top: 2.5rem;
}

/* Services */
.services-section {
    padding: var(--spacing-xl) 0;
    background: var(--neutral-light);
}

.services-section > .container > h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--neutral-gray);
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    border: 1px solid rgba(var(--primary-rgb), 0.07);
    border-top: 2px solid rgba(var(--primary-rgb), 0.38);
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-card .btn {
    width: 100%;
}

/* Testimonials */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--surface);
}

.testimonials-section > .container > h2 {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--neutral-light);
    padding: 2.5rem;
    border-radius: var(--radius);
    border-left: 3px solid rgba(var(--primary-rgb), 0.55);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.testimonial-quote {
    font-family: 'Lora', Georgia, serif;
    font-size: 2rem;
    color: var(--accent-coral);
    opacity: 0.28;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--neutral-dark);
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--accent-coral-dark);
    font-weight: 500;
}

/* Resources */
.resources-section {
    padding: var(--spacing-xl) 0;
    background: var(--neutral-light);
}

.resources-section > .container > h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.resources-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--neutral-gray);
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.resource-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(var(--primary-rgb), 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.resource-image {
    height: 200px;
    background: linear-gradient(
        135deg,
        var(--primary-light) 0%,
        rgba(var(--primary-rgb), 0.1) 42%,
        rgba(var(--accent-rgb), 0.2) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.resource-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.resource-tag {
    display: inline-block;
    background: rgba(var(--accent-rgb), 0.92);
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    width: fit-content;
}

.resource-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.resource-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.resource-card a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-card a:hover {
    color: var(--accent-coral-dark);
}

/* Contact */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--neutral-light) 100%);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-section > .container > .contact-container > h2 {
    margin-bottom: 1rem;
}

.contact-intro {
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.home-contact-form {
    text-align: left;
}

.home-contact-form input,
.home-contact-form textarea,
.home-contact-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(110, 106, 98, 0.18);
    border-radius: var(--radius);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    background: var(--surface);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.home-contact-form input:focus,
.home-contact-form textarea:focus,
.home-contact-form select:focus {
    outline: none;
    border-color: rgba(var(--primary-rgb), 0.45);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.home-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .home-contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(var(--primary-rgb), 0.12);
}

.contact-method-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-method a:hover {
    color: var(--primary-dark);
}

/* Footer — deep green tone (leaf), links echo coral */
.site-elegant footer.site-footer {
    background: linear-gradient(165deg, #2d3d30 0%, #243528 48%, #1e2d22 100%);
    color: rgba(237, 242, 238, 0.78);
    padding: 3rem 0 2rem;
    font-size: 0.9rem;
    text-align: center;
    margin-top: auto;
    border-top: 1px solid rgba(88, 176, 92, 0.12);
}

.site-footer p {
    color: rgba(232, 237, 233, 0.78);
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
}

.site-footer a {
    color: rgba(248, 192, 192, 0.88);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #fdecec;
}

.elegant-page {
    padding: var(--spacing-md) 0 var(--spacing-xl);
}

.elegant-breadcrumb-bar {
    background: rgba(var(--primary-rgb), 0.08);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.14);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.elegant-breadcrumb-bar a {
    color: var(--primary-dark);
}

.elegant-cookie-inner {
    background: linear-gradient(135deg, #2f3f33 0%, #273528 100%);
    border: 1px solid rgba(88, 176, 92, 0.15);
    color: rgba(245, 242, 237, 0.96);
}

.elegant-cookie-inner p,
.elegant-cookie-inner .font-semibold {
    color: rgba(250, 248, 244, 0.98);
}

.elegant-cookie-inner .text-gray-300 {
    color: rgba(212, 228, 214, 0.82);
}

.elegant-cookie-inner a.text-gray-300 {
    color: rgba(248, 200, 200, 0.9);
}

.elegant-cookie-inner a.text-gray-300:hover {
    color: var(--white);
}

.elegant-btn-accept {
    background: var(--primary);
    color: var(--white);
}

.elegant-btn-accept:hover {
    background: var(--primary-dark);
}

.elegant-back-top {
    background: var(--primary);
    color: var(--white);
}

.elegant-back-top:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3.5rem;
    }

    .site-elegant h1 {
        font-size: 2rem;
    }

    .site-elegant h2 {
        font-size: 1.75rem;
    }

    .elegant-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.75rem;
        height: 2.75rem;
        border: 1px solid rgba(var(--primary-rgb), 0.14);
        border-radius: var(--radius);
        background: var(--surface);
        cursor: pointer;
        color: var(--neutral-dark);
        margin-left: auto;
    }

    .site-elegant header.site-nav nav {
        flex-wrap: wrap;
    }

    .site-elegant .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(var(--primary-rgb), 0.08);
    }

    .site-elegant .nav-links.mobile-open {
        display: flex;
    }

    .site-elegant .nav-links li {
        width: 100%;
    }

    .site-elegant .nav-links li .btn.btn-sm-nav {
        width: 100%;
        text-align: center;
    }

    .site-elegant .logo--lockup {
        max-width: min(100%, 70vw);
        gap: 0.5rem;
    }

    .site-elegant .logo--lockup .logo-img {
        height: 2.35rem;
        max-width: 4.5rem;
    }

    .site-elegant .logo .logo-text {
        font-size: 1.05rem;
    }

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

    .about-image {
        aspect-ratio: 16 / 9;
    }

    .services-grid,
    .testimonials-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1.5rem;
    }
}
