:root {
    --color-primary: #D4A574;
    --color-primary-dark: #B8895A;
    --color-secondary: #8B7355;
    --color-accent: #C9B896;
    --color-background: #FFFBF7;
    --color-surface: #F5E6D3;
    --color-surface-alt: #E8D4C4;
    --color-text: #2D2A26;
    --color-text-muted: #5C574F;
    --color-border: #E0D5C7;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }
}

.section-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary-dark);
    margin-bottom: 0.75rem;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background-color: #725F47;
    border-color: #725F47;
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-outline:hover {
    background-color: var(--color-primary-dark);
    color: #fff;
}

/* Header & Navigation */
.site-header {
    position: sticky;
    top: 0;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text);
    text-decoration: none;
}

.logo:hover {
    color: var(--color-text);
}

.logo-icon {
    flex-shrink: 0;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    position: relative;
    transition: background-color var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    left: 0;
    transition: transform var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

.nav-menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-background);
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
    gap: 0;
}

.nav-menu.is-open li {
    border-bottom: 1px solid var(--color-border);
}

.nav-menu.is-open li:last-child {
    border-bottom: none;
}

.nav-menu.is-open a {
    display: block;
    padding: 16px 0;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
}

@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        align-items: center;
        padding: 80px 20px;
    }

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }
}

/* Page Hero */
.page-hero {
    background-color: var(--color-surface);
    padding: 60px 20px;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-legal {
    text-align: left;
}

.page-hero-legal p {
    margin: 0;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 20px;
    background-color: var(--color-surface);
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.philosophy-content h2 {
    margin-bottom: 24px;
}

.philosophy-content p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-card {
    background-color: var(--color-background);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.value-card svg {
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .philosophy-grid {
        flex-direction: row;
    }

    .philosophy-content {
        flex: 1;
    }

    .philosophy-values {
        flex: 1;
    }
}

/* Featured Collections */
.featured-collections {
    padding: 80px 20px;
}

.featured-collections h2 {
    margin-bottom: 48px;
}

.collections-showcase {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.collection-card {
    background-color: var(--color-background);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

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

.collection-visual {
    background-color: var(--color-surface);
    padding: 32px;
    display: flex;
    justify-content: center;
}

.collection-visual svg {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.collection-info {
    padding: 24px;
}

.collection-info h3 {
    margin-bottom: 12px;
}

.collection-info p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.collection-featured {
    background-color: var(--color-surface);
}

@media (min-width: 768px) {
    .collections-showcase {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .collection-card {
        flex: 1;
        min-width: 280px;
    }

    .collection-featured {
        flex: 2;
        display: flex;
    }

    .collection-featured .collection-visual,
    .collection-featured .collection-info {
        flex: 1;
    }

    .collection-featured .collection-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Stats Section */
.stats-section {
    padding: 60px 20px;
    background-color: var(--color-secondary);
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* Process Section */
.process-section {
    padding: 80px 20px;
}

.process-section h2 {
    margin-bottom: 48px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.step-icon {
    flex-shrink: 0;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    border-radius: 50%;
}

.process-step h3 {
    margin-bottom: 8px;
}

.process-step p {
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1;
        min-width: 220px;
        text-align: center;
        align-items: center;
    }
}

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
    background-color: var(--color-surface);
}

.testimonials-section h2 {
    margin-bottom: 48px;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card {
    background-color: var(--color-background);
    padding: 32px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

.testimonial-card p {
    font-size: 1.0625rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-text);
}

.testimonial-card footer span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.testimonial-featured {
    background-color: var(--color-primary);
    color: #fff;
    border-left-color: var(--color-secondary);
}

.testimonial-featured cite,
.testimonial-featured footer span {
    color: #fff;
}

@media (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
        align-items: stretch;
    }

    .testimonial-card {
        flex: 1;
    }
}

/* Sustainability Section */
.sustainability-section {
    padding: 80px 20px;
}

.sustainability-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.sustainability-text h2 {
    margin-bottom: 24px;
}

.sustainability-text > p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.sustainability-list {
    list-style: none;
}

.sustainability-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.sustainability-list li:last-child {
    border-bottom: none;
}

.sustainability-visual {
    display: flex;
    justify-content: center;
}

.sustainability-visual svg {
    width: 100%;
    max-width: 300px;
}

@media (min-width: 768px) {
    .sustainability-content {
        flex-direction: row;
        align-items: center;
    }

    .sustainability-text,
    .sustainability-visual {
        flex: 1;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: var(--color-surface);
}

.faq-section h2 {
    margin-bottom: 48px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-background);
    margin-bottom: 12px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--color-text-muted);
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background-color: var(--color-surface-alt);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.cta-simple {
    background-color: var(--color-surface);
}

/* Footer */
.site-footer {
    background-color: var(--color-text);
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-logo:hover {
    color: #fff;
}

.footer-brand p {
    font-size: 0.9375rem;
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: 0.9375rem;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--color-primary);
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.6;
}

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 2;
    }

    .footer-links,
    .footer-contact {
        flex: 1;
        min-width: 150px;
    }
}

/* Services Page */
.services-intro {
    padding: 60px 20px;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

.services-grid-section {
    padding: 60px 20px;
    background-color: var(--color-surface);
}

.services-grid-section h2 {
    margin-bottom: 48px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--color-background);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}

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

.service-icon {
    margin-bottom: 20px;
}

.service-icon svg {
    width: 80px;
    height: 80px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.service-price {
    display: block;
    font-weight: 600;
    color: var(--color-primary-dark);
    font-size: 1.125rem;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
}

.benefits-section h2 {
    margin-bottom: 48px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.benefit-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.benefit-icon {
    margin-bottom: 16px;
}

.benefit-item h3 {
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 20px;
    background-color: var(--color-surface);
}

.comparison-section h2 {
    margin-bottom: 48px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-background);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background-color: var(--color-surface-alt);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background-color: var(--color-surface);
}

/* Contact Page */
.contact-info-section {
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-block h3 {
    font-size: 1.125rem;
}

.contact-block p {
    color: var(--color-text-muted);
}

.contact-note {
    font-size: 0.875rem;
    font-style: italic;
}

.contact-hours {
    background-color: var(--color-surface);
    padding: 32px;
    border-radius: var(--radius-md);
}

.contact-hours h3 {
    margin-bottom: 20px;
}

.hours-table {
    margin-bottom: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    font-weight: 500;
}

.hours-row .time {
    color: var(--color-text-muted);
}

.hours-note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.online-support h4 {
    margin-bottom: 8px;
}

.online-support p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
    }

    .contact-details {
        flex: 2;
    }

    .contact-hours {
        flex: 1;
    }
}

/* Directions */
.directions-section {
    padding: 80px 20px;
    background-color: var(--color-surface);
}

.directions-section h2 {
    margin-bottom: 48px;
}

.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.direction-card {
    background-color: var(--color-background);
    padding: 32px;
    border-radius: var(--radius-md);
}

.direction-card h3 {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-primary);
}

.direction-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.direction-method h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--color-primary-dark);
}

.direction-method p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .directions-grid {
        flex-direction: row;
    }

    .direction-card {
        flex: 1;
    }
}

/* Company Info */
.company-info-section {
    padding: 80px 20px;
}

.company-info-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.company-description h2 {
    margin-bottom: 24px;
}

.company-description p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.company-data {
    background-color: var(--color-surface);
    padding: 32px;
    border-radius: var(--radius-md);
}

.company-data h3 {
    margin-bottom: 24px;
}

.company-details {
    display: grid;
    gap: 16px;
}

.company-details dt {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-text-muted);
}

.company-details dd {
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .company-info-grid {
        flex-direction: row;
    }

    .company-description {
        flex: 2;
    }

    .company-data {
        flex: 1;
    }
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 20px;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 32px;
}

.thank-you-section h1 {
    margin-bottom: 16px;
}

.thank-you-message {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 48px;
}

.thank-you-details {
    text-align: left;
    background-color: var(--color-surface);
    padding: 32px;
    border-radius: var(--radius-md);
    margin-bottom: 48px;
}

.thank-you-details h2 {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 16px;
}

.step-item .step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.step-content h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.thank-you-actions p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* Suggestions */
.suggestions-section {
    padding: 60px 20px;
    background-color: var(--color-surface);
}

.suggestions-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.suggestions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.suggestion-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: var(--color-background);
    padding: 32px;
    border-radius: var(--radius-md);
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
    transition: box-shadow var(--transition), transform var(--transition);
}

.suggestion-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    color: var(--color-text);
}

.suggestion-icon {
    margin-bottom: 16px;
}

.suggestion-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.suggestion-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

/* Legal Pages */
.legal-content {
    padding: 60px 20px;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-text p {
    margin-bottom: 16px;
    color: var(--color-text-muted);
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-text li {
    margin-bottom: 8px;
    color: var(--color-text-muted);
}

.legal-definitions {
    background-color: var(--color-surface);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.legal-definitions dt {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.legal-definitions dd {
    margin-bottom: 16px;
    color: var(--color-text-muted);
}

.legal-definitions dd:last-child {
    margin-bottom: 0;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 0.9375rem;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.cookies-table th {
    background-color: var(--color-surface);
    font-weight: 600;
    color: var(--color-text);
}

.cookies-table td {
    color: var(--color-text-muted);
}

/* Story Section */
.story-section {
    padding: 80px 20px;
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.story-content h2 {
    margin-bottom: 24px;
}

.story-content p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.story-visual svg {
    width: 100%;
    max-width: 400px;
}

@media (min-width: 768px) {
    .story-grid {
        flex-direction: row;
        align-items: center;
    }

    .story-content,
    .story-visual {
        flex: 1;
    }
}

/* Milestones */
.milestones-section {
    padding: 80px 20px;
    background-color: var(--color-surface);
}

.milestones-section h2 {
    margin-bottom: 48px;
}

.milestones-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.milestone {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone-year {
    flex-shrink: 0;
    width: 80px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary-dark);
}

.milestone-content h3 {
    margin-bottom: 8px;
}

.milestone-content p {
    color: var(--color-text-muted);
}

/* Team Section */
.team-section {
    padding: 80px 20px;
}

.team-section h2 {
    margin-bottom: 48px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

.member-visual {
    margin-bottom: 20px;
}

.member-visual svg {
    width: 160px;
    height: 160px;
}

.team-member h3 {
    margin-bottom: 4px;
}

.member-role {
    display: block;
    font-size: 0.875rem;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.team-member p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background-color: var(--color-surface);
}

.values-section h2 {
    margin-bottom: 48px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-block {
    flex: 1;
    min-width: 250px;
    background-color: var(--color-background);
    padding: 32px;
    border-radius: var(--radius-md);
    text-align: center;
}

.value-icon {
    margin-bottom: 20px;
}

.value-block h3 {
    margin-bottom: 12px;
}

.value-block p {
    color: var(--color-text-muted);
}

/* Partners Section */
.partners-section {
    padding: 80px 20px;
}

.partners-section h2 {
    margin-bottom: 20px;
}

.partners-intro {
    max-width: 800px;
    color: var(--color-text-muted);
    margin-bottom: 48px;
}

.partners-features {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.partner-feature {
    flex: 1;
    min-width: 250px;
    padding: 24px;
    border-left: 3px solid var(--color-primary);
}

.partner-feature h3 {
    margin-bottom: 8px;
}

.partner-feature p {
    color: var(--color-text-muted);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-text);
    color: #fff;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-content p {
    font-size: 0.9375rem;
    opacity: 0.9;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-content p {
        flex: 1;
        margin-right: 24px;
    }

    .cookie-actions {
        flex-shrink: 0;
    }
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.cookie-modal[hidden] {
    display: none;
}

.cookie-modal-content {
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--color-border);
}

.cookie-modal-header h3 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-muted);
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    color: var(--color-text);
}

.cookie-modal-body {
    padding: 24px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.cookie-option-info p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-border);
    transition: var(--transition);
    border-radius: 28px;
}

.toggle-slider::before {
    position: absolute;
    content: '';
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    transition: var(--transition);
    border-radius: 50%;
}

.toggle input:checked + .toggle-slider {
    background-color: var(--color-primary);
}

.toggle input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.toggle.disabled .toggle-slider {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-modal-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px;
    border-top: 1px solid var(--color-border);
    justify-content: flex-end;
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
details summary:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Skip link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: #fff;
    padding: 8px 16px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}
