@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;500;600&display=swap');

:root {
    --color-terracotta: #c45c3e;
    --color-terracotta-dark: #a34a30;
    --color-sage: #8fa387;
    --color-sage-light: #b8c9b2;
    --color-gold: #c9a962;
    --color-gold-muted: #d4be82;
    --color-ivory: #f8f5f0;
    --color-cream: #fdfbf7;
    --color-charcoal: #3a3a3a;
    --color-text: #4a4a4a;
    --color-text-light: #6b6b6b;
    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --color-overlay: rgba(58, 58, 58, 0.85);

    --font-heading: 'Cormorant Garamond', Georgia, 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;
    --space-4xl: 6rem;

    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 50%;

    --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);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-md: 1.125rem;
    --font-lg: 1.25rem;
    --font-xl: 1.5rem;
    --font-2xl: 2rem;
    --font-3xl: 2.5rem;
    --font-4xl: 3rem;

    --line-tight: 1.2;
    --line-base: 1.6;
    --line-loose: 1.8;

    --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: var(--font-base);
    line-height: var(--line-base);
    color: var(--color-text);
    background-color: var(--color-cream);
    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);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
    font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: var(--line-tight);
    color: var(--color-charcoal);
}

h1 { font-size: var(--font-3xl); }
h2 { font-size: var(--font-2xl); }
h3 { font-size: var(--font-xl); }
h4 { font-size: var(--font-lg); }
h5 { font-size: var(--font-md); }
h6 { font-size: var(--font-base); }

.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-size: var(--font-sm);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-terracotta);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-terracotta-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-terracotta);
    border: 1px solid var(--color-terracotta);
}

.btn-secondary:hover {
    background-color: var(--color-terracotta);
    color: var(--color-white);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-charcoal);
}

.btn-gold:hover {
    background-color: var(--color-gold-muted);
    transform: translateY(-2px);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    position: fixed;
    background-color: rgba(248, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--color-charcoal);
    letter-spacing: 0.02em;
}

.logo:hover {
    color: var(--color-terracotta);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: var(--space-lg);
}

.nav-desktop a {
    font-size: var(--font-sm);
    color: var(--color-text);
    font-weight: 500;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-terracotta);
    transition: width var(--transition-base);
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--color-terracotta);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 1001;
}

.burger span {
    width: 24px;
    height: 2px;
    background-color: var(--color-charcoal);
    transition: all var(--transition-base);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 20rem;
    height: 100vh;
    background-color: var(--color-ivory);
    padding: var(--space-4xl) var(--space-xl);
    transition: right var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-xl);
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.nav-mobile a {
    font-size: var(--font-md);
    color: var(--color-text);
    font-weight: 500;
    display: block;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-sage-light);
}

.nav-mobile a:hover {
    color: var(--color-terracotta);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, rgba(248, 245, 240, 0.82) 0%, rgba(253, 251, 247, 0.78) 50%, rgba(184, 201, 178, 0.75) 100%),
                      url('../visuals/bg-image-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 40%, var(--color-gold-muted) 0%, transparent 50%);
    opacity: 0.25;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 38rem;
}

.hero-tagline {
    font-size: var(--font-sm);
    color: var(--color-terracotta);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.hero h1 {
    font-size: var(--font-3xl);
    margin-bottom: var(--space-md);
    color: var(--color-charcoal);
}

.hero p {
    font-size: var(--font-base);
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    max-width: 28rem;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.section {
    padding: var(--space-3xl) 0;
}

.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: 32rem;
    margin: 0 auto;
}

.section-alt {
    background-color: var(--color-ivory);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.feature-card {
    background-color: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-md);
    color: var(--color-white);
    font-size: var(--font-lg);
}

.feature-card h3 {
    font-size: var(--font-md);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.product-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: var(--color-ivory);
}

.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-color: var(--color-gold);
    color: var(--color-charcoal);
    font-size: var(--font-xs);
    font-weight: 600;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.product-info {
    padding: var(--space-md);
}

.product-info h3 {
    font-size: var(--font-md);
    margin-bottom: var(--space-xs);
}

.product-info p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.product-price {
    font-family: var(--font-heading);
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--color-terracotta);
}

.about-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-content h2 {
    margin-bottom: var(--space-md);
}

.about-content p {
    margin-bottom: var(--space-md);
    color: var(--color-text-light);
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
    background-color: var(--color-white);
    border-radius: var(--radius-md);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--color-terracotta);
}

.stat-label {
    font-size: var(--font-sm);
    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: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background-color: var(--color-white);
    color: var(--color-terracotta);
}

.cta-section .btn:hover {
    background-color: var(--color-ivory);
    transform: translateY(-2px);
}

.testimonials-section {
    background-color: var(--color-sage-light);
    background-image: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-ivory) 100%);
}

.testimonial-card {
    background-color: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
}

.testimonial-card:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: var(--space-lg);
}

.testimonial-text::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: var(--font-3xl);
    font-family: var(--font-heading);
    color: var(--color-terracotta);
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-author-name {
    font-weight: 600;
    color: var(--color-charcoal);
    font-size: var(--font-sm);
}

.testimonial-author-role {
    font-size: var(--font-xs);
    color: var(--color-text-light);
}

.contact-section {
    background-color: var(--color-ivory);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.contact-info {
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-light) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    color: var(--color-charcoal);
}

.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-info p {
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-item i {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border-radius: var(--radius-full);
    color: var(--color-terracotta);
    flex-shrink: 0;
}

.contact-item-text {
    font-size: var(--font-sm);
}

.contact-item-text strong {
    display: block;
    margin-bottom: var(--space-xs);
}

.contact-form-wrapper {
    background-color: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-sage-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    background-color: var(--color-ivory);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-terracotta);
    background-color: var(--color-white);
}

.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"] {
    width: auto;
    margin-top: 0.2rem;
    accent-color: var(--color-terracotta);
}

.checkbox-group label {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    margin-bottom: 0;
}

.checkbox-group a {
    text-decoration: underline;
}

.map-container {
    margin-top: var(--space-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 16rem;
    border: none;
}

.footer {
    background-color: var(--color-charcoal);
    color: var(--color-ivory);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer-brand {
    max-width: 16rem;
}

.footer-brand .logo {
    color: var(--color-ivory);
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    font-size: var(--font-sm);
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.footer-links h4 {
    color: var(--color-ivory);
    font-size: var(--font-sm);
    margin-bottom: var(--space-sm);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-links a {
    font-size: var(--font-sm);
    color: var(--color-sage-light);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--font-xs);
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.footer-legal a {
    font-size: var(--font-xs);
    color: var(--color-sage-light);
}

.cookie-popup {
    position: fixed;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    background-color: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    display: none;
    flex-direction: column;
    gap: var(--space-md);
}

.cookie-popup.show {
    display: flex;
}

.cookie-popup p {
    font-size: var(--font-sm);
    color: var(--color-text);
}

.cookie-popup a {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    flex: 1;
    min-width: 7rem;
}

.page-header {
    background: linear-gradient(135deg, var(--color-ivory) 0%, var(--color-sage-light) 100%);
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
    text-align: center;
}

.page-header h1 {
    margin-bottom: var(--space-sm);
}

.page-header p {
    color: var(--color-text-light);
    max-width: 32rem;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: var(--font-sm);
}

.breadcrumb a {
    color: var(--color-text-light);
}

.breadcrumb span {
    color: var(--color-text-light);
}

.content-section {
    padding: var(--space-3xl) 0;
}

.content-wrapper {
    max-width: 48rem;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.content-wrapper h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.content-wrapper p {
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.content-wrapper li {
    margin-bottom: var(--space-sm);
    color: var(--color-text);
    list-style: disc;
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-ivory) 0%, var(--color-sage-light) 100%);
    padding: var(--space-xl);
}

.error-content h1 {
    font-size: var(--font-4xl);
    color: var(--color-terracotta);
    margin-bottom: var(--space-sm);
}

.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;
    background: linear-gradient(135deg, var(--color-ivory) 0%, var(--color-sage-light) 100%);
    padding: var(--space-xl);
}

.thank-you-content {
    max-width: 32rem;
}

.thank-you-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-light) 100%);
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-xl);
    color: var(--color-white);
    font-size: var(--font-3xl);
}

.thank-you-content h1 {
    margin-bottom: var(--space-md);
}

.thank-you-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.inspiration-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.inspiration-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.inspiration-card:hover {
    box-shadow: var(--shadow-lg);
}

.inspiration-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: var(--color-ivory);
}

.inspiration-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inspiration-content {
    padding: var(--space-md);
}

.inspiration-content h3 {
    font-size: var(--font-md);
    margin-bottom: var(--space-sm);
}

.inspiration-content p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
}

.materials-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.material-card {
    display: flex;
    gap: var(--space-md);
    background-color: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.material-card:hover {
    box-shadow: var(--shadow-md);
}

.material-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-sage-light);
    border-radius: var(--radius-md);
    color: var(--color-charcoal);
    flex-shrink: 0;
}

.material-info h3 {
    font-size: var(--font-md);
    margin-bottom: var(--space-xs);
}

.material-info p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.team-card {
    text-align: center;
    background-color: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.team-avatar {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-gold) 100%);
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-md);
    color: var(--color-white);
    font-size: var(--font-2xl);
    font-family: var(--font-heading);
    font-weight: 700;
}

.team-card h3 {
    font-size: var(--font-md);
    margin-bottom: var(--space-xs);
}

.team-card p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.value-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-terracotta);
}

.value-card i {
    color: var(--color-terracotta);
    font-size: var(--font-lg);
}

.value-card h4 {
    font-size: var(--font-base);
    margin-bottom: var(--space-xs);
}

.value-card p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: var(--font-xl);
    }
}

@media (min-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .inspiration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 640px) {
    :root {
        --font-3xl: 3rem;
        --font-4xl: 4rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-popup {
        flex-direction: row;
        align-items: center;
        left: var(--space-xl);
        right: var(--space-xl);
        bottom: var(--space-xl);
    }
    
    .cookie-popup p {
        flex: 1;
    }
    
    .cookie-buttons {
        flex-wrap: nowrap;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }
    
    .burger {
        display: none;
    }
    
    .hero-content {
        max-width: 50%;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-section {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .inspiration-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .materials-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
