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

:root {
    --primary-color: #2d5b4f;
    --secondary-color: #8b9d87;
    --accent-color: #c9a77c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-cream: #faf8f5;
    --border-color: #e5dfd6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #fff;
}

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

.floating-nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    gap: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-visual {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 300;
    color: #fff;
    max-width: 900px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-overlay p {
    font-size: 22px;
    color: #fff;
    max-width: 600px;
    font-weight: 300;
}

.story-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 24px;
}

.story-intro h2 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.story-intro p,
.problem-reveal p,
.solution-intro p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.image-break {
    width: 100%;
    background-color: var(--bg-light);
    padding: 0;
    margin: 0;
}

.image-break img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.problem-reveal {
    background-color: var(--bg-cream);
}

.problem-reveal h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 28px;
}

.insight-box {
    background-color: #fff;
    border-left: 4px solid var(--accent-color);
    padding: 28px;
    margin: 40px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.insight-box p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

.insight-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.insight-box a:hover {
    text-decoration: underline;
}

.split-content {
    display: flex;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.split-text h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.3;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-inline {
    background-color: var(--primary-color);
    padding: 80px 0;
}

.testimonial-inline blockquote {
    border: none;
    padding: 0;
}

.testimonial-inline p {
    font-size: 26px;
    line-height: 1.6;
    color: #fff;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-inline cite {
    color: var(--accent-color);
    font-style: normal;
    font-size: 16px;
}

.ingredients-section {
    background-color: var(--bg-light);
}

.ingredients-section h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 48px;
    text-align: center;
}

.ingredient-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ingredient-card {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.ingredient-card h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.ingredient-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.ingredient-card a:hover {
    text-decoration: underline;
}

.services-reveal {
    padding: 100px 0;
}

.services-reveal h2 {
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 64px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.service-item {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    background-color: var(--bg-cream);
    border-radius: 12px;
    overflow: hidden;
}

.service-item img {
    width: 400px;
    height: 320px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-content {
    flex: 1;
    padding: 40px;
}

.service-content h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.service-price {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-select {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.cta-section h2 {
    font-size: 38px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}

.cta-section > .story-container > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-testimonials {
    padding: 100px 0;
}

.final-testimonials h2 {
    font-size: 38px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 56px;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonials-grid blockquote {
    background-color: var(--bg-cream);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonials-grid p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.testimonials-grid cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 15px;
}

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

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

.references-section {
    padding: 60px 0;
    background-color: var(--bg-cream);
}

.references-section h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.references-list {
    list-style-position: inside;
    padding-left: 0;
}

.references-list li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

.references-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: var(--text-dark);
    color: #fff;
    padding: 64px 0 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
}

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

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

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 24px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: #fff;
}

.cookie-accept:hover {
    background-color: #234437;
}

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 180px 24px 100px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 52px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.about-story {
    padding: 80px 0;
}

.about-intro p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.vision-section {
    margin: 80px 0;
    display: flex;
    gap: 56px;
    align-items: center;
}

.vision-section img {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.vision-text {
    flex: 1;
}

.vision-text h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 24px;
}

.vision-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 64px 0;
}

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: var(--bg-cream);
    padding: 32px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.team-section,
.approach-section {
    margin: 64px 0;
}

.team-section h2,
.approach-section h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 24px;
}

.team-section p,
.approach-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.team-section img {
    width: 100%;
    height: auto;
    margin-top: 32px;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.services-detail {
    padding: 80px 0;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.service-detail-card {
    display: flex;
    gap: 56px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-detail-image {
    flex: 0 0 45%;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-duration {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.service-price-large {
    font-size: 38px;
    font-weight: 600;
    color: var(--primary-color);
}

.booking-cta {
    text-align: center;
    margin-top: 80px;
    padding: 64px 32px;
    background-color: var(--bg-cream);
    border-radius: 12px;
}

.booking-cta h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
}

.booking-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #234437;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 40px;
}

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

.contact-item p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-note {
    background-color: var(--bg-cream);
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.directions-section h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 32px;
}

.directions-grid {
    display: flex;
    gap: 32px;
}

.direction-item {
    flex: 1;
    background-color: var(--bg-cream);
    padding: 28px;
    border-radius: 8px;
}

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

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 48px;
}

.service-confirmation {
    background-color: var(--bg-cream);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.service-confirmation h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
}

.service-confirmation p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 48px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 24px;
}

.thanks-next-steps ol {
    list-style-position: inside;
    padding-left: 0;
}

.thanks-next-steps li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.thanks-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.legal-page {
    padding: 140px 0 80px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-container h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 24px;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 32px;
    margin-bottom: 12px;
}

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

.legal-container ul,
.legal-container ol {
    margin-bottom: 24px;
    padding-left: 28px;
}

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

.legal-container a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.legal-update {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 16px;
        padding: 16px 24px;
        border-radius: 0;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .split-content,
    .vision-section,
    .contact-grid,
    .service-detail-card {
        flex-direction: column;
    }

    .vision-section img,
    .service-detail-image {
        width: 100%;
        flex: none;
    }

    .service-item {
        flex-direction: column;
    }

    .service-item img {
        width: 100%;
        height: 280px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .directions-grid {
        flex-direction: column;
    }

    .thanks-cta {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-card {
        flex: none;
    }
}