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

body {
    font-family: 'Georgia', serif;
    font-size: 17px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #8b4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5d2f0a;
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    color: #8b4513;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #666;
    padding: 5px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.hero-section {
    margin-bottom: 80px;
}

.hero-image-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.hero-overlay p {
    color: #f0f0f0;
    font-size: 1.4rem;
    font-style: italic;
}

.intro-section {
    padding: 100px 0;
    text-align: center;
}

.intro-section h2 {
    margin-bottom: 30px;
}

.visual-break {
    margin: 80px 0;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

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

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

.dark-section {
    background-color: #2c2c2c;
    color: #f5f5f5;
    padding: 100px 0;
}

.dark-section h2,
.dark-section h3,
.dark-section h4 {
    color: #ffffff;
}

.services-preview {
    margin: 80px 0;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-image {
    height: 250px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.service-card h4 {
    padding: 25px 25px 15px;
}

.service-card p {
    padding: 0 25px;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-price {
    padding: 0 25px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 20px;
}

.service-card button {
    margin: 0 25px 25px;
}

.testimonial-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.testimonial-section blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    border-left: 4px solid #8b4513;
    padding-left: 30px;
    margin: 0;
}

.testimonial-section cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

.inline-image-section {
    padding: 100px 0;
}

.content-with-image {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.inline-img {
    flex: 0 0 45%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.content-beside {
    flex: 1;
}

.booking-section {
    padding: 100px 0;
}

.booking-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.dark-section .booking-box {
    background-color: #3a3a3a;
}

.booking-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

.booking-box > p {
    text-align: center;
    margin-bottom: 40px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.dark-section .form-group label {
    color: #f5f5f5;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Georgia', serif;
    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: #8b4513;
}

.form-group textarea {
    resize: vertical;
}

.btn-primary,
.btn-secondary,
.btn-primary-large,
.btn-secondary-large {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background-color: #8b4513;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #6d350f;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #f5f5f5;
    border: 2px solid #f5f5f5;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    color: #1a1a1a;
}

.btn-primary-large {
    background-color: #8b4513;
    color: #ffffff;
    padding: 16px 50px;
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    background-color: #6d350f;
    color: #ffffff;
}

.btn-secondary-large {
    background-color: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
    padding: 16px 50px;
    font-size: 1.1rem;
}

.btn-secondary-large:hover {
    background-color: #8b4513;
    color: #ffffff;
}

.select-service {
    width: 100%;
}

.cta-center {
    text-align: center;
    margin-top: 60px;
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.disclaimer {
    color: #999;
    font-size: 0.8rem;
    max-width: 900px;
    margin: 15px auto 0;
}

.page-hero {
    padding: 80px 0 60px;
    text-align: center;
    background-color: #f5f5f5;
}

.page-hero h1 {
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    color: #666;
}

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

.story-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

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

.values-grid {
    display: flex;
    gap: 50px;
}

.value-item {
    flex: 1;
    padding: 30px;
}

.value-item h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.team-section {
    padding: 100px 0;
}

.team-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-content {
    flex: 1;
}

.team-image {
    flex: 1;
    background-color: #e8e8e8;
}

.team-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.philosophy-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.philosophy-image {
    width: 100%;
    margin-top: 40px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.approach-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.approach-grid {
    display: flex;
    gap: 40px;
}

.approach-card {
    flex: 1;
    padding: 40px;
    background-color: #3a3a3a;
    border-radius: 8px;
}

.approach-card h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-section {
    padding: 100px 0;
    text-align: center;
}

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

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
}

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

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

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

.service-detail-content h2 {
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #8b4513;
    font-weight: 700;
    font-size: 1.4rem;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.service-pricing .price {
    font-size: 2rem;
    font-weight: 700;
    color: #8b4513;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

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

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

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

.info-block h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.day {
    font-weight: 600;
}

.time {
    color: #666;
}

.email-display {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #8b4513;
    margin-bottom: 10px;
}

.email-note {
    font-size: 0.9rem;
    color: #666;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.visit-note {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

.visit-note h3 {
    margin-bottom: 15px;
}

.map-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.map-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.next-steps {
    text-align: left;
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.next-steps h2 {
    margin-bottom: 25px;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: #8b4513;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.additional-info p {
    color: #666;
    font-size: 0.95rem;
}

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

.legal-page h1 {
    margin-bottom: 10px;
}

.updated-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

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

.legal-content h2 {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
}

@media (max-width: 968px) {
    .split-layout,
    .service-grid,
    .values-grid,
    .team-layout,
    .approach-grid,
    .service-detail,
    .contact-layout,
    .content-with-image {
        flex-direction: column;
    }

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

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

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 45%;
    }

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

    .form-row {
        flex-direction: column;
    }

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