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

/* --- CSS Variables --- */
:root {
    --pri: #FFFBF5;
    --sec: #D4A574;
    --acc: #8B5E3C;
    --dark: #3D2B1F;
    --bg-dark: #2c1f17; /* A slightly lighter dark for body */
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Mulish', sans-serif;

    --radius-soft: 8px;
    --shadow-subtle: 0 2px 8px rgba(0,0,0,0.1);
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--pri);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
}

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

section {
    padding: 80px 0;
}

.bg-dark { background-color: var(--dark); }
.bg-accent { background-color: var(--acc); }

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--sec);
    line-height: 1.2;
}

h1 { font-size: 4rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.8rem; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title { margin-bottom: 10px; }
.section-subtitle { font-size: 1.1rem; color: var(--pri); max-width: 600px; margin: 0 auto; }

a {
    color: var(--sec);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-soft);
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--pri);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--acc);
    color: var(--pri);
}

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

.btn-tertiary {
    background-color: transparent;
    color: var(--pri);
    border: 1px solid var(--pri);
}

/* --- Header & Navigation --- */
.header {
    background-color: var(--dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-subtle);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pri);
}

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

.nav-link {
    font-size: 1rem;
    color: var(--pri);
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--sec);
    border-bottom-color: var(--sec);
}

/* --- Hero Section --- */
.hero-slider {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: rgba(0,0,0,0.5);
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
}

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

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* --- Newsletter & CTA Fullwidth --- */
.newsletter-fullwidth, .cta-fullwidth {
    text-align: center;
}

.newsletter-fullwidth h2, .cta-fullwidth h2 { margin-bottom: 10px; }
.newsletter-fullwidth p, .cta-fullwidth p { margin-bottom: 30px; }

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px;
    border-radius: var(--radius-soft);
    border: 1px solid var(--acc);
    background: var(--pri);
}

/* --- Process Steps --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    border: 2px solid var(--sec);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--sec);
}

.step-card h3 { margin-bottom: 10px; color: var(--pri); }

/* --- Features Cards --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--dark);
    padding: 30px;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-subtle);
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-card h3 { margin-bottom: 10px; }

/* --- Testimonials Carousel --- */
.carousel-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.carousel-wrapper::-webkit-scrollbar { display: none; } /* Chrome, Safari, Opera */

.testimonial-card {
    flex: 0 0 300px;
    background-color: var(--bg-dark);
    padding: 30px;
    border-radius: var(--radius-soft);
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--sec);
}

.testimonial-card p { margin-bottom: 15px; font-style: italic; }
.testimonial-card h4 { color: var(--sec); }

/* --- About Page --- */
.text-block .text-content { max-width: 800px; margin: 0 auto; text-align: center; }
.text-block .text-content p { margin-bottom: 15px; font-size: 1.1rem; }

.quote-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.quote-image img { width: 100%; height: auto; border-radius: var(--radius-soft); }
.quote-text blockquote { font-family: var(--font-heading); font-size: 2rem; line-height: 1.3; margin-bottom: 20px; }
.quote-text cite { color: var(--sec); font-weight: 600; }

.team-members {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
}

.team-card img { width: 100%; max-width: 250px; height: auto; border-radius: 50%; margin-bottom: 20px; border: 4px solid var(--dark); }
.team-card h3 { color: var(--pri); }

.stats-row .stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}
.stat-item h3 { font-size: 3rem; }

.cta-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background-color: var(--dark);
    border-radius: var(--radius-soft);
    overflow: hidden;
}

.cta-split-content { padding: 60px; }
.cta-split-content p { margin: 20px 0 30px; }
.cta-split-image { width: 100%; height: 100%; background-size: cover; background-position: center; min-height: 300px;}

/* --- Contact Page --- */
.contact-wrapper { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; margin-bottom: 50px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group-full { grid-column: 1 / -1; }
.contact-form label { margin-bottom: 5px; font-size: 0.9rem; }
.contact-form input, .contact-form textarea, .contact-form select { padding: 12px; border-radius: var(--radius-soft); border: 1px solid var(--acc); background: var(--dark); color: var(--pri); font-family: var(--font-body); }
.contact-form button { grid-column: 1 / -1; }

.contact-info-container h3 { margin-bottom: 15px; }
.contact-details, .business-hours { list-style: none; margin-bottom: 20px; }
.contact-details li, .business-hours li { margin-bottom: 10px; }

/* --- FAQ Page --- */
.accordion-container { max-width: 800px; margin: 0 auto; }
.accordion-item { border-bottom: 1px solid var(--acc); padding: 20px 0; }
.accordion-question { cursor: pointer; color: var(--pri); }
.accordion-answer { padding-top: 15px; }

/* --- Legal Pages --- */
.legal-content { padding: 80px 0; }
.legal-content .container { max-width: 800px; }
.legal-content h1 { margin-bottom: 20px; }
.legal-content h2 { margin-top: 30px; margin-bottom: 10px; }
.legal-content p, .legal-content li { margin-bottom: 15px; }
.legal-content ul { padding-left: 20px; }

/* --- Footer --- */
.footer {
    background-color: var(--dark);
    padding: 60px 0 20px;
    border-top: 1px solid var(--acc);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 { font-family: var(--font-heading); color: var(--pri); margin-bottom: 15px; font-size: 1.5rem; }
.footer-col h4 { color: var(--sec); margin-bottom: 15px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a, .footer-col p { color: var(--pri); opacity: 0.8; }
.footer-col a:hover { opacity: 1; color: var(--sec); }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--acc);
    font-size: 0.9rem;
    color: var(--pri);
    opacity: 0.7;
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--pri);
    padding: 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.cookie-banner p { margin: 0; }
.cookie-banner div { display: flex; gap: 10px; }

/* --- Responsive Design --- */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    .steps-grid, .features-grid, .team-members { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .quote-container, .cta-split-container { grid-template-columns: 1fr; text-align: center; }
    .quote-image { order: -1; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar { flex-direction: column; gap: 15px; }
    .steps-grid, .features-grid, .stats-row .stats-container { grid-template-columns: 1fr; }
    .stats-row .stats-container { flex-direction: column; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .cookie-banner { flex-direction: column; gap: 15px; text-align: center; }
    .contact-form { grid-template-columns: 1fr; }
    .contact-form button { grid-column: auto; }
}
