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

:root {
    --color-cream: #F5F0E8;
    --color-terracotta: #C4785A;
    --color-sage: #8FA388;
    --color-charcoal: #3D3A38;
    --color-gold: #C9A962;
    --color-blush: #E8D5CC;
    --color-white: #FFFFFF;
    --color-dark: #2A2725;
    --color-overlay: rgba(61, 58, 56, 0.85);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Quicksand', 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: 2rem;
    --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);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    min-height: 100vh;
}

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

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

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

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: 1.2;
    color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

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

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: var(--space-lg) 0;
    background-color: var(--color-cream);
}

.header.scrolled {
    position: fixed;
    background: var(--color-overlay);
    padding: var(--space-md) 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.02em;
}

.header.scrolled .logo {
    color: var(--color-white);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: var(--space-lg);
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-sm) 0;
    position: relative;
}

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

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

.header.scrolled .nav-desktop a {
    color: var(--color-white);
}

.burger-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 110;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition-base);
}

.header.scrolled .burger-btn span {
    background: var(--color-white);
}

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

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

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

.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 105;
}

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

.nav-mobile ul {
    text-align: center;
}

.nav-mobile li {
    margin: var(--space-md) 0;
}

.nav-mobile a {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-white);
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
}

.nav-mobile a:hover {
    color: var(--color-gold);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232, 213, 204, 0.85) 0%, rgba(245, 240, 232, 0.9) 100%),
                url('../visuals/bg-image-1.webp') center / cover no-repeat;
    padding: var(--space-3xl) var(--space-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, var(--color-sage) 0%, transparent 70%);
    opacity: 0.15;
}

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

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    border: 1px solid var(--color-terracotta);
    border-radius: var(--radius-xl);
}

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

.hero p {
    font-size: 1rem;
    color: var(--color-charcoal);
    margin-bottom: var(--space-xl);
    opacity: 0.85;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

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

.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-charcoal);
    opacity: 0.75;
    max-width: 35rem;
    margin: 0 auto;
}

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

.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: var(--transition-base);
    text-align: center;
}

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

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

.feature-card i {
    font-size: 2rem;
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
}

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

.feature-card p {
    font-size: 0.875rem;
    opacity: 0.8;
}

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

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

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

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

.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);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--color-gold);
    color: var(--color-dark);
    border-radius: var(--radius-sm);
}

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

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

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

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

.about-content {
    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-md);
}

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

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

.about-text p {
    margin-bottom: var(--space-md);
    opacity: 0.85;
}

.about-text .btn {
    margin-top: var(--space-sm);
}

.testimonials {
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-charcoal) 100%);
    color: var(--color-white);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--color-white);
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    text-align: center;
}

.testimonial-card i {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

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

.cta-section {
    background: var(--color-terracotta);
    color: var(--color-white);
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
}

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

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

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

.cta-section .btn-primary:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

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

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

.contact-info {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.contact-info h3 {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
}

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

.contact-item i {
    font-size: 1.125rem;
    color: var(--color-gold);
    margin-top: 3px;
}

.contact-item p {
    font-size: 0.875rem;
    line-height: 1.5;
}

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

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

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

.contact-form-wrap h3 {
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--color-charcoal);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--color-blush);
    border-radius: var(--radius-md);
    background: var(--color-cream);
    transition: border-color var(--transition-fast);
}

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    accent-color: var(--color-terracotta);
}

.checkbox-group label {
    font-size: 0.75rem;
    margin-bottom: 0;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--color-terracotta);
    text-decoration: underline;
}

.form-submit {
    margin-top: var(--space-lg);
}

.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: 250px;
    border: none;
}

.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-xl) 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

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

.footer-links a {
    font-size: 0.75rem;
    opacity: 0.75;
}

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

.footer-copy {
    font-size: 0.6875rem;
    opacity: 0.6;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-md);
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

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

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

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

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

.cookie-btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

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

.cookie-btn.decline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

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

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

.page-hero p {
    opacity: 0.85;
    max-width: 35rem;
    margin: 0 auto;
}

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

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

.breadcrumb span {
    opacity: 0.5;
}

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

.content-box {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.content-box h2 {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-blush);
}

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

.content-box p {
    margin-bottom: var(--space-md);
    opacity: 0.85;
}

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

.content-box li {
    margin-bottom: var(--space-xs);
    position: relative;
    padding-left: var(--space-md);
}

.content-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--color-terracotta);
    border-radius: var(--radius-full);
}

.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) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    font-weight: 500;
    text-align: left;
    background: var(--color-white);
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--color-blush);
}

.faq-question i {
    color: var(--color-terracotta);
    transition: transform var(--transition-fast);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 0.875rem;
    opacity: 0.85;
}

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

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

.thank-you-content i {
    font-size: 4rem;
    color: var(--color-sage);
    margin-bottom: var(--space-lg);
}

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

.thank-you-content p {
    margin-bottom: var(--space-xl);
    opacity: 0.85;
}

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

.error-content h1 {
    font-size: clamp(5rem, 15vw, 10rem);
    color: var(--color-terracotta);
    line-height: 1;
    margin-bottom: var(--space-md);
}

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

.error-content p {
    margin-bottom: var(--space-xl);
    opacity: 0.75;
}

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

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

.team-card i {
    font-size: 3rem;
    color: var(--color-sage);
    margin-bottom: var(--space-md);
}

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

.team-card span {
    font-size: 0.75rem;
    color: var(--color-terracotta);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-card p {
    margin-top: var(--space-sm);
    font-size: 0.875rem;
    opacity: 0.8;
}

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

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

.safety-card i {
    font-size: 1.5rem;
    color: var(--color-terracotta);
    flex-shrink: 0;
}

.safety-card h4 {
    margin-bottom: var(--space-xs);
}

.safety-card p {
    font-size: 0.8125rem;
    opacity: 0.8;
}

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

.stat-card {
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.stat-card p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
}


@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.7rem;
    }
}

@media (min-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .burger-btn {
        display: none;
    }
    
    .nav-desktop {
        display: block;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}
