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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b6f47;
    --accent-color: #c19a6b;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 16px;
    overflow-x: hidden;
}

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

h1 {
    font-size: 2.5rem;
}

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

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

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

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

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

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

/* Header - Minimal Navigation */
.minimal-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

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

.brand-mark {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.menu-toggle:hover span {
    background: var(--secondary-color);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.nav-links a {
    color: white;
    font-size: 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
    transform: translateX(10px);
}

/* Hero Story Section */
.hero-story {
    margin-top: 80px;
    padding: 4rem 1.5rem 3rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

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

.story-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    max-width: 1000px;
    margin: 3rem auto 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

/* Editorial Content - Main Layout */
.editorial-content {
    padding: 4rem 1.5rem;
}

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

.intro-text {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.drop-cap::first-letter {
    float: left;
    font-size: 4rem;
    line-height: 0.85;
    margin: 0.1rem 0.15rem 0 0;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Inline CTA */
.inline-cta {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    text-align: center;
}

.cta-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cta-link:hover {
    color: var(--primary-color);
}

/* Content Images */
.content-image {
    margin: 3rem 0;
}

.content-image img {
    width: 100%;
    border-radius: 6px;
}

figcaption {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

/* Testimonials */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* CTA Box */
.cta-box {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-align: center;
}

.cta-box h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover,
.btn-primary-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

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

.btn-primary-large {
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

/* Trust Section */
.trust-section {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.trust-section h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.trust-list,
.values-list {
    list-style: none;
    padding: 0;
}

.trust-list li,
.values-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.trust-list li::before,
.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Services Cards */
.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: white;
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #fff 0%, var(--bg-light) 100%);
}

.badge-popular {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.service-features span {
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-features span::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-price {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    color: var(--text-light);
}

.service-price strong {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

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

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Process Steps */
.process-steps {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.process-steps li {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.process-steps strong {
    color: var(--secondary-color);
}

/* Urgency Box */
.urgency-box {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    border-left: 4px solid var(--error-color);
    border-radius: 4px;
}

.urgency-box h3 {
    color: var(--error-color);
    margin-top: 0;
}

.urgency-box strong {
    color: var(--error-color);
    font-weight: 700;
}

/* Form Section */
.form-section {
    margin: 4rem 0;
    padding: 3rem 1.5rem;
    background: var(--bg-light);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

.form-privacy {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.9rem;
    line-height: 1.5;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin: 4rem 0;
}

.cta-subtext {
    margin-top: 1rem;
    color: var(--text-light);
    font-style: italic;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    z-index: 900;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

.sticky-cta.show {
    display: block;
}

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

.sticky-text {
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-sticky {
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Service Detail Pages */
.service-detail {
    margin: 3rem 0;
    padding: 3rem 0;
    border-top: 2px solid var(--border-color);
}

.service-header {
    margin-bottom: 2rem;
    position: relative;
}

.service-price-large {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 1rem;
}

.service-includes {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.price-list li {
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

.price-breakdown {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.price-breakdown h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.price-main {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.service-comparison {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.service-comparison p {
    margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-info-box {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-info-box h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.contact-item {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
}

.contact-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.hours-table {
    width: 100%;
    margin-top: 1rem;
}

.hours-table tr {
    border-bottom: 1px solid var(--border-color);
}

.hours-table td {
    padding: 0.75rem 0;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--secondary-color);
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

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

.faq-list li::before {
    content: "Q:";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--secondary-color);
}

.faq-section {
    margin: 3rem 0;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.faq-item h4 {
    color: var(--secondary-color);
    margin-top: 0;
}

.final-note {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.team-roles {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.team-roles li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 6rem 1.5rem;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.thanks-content {
    text-align: left;
}

.thanks-message {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    text-align: center;
}

.service-selected {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.service-selected h3 {
    margin-top: 0;
    color: var(--secondary-color);
}

.next-steps {
    margin: 3rem 0;
}

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

.steps-list li {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.thanks-info-box {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

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

.contact-reminder {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 6px;
}

.testimonial-box {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    text-align: right;
    color: var(--accent-color);
    font-weight: 600;
}

.return-home {
    margin: 3rem 0;
    text-align: center;
}

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

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

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

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.back-link {
    margin: 3rem 0 2rem;
    text-align: center;
}

.back-link a {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Tablet Responsive */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .story-title {
        font-size: 3.25rem;
    }

    .story-lead {
        font-size: 1.35rem;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .footer-links {
        flex-direction: row;
        gap: 4rem;
    }

    .services-cards {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .sticky-content {
        flex-wrap: nowrap;
    }

    .thanks-links {
        flex-wrap: nowrap;
    }
}

/* Desktop Responsive */
@media (min-width: 1024px) {
    .nav-links {
        flex-direction: row;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links {
        flex-direction: row;
    }
}
