@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --color-sand: #e8e0d5;
    --color-taupe: #c4b8a8;
    --color-sage: #9caa97;
    --color-slate: #3d4f5f;
    --color-white: #fdfcfa;
    --color-dark: #2a2a2a;
    --color-overlay: rgba(61, 79, 95, 0.9);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', 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 2px 8px rgba(42, 42, 42, 0.08);
    --shadow-md: 0 4px 16px rgba(42, 42, 42, 0.1);
    --shadow-lg: 0 8px 32px rgba(42, 42, 42, 0.12);
    --shadow-xl: 0 12px 48px rgba(42, 42, 42, 0.15);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --max-width: 75rem;
    --header-height: 4rem;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-slate);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: var(--space-md); }

a {
    color: var(--color-slate);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover { color: var(--color-sage); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol { list-style: none; }

.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.8125rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-slate);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-sage);
    color: var(--color-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-slate);
    border: 1px solid var(--color-slate);
}

.btn-secondary:hover {
    background-color: var(--color-slate);
    color: var(--color-white);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: transform var(--transition-base);
    background-color: var(--color-white);
}

.header.hidden { transform: translateY(-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-slate);
    letter-spacing: 0.02em;
}

.logo:hover { color: var(--color-slate); }

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: var(--space-lg);
}

.nav-desktop a {
    font-size: 0.8125rem;
    font-weight: 500;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-sage);
    transition: width var(--transition-base);
}

.nav-desktop a:hover::after { width: 100%; }

.burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.burger span {
    width: 20px;
    height: 2px;
    background-color: var(--color-slate);
    transition: all var(--transition-base);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.burger.active span:nth-child(2) { opacity: 0; }

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-overlay);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    text-align: center;
}

.mobile-nav li { margin-bottom: var(--space-lg); }

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    font-weight: 500;
}

.mobile-nav a:hover { color: var(--color-sand); }

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-slate) url('../visuals/bg-image-1.webp') center / cover no-repeat;
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-overlay);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 32rem;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background-color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-sage);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.hero h1 {
    margin-bottom: var(--space-lg);
    color: var(--color-white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
    color: var(--color-white);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-primary {
    background-color: var(--color-white);
    color: var(--color-slate);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--color-sand);
    color: var(--color-dark);
}

.hero-buttons .btn-secondary {
    border-color: var(--color-white);
    color: var(--color-white);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-slate);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header p {
    max-width: 32rem;
    margin: var(--space-md) auto 0;
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-sage);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--color-sage), var(--color-slate));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.service-card h3 { margin-bottom: var(--space-sm); }

.service-card p {
    font-size: 0.8125rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.about-section {
    background-color: var(--color-sand);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-content h2 { margin-bottom: var(--space-lg); }

.about-features {
    margin-top: var(--space-lg);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.about-feature i {
    color: var(--color-sage);
    font-size: 1rem;
    margin-top: 2px;
}

.products-section { background-color: var(--color-white); }

.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-md);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    padding-top: 75%;
    background-color: var(--color-sand);
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info { padding: var(--space-lg); }

.product-info h3 { margin-bottom: var(--space-sm); }

.product-info p {
    font-size: 0.8125rem;
    opacity: 0.8;
    margin-bottom: var(--space-md);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-slate);
}

.process-section { background-color: var(--color-taupe); }

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.process-step {
    text-align: center;
    padding: var(--space-xl);
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--color-slate);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    margin: 0 auto var(--space-md);
}

.process-step h3 { margin-bottom: var(--space-sm); }

.process-step p {
    font-size: 0.8125rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.testimonials-section { background-color: var(--color-white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.testimonial-card {
    background-color: var(--color-sand);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: var(--space-lg);
}

.testimonial-text::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -8px;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-sage);
}

.testimonial-author {
    font-weight: 500;
    color: var(--color-slate);
}

.cta-section {
    background: linear-gradient(135deg, var(--color-slate) 0%, var(--color-sage) 100%);
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-section p {
    color: var(--color-sand);
    max-width: 32rem;
    margin: 0 auto var(--space-xl);
}

.cta-section .btn-primary {
    background-color: var(--color-white);
    color: var(--color-slate);
}

.cta-section .btn-primary:hover {
    background-color: var(--color-sand);
}

.contact-section { background-color: var(--color-sand); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.contact-form-wrapper {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.form-group { margin-bottom: var(--space-lg); }

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--color-slate);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-body);
    font-size: 0.875rem;
    border: 1px solid var(--color-taupe);
    border-radius: var(--radius-md);
    background-color: var(--color-white);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-sage);
    box-shadow: 0 0 0 3px rgba(156, 170, 151, 0.2);
}

.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: 2px;
    accent-color: var(--color-sage);
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.75rem;
}

.contact-info h3 {
    margin-bottom: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-item i {
    color: var(--color-sage);
    font-size: 1.125rem;
    margin-top: 2px;
}

.contact-item p { margin-bottom: 0; }

.contact-item a {
    color: var(--color-dark);
}

.contact-item a:hover { color: var(--color-sage); }

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: var(--space-xl);
}

.map-wrapper iframe {
    width: 100%;
    height: 15rem;
    border: none;
}

.footer {
    background-color: var(--color-slate);
    color: var(--color-sand);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-links a {
    font-size: 0.75rem;
    color: var(--color-sand);
}

.footer-links a:hover { color: var(--color-white); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.8;
}

.page-hero {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-white) 100%);
    text-align: center;
}

.page-hero h1 { margin-bottom: var(--space-md); }

.page-hero p {
    max-width: 32rem;
    margin: 0 auto;
    opacity: 0.8;
}

.content-section { padding: var(--space-2xl) 0; }

.content-wrapper {
    max-width: 48rem;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.content-wrapper ul {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-lg);
}

.content-wrapper li {
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: var(--space-md);
}

.content-wrapper li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 4px;
    height: 4px;
    background-color: var(--color-sage);
    border-radius: var(--radius-full);
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-white) 100%);
    padding: var(--space-xl);
}

.error-content h1 {
    font-size: clamp(4rem, 15vw, 8rem);
    color: var(--color-taupe);
    margin-bottom: var(--space-md);
}

.error-content h2 { margin-bottom: var(--space-lg); }

.error-content p {
    max-width: 24rem;
    margin: 0 auto var(--space-xl);
    opacity: 0.8;
}

.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-slate) 100%);
    padding: var(--space-xl);
}

.thank-you-content {
    background-color: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 28rem;
}

.thank-you-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--color-sage);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto var(--space-lg);
}

.thank-you-content h1 { margin-bottom: var(--space-md); }

.thank-you-content p {
    margin-bottom: var(--space-xl);
    opacity: 0.8;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    padding: var(--space-lg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    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);
}

.cookie-text {
    font-size: 0.8125rem;
}

.cookie-text a {
    color: var(--color-sage);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

.cookie-buttons .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.75rem;
}

.gallery-section { background-color: var(--color-white); }

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-section { background-color: var(--color-sand); }

.faq-list { max-width: 48rem; margin: 0 auto; }

.faq-item {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--space-lg);
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-slate);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i { transition: transform var(--transition-base); }

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 0.8125rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.feature-item {
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--color-sage);
    margin-bottom: var(--space-sm);
}

.feature-item h4 {
    font-size: 0.875rem;
    margin-bottom: var(--space-xs);
}

.feature-item p {
    font-size: 0.75rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.benefits-section { background-color: var(--color-white); }

.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background-color: var(--color-sand);
    border-radius: var(--radius-md);
}

.benefit-item i {
    color: var(--color-sage);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-item h4 { margin-bottom: var(--space-xs); }

.benefit-item p {
    font-size: 0.8125rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.team-section { background-color: var(--color-sand); }

.team-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.team-content p { opacity: 0.8; }

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.value-item {
    background-color: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
}

.value-item i {
    font-size: 2rem;
    color: var(--color-sage);
    margin-bottom: var(--space-md);
}

.value-item h3 { margin-bottom: var(--space-sm); }

.value-item p {
    font-size: 0.8125rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.pricing-section { background-color: var(--color-white); }

.pricing-note {
    text-align: center;
    font-size: 0.8125rem;
    opacity: 0.8;
    margin-top: var(--space-lg);
}

@media (min-width: 480px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 640px) {
    .nav-desktop { display: block; }
    .burger { display: none; }
    .about-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .cookie-content { flex-direction: row; align-items: center; justify-content: space-between; }
    .benefits-list { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-content { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .process-steps { grid-template-columns: repeat(4, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .hero-content { max-width: 40rem; }
}
