/* 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: #fafaf8;
}

/* Navigation - Editorial Style */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.ad-notice {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #000;
}

/* Container Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero - Editorial Style */
.hero-editorial {
    position: relative;
    height: 65vh;
    min-height: 500px;
    margin-bottom: 4rem;
    background-color: #2a2a2a;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}

.hero-text-narrow {
    max-width: 650px;
    text-align: center;
    color: #ffffff;
    padding: 0 2rem;
}

.hero-text-narrow h1 {
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Editorial Content */
.editorial-content {
    margin: 4rem 0;
}

.editorial-content section {
    margin-bottom: 4rem;
}

.editorial-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.editorial-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2a2a2a;
}

.editorial-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Inline Images - Editorial Style */
.inline-image-block {
    margin: 3rem 0;
    background-color: #f5f5f3;
}

.inline-image-block img {
    width: 100%;
    display: block;
}

.image-caption {
    padding: 1rem 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Blockquote / Testimonial Inline */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background-color: #f9f9f7;
    border-left: 4px solid #d4af37;
    font-size: 1.2rem;
    font-style: italic;
    color: #3a3a3a;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #777;
}

/* CTA Inline */
.cta-inline {
    text-align: center;
    margin: 3rem 0;
}

.btn-link {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2a2a2a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

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

/* Service Cards - Editorial Style */
.service-cards-editorial {
    margin: 3rem 0;
}

.service-card {
    margin-bottom: 3rem;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

.service-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 400;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 1.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.service-price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2a2a2a;
    margin: 0 1.5rem 1.5rem;
}

.btn-select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem 1.8rem;
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1a1a1a;
}

/* Form Section - Editorial Style */
.contact-form-section {
    margin: 4rem 0;
    padding: 3rem 2.5rem;
    background-color: #f5f5f3;
    border-left: 4px solid #2a2a2a;
}

.editorial-form {
    margin-top: 2rem;
}

.selected-service-display {
    padding: 1rem 1.5rem;
    background-color: #ffffff;
    border: 1px solid #d4af37;
    margin-bottom: 2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #ffffff;
}

.form-group textarea {
    resize: vertical;
}

/* Buttons */
.btn {
    padding: 0.9rem 2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #2a2a2a;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #ffffff;
    color: #2a2a2a;
    border: 1px solid #2a2a2a;
}

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

/* Values and Lists */
.values-list {
    margin: 2rem 0;
    list-style: none;
}

.values-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.5rem;
}

/* Disclaimer */
.disclaimer-section {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #f0f0ed;
    border-left: 3px solid #999;
}

.disclaimer {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* Reference Links */
.reference-link {
    color: #2a5a9a;
    text-decoration: none;
    border-bottom: 1px dotted #2a5a9a;
}

.reference-link:hover {
    color: #1a3a6a;
}

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.reference-item {
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2a2a2a;
    padding: 1.5rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #2a5a9a;
}

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

/* Page Header */
.page-header {
    padding: 4rem 0 3rem;
    background-color: #f5f5f3;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-intro {
    font-size: 1.3rem;
    color: #555;
    font-weight: 300;
}

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 0 0 45%;
    background-color: #e8e8e8;
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

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

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price-large {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 2rem 0;
    list-style: none;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9a4a;
    font-weight: bold;
}

/* Contact Page */
.contact-page {
    margin: 3rem 0;
}

.contact-info-sections {
    margin-bottom: 4rem;
}

.contact-info-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-info-block h2 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-email {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #2a2a2a;
    background-color: #f5f5f3;
    padding: 0.5rem 1rem;
    display: inline-block;
    margin: 0.5rem 0;
}

.contact-note {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.hours-list,
.transport-list {
    margin: 1rem 0;
    list-style: none;
}

.hours-list li,
.transport-list li {
    padding: 0.5rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.contact-cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f5f5f3;
}

.contact-cta-section h2 {
    margin-bottom: 1rem;
}

/* Thanks Page */
.thanks-page {
    margin: 4rem 0;
    min-height: 50vh;
}

.thanks-content {
    text-align: center;
    padding: 3rem 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f5f5f3;
    border-left: 4px solid #d4af37;
}

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

/* Legal Pages */
.legal-page {
    margin: 3rem 0;
}

.legal-intro {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #2a2a2a;
}

.legal-section h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    color: #3a3a3a;
}

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

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.cookies-table th {
    background-color: #f5f5f3;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

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

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

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

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

    .footer-content {
        flex-direction: column;
    }

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

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