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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fefefe;
    font-size: 16px;
}

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

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

a:hover {
    color: #5d2f0a;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
}

/* Container Variations */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Header - Magazine Style */
.header-magazine {
    border-bottom: 3px solid #1a1a1a;
    padding: 1.5rem 0;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: lowercase;
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.main-nav a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2c2c2c;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

/* Hero - Magazine Style */
.hero-magazine {
    position: relative;
    margin-bottom: 4rem;
}

.hero-image-overlay {
    position: relative;
    height: 75vh;
    overflow: hidden;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    max-width: 600px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-text-overlay h1 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 0;
}

/* Editorial Intro */
.intro-editorial {
    padding: 4rem 0;
    background-color: #f9f7f5;
}

.dropcap::first-letter {
    font-size: 4rem;
    line-height: 0.9;
    float: left;
    padding-right: 0.5rem;
    font-weight: bold;
    color: #8b4513;
}

/* Magazine Grid */
.featured-grid {
    padding: 3rem 0;
}

.grid-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.card-magazine {
    background: #fff;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 280px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.card-magazine:hover {
    transform: translateY(-4px);
}

.card-magazine.large {
    flex: 1 1 calc(66.666% - 1rem);
}

.card-magazine img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card-magazine.large img {
    height: 400px;
}

.card-content {
    padding: 1.8rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.text-link {
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Split Section */
.story-section {
    padding: 5rem 0;
    background-color: #fff;
}

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.split-text {
    flex: 1 1 50%;
    min-width: 300px;
}

.split-image {
    flex: 1 1 40%;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn-text-inline {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    padding: 0.3rem 0;
    border-bottom: 2px solid #8b4513;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background-color: #f4f1ed;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-magazine-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    position: relative;
}

.service-card.featured-service {
    background: linear-gradient(135deg, #8b4513 0%, #5d2f0a 100%);
    color: #fff;
    transform: scale(1.05);
}

.service-card.featured-service h3,
.service-card.featured-service p,
.service-card.featured-service .price-tag {
    color: #fff;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffd700;
    color: #1a1a1a;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(139, 69, 19, 0.15);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.service-card.featured-service .service-number {
    color: rgba(255, 255, 255, 0.2);
}

.price-tag {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b4513;
    margin: 1.5rem 0;
}

/* Buttons */
.btn-primary,
.btn-outline,
.btn-large,
.btn-large-alt,
.btn-submit {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.9rem 2rem;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.btn-primary:hover {
    background: #5d2f0a;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
}

.btn-outline:hover {
    background: #8b4513;
    color: #fff;
}

.btn-large {
    background: #1a1a1a;
    color: #fff;
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

.btn-large:hover {
    background: #000;
}

.btn-large-alt {
    background: #8b4513;
    color: #fff;
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

.btn-large-alt:hover {
    background: #5d2f0a;
}

.btn-submit {
    background: #8b4513;
    color: #fff;
    width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
}

.btn-submit:hover {
    background: #5d2f0a;
}

.btn-secondary {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: #2c2c2c;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f0f0f0;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials */
.testimonials-magazine {
    padding: 5rem 0;
    background-color: #fff;
}

.centered-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: #f9f7f5;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #8b4513;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: #666;
    font-size: 0.95rem;
}

/* Methodology Section */
.methodology-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f4f1ed 0%, #fff 100%);
}

.methodology-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.pillars-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.pillar {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    text-align: center;
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background-color: #2c2c2c;
    color: #fff;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2,
.form-header p {
    color: #fff;
}

.booking-form {
    background: #fff;
    padding: 3rem;
    border-radius: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    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;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #8b4513 0%, #5d2f0a 100%);
    color: #fff;
    text-align: center;
}

.final-cta h2,
.final-cta p {
    color: #fff;
}

.centered-content {
    text-align: center;
}

/* Footer */
.footer-magazine {
    background: #1a1a1a;
    color: #ccc;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 0;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    background: #8b4513;
    color: #fff;
    padding: 1rem 2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #5d2f0a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #ffd700;
}

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

/* About Page */
.page-hero-simple {
    padding: 4rem 0;
    text-align: center;
    background-color: #f9f7f5;
}

.lead-text {
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
}

.content-section {
    padding: 4rem 0;
}

.full-width-image {
    width: 100%;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.philosophy-section {
    padding: 5rem 0;
    background-color: #f4f1ed;
}

.philosophy-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.team-section {
    padding: 5rem 0;
}

.team-member {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.member-info {
    flex: 1;
    min-width: 250px;
}

.member-role {
    color: #8b4513;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.team-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f9f7f5;
    border-left: 4px solid #8b4513;
}

.cta-section-simple {
    padding: 4rem 0;
    background-color: #f4f1ed;
}

/* Services Page */
.services-detailed {
    padding: 3rem 0;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1 1 55%;
    min-width: 300px;
}

.service-detail-image {
    flex: 1 1 40%;
    min-width: 300px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-includes {
    margin: 2rem 0;
}

.service-includes h4 {
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

.pricing-detail {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
}

.price-from {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

.price-amount {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #8b4513;
}

.comparison-section {
    padding: 5rem 0;
    background-color: #f9f7f5;
}

.comparison-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.comparison-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 1.5rem;
    background: #fff;
    border-left: 4px solid #8b4513;
}

.comparison-item h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.faq-section {
    padding: 5rem 0;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.final-booking-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
}

.final-booking-cta h2,
.final-booking-cta p {
    color: #fff;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 50%;
    min-width: 300px;
}

.contact-image {
    flex: 1 1 40%;
    min-width: 300px;
}

.contact-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.image-caption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: #8b4513;
    margin-bottom: 0.8rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
}

.directions-section {
    padding: 4rem 0;
    background-color: #f9f7f5;
}

.directions-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.direction-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.faq-contact {
    padding: 4rem 0;
}

.booking-reminder {
    padding: 4rem 0;
    background-color: #f4f1ed;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 0;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.service-confirmation {
    margin: 2rem 0;
}

.service-selected {
    background: #f9f7f5;
    padding: 1rem;
    border-radius: 4px;
    font-size: 1.1rem;
}

.next-steps {
    margin: 3rem auto;
    max-width: 600px;
    text-align: left;
}

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

.steps-list li {
    counter-increment: step-counter;
    padding-left: 3rem;
    position: relative;
    margin-bottom: 1.5rem;
}

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

.thanks-note {
    margin: 2rem 0;
    font-size: 0.95rem;
    color: #666;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.thanks-additional {
    padding: 4rem 0;
    background-color: #f9f7f5;
}

.additional-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0;
}

.update-date {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 3rem;
}

.legal-content h3 {
    margin-top: 2rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f4f1ed;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero-text-overlay {
        left: 2rem;
        bottom: 2rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .main-nav {
        gap: 1rem;
    }

    .container-split {
        gap: 2rem;
    }

    .services-magazine-grid {
        gap: 1.5rem;
    }

    .service-card.featured-service {
        transform: scale(1);
    }

    .pillars-layout {
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        gap: 2rem;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-outline {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-top {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }
}
