@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
    --color-terracotta: #C67B5C;
    --color-terracotta-dark: #A65A3C;
    --color-sage: #A8B5A0;
    --color-sage-light: #C8D5C0;
    --color-beige: #F5EFE6;
    --color-beige-dark: #E8DFD0;
    --color-gold: #D4A853;
    --color-gold-light: #E8C573;
    --color-text: #3D3D3D;
    --color-text-light: #6B6B6B;
    --color-white: #FFFFFF;
    --color-black: #1A1A1A;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito Sans', sans-serif;
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 50%;
    
    --shadow-sm: 0 0.125rem 0.25rem rgba(0,0,0,0.08);
    --shadow-md: 0 0.25rem 0.5rem rgba(0,0,0,0.12);
    --shadow-lg: 0 0.5rem 1rem rgba(0,0,0,0.15);
    --shadow-xl: 0 1rem 2rem rgba(0,0,0,0.18);
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --max-width: 75rem;
    --header-height: 4rem;
}

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

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-beige);
    overflow-x: hidden;
}

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

a {
    color: var(--color-terracotta);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-terracotta-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-black);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    color: var(--color-white);
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-terracotta);
    border: 0.125rem solid var(--color-terracotta);
}

.btn-secondary:hover {
    background: var(--color-terracotta);
    color: var(--color-white);
}

.btn-gold {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-gold:hover {
    background: var(--color-gold-light);
    transform: translateY(-0.125rem);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: var(--space-md) 0;
    background: linear-gradient(180deg, rgba(245,239,230,0.95) 0%, rgba(245,239,230,0) 100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-black);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    padding: var(--space-xs) 0;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.125rem;
    background: var(--color-terracotta);
    transition: width var(--transition-base);
}

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

.nav-desktop .btn-primary {
    background: none;
    color: var(--color-text);
}

.nav-desktop .btn-primary:hover {
    background: none;
    box-shadow: none;
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
    padding: var(--space-sm);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.burger span {
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background: var(--color-black);
    transition: all var(--transition-base);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.3125rem, -0.3125rem);
}

.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    background: var(--color-white);
    padding: 0 var(--space-xl);
    box-shadow: var(--shadow-xl);
    transition: max-height 0.35s ease-out, padding 0.35s ease-out;
    transition-delay: 0s;
    z-index: 105;
    overflow-y: auto;
}

.nav-mobile.active {
    max-height: 100vh;
    padding: var(--space-3xl) var(--space-xl);
    transition-delay: 0s;
}

.nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.nav-mobile a {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    padding: var(--space-sm) 0;
    border-bottom: 0.0625rem solid var(--color-beige-dark);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 100;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, rgba(245,239,230,0.88) 0%, rgba(200,213,192,0.82) 50%, rgba(232,223,208,0.88) 100%), url('../visuals/bg-image-1.webp') center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, var(--color-gold-light) 0%, transparent 60%);
    opacity: 0.2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 40rem;
}

.hero-badge {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 0.75rem;
    font-weight: 700;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero h1 {
    margin-bottom: var(--space-md);
}

.hero p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    max-width: 32rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 70%;
    display: none;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

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

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

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    color: var(--color-text-light);
    max-width: 40rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.feature-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 0.0625rem solid var(--color-beige-dark);
}

.feature-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-terracotta);
    color: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 0.0625rem solid var(--color-beige-dark);
}

.product-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--color-sage-light);
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.product-content {
    padding: var(--space-md);
}

.product-content h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.product-content p {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-terracotta);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

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

.about-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

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

.about-content p {
    margin-bottom: var(--space-md);
    color: var(--color-text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
    background: var(--color-beige);
    border-radius: var(--radius-md);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-terracotta);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.process-step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-terracotta);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.step-content h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

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

.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 0.25rem solid var(--color-gold);
}

.testimonial-text {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

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

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    background: var(--color-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-white);
    font-size: 0.875rem;
}

.testimonial-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
}

.testimonial-info span {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-dark) 100%);
    color: var(--color-white);
    text-align: center;
    padding: var(--space-3xl) 0;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-gold {
    color: var(--color-black);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.contact-form-container {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    padding: var(--space-sm) var(--space-md);
    border: 0.0625rem solid var(--color-beige-dark);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.875rem;
    transition: border-color var(--transition-fast);
    background: var(--color-beige);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-terracotta);
}

.form-group textarea {
    min-height: 8rem;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--color-terracotta);
}

.checkbox-group label {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-terracotta);
    color: var(--color-white);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 0.9375rem;
    margin-bottom: var(--space-xs);
}

.contact-info-content p,
.contact-info-content a {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 16/9;
    min-height: 280px;
    position: relative;
    width: 100%;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    display: inline-block;
}

.footer-brand p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
    max-width: 20rem;
}

.footer-links h4 {
    color: var(--color-white);
    font-size: 0.9375rem;
    margin-bottom: var(--space-sm);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

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

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 0.0625rem solid rgba(255,255,255,0.1);
    padding-top: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.footer-legal a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal a:hover {
    color: var(--color-gold);
}

.page-hero {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-sage-light) 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: var(--space-sm);
}

.page-hero p {
    color: var(--color-text-light);
    max-width: 40rem;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    margin-bottom: var(--space-md);
}

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

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

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
}

.error-content h1 {
    font-size: clamp(4rem, 15vw, 8rem);
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
}

.error-content h2 {
    margin-bottom: var(--space-md);
}

.error-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-sage-light) 100%);
}

.thank-you-content {
    max-width: 32rem;
}

.thank-you-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-terracotta);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 2rem;
    margin: 0 auto var(--space-xl);
}

.thank-you-content h1 {
    margin-bottom: var(--space-md);
}

.thank-you-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.legal-content {
    max-width: 50rem;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-content h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    margin-bottom: var(--space-md);
    color: var(--color-text-light);
}

.legal-content ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.legal-content li {
    margin-bottom: var(--space-sm);
    color: var(--color-text-light);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: var(--space-md);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.cookie-content a {
    color: var(--color-terracotta);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

.collections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

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

.collection-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-lg);
}

.collection-image {
    aspect-ratio: 16/9;
    background: var(--color-sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-image i {
    font-size: 3rem;
    color: var(--color-terracotta);
}

.collection-content {
    padding: var(--space-lg);
}

.collection-content h3 {
    margin-bottom: var(--space-sm);
}

.collection-content p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.technique-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.technique-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.technique-visual {
    aspect-ratio: 4/3;
    background: var(--color-sage-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.technique-visual i {
    font-size: 3rem;
    color: var(--color-terracotta);
}

.technique-content h3 {
    margin-bottom: var(--space-sm);
}

.technique-content p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.technique-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.technique-features span {
    background: var(--color-beige);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--color-text);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.team-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.team-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: var(--radius-full);
    background: var(--color-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2rem;
    color: var(--color-white);
}

.team-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.team-card span {
    display: block;
    font-size: 0.875rem;
    color: var(--color-terracotta);
    margin-bottom: var(--space-sm);
}

.team-card p {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-black);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 0.9375rem;
    margin-bottom: var(--space-xs);
}

.value-content p {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.timeline {
    position: relative;
    padding-left: var(--space-xl);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0.125rem;
    background: var(--color-terracotta);
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-xl);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-xl) - 0.25rem);
    top: 0;
    width: 0.625rem;
    height: 0.625rem;
    background: var(--color-terracotta);
    border-radius: var(--radius-full);
}

.timeline-item h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.timeline-item p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
}

.faq-question i {
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-md);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active .faq-answer {
    padding: 0 var(--space-md) var(--space-md);
    max-height: 20rem;
}

.faq-answer p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

@media (min-width: 30rem) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 48rem) {
    .nav-desktop {
        display: block;
    }
    
    .burger {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        flex-direction: row;
    }
    
    .testimonial-card {
        flex: 1;
    }
    
    .contact-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
    
    .hero-visual {
        display: block;
    }
    
    .collections-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .technique-item {
        grid-template-columns: 1fr 2fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 64rem) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
