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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0d5c7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.navbar {
    background-color: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background-color: #d9cfc1;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-reverse,
.split-normal {
    display: flex;
    align-items: center;
}

.split-reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    background-color: #c9bfb3;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}

.split-text {
    flex: 1;
    padding: 80px 60px;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 600;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.process-list {
    margin-top: 24px;
    padding-left: 20px;
}

.process-list li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.insight-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 100px 60px;
    text-align: center;
}

.insight-container {
    max-width: 900px;
    margin: 0 auto;
}

.insight-container h2 {
    font-size: 42px;
    margin-bottom: 28px;
    font-weight: 600;
}

.insight-container p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.testimonials-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

.services-reveal {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.services-reveal h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background-color: var(--bg-light);
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background-color: #c9bfb3;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0 24px 16px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 24px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 28px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #6f5638;
}

.form-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    font-size: 15px;
    font-family: inherit;
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--secondary-color);
    border-color: transparent;
}

.form-group input[readonly] {
    background-color: #f0ebe5;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1a2634;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #6f5638;
}

.ingredients-section {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.ingredients-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.ingredients-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.ingredient-item {
    flex: 1;
}

.ingredient-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.ingredient-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.citation {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 60px 20px;
}

.footer-content {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 15px;
    opacity: 0.85;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.references {
    padding-left: 20px;
}

.references li {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background-color: #6f5638;
}

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-header {
    background-color: var(--bg-light);
    padding: 80px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-detail-section {
    background-color: var(--bg-white);
}

.service-detail-split {
    display: flex;
    align-items: center;
    min-height: 600px;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-text {
    flex: 1;
    padding: 80px 60px;
}

.service-detail-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.service-detail-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-detail-text ul {
    margin: 24px 0;
    padding-left: 20px;
}

.service-detail-text li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 28px 0;
}

.service-detail-image {
    flex: 1;
    background-color: #c9bfb3;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 600px;
}

.cta-bottom-section {
    padding: 100px 60px;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--bg-white);
}

.cta-bottom-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-bottom-section p {
    font-size: 18px;
    margin-bottom: 36px;
    opacity: 0.9;
}

.cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-large:hover {
    transform: scale(1.05);
}

.about-hero {
    position: relative;
}

.about-hero-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-hero-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.about-hero img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    display: block;
    background-color: #c9bfb3;
}

.about-story-split {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.story-text {
    flex: 1.2;
    padding-right: 60px;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.story-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.story-image {
    flex: 1;
    background-color: #c9bfb3;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.philosophy-section {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.philosophy-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.philosophy-grid {
    display: flex;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-card {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-light);
}

.philosophy-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.philosophy-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.team-split {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.team-split img {
    flex: 1;
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #c9bfb3;
}

.team-text {
    flex: 1;
}

.team-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.values-section {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    margin-bottom: 50px;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 17px;
    margin-bottom: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.workshop-section {
    padding: 100px 60px;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--bg-white);
}

.workshop-content h2 {
    font-size: 44px;
    margin-bottom: 24px;
}

.workshop-content p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-header {
    background-color: var(--bg-light);
    padding: 80px 60px;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-header p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-main-section {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.contact-split {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h2 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.note {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

.contact-image {
    flex: 1;
    background-color: #c9bfb3;
}

.contact-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.faq-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 400px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.map-placeholder {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.map-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.map-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.map-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
    min-height: 70vh;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-container > p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 60px;
}

.service-selected {
    font-size: 18px;
    color: var(--text-dark);
    padding: 20px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
}

.next-steps {
    margin-bottom: 60px;
}

.next-steps h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.step {
    flex: 1;
    text-align: left;
    padding: 30px;
    background-color: var(--bg-white);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-cta {
    margin-bottom: 60px;
}

.thanks-cta p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.thanks-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: background-color 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.contact-reminder {
    background-color: var(--bg-white);
    padding: 40px;
}

.contact-reminder p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.email-display {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 60px;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0 24px 20px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-reverse,
    .split-normal,
    .service-detail-split,
    .about-story-split,
    .team-split,
    .contact-split {
        flex-direction: column;
    }

    .testimonials-grid,
    .services-container,
    .ingredients-grid,
    .philosophy-grid,
    .steps-grid {
        flex-direction: column;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-container,
    .hero-left,
    .split-text,
    .service-detail-text,
    .story-text {
        padding: 40px 24px;
    }

    .testimonials-section,
    .services-reveal,
    .form-section,
    .ingredients-section {
        padding: 60px 24px;
    }

    .faq-item {
        min-width: 100%;
    }
}