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

:root {
    --color-primary: #2d5f2e;
    --color-secondary: #8b4513;
    --color-accent: #d4a574;
    --color-text: #2c2c2c;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f6f3;
    --color-border: #e0e0e0;
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
}

h1, h2, h3, h4 {
    font-family: var(--font-primary);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

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

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

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

.ad-disclosure {
    background-color: var(--color-accent);
    color: var(--color-text);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    position: relative;
    z-index: 100;
}

.main-nav {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 90;
}

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

.brand {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

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

.hero-image-wrap 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.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 4rem;
    max-width: 900px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-overlay p {
    font-size: 1.5rem;
    max-width: 600px;
    margin-top: 1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.intro-offset {
    padding: 6rem 2rem;
    background-color: var(--color-bg-alt);
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.intro-image {
    flex: 1;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-block {
    padding: 5rem 2rem;
}

.experience-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.exp-card {
    flex: 1;
    background-color: var(--color-bg);
}

.exp-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.exp-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.exp-card p {
    color: var(--color-text-light);
    font-size: 1rem;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: var(--color-bg-alt);
}

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

.services-intro h2 {
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

.services-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.service-item {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--color-bg);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-item p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    display: block;
}

.service-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s ease;
}

.service-link:hover {
    background-color: var(--color-secondary);
    color: white;
}

.booking-section {
    padding: 6rem 2rem;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.booking-visual {
    flex: 1;
}

.booking-visual img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.booking-form-wrap {
    flex: 1;
    background-color: var(--color-bg-alt);
    padding: 3rem;
    border-radius: 8px;
}

.booking-form-wrap h2 {
    margin-bottom: 1rem;
}

.booking-form-wrap > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.values-section {
    padding: 5rem 2rem;
    background-color: var(--color-bg-alt);
}

.values-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.values-content h2 {
    margin-bottom: 3rem;
}

.values-list {
    display: flex;
    gap: 3rem;
}

.value-item {
    flex: 1;
    text-align: left;
}

.value-item h4 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.value-item p {
    color: var(--color-text-light);
}

.main-footer {
    background-color: var(--color-text);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.footer-col p,
.footer-col a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 45, 45, 0.98);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 2rem;
}

.cookie-content p {
    color: white;
    margin-bottom: 0;
    flex: 1;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.cookie-btn.reject {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.about-hero {
    background-color: var(--color-bg-alt);
    padding: 5rem 2rem;
    text-align: center;
}

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

.about-hero-content h1 {
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

.story-section {
    padding: 6rem 2rem;
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.story-text {
    flex: 1;
}

.story-text h2 {
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.philosophy-section {
    padding: 5rem 2rem;
    background-color: var(--color-bg-alt);
}

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

.philosophy-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-blocks {
    display: flex;
    gap: 3rem;
}

.phil-block {
    flex: 1;
}

.phil-block h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.phil-block p {
    color: var(--color-text-light);
}

.team-section {
    padding: 6rem 2rem;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-intro h2 {
    margin-bottom: 1rem;
}

.team-intro p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.team-visual {
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.team-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
}

.team-description p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.values-detailed {
    padding: 5rem 2rem;
    background-color: var(--color-bg-alt);
}

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

.values-wrap h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h4 {
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.value-card p {
    color: var(--color-text-light);
}

.journey-cta {
    padding: 5rem 2rem;
    text-align: center;
}

.journey-content {
    max-width: 700px;
    margin: 0 auto;
}

.journey-content h2 {
    margin-bottom: 1rem;
}

.journey-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-primary);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
}

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

.services-header {
    background-color: var(--color-bg-alt);
    padding: 5rem 2rem;
    text-align: center;
}

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

.services-header-content h1 {
    margin-bottom: 1rem;
}

.services-header-content p {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

.services-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--color-border);
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.service-info p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.service-features {
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--color-text);
}

.service-pricing {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-weight: 600;
    color: var(--color-text);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.booking-cta-section {
    padding: 5rem 2rem;
    background-color: var(--color-primary);
    text-align: center;
}

.booking-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.booking-cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.booking-cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.booking-cta-content .cta-btn {
    background-color: white;
    color: var(--color-primary);
}

.booking-cta-content .cta-btn:hover {
    background-color: var(--color-accent);
    color: var(--color-text);
}

.contact-header {
    background-color: var(--color-bg-alt);
    padding: 5rem 2rem;
    text-align: center;
}

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

.contact-header-content h1 {
    margin-bottom: 1rem;
}

.contact-header-content p {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

.contact-main {
    padding: 5rem 2rem;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-visual {
    flex: 0.8;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-information {
    flex: 1.2;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.contact-block p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.email-text {
    font-size: 1.25rem;
    color: var(--color-text);
    font-weight: 500;
}

.email-note {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-style: italic;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.day {
    font-weight: 600;
    color: var(--color-text);
}

.time {
    color: var(--color-text-light);
}

.transit-options {
    list-style: none;
    margin-top: 1rem;
}

.transit-options li {
    padding: 0.5rem 0;
    color: var(--color-text-light);
}

.transit-options li strong {
    color: var(--color-text);
}

.location-notes {
    padding: 5rem 2rem;
    background-color: var(--color-bg-alt);
}

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

.notes-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.notes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.note-item {
    flex: 1 1 calc(50% - 1.25rem);
}

.note-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.note-item p {
    color: var(--color-text-light);
}

.visit-cta {
    padding: 5rem 2rem;
    text-align: center;
}

.visit-content {
    max-width: 700px;
    margin: 0 auto;
}

.visit-content h2 {
    margin-bottom: 1rem;
}

.visit-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-main {
    padding: 6rem 2rem;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    display: none;
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    margin: 2rem 0;
}

.service-selected {
    font-size: 1.125rem;
    color: var(--color-text);
}

.thanks-info {
    margin: 3rem 0;
    text-align: left;
}

.thanks-info h3 {
    margin-bottom: 1rem;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-text-light);
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--color-primary);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-additional {
    padding: 4rem 2rem;
    background-color: var(--color-bg-alt);
}

.additional-content {
    max-width: 1000px;
    margin: 0 auto;
}

.additional-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.additional-links {
    display: flex;
    gap: 2.5rem;
}

.additional-card {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--color-bg);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.additional-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.additional-card h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.additional-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.legal-page {
    padding: 4rem 2rem;
}

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

.legal-container h1 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.legal-updated {
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.legal-section h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: var(--color-text);
}

.legal-section p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section ul li {
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.legal-section a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table thead {
    background-color: var(--color-bg-alt);
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--color-border);
}

.cookies-table th {
    font-weight: 600;
    color: var(--color-text);
}

.cookies-table td {
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1.125rem;
    }

    .intro-content,
    .story-layout,
    .booking-container,
    .contact-layout {
        flex-direction: column;
        gap: 2.5rem;
    }

    .experience-grid,
    .services-showcase,
    .values-list,
    .philosophy-blocks,
    .additional-links {
        flex-direction: column;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .value-card,
    .note-item {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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