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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fefefe;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: #2c2c2c;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Navigation */
.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
}

/* Editorial Flow - Core Layout */
.editorial-flow {
    max-width: 800px;
    margin: 5rem auto 0;
    padding: 0 1.5rem 4rem;
}

.narrow-content {
    max-width: 640px;
    margin: 0 auto;
}

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

/* Typography */
h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1.25rem;
    margin-top: 3rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

/* Hero - Editorial Style */
.hero-editorial {
    margin-bottom: 4rem;
}

.hero-narrow {
    margin-bottom: 2.5rem;
}

.hero-visual {
    margin: 0 -1.5rem;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    object-fit: cover;
    height: 400px;
}

/* Sections */
.story-section,
.insight-block,
.philosophy-section,
.team-section,
.impact-section,
.services-preview,
.form-section,
.testimonial-flow,
.final-thought,
.cta-section {
    margin-bottom: 5rem;
}

.page-header {
    margin-bottom: 4rem;
}

/* Inline Images */
.inline-image-offset {
    margin: 3rem 0;
    position: relative;
}

.inline-image-offset img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Visual Breaks */
.visual-break {
    margin: 5rem -1.5rem;
}

.visual-break img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* Service Cards */
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    padding: 2rem;
    border: 1px solid #e0e0e0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    border-color: #2c2c2c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card h4 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-card p {
    color: #555;
    margin-bottom: 1.5rem;
}

.service-card .price {
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Buttons and CTAs */
.btn-select,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-select,
.btn-primary {
    background: #2c2c2c;
    color: #fff;
}

.btn-select:hover,
.btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
    opacity: 1;
}

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

.btn-secondary:hover {
    background: #2c2c2c;
    color: #fff;
    opacity: 1;
}

.link-arrow {
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

.cta-inline {
    margin-top: 2rem;
}

/* Forms */
.booking-form {
    margin-top: 2.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid #ddd;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

.form-note {
    font-size: 0.875rem;
    color: #777;
    margin-top: 1.5rem;
}

.form-note a {
    text-decoration: underline;
}

/* Testimonials */
blockquote {
    border-left: 3px solid #2c2c2c;
    padding-left: 2rem;
    font-size: 1.25rem;
    line-height: 1.6;
    font-style: italic;
    color: #444;
    margin: 3rem 0;
}

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

/* Values List */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.value-item h4 {
    margin-top: 0;
}

.value-item p {
    color: #555;
}

/* Team Section */
.team-intro p {
    margin-bottom: 1.25rem;
}

/* Services Detail Page */
.services-detailed {
    margin-top: 4rem;
}

.service-detail {
    margin-bottom: 6rem;
}

.service-detail .narrow-content {
    margin-bottom: 2.5rem;
}

.service-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

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

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

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: 600;
}

.service-image {
    margin: 0 -1.5rem;
}

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

.service-detail.reverse .narrow-content {
    order: 2;
}

.service-detail.reverse .service-image {
    order: 1;
}

/* Contact Page */
.contact-info {
    margin-top: 3rem;
}

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

.contact-block h2 {
    margin-top: 0;
}

address {
    font-style: normal;
    line-height: 1.8;
}

.hours-list {
    list-style: none;
    line-height: 2;
}

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

.thanks-content {
    margin-top: 3rem;
    text-align: left;
}

.thanks-content h3 {
    margin-top: 3rem;
}

.next-steps {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
}

.service-highlight {
    background: #f5f5f5;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 3px solid #2c2c2c;
}

.thanks-cta {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

.thanks-quote {
    margin-top: 5rem;
}

/* Legal Pages */
.legal-page {
    max-width: 800px;
    margin: 5rem auto 0;
    padding: 0 1.5rem 4rem;
}

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

.last-updated {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-page ul,
.legal-page ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.75rem;
}

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

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

.cookie-table th {
    background: #f5f5f5;
    font-weight: 600;
}

/* Footer */
.footer-editorial {
    border-top: 1px solid #e0e0e0;
    padding: 3rem 2rem;
    margin-top: 6rem;
}

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

.footer-brand p {
    color: #777;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.9rem;
    color: #777;
}

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

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2c2c2c;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.btn-cookie {
    background: #fff;
    color: #000;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.875rem;
    }

    .editorial-flow {
        margin-top: 4rem;
        padding: 0 1rem 3rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .lead-text {
        font-size: 1.15rem;
    }

    .hero-visual {
        margin: 0 -1rem;
    }

    .hero-visual img {
        height: 300px;
    }

    .visual-break {
        margin: 4rem -1rem;
    }

    .visual-break img {
        height: 300px;
    }

    .inline-image-offset img {
        height: 250px;
    }

    .service-image {
        margin: 0 -1rem;
    }

    .service-image img {
        height: 300px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card .price {
        font-size: 1.5rem;
    }

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

    .sticky-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .footer-links {
        gap: 1.5rem;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie,
    .btn-cookie-alt {
        flex: 1;
    }

    .thanks-cta {
        flex-direction: column;
        gap: 1rem;
    }

    blockquote {
        font-size: 1.1rem;
        padding-left: 1.5rem;
    }

    .values-list {
        gap: 1.5rem;
    }
}

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

    h2 {
        font-size: 1.35rem;
    }

    .lead-text {
        font-size: 1.05rem;
    }

    .service-price {
        font-size: 1.35rem;
    }
}
